From 96cc6a77851068212bf14a1d920ad8e922188c83 Mon Sep 17 00:00:00 2001 From: ThatGuyUSA Date: Thu, 14 Aug 2025 15:48:50 -0700 Subject: [PATCH 001/194] Meat spike conjugation error (#39651) fixed it! --- .../Locale/en-US/kitchen/components/kitchen-spike-component.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl b/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl index aa555b24ae..aaa1779f53 100644 --- a/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl +++ b/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl @@ -1,7 +1,7 @@ comp-kitchen-spike-deny-collect = { CAPITALIZE(THE($this)) } already has something on it, finish collecting its meat first! comp-kitchen-spike-deny-butcher = { CAPITALIZE(THE($victim)) } can't be butchered on { THE($this) }. comp-kitchen-spike-deny-butcher-knife = { CAPITALIZE(THE($victim)) } can't be butchered on { THE($this) }, you need to butcher it using a knife. -comp-kitchen-spike-deny-not-dead = { CAPITALIZE(THE($victim)) } can't be butchered. { CAPITALIZE(SUBJECT($victim)) } { CONJUGATE-BE($victim) } is not dead! +comp-kitchen-spike-deny-not-dead = { CAPITALIZE(THE($victim)) } can't be butchered. { CAPITALIZE(SUBJECT($victim)) } { CONJUGATE-BE($victim) } not dead! comp-kitchen-spike-begin-hook-victim = { CAPITALIZE(THE($user)) } begins dragging you onto { THE($this) }! comp-kitchen-spike-begin-hook-self = You begin dragging yourself onto { THE($this) }! From 2b31fa98c9eb3b282888e6f46f24ca3da4bfb129 Mon Sep 17 00:00:00 2001 From: Artxmisery <78118840+Artxmisery@users.noreply.github.com> Date: Thu, 14 Aug 2025 23:53:48 +0000 Subject: [PATCH 002/194] Add container-related triggers (#39647) * added triggers for when an entity is inserted or removed from a container, for both the entity and the container * removed unnecessary comments * consolidated into one shared system for all four triggers * consolidated into one shared system for all four triggers * named it right this time * made container owner user of got triggers and added guard statements * container id * Update Content.Shared/Trigger/Components/Triggers/TriggerOnRemovedFromContainerComponent.cs --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- ...ggerOnGotInsertedIntoContainerComponent.cs | 18 +++++ ...iggerOnGotRemovedFromContainerComponent.cs | 18 +++++ ...TriggerOnInsertedIntoContainerComponent.cs | 18 +++++ .../TriggerOnRemovedFromContainerComponent.cs | 18 +++++ .../TriggerOnContainerInteractionSystem.cs | 70 +++++++++++++++++++ 5 files changed, 142 insertions(+) create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnGotInsertedIntoContainerComponent.cs create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnGotRemovedFromContainerComponent.cs create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnInsertedIntoContainerComponent.cs create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnRemovedFromContainerComponent.cs create mode 100644 Content.Shared/Trigger/Systems/TriggerOnContainerInteractionSystem.cs diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotInsertedIntoContainerComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotInsertedIntoContainerComponent.cs new file mode 100644 index 0000000000..132167a747 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotInsertedIntoContainerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it gets inserted into a container. +/// The user is the owner of the container the entity is being inserted into. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotInsertedIntoContainerComponent : BaseTriggerOnXComponent +{ + /// + /// The container to the entity has to be inserted into. + /// Null will allow all containers. + /// + [DataField, AutoNetworkedField] + public string? ContainerId; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotRemovedFromContainerComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotRemovedFromContainerComponent.cs new file mode 100644 index 0000000000..8c66bf4e81 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotRemovedFromContainerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it gets removed from a container. +/// The user is the owner of the container the entity is being removed from. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotRemovedFromContainerComponent : BaseTriggerOnXComponent +{ + /// + /// The container to the entity has to be removed from. + /// Null will allow all containers. + /// + [DataField, AutoNetworkedField] + public string? ContainerId; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnInsertedIntoContainerComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnInsertedIntoContainerComponent.cs new file mode 100644 index 0000000000..d5616dfd85 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnInsertedIntoContainerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when something is inserted into it. +/// The user is the entity being inserted into the container. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnInsertedIntoContainerComponent : BaseTriggerOnXComponent +{ + /// + /// The container to the entity has to be inserted into. + /// Null will allow all containers. + /// + [DataField, AutoNetworkedField] + public string? ContainerId; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnRemovedFromContainerComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnRemovedFromContainerComponent.cs new file mode 100644 index 0000000000..095b040834 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnRemovedFromContainerComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when something is removed from it. +/// The user is the entity being removed from the container. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnRemovedFromContainerComponent : BaseTriggerOnXComponent +{ + /// + /// The container to the entity has to be removed from. + /// Null will allow all containers. + /// + [DataField, AutoNetworkedField] + public string? ContainerId; +} diff --git a/Content.Shared/Trigger/Systems/TriggerOnContainerInteractionSystem.cs b/Content.Shared/Trigger/Systems/TriggerOnContainerInteractionSystem.cs new file mode 100644 index 0000000000..8fa9308f70 --- /dev/null +++ b/Content.Shared/Trigger/Systems/TriggerOnContainerInteractionSystem.cs @@ -0,0 +1,70 @@ +using Content.Shared.Trigger.Components.Triggers; +using Robust.Shared.Containers; +using Robust.Shared.Timing; + +namespace Content.Shared.Trigger.Systems; + +/// +/// System for creating triggers when entities are inserted into or removed from containers. +/// +public sealed class TriggerOnContainerInteractionSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInsertedIntoContainer); + SubscribeLocalEvent(OnRemovedFromContainer); + SubscribeLocalEvent(OnGotInsertedIntoContainer); + SubscribeLocalEvent(OnGotRemovedFromContainer); + } + + // Used by containers to trigger when entities are inserted into or removed from them + private void OnInsertedIntoContainer(Entity ent, ref EntInsertedIntoContainerMessage args) + { + if (_timing.ApplyingState) + return; + + if (ent.Comp.ContainerId != null && ent.Comp.ContainerId != args.Container.ID) + return; + + _trigger.Trigger(ent.Owner, args.Entity, ent.Comp.KeyOut); + } + + private void OnRemovedFromContainer(Entity ent, ref EntRemovedFromContainerMessage args) + { + if (_timing.ApplyingState) + return; + + if (ent.Comp.ContainerId != null && ent.Comp.ContainerId != args.Container.ID) + return; + + _trigger.Trigger(ent.Owner, args.Entity, ent.Comp.KeyOut); + } + + // Used by entities to trigger when they are inserted into or removed from a container + private void OnGotInsertedIntoContainer(Entity ent, ref EntGotInsertedIntoContainerMessage args) + { + if (_timing.ApplyingState) + return; + + if (ent.Comp.ContainerId != null && ent.Comp.ContainerId != args.Container.ID) + return; + + _trigger.Trigger(ent.Owner, args.Container.Owner, ent.Comp.KeyOut); + } + + private void OnGotRemovedFromContainer(Entity ent, ref EntGotRemovedFromContainerMessage args) + { + if (_timing.ApplyingState) + return; + + if (ent.Comp.ContainerId != null && ent.Comp.ContainerId != args.Container.ID) + return; + + _trigger.Trigger(ent.Owner, args.Container.Owner, ent.Comp.KeyOut); + } +} From d4f50c7f0a6a403ae304637a2a8c6c435d7a0967 Mon Sep 17 00:00:00 2001 From: ScholarNZL Date: Fri, 15 Aug 2025 16:21:51 +1200 Subject: [PATCH 003/194] Animal organs now prefixed with 'animal' (#39228) * Resolves #38980. Animal organs prefixed with 'animal' * Add "animal" prefix to arachnid organ types where base-type applies. * Removed child-level names per Maintainer guidance. * Helps if I leave the parent name details intact... * Hidden bonus mouse organ! --- Resources/Prototypes/Body/Organs/Animal/animal.yml | 11 +++++------ .../Prototypes/Body/Organs/Animal/bloodsucker.yml | 3 --- Resources/Prototypes/Body/Organs/arachnid.yml | 1 - 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/Resources/Prototypes/Body/Organs/Animal/animal.yml b/Resources/Prototypes/Body/Organs/Animal/animal.yml index e59aad9da3..dbf96068fa 100644 --- a/Resources/Prototypes/Body/Organs/Animal/animal.yml +++ b/Resources/Prototypes/Body/Organs/Animal/animal.yml @@ -33,7 +33,7 @@ - type: entity id: OrganAnimalLungs parent: BaseAnimalOrgan - name: lungs + name: animal lungs categories: [ HideSpawnMenu ] components: - type: Sprite @@ -67,7 +67,7 @@ - type: entity id: OrganAnimalStomach parent: BaseAnimalOrgan - name: stomach + name: animal stomach categories: [ HideSpawnMenu ] components: - type: Sprite @@ -96,7 +96,6 @@ - type: entity id: OrganMouseStomach parent: OrganAnimalStomach - name: stomach categories: [ HideSpawnMenu ] components: - type: SolutionContainerManager @@ -110,7 +109,7 @@ - type: entity id: OrganAnimalLiver parent: BaseAnimalOrgan - name: liver + name: animal liver categories: [ HideSpawnMenu ] components: - type: Sprite @@ -129,7 +128,7 @@ - type: entity id: OrganAnimalHeart parent: BaseAnimalOrgan - name: heart + name: animal heart categories: [ HideSpawnMenu ] components: - type: Sprite @@ -149,7 +148,7 @@ - type: entity id: OrganAnimalKidneys parent: BaseAnimalOrgan - name: kidneys + name: animal kidneys categories: [ HideSpawnMenu ] components: - type: Sprite diff --git a/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml b/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml index e360f362d8..6e9b4d5900 100644 --- a/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml +++ b/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml @@ -1,7 +1,6 @@ - type: entity id: OrganBloodsuckerStomach parent: OrganAnimalStomach - name: stomach categories: [ HideSpawnMenu ] components: - type: Metabolizer @@ -10,7 +9,6 @@ - type: entity id: OrganBloodsuckerLiver parent: OrganAnimalLiver - name: liver categories: [ HideSpawnMenu ] components: - type: Metabolizer @@ -19,7 +17,6 @@ - type: entity id: OrganBloodsuckerHeart parent: OrganAnimalHeart - name: heart categories: [ HideSpawnMenu ] components: - type: Metabolizer diff --git a/Resources/Prototypes/Body/Organs/arachnid.yml b/Resources/Prototypes/Body/Organs/arachnid.yml index 20ff344fa1..b044706ecf 100644 --- a/Resources/Prototypes/Body/Organs/arachnid.yml +++ b/Resources/Prototypes/Body/Organs/arachnid.yml @@ -28,7 +28,6 @@ - type: entity id: OrganArachnidStomach parent: OrganAnimalStomach - name: stomach description: "Gross. This is hard to stomach." components: - type: Sprite From 7a31e3c1f8890d7fdacc537e2bfa9e2699e08082 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 15 Aug 2025 04:23:02 +0000 Subject: [PATCH 004/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1c96d95537..05dbd15682 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Blackern5000 - changes: - - message: The mining hardsuit has had it's armor tweaked to be more effective against - fish and less effective against bullets and/or bombs - type: Tweak - id: 8341 - time: '2025-04-25T04:05:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31450 - author: Krzeszny changes: - message: Rewrote the controls guide. @@ -3948,3 +3940,11 @@ id: 8853 time: '2025-08-14T17:32:22.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39472 +- author: ScholarNZL + changes: + - message: Added IC visibility of "animal organs", e.g "animal lungs" etc, to facilitate + recipe creation. + type: Tweak + id: 8854 + time: '2025-08-15T04:21:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39228 From 7a3026b4f89888d6d79a047b902247a3348b63ba Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Fri, 15 Aug 2025 07:33:37 +0200 Subject: [PATCH 005/194] Throwing triggers (#39650) throw triggers --- .../Components/EmitSoundOnThrowComponent.cs | 2 +- Content.Shared/Throwing/ThrowEvents.cs | 58 +++++++------------ Content.Shared/Throwing/ThrowingSystem.cs | 10 +++- Content.Shared/Throwing/ThrownEvent.cs | 10 ---- Content.Shared/Throwing/ThrownItemSystem.cs | 6 +- .../Triggers/TriggerOnThrowComponent.cs | 10 ++++ .../Triggers/TriggerOnThrownComponent.cs | 10 ++++ .../Systems/TriggerSystem.Interaction.cs | 14 ++++- 8 files changed, 68 insertions(+), 52 deletions(-) delete mode 100644 Content.Shared/Throwing/ThrownEvent.cs create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnThrowComponent.cs create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnThrownComponent.cs diff --git a/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs b/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs index 76e9f08076..0498642c00 100644 --- a/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs +++ b/Content.Shared/Sound/Components/EmitSoundOnThrowComponent.cs @@ -3,7 +3,7 @@ using Robust.Shared.GameStates; namespace Content.Shared.Sound.Components; /// -/// Simple sound emitter that emits sound on ThrowEvent +/// Simple sound emitter that emits sound on ThrownEvent /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class EmitSoundOnThrowComponent : BaseEmitSoundComponent; diff --git a/Content.Shared/Throwing/ThrowEvents.cs b/Content.Shared/Throwing/ThrowEvents.cs index fbda80b8ca..8b60a7b4b1 100644 --- a/Content.Shared/Throwing/ThrowEvents.cs +++ b/Content.Shared/Throwing/ThrowEvents.cs @@ -1,39 +1,25 @@ -namespace Content.Shared.Throwing -{ - /// - /// Base class for all throw events. - /// - public abstract class ThrowEvent : HandledEntityEventArgs - { - public readonly EntityUid Thrown; - public readonly EntityUid Target; - public ThrownItemComponent Component; +namespace Content.Shared.Throwing; - public ThrowEvent(EntityUid thrown, EntityUid target, ThrownItemComponent component) - { - Thrown = thrown; - Target = target; - Component = component; - } - } +/// +/// Raised on an entity after it has thrown something. +/// +[ByRefEvent] +public readonly record struct ThrowEvent(EntityUid? User, EntityUid Thrown); - /// - /// Raised directed on the target entity being hit by the thrown entity. - /// - public sealed class ThrowHitByEvent : ThrowEvent - { - public ThrowHitByEvent(EntityUid thrown, EntityUid target, ThrownItemComponent component) : base(thrown, target, component) - { - } - } +/// +/// Raised on an entity after it has been thrown. +/// +[ByRefEvent] +public readonly record struct ThrownEvent(EntityUid? User, EntityUid Thrown); - /// - /// Raised directed on the thrown entity that hits another. - /// - public sealed class ThrowDoHitEvent : ThrowEvent - { - public ThrowDoHitEvent(EntityUid thrown, EntityUid target, ThrownItemComponent component) : base(thrown, target, component) - { - } - } -} +/// +/// Raised directed on the target entity being hit by the thrown entity. +/// +[ByRefEvent] +public readonly record struct ThrowHitByEvent(EntityUid Thrown, EntityUid Target, ThrownItemComponent Component); + +/// +/// Raised directed on the thrown entity that hits another. +/// +[ByRefEvent] +public readonly record struct ThrowDoHitEvent(EntityUid Thrown, EntityUid Target, ThrownItemComponent Component); diff --git a/Content.Shared/Throwing/ThrowingSystem.cs b/Content.Shared/Throwing/ThrowingSystem.cs index ceb9cf8bfb..4e44901c57 100644 --- a/Content.Shared/Throwing/ThrowingSystem.cs +++ b/Content.Shared/Throwing/ThrowingSystem.cs @@ -192,8 +192,6 @@ public sealed class ThrowingSystem : EntitySystem } } - var throwEvent = new ThrownEvent(user, uid); - RaiseLocalEvent(uid, ref throwEvent, true); if (user != null) _adminLogger.Add(LogType.Throw, LogImpact.Low, $"{ToPrettyString(user.Value):user} threw {ToPrettyString(uid):entity}"); @@ -206,6 +204,14 @@ public sealed class ThrowingSystem : EntitySystem var impulseVector = direction.Normalized() * throwSpeed * physics.Mass; _physics.ApplyLinearImpulse(uid, impulseVector, body: physics); + var thrownEvent = new ThrownEvent(user, uid); + RaiseLocalEvent(uid, ref thrownEvent, true); + if (user != null) + { + var throwEvent = new ThrowEvent(user, uid); + RaiseLocalEvent(user.Value, ref throwEvent, true); + } + if (comp.LandTime == null || comp.LandTime <= TimeSpan.Zero) { _thrownSystem.LandComponent(uid, comp, physics, playSound); diff --git a/Content.Shared/Throwing/ThrownEvent.cs b/Content.Shared/Throwing/ThrownEvent.cs deleted file mode 100644 index 70cb6ee43d..0000000000 --- a/Content.Shared/Throwing/ThrownEvent.cs +++ /dev/null @@ -1,10 +0,0 @@ -using JetBrains.Annotations; - -namespace Content.Shared.Throwing; - -/// -/// Raised on thrown entity. -/// -[PublicAPI] -[ByRefEvent] -public readonly record struct ThrownEvent(EntityUid? User, EntityUid Thrown); diff --git a/Content.Shared/Throwing/ThrownItemSystem.cs b/Content.Shared/Throwing/ThrownItemSystem.cs index 65c5a0f13e..5adad359e5 100644 --- a/Content.Shared/Throwing/ThrownItemSystem.cs +++ b/Content.Shared/Throwing/ThrownItemSystem.cs @@ -140,8 +140,10 @@ namespace Content.Shared.Throwing _adminLogger.Add(LogType.ThrowHit, LogImpact.Low, $"{ToPrettyString(thrown):thrown} thrown by {ToPrettyString(component.Thrower.Value):thrower} hit {ToPrettyString(target):target}."); - RaiseLocalEvent(target, new ThrowHitByEvent(thrown, target, component), true); - RaiseLocalEvent(thrown, new ThrowDoHitEvent(thrown, target, component), true); + var hitByEv = new ThrowHitByEvent(thrown, target, component); + var doHitEv = new ThrowDoHitEvent(thrown, target, component); + RaiseLocalEvent(target, ref hitByEv, true); + RaiseLocalEvent(thrown, ref doHitEv, true); } public override void Update(float frameTime) diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnThrowComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnThrowComponent.cs new file mode 100644 index 0000000000..e9249a8f2a --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnThrowComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when after an entity has thrown something. +/// The user is the thrown item. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnThrowComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnThrownComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnThrownComponent.cs new file mode 100644 index 0000000000..e309261711 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnThrownComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity was thrown. +/// The user is the thrower. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnThrownComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs b/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs index 230b628663..39ef4889de 100644 --- a/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs +++ b/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs @@ -2,6 +2,7 @@ using Content.Shared.Interaction; using Content.Shared.Interaction.Events; using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.Throwing; using Content.Shared.Trigger.Components.Triggers; using Content.Shared.Trigger.Components.Effects; @@ -12,10 +13,11 @@ public sealed partial class TriggerSystem private void InitializeInteraction() { SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnActivate); SubscribeLocalEvent(OnUse); SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnThrow); + SubscribeLocalEvent(OnThrown); SubscribeLocalEvent(HandleItemToggleOnTrigger); SubscribeLocalEvent(HandleAnchorOnTrigger); @@ -57,6 +59,16 @@ public sealed partial class TriggerSystem args.Handled = true; } + private void OnThrow(Entity ent, ref ThrowEvent args) + { + Trigger(ent.Owner, args.Thrown, ent.Comp.KeyOut); + } + + private void OnThrown(Entity ent, ref ThrownEvent args) + { + Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } + private void HandleItemToggleOnTrigger(Entity ent, ref TriggerEvent args) { if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) From 2b91f965a2aa68856e7c88c29d934eb67c995a63 Mon Sep 17 00:00:00 2001 From: Winkarst-cpu <74284083+Winkarst-cpu@users.noreply.github.com> Date: Fri, 15 Aug 2025 08:46:27 +0300 Subject: [PATCH 006/194] Add integration test for MobPriceComponent (#39524) Test --- Content.IntegrationTests/Tests/CargoTest.cs | 24 +++++++++++++++++++ .../Entities/Clothing/Head/misc.yml | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/Content.IntegrationTests/Tests/CargoTest.cs b/Content.IntegrationTests/Tests/CargoTest.cs index e5f9fa1e81..5830ea59da 100644 --- a/Content.IntegrationTests/Tests/CargoTest.cs +++ b/Content.IntegrationTests/Tests/CargoTest.cs @@ -5,7 +5,9 @@ using Content.Server.Cargo.Components; using Content.Server.Cargo.Systems; using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; +using Content.Shared.Body.Components; using Content.Shared.Cargo.Prototypes; +using Content.Shared.Mobs.Components; using Content.Shared.Prototypes; using Content.Shared.Stacks; using Content.Shared.Whitelist; @@ -250,4 +252,26 @@ public sealed class CargoTest await pair.CleanReturnAsync(); } + + [Test] + public async Task MobPrice() + { + await using var pair = await PoolManager.GetServerClient(); + + var componentFactory = pair.Server.ResolveDependency(); + + await pair.Server.WaitAssertion(() => + { + Assert.Multiple(() => + { + foreach (var (proto, comp) in pair.GetPrototypesWithComponent()) + { + Assert.That(proto.TryGetComponent(out _, componentFactory), $"Found MobPriceComponent on {proto.ID}, but no BodyComponent!"); + Assert.That(proto.TryGetComponent(out _, componentFactory), $"Found MobPriceComponent on {proto.ID}, but no MobStateComponent!"); + } + }); + }); + + await pair.CleanReturnAsync(); + } } diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 96844d4017..da0f17f324 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -198,7 +198,7 @@ sprite: Clothing/Head/Misc/fancycrown.rsi - type: TypingIndicatorClothing proto: regal - - type: MobPrice + - type: StaticPrice price: 3000 - type: AddAccentClothing accent: MobsterAccent From 5bfd1b180a60d66a445e34e035ea7b8baf2b6dfb Mon Sep 17 00:00:00 2001 From: FlipBrooke <87075384+FlipBrooke@users.noreply.github.com> Date: Thu, 14 Aug 2025 23:56:18 -0600 Subject: [PATCH 007/194] Banana peel headgear fixes (#39457) * Add wearable helmet sprites for banana and mimana peels Made it so banana peels and their variants can be worn as head gear. The sprites were done by myself, so feel free to change or update them! Includes hamster compatibility. * fixed a minor state bug * Review fixes - Removed blank space - Added "FlipBrooke" to all modified meta.jsons, with the added note of which sprites I got the colors from/referenced. * I forgot a comma adds a comma and some periods * Fixes --- .../Objects/Consumable/Food/produce.yml | 9 +++++---- .../Specific/Hydroponics/mimana.rsi/meta.json | 16 ++++++++-------- ...ter.png => peel-equipped-HELMET-hamster.png} | Bin ...pped-HELMET.png => peel-equipped-HELMET.png} | Bin 4 files changed, 13 insertions(+), 12 deletions(-) rename Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/{equipped-HELMET-hamster.png => peel-equipped-HELMET-hamster.png} (100%) rename Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/{equipped-HELMET.png => peel-equipped-HELMET.png} (100%) diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 3841dc06b0..551ea802ca 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -443,6 +443,7 @@ - Trash - BananaPeel - Ruminant + - WhitelistChameleon - HamsterWearable - type: SolutionContainerManager @@ -459,7 +460,7 @@ requiresSpecialDigestion: true - type: Clothing sprite: Objects/Specific/Hydroponics/banana.rsi - equippedState: peel-equipped-HELMET + equippedPrefix: peel slots: - HEAD quickEquip: false @@ -471,7 +472,7 @@ components: - type: Clothing sprite: Objects/Specific/Hydroponics/banana.rsi - equippedState: baked-peel-equipped-HELMET + equippedPrefix: baked-peel - type: Sprite sprite: Objects/Specific/Hydroponics/banana.rsi state: baked-peel @@ -502,7 +503,7 @@ heldPrefix: peel - type: Clothing sprite: Objects/Specific/Hydroponics/mimana.rsi - equippedState: equipped-HELMET + equippedPrefix: peel - type: Slippery slipSound: path: /Audio/Effects/slip.ogg @@ -523,7 +524,7 @@ - type: Slippery - type: Clothing sprite: Objects/Materials/materials.rsi - equippedState: peel-equipped-HELMET + equippedPrefix: peel - type: entity name: carrot diff --git a/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/meta.json index 9bc2def611..ed601a6e35 100644 --- a/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/meta.json @@ -10,14 +10,6 @@ { "name": "dead" }, - { - "name": "equipped-HELMET", - "directions": 4 - }, - { - "name": "equipped-HELMET-hamster", - "directions": 4 - }, { "name": "harvest" }, @@ -33,6 +25,14 @@ { "name": "peel3" }, + { + "name": "peel-equipped-HELMET", + "directions": 4 + }, + { + "name": "peel-equipped-HELMET-hamster", + "directions": 4 + }, { "name": "peel-inhand-left", "directions": 4 diff --git a/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/peel-equipped-HELMET-hamster.png similarity index 100% rename from Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/equipped-HELMET-hamster.png rename to Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/peel-equipped-HELMET-hamster.png diff --git a/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/equipped-HELMET.png b/Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/peel-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/equipped-HELMET.png rename to Resources/Textures/Objects/Specific/Hydroponics/mimana.rsi/peel-equipped-HELMET.png From 766e7e462c424b6f64788fb7f3c7f425a20b3011 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 15 Aug 2025 05:57:26 +0000 Subject: [PATCH 008/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 05dbd15682..7974427302 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Krzeszny - changes: - - message: Rewrote the controls guide. - type: Tweak - id: 8342 - time: '2025-04-25T04:49:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36363 - author: ScarKy0 changes: - message: Interdyne cigs now cost 1TC instead of 2TC. @@ -3948,3 +3941,16 @@ id: 8854 time: '2025-08-15T04:21:51.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39228 +- author: FlipBrooke + changes: + - message: Banana peels and their variants can now be worn as headgear + type: Add + - message: Banana peels will correctly render when selected using chameleon headgear + type: Fix + - message: Banana peels will no longer render as headgear when off a player's head + type: Fix + - message: Banana peels as headgear now correctly displays in the change log + type: Fix + id: 8855 + time: '2025-08-15T05:56:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39457 From d08252facb5c1698539e07a77264cff3c88442f0 Mon Sep 17 00:00:00 2001 From: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Date: Fri, 15 Aug 2025 01:45:41 -0700 Subject: [PATCH 009/194] Fix unbuckle admin logs only showing the ids and not names of the entities involved (#39655) --- Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index 24560cad38..e29ac8f4ed 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -1,7 +1,6 @@ using System.Diagnostics.CodeAnalysis; using System.Numerics; using Content.Shared.Alert; -using Content.Shared.ActionBlocker; using Content.Shared.Buckle.Components; using Content.Shared.Cuffs.Components; using Content.Shared.Database; @@ -12,14 +11,12 @@ using Content.Shared.Movement.Events; using Content.Shared.Movement.Pulling.Events; using Content.Shared.Popups; using Content.Shared.Pulling.Events; -using Content.Shared.Rotation; using Content.Shared.Standing; using Content.Shared.Storage.Components; using Content.Shared.Stunnable; using Content.Shared.Throwing; using Content.Shared.Whitelist; using Robust.Shared.Containers; -using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; @@ -448,9 +445,9 @@ public abstract partial class SharedBuckleSystem private void Unbuckle(Entity buckle, Entity strap, EntityUid? user) { if (user == buckle.Owner) - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{user} unbuckled themselves from {strap}"); + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user):user} unbuckled themselves from {ToPrettyString(strap):strap}"); else if (user != null) - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{user} unbuckled {buckle} from {strap}"); + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user):user} unbuckled {ToPrettyString(buckle):target} from {ToPrettyString(strap):strap}"); _audio.PlayPredicted(strap.Comp.UnbuckleSound, strap, user); From b2c505df6a81da1a7062d01bf9df3fe1548d8c2e Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Fri, 15 Aug 2025 15:48:23 +0200 Subject: [PATCH 010/194] Fix instances of predicted randomness (#39661) init --- Content.Shared/Flash/SharedFlashSystem.cs | 4 +++- Content.Shared/Throwing/CatchableSystem.cs | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Flash/SharedFlashSystem.cs b/Content.Shared/Flash/SharedFlashSystem.cs index dd6c9c91c1..7f69e86042 100644 --- a/Content.Shared/Flash/SharedFlashSystem.cs +++ b/Content.Shared/Flash/SharedFlashSystem.cs @@ -21,6 +21,7 @@ using Robust.Shared.Random; using Robust.Shared.Timing; using System.Linq; using Content.Shared.Movement.Systems; +using Content.Shared.Random.Helpers; namespace Content.Shared.Flash; @@ -204,7 +205,8 @@ public abstract class SharedFlashSystem : EntitySystem foreach (var entity in _entSet) { // TODO: Use RandomPredicted https://github.com/space-wizards/RobustToolbox/pull/5849 - var rand = new System.Random((int)_timing.CurTick.Value + GetNetEntity(entity).Id); + var seed = SharedRandomExtensions.HashCodeCombine(new() { (int)_timing.CurTick.Value, GetNetEntity(entity).Id }); + var rand = new System.Random(seed); if (!rand.Prob(probability)) continue; diff --git a/Content.Shared/Throwing/CatchableSystem.cs b/Content.Shared/Throwing/CatchableSystem.cs index 8f2fd355ba..586397f58b 100644 --- a/Content.Shared/Throwing/CatchableSystem.cs +++ b/Content.Shared/Throwing/CatchableSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.IdentityManagement; using Content.Shared.Popups; +using Content.Shared.Random.Helpers; using Content.Shared.Whitelist; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; @@ -55,7 +56,7 @@ public sealed partial class CatchableSystem : EntitySystem return; // TODO: Replace with RandomPredicted once the engine PR is merged - var seed = HashCode.Combine((int)_timing.CurTick.Value, GetNetEntity(ent).Id); + var seed = SharedRandomExtensions.HashCodeCombine(new() { (int)_timing.CurTick.Value, GetNetEntity(ent).Id }); var rand = new System.Random(seed); if (!rand.Prob(ent.Comp.CatchChance)) return; From f23e8c286153b5742de258a4e722803a1a4fba78 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Fri, 15 Aug 2025 10:06:51 -0400 Subject: [PATCH 011/194] Multiantag Gamemode (#37783) Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Co-authored-by: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Co-authored-by: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> --- .../GameTicking/Managers/ClientGameTicker.cs | 2 + .../Commands/DynamicRuleCommand.cs | 103 +++++++++ .../GameTicking/GameTicker.GameRule.cs | 2 +- .../GameTicking/Rules/DynamicRuleSystem.cs | 195 ++++++++++++++++++ .../Conditions/HasBudgetCondition.cs | 51 +++++ .../Conditions/MaxRuleOccurenceCondition.cs | 54 +++++ .../Conditions/ReoccurrenceDelayCondition.cs | 49 +++++ .../Conditions/RoundDurationCondition.cs | 34 +++ .../EntitySelectors/GroupSelector.cs | 3 + .../GameTicking/Rules/DynamicRuleComponent.cs | 71 +++++++ .../Rules/DynamicRuleCostComponent.cs | 14 ++ .../GameTicking/SharedGameTicker.cs | 6 + .../en-US/commands/toolshed-commands.ftl | 16 ++ .../game-presets/preset-secret.ftl | 3 + .../Prototypes/GameRules/dynamic_rules.yml | 112 ++++++++++ Resources/Prototypes/GameRules/events.yml | 21 +- Resources/Prototypes/GameRules/roundstart.yml | 37 +++- .../Prototypes/GameRules/subgamemodes.yml | 2 + Resources/Prototypes/game_presets.yml | 17 ++ 19 files changed, 787 insertions(+), 5 deletions(-) create mode 100644 Content.Server/GameTicking/Commands/DynamicRuleCommand.cs create mode 100644 Content.Server/GameTicking/Rules/DynamicRuleSystem.cs create mode 100644 Content.Shared/EntityTable/Conditions/HasBudgetCondition.cs create mode 100644 Content.Shared/EntityTable/Conditions/MaxRuleOccurenceCondition.cs create mode 100644 Content.Shared/EntityTable/Conditions/ReoccurrenceDelayCondition.cs create mode 100644 Content.Shared/EntityTable/Conditions/RoundDurationCondition.cs create mode 100644 Content.Shared/GameTicking/Rules/DynamicRuleComponent.cs create mode 100644 Content.Shared/GameTicking/Rules/DynamicRuleCostComponent.cs create mode 100644 Resources/Prototypes/GameRules/dynamic_rules.yml diff --git a/Content.Client/GameTicking/Managers/ClientGameTicker.cs b/Content.Client/GameTicking/Managers/ClientGameTicker.cs index 170b24c02a..4bd91bd06c 100644 --- a/Content.Client/GameTicking/Managers/ClientGameTicker.cs +++ b/Content.Client/GameTicking/Managers/ClientGameTicker.cs @@ -34,6 +34,8 @@ namespace Content.Client.GameTicking.Managers [ViewVariables] public TimeSpan StartTime { get; private set; } [ViewVariables] public new bool Paused { get; private set; } + public override IReadOnlyList<(TimeSpan, string)> AllPreviousGameRules => new List<(TimeSpan, string)>(); + [ViewVariables] public IReadOnlyDictionary, int?>> JobsAvailable => _jobsAvailable; [ViewVariables] public IReadOnlyDictionary StationNames => _stationNames; diff --git a/Content.Server/GameTicking/Commands/DynamicRuleCommand.cs b/Content.Server/GameTicking/Commands/DynamicRuleCommand.cs new file mode 100644 index 0000000000..798e7d0d3a --- /dev/null +++ b/Content.Server/GameTicking/Commands/DynamicRuleCommand.cs @@ -0,0 +1,103 @@ +using System.Linq; +using Content.Server.Administration; +using Content.Server.GameTicking.Rules; +using Content.Shared.Administration; +using Robust.Shared.Prototypes; +using Robust.Shared.Toolshed; + +namespace Content.Server.GameTicking.Commands; + +[ToolshedCommand, AdminCommand(AdminFlags.Round)] +public sealed class DynamicRuleCommand : ToolshedCommand +{ + private DynamicRuleSystem? _dynamicRuleSystem; + + [CommandImplementation("list")] + public IEnumerable List() + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.GetDynamicRules(); + } + + [CommandImplementation("get")] + public EntityUid Get() + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.GetDynamicRules().FirstOrDefault(); + } + + [CommandImplementation("budget")] + public IEnumerable Budget([PipedArgument] IEnumerable input) + => input.Select(Budget); + + [CommandImplementation("budget")] + public float? Budget([PipedArgument] EntityUid input) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.GetRuleBudget(input); + } + + [CommandImplementation("adjust")] + public IEnumerable Adjust([PipedArgument] IEnumerable input, float value) + => input.Select(i => Adjust(i,value)); + + [CommandImplementation("adjust")] + public float? Adjust([PipedArgument] EntityUid input, float value) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.AdjustBudget(input, value); + } + + [CommandImplementation("set")] + public IEnumerable Set([PipedArgument] IEnumerable input, float value) + => input.Select(i => Set(i,value)); + + [CommandImplementation("set")] + public float? Set([PipedArgument] EntityUid input, float value) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.SetBudget(input, value); + } + + [CommandImplementation("dryrun")] + public IEnumerable> DryRun([PipedArgument] IEnumerable input) + => input.Select(DryRun); + + [CommandImplementation("dryrun")] + public IEnumerable DryRun([PipedArgument] EntityUid input) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.DryRun(input); + } + + [CommandImplementation("executenow")] + public IEnumerable> ExecuteNow([PipedArgument] IEnumerable input) + => input.Select(ExecuteNow); + + [CommandImplementation("executenow")] + public IEnumerable ExecuteNow([PipedArgument] EntityUid input) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.ExecuteNow(input); + } + + [CommandImplementation("rules")] + public IEnumerable> Rules([PipedArgument] IEnumerable input) + => input.Select(Rules); + + [CommandImplementation("rules")] + public IEnumerable Rules([PipedArgument] EntityUid input) + { + _dynamicRuleSystem ??= GetSys(); + + return _dynamicRuleSystem.Rules(input); + } +} + diff --git a/Content.Server/GameTicking/GameTicker.GameRule.cs b/Content.Server/GameTicking/GameTicker.GameRule.cs index cf0b0eceb1..1750d3c27a 100644 --- a/Content.Server/GameTicking/GameTicker.GameRule.cs +++ b/Content.Server/GameTicking/GameTicker.GameRule.cs @@ -21,7 +21,7 @@ public sealed partial class GameTicker /// A list storing the start times of all game rules that have been started this round. /// Game rules can be started and stopped at any time, including midround. /// - public IReadOnlyList<(TimeSpan, string)> AllPreviousGameRules => _allPreviousGameRules; + public override IReadOnlyList<(TimeSpan, string)> AllPreviousGameRules => _allPreviousGameRules; private void InitializeGameRules() { diff --git a/Content.Server/GameTicking/Rules/DynamicRuleSystem.cs b/Content.Server/GameTicking/Rules/DynamicRuleSystem.cs new file mode 100644 index 0000000000..b23e9d40f2 --- /dev/null +++ b/Content.Server/GameTicking/Rules/DynamicRuleSystem.cs @@ -0,0 +1,195 @@ +using System.Diagnostics; +using Content.Server.Administration.Logs; +using Content.Server.RoundEnd; +using Content.Shared.Database; +using Content.Shared.EntityTable; +using Content.Shared.EntityTable.Conditions; +using Content.Shared.GameTicking.Components; +using Content.Shared.GameTicking.Rules; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Server.GameTicking.Rules; + +public sealed class DynamicRuleSystem : GameRuleSystem +{ + [Dependency] private readonly IAdminLogManager _adminLog = default!; + [Dependency] private readonly EntityTableSystem _entityTable = default!; + [Dependency] private readonly RoundEndSystem _roundEnd = default!; + [Dependency] private readonly IRobustRandom _random = default!; + + protected override void Added(EntityUid uid, DynamicRuleComponent component, GameRuleComponent gameRule, GameRuleAddedEvent args) + { + base.Added(uid, component, gameRule, args); + + component.Budget = _random.Next(component.StartingBudgetMin, component.StartingBudgetMax);; + component.NextRuleTime = Timing.CurTime + _random.Next(component.MinRuleInterval, component.MaxRuleInterval); + } + + protected override void Started(EntityUid uid, DynamicRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + + // Since we don't know how long until this rule is activated, we need to + // set the last budget update to now so it doesn't immediately give the component a bunch of points. + component.LastBudgetUpdate = Timing.CurTime; + Execute((uid, component)); + } + + protected override void Ended(EntityUid uid, DynamicRuleComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args) + { + base.Ended(uid, component, gameRule, args); + + foreach (var rule in component.Rules) + { + GameTicker.EndGameRule(rule); + } + } + + protected override void ActiveTick(EntityUid uid, DynamicRuleComponent component, GameRuleComponent gameRule, float frameTime) + { + base.ActiveTick(uid, component, gameRule, frameTime); + + if (Timing.CurTime < component.NextRuleTime) + return; + + // don't spawn antags during evac + if (_roundEnd.IsRoundEndRequested()) + return; + + Execute((uid, component)); + } + + /// + /// Generates and returns a list of randomly selected, + /// valid rules to spawn based on . + /// + private IEnumerable GetRuleSpawns(Entity entity) + { + UpdateBudget((entity.Owner, entity.Comp)); + var ctx = new EntityTableContext(new Dictionary + { + { HasBudgetCondition.BudgetContextKey, entity.Comp.Budget }, + }); + + return _entityTable.GetSpawns(entity.Comp.Table, ctx: ctx); + } + + /// + /// Updates the budget of the provided dynamic rule component based on the amount of time since the last update + /// multiplied by the value. + /// + private void UpdateBudget(Entity entity) + { + var duration = (float) (Timing.CurTime - entity.Comp.LastBudgetUpdate).TotalSeconds; + + entity.Comp.Budget += duration * entity.Comp.BudgetPerSecond; + entity.Comp.LastBudgetUpdate = Timing.CurTime; + } + + /// + /// Executes this rule, generating new dynamic rules and starting them. + /// + /// + /// Returns a list of the rules that were executed. + /// + private List Execute(Entity entity) + { + entity.Comp.NextRuleTime = + Timing.CurTime + _random.Next(entity.Comp.MinRuleInterval, entity.Comp.MaxRuleInterval); + + var executedRules = new List(); + + foreach (var rule in GetRuleSpawns(entity)) + { + var res = GameTicker.StartGameRule(rule, out var ruleUid); + Debug.Assert(res); + + executedRules.Add(ruleUid); + + if (TryComp(ruleUid, out var cost)) + { + entity.Comp.Budget -= cost.Cost; + _adminLog.Add(LogType.EventRan, LogImpact.High, $"{ToPrettyString(entity)} ran rule {ToPrettyString(ruleUid)} with cost {cost.Cost} on budget {entity.Comp.Budget}."); + } + else + { + _adminLog.Add(LogType.EventRan, LogImpact.High, $"{ToPrettyString(entity)} ran rule {ToPrettyString(ruleUid)} which had no cost."); + } + } + + entity.Comp.Rules.AddRange(executedRules); + return executedRules; + } + + #region Command Methods + + public List GetDynamicRules() + { + var rules = new List(); + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out _, out var comp)) + { + if (!GameTicker.IsGameRuleActive(uid, comp)) + continue; + rules.Add(uid); + } + + return rules; + } + + public float? GetRuleBudget(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return null; + + UpdateBudget((entity.Owner, entity.Comp)); + return entity.Comp.Budget; + } + + public float? AdjustBudget(Entity entity, float amount) + { + if (!Resolve(entity, ref entity.Comp)) + return null; + + UpdateBudget((entity.Owner, entity.Comp)); + entity.Comp.Budget += amount; + return entity.Comp.Budget; + } + + public float? SetBudget(Entity entity, float amount) + { + if (!Resolve(entity, ref entity.Comp)) + return null; + + entity.Comp.LastBudgetUpdate = Timing.CurTime; + entity.Comp.Budget = amount; + return entity.Comp.Budget; + } + + public IEnumerable DryRun(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return new List(); + + return GetRuleSpawns((entity.Owner, entity.Comp)); + } + + public IEnumerable ExecuteNow(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return new List(); + + return Execute((entity.Owner, entity.Comp)); + } + + public IEnumerable Rules(Entity entity) + { + if (!Resolve(entity, ref entity.Comp)) + return new List(); + + return entity.Comp.Rules; + } + + #endregion +} diff --git a/Content.Shared/EntityTable/Conditions/HasBudgetCondition.cs b/Content.Shared/EntityTable/Conditions/HasBudgetCondition.cs new file mode 100644 index 0000000000..f2489d04aa --- /dev/null +++ b/Content.Shared/EntityTable/Conditions/HasBudgetCondition.cs @@ -0,0 +1,51 @@ +using Content.Shared.EntityTable.EntitySelectors; +using Content.Shared.GameTicking.Rules; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityTable.Conditions; + +/// +/// Condition that only succeeds if a table supplies a sufficient "cost" to a given +/// +public sealed partial class HasBudgetCondition : EntityTableCondition +{ + public const string BudgetContextKey = "Budget"; + + /// + /// Used for determining the cost for the budget. + /// If null, attempts to fetch the cost from the attached selector. + /// + [DataField] + public int? CostOverride; + + protected override bool EvaluateImplementation(EntityTableSelector root, + IEntityManager entMan, + IPrototypeManager proto, + EntityTableContext ctx) + { + if (!ctx.TryGetData(BudgetContextKey, out var budget)) + return false; + + int cost; + if (CostOverride != null) + { + cost = CostOverride.Value; + } + else + { + if (root is not EntSelector entSelector) + return false; + + if (!proto.Index(entSelector.Id).TryGetComponent(out DynamicRuleCostComponent? costComponent, entMan.ComponentFactory)) + { + var log = Logger.GetSawmill("HasBudgetCondition"); + log.Error($"Rule {entSelector.Id} does not have a DynamicRuleCostComponent."); + return false; + } + + cost = costComponent.Cost; + } + + return budget >= cost; + } +} diff --git a/Content.Shared/EntityTable/Conditions/MaxRuleOccurenceCondition.cs b/Content.Shared/EntityTable/Conditions/MaxRuleOccurenceCondition.cs new file mode 100644 index 0000000000..1e55feb338 --- /dev/null +++ b/Content.Shared/EntityTable/Conditions/MaxRuleOccurenceCondition.cs @@ -0,0 +1,54 @@ +using System.Linq; +using Content.Shared.EntityTable.EntitySelectors; +using Content.Shared.GameTicking; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityTable.Conditions; + +/// +/// Condition that succeeds only when the specified gamerule has been run under a certain amount of times +/// +/// +/// This is meant to be attached directly to EntSelector. If it is not, then you'll need to specify what rule +/// is being used inside RuleOverride. +/// +public sealed partial class MaxRuleOccurenceCondition : EntityTableCondition +{ + /// + /// The maximum amount of times this rule can have already be run. + /// + [DataField] + public int Max = 1; + + /// + /// The rule that is being checked for occurrences. + /// If null, it will use the value on the attached selector. + /// + [DataField] + public EntProtoId? RuleOverride; + + protected override bool EvaluateImplementation(EntityTableSelector root, + IEntityManager entMan, + IPrototypeManager proto, + EntityTableContext ctx) + { + string rule; + if (RuleOverride is { } ruleOverride) + { + rule = ruleOverride; + } + else + { + rule = root is EntSelector entSelector + ? entSelector.Id + : string.Empty; + } + + if (rule == string.Empty) + return false; + + var gameTicker = entMan.System(); + + return gameTicker.AllPreviousGameRules.Count(p => p.Item2 == rule) < Max; + } +} diff --git a/Content.Shared/EntityTable/Conditions/ReoccurrenceDelayCondition.cs b/Content.Shared/EntityTable/Conditions/ReoccurrenceDelayCondition.cs new file mode 100644 index 0000000000..0329592a4a --- /dev/null +++ b/Content.Shared/EntityTable/Conditions/ReoccurrenceDelayCondition.cs @@ -0,0 +1,49 @@ +using System.ComponentModel.DataAnnotations; +using System.Linq; +using Content.Shared.EntityTable.EntitySelectors; +using Content.Shared.GameTicking; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityTable.Conditions; + +public sealed partial class ReoccurrenceDelayCondition : EntityTableCondition +{ + /// + /// The maximum amount of times this rule can have already be run. + /// + [DataField] + public TimeSpan Delay = TimeSpan.Zero; + + /// + /// The rule that is being checked for occurrences. + /// If null, it will use the value on the attached selector. + /// + [DataField] + public EntProtoId? RuleOverride; + + protected override bool EvaluateImplementation(EntityTableSelector root, + IEntityManager entMan, + IPrototypeManager proto, + EntityTableContext ctx) + { + string rule; + if (RuleOverride is { } ruleOverride) + { + rule = ruleOverride; + } + else + { + rule = root is EntSelector entSelector + ? entSelector.Id + : string.Empty; + } + + if (rule == string.Empty) + return false; + + var gameTicker = entMan.System(); + + return gameTicker.AllPreviousGameRules.Any( + p => p.Item2 == rule && p.Item1 + Delay <= gameTicker.RoundDuration()); + } +} diff --git a/Content.Shared/EntityTable/Conditions/RoundDurationCondition.cs b/Content.Shared/EntityTable/Conditions/RoundDurationCondition.cs new file mode 100644 index 0000000000..518faf4bc6 --- /dev/null +++ b/Content.Shared/EntityTable/Conditions/RoundDurationCondition.cs @@ -0,0 +1,34 @@ +using Content.Shared.EntityTable.EntitySelectors; +using Content.Shared.GameTicking; +using Robust.Shared.Prototypes; + +namespace Content.Shared.EntityTable.Conditions; + +/// +/// Condition that passes only if the current round time falls between the minimum and maximum time values. +/// +public sealed partial class RoundDurationCondition : EntityTableCondition +{ + /// + /// Minimum time the round must have gone on for this condition to pass. + /// + [DataField] + public TimeSpan Min = TimeSpan.Zero; + + /// + /// Maximum amount of time the round could go on for this condition to pass. + /// + [DataField] + public TimeSpan Max = TimeSpan.MaxValue; + + protected override bool EvaluateImplementation(EntityTableSelector root, + IEntityManager entMan, + IPrototypeManager proto, + EntityTableContext ctx) + { + var gameTicker = entMan.System(); + var duration = gameTicker.RoundDuration(); + + return duration >= Min && duration <= Max; + } +} diff --git a/Content.Shared/EntityTable/EntitySelectors/GroupSelector.cs b/Content.Shared/EntityTable/EntitySelectors/GroupSelector.cs index 25c81a4565..0d2a451bdc 100644 --- a/Content.Shared/EntityTable/EntitySelectors/GroupSelector.cs +++ b/Content.Shared/EntityTable/EntitySelectors/GroupSelector.cs @@ -26,6 +26,9 @@ public sealed partial class GroupSelector : EntityTableSelector children.Add(child, child.Weight); } + if (children.Count == 0) + return Array.Empty(); + var pick = SharedRandomExtensions.Pick(children, rand); return pick.GetSpawns(rand, entMan, proto, ctx); diff --git a/Content.Shared/GameTicking/Rules/DynamicRuleComponent.cs b/Content.Shared/GameTicking/Rules/DynamicRuleComponent.cs new file mode 100644 index 0000000000..7782717758 --- /dev/null +++ b/Content.Shared/GameTicking/Rules/DynamicRuleComponent.cs @@ -0,0 +1,71 @@ +using Content.Shared.EntityTable.EntitySelectors; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.GameTicking.Rules; + +/// +/// Gamerule the spawns multiple antags at intervals based on a budget +/// +[RegisterComponent, AutoGenerateComponentPause] +public sealed partial class DynamicRuleComponent : Component +{ + /// + /// The total budget for antags. + /// + [DataField] + public float Budget; + + /// + /// The last time budget was updated. + /// + [DataField] + public TimeSpan LastBudgetUpdate; + + /// + /// The amount of budget accumulated every second. + /// + [DataField] + public float BudgetPerSecond = 0.1f; + + /// + /// The minimum or lower bound for budgets to start at. + /// + [DataField] + public int StartingBudgetMin = 200; + + /// + /// The maximum or upper bound for budgets to start at. + /// + [DataField] + public int StartingBudgetMax = 350; + + /// + /// The time at which the next rule will start + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer)), AutoPausedField] + public TimeSpan NextRuleTime; + + /// + /// Minimum delay between rules + /// + [DataField] + public TimeSpan MinRuleInterval = TimeSpan.FromMinutes(10); + + /// + /// Maximum delay between rules + /// + [DataField] + public TimeSpan MaxRuleInterval = TimeSpan.FromMinutes(30); + + /// + /// A table of rules that are picked from. + /// + [DataField] + public EntityTableSelector Table = new NoneSelector(); + + /// + /// The rules that have been spawned + /// + [DataField] + public List Rules = new(); +} diff --git a/Content.Shared/GameTicking/Rules/DynamicRuleCostComponent.cs b/Content.Shared/GameTicking/Rules/DynamicRuleCostComponent.cs new file mode 100644 index 0000000000..180b168dc1 --- /dev/null +++ b/Content.Shared/GameTicking/Rules/DynamicRuleCostComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Shared.GameTicking.Rules; + +/// +/// Component that tracks how much a rule "costs" for Dynamic +/// +[RegisterComponent] +public sealed partial class DynamicRuleCostComponent : Component +{ + /// + /// The amount of budget a rule takes up + /// + [DataField(required: true)] + public int Cost; +} diff --git a/Content.Shared/GameTicking/SharedGameTicker.cs b/Content.Shared/GameTicking/SharedGameTicker.cs index 6b8bc8685b..877a849d07 100644 --- a/Content.Shared/GameTicking/SharedGameTicker.cs +++ b/Content.Shared/GameTicking/SharedGameTicker.cs @@ -15,6 +15,12 @@ namespace Content.Shared.GameTicking [Dependency] private readonly IReplayRecordingManager _replay = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; + /// + /// A list storing the start times of all game rules that have been started this round. + /// Game rules can be started and stopped at any time, including midround. + /// + public abstract IReadOnlyList<(TimeSpan, string)> AllPreviousGameRules { get; } + // See ideally these would be pulled from the job definition or something. // But this is easier, and at least it isn't hardcoded. //TODO: Move these, they really belong in StationJobsSystem or a cvar. diff --git a/Resources/Locale/en-US/commands/toolshed-commands.ftl b/Resources/Locale/en-US/commands/toolshed-commands.ftl index cc5c03d52b..33bf53f9e3 100644 --- a/Resources/Locale/en-US/commands/toolshed-commands.ftl +++ b/Resources/Locale/en-US/commands/toolshed-commands.ftl @@ -106,3 +106,19 @@ command-description-scale-multiplyvector = Multiply an entity's sprite size with a certain 2d vector (without changing its fixture). command-description-scale-multiplywithfixture = Multiply an entity's sprite size with a certain factor (including its fixture). +command-description-dynamicrule-list = + Lists all currently active dynamic rules, usually this is just one. +command-description-dynamicrule-get = + Gets the currently active dynamic rule. +command-description-dynamicrule-budget = + Gets the current budget of the piped dynamic rule(s). +command-description-dynamicrule-adjust = + Adjusts the budget of the piped dynamic rule(s) by the specified amount. +command-description-dynamicrule-set = + Sets the budget of the piped dynamic rule(s) to the specified amount. +command-description-dynamicrule-dryrun = + Returns a list of rules that could be activated if the rule ran at this moment with all current context. This is not a complete list of every single rule that could be run, just a sample of the current valid ones. +command-description-dynamicrule-executenow = + Executes the piped dynamic rule as if it had reached its regular update time. +command-description-dynamicrule-rules = + Gets a list of all the rules spawned by the piped dynamic rule. diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-secret.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-secret.ftl index 892e5c3994..2551b0073d 100644 --- a/Resources/Locale/en-US/game-ticking/game-presets/preset-secret.ftl +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-secret.ftl @@ -1,2 +1,5 @@ secret-title = Secret secret-description = It's a secret to everyone. The threats you encounter are randomized. + +dynamic-title = Dynamic +dynamic-description = No one knows what's coming. You can encounter any number of threats. diff --git a/Resources/Prototypes/GameRules/dynamic_rules.yml b/Resources/Prototypes/GameRules/dynamic_rules.yml new file mode 100644 index 0000000000..02298e0faa --- /dev/null +++ b/Resources/Prototypes/GameRules/dynamic_rules.yml @@ -0,0 +1,112 @@ +- type: entity + parent: BaseGameRule + id: DynamicRule + components: + - type: GameRule + minPlayers: 5 # <5 is greenshift hours, buddy. + - type: DynamicRule + startingBudgetMin: 200 + startingBudgetMax: 350 + table: !type:AllSelector + children: + # Roundstart Major Rules + - !type:GroupSelector + conditions: + - !type:RoundDurationCondition + max: 1 + children: + - id: Traitor + weight: 60 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - id: Nukeops + weight: 25 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 20 + - id: Revolutionary + weight: 5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - id: Zombie + weight: 5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 20 + - id: Wizard + weight: 5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 10 + # Roundstart Minor Rules + - !type:GroupSelector + conditions: + - !type:RoundDurationCondition + max: 1 + children: + - id: Thief + prob: 0.5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + # Midround rules + - !type:GroupSelector + conditions: + - !type:RoundDurationCondition + min: 300 # minimum 5 minutes + children: + - id: SleeperAgents + weight: 15 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:RoundDurationCondition + min: 900 # 15 minutes + - id: DragonSpawn + weight: 15 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:RoundDurationCondition + min: 900 # 15 minutes + - id: NinjaSpawn + weight: 20 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:RoundDurationCondition + min: 900 # 15 minutes + - id: ParadoxCloneSpawn + weight: 25 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + max: 2 + - !type:RoundDurationCondition + min: 600 # 10 minutes + - id: ZombieOutbreak + weight: 2.5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 20 + - !type:RoundDurationCondition + min: 2700 # 45 minutes + - id: LoneOpsSpawn + weight: 5 + conditions: + - !type:HasBudgetCondition + - !type:MaxRuleOccurenceCondition + - !type:PlayerCountCondition + min: 20 + - !type:RoundDurationCondition + min: 2100 # 35 minutes diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 78602f97b9..2642c0286b 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -30,15 +30,20 @@ table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp children: - id: ClosetSkeleton - - id: DragonSpawn - id: KingRatMigration + - id: RevenantSpawn + - id: DerelictCyborgSpawn + +- type: entityTable + id: ModerateAntagEventsTable + table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp + children: + - id: DragonSpawn - id: NinjaSpawn - id: ParadoxCloneSpawn - - id: RevenantSpawn - id: SleeperAgents - id: ZombieOutbreak - id: LoneOpsSpawn - - id: DerelictCyborgSpawn - id: WizardSpawn - type: entity @@ -183,6 +188,8 @@ pickPlayer: false mindRoles: - MindRoleDragon + - type: DynamicRuleCost + cost: 75 - type: entity parent: BaseGameRule @@ -233,6 +240,8 @@ nameFormat: name-format-ninja mindRoles: - MindRoleNinja + - type: DynamicRuleCost + cost: 75 - type: entity parent: BaseGameRule @@ -269,6 +278,8 @@ sound: /Audio/Misc/paradox_clone_greeting.ogg mindRoles: - MindRoleParadoxClone + - type: DynamicRuleCost + cost: 50 - type: entity parent: BaseGameRule @@ -520,6 +531,8 @@ - type: InitialInfected mindRoles: - MindRoleInitialInfected + - type: DynamicRuleCost + cost: 200 - type: entity parent: BaseNukeopsRule @@ -556,6 +569,8 @@ - Syndicate mindRoles: - MindRoleNukeops + - type: DynamicRuleCost + cost: 75 - type: entity parent: BaseTraitorRule diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index a7c7af7f37..df4d59fd5a 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -173,6 +173,8 @@ - Syndicate mindRoles: - MindRoleNukeops + - type: DynamicRuleCost + cost: 200 - type: entity abstract: true @@ -188,6 +190,8 @@ maxDifficulty: 5 - type: AntagSelection agentName: traitor-round-end-agent-name + - type: DynamicRuleCost + cost: 100 - type: entity parent: BaseTraitorRule @@ -207,7 +211,7 @@ blacklist: components: - AntagImmune - lateJoinAdditional: true + lateJoinAdditional: false mindRoles: - MindRoleTraitor @@ -278,6 +282,8 @@ - type: HeadRevolutionary mindRoles: - MindRoleHeadRevolutionary + - type: DynamicRuleCost + cost: 200 - type: entity id: Sandbox @@ -341,6 +347,8 @@ nameFormat: name-format-wizard mindRoles: - MindRoleWizard + - type: DynamicRuleCost + cost: 150 - type: entity id: Zombie @@ -373,6 +381,8 @@ - type: InitialInfected mindRoles: - MindRoleInitialInfected + - type: DynamicRuleCost + cost: 200 # This rule makes the chosen players unable to get other antag rules, as a way to prevent metagaming job rolls. # Put this before antags assigned to station jobs, but after non-job antags (NukeOps/Wiz). @@ -400,6 +410,8 @@ tableId: BasicCalmEventsTable - !type:NestedSelector tableId: BasicAntagEventsTable + - !type:NestedSelector + tableId: ModerateAntagEventsTable - !type:NestedSelector tableId: CargoGiftsTable - !type:NestedSelector @@ -407,6 +419,21 @@ - !type:NestedSelector tableId: SpicyPestEventsTable +- type: entityTable + id: DynamicGameRulesTable + table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp + children: + - !type:NestedSelector + tableId: BasicCalmEventsTable + - !type:NestedSelector + tableId: BasicAntagEventsTable + - !type:NestedSelector + tableId: CargoGiftsTable + - !type:NestedSelector + tableId: CalmPestEventsTable + - !type:NestedSelector + tableId: SpicyPestEventsTable + - type: entityTable id: SpaceTrafficControlTable table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp @@ -426,6 +453,14 @@ scheduledGameRules: !type:NestedSelector tableId: BasicGameRulesTable +- type: entity + id: DynamicStationEventScheduler # this isn't the dynamic mode, but rather the station event scheduler used for dynamic + parent: BaseGameRule + components: + - type: BasicStationEventScheduler + scheduledGameRules: !type:NestedSelector + tableId: DynamicGameRulesTable + - type: entity id: RampingStationEventScheduler parent: BaseGameRule diff --git a/Resources/Prototypes/GameRules/subgamemodes.yml b/Resources/Prototypes/GameRules/subgamemodes.yml index 2213623c28..0dbef6e06b 100644 --- a/Resources/Prototypes/GameRules/subgamemodes.yml +++ b/Resources/Prototypes/GameRules/subgamemodes.yml @@ -34,6 +34,8 @@ - MindRoleThief briefing: sound: "/Audio/Misc/thief_greeting.ogg" + - type: DynamicRuleCost + cost: 75 # Needs testing - type: entity diff --git a/Resources/Prototypes/game_presets.yml b/Resources/Prototypes/game_presets.yml index 160bb5e4a0..a9d33b0b76 100644 --- a/Resources/Prototypes/game_presets.yml +++ b/Resources/Prototypes/game_presets.yml @@ -96,6 +96,23 @@ - SpaceTrafficControlFriendlyEventScheduler - BasicRoundstartVariation +- type: gamePreset + id: Dynamic + alias: + - dynamic + - multiantag + - director + name: dynamic-title + showInVote: true + description: dynamic-description + rules: + - DynamicRule + - DummyNonAntag + - DynamicStationEventScheduler + - MeteorSwarmScheduler + - SpaceTrafficControlEventScheduler + - BasicRoundstartVariation + - type: gamePreset id: Secret alias: From 890ac9f64582329b61be307f4080cff3e66a4236 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 15 Aug 2025 14:07:58 +0000 Subject: [PATCH 012/194] Automatic changelog update --- Resources/Changelog/Admin.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 988b9038a7..60e38dc6e3 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -1330,5 +1330,13 @@ Entries: id: 162 time: '2025-08-08T19:00:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35531 +- author: EmoGarbage404, soutbridge-fur + changes: + - message: A new experimental gamemode "Dynamic" has been added to the voting options + and admin seletion. + type: Add + id: 163 + time: '2025-08-15T14:06:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37783 Name: Admin Order: 2 From a8d6dbc3241c880f846a7abba8bd330788df9fc1 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Fri, 15 Aug 2025 09:10:38 -0700 Subject: [PATCH 013/194] Added button and manager for in game bug reports (Part 1) (#35350) * Added the button and manager * Minor cleanup * Reigstered to the wrong thing! * Unload UI * Address the review * First commit :) * Some cleanup * Added some comments and now the placehoder text goes away once you start typing * Some cleanup and better test command * Basic rate limiter class (Not finished) * Cleanup * Removed forgotten comment xD * Whitespace removal * Minor cleanup, cvar hours -> minutes * More minor tweaks * Don't cache timer and add examples to fields * Added CCvar for time between bug reports * Minor crash when restarting rounds fixed * It compiled on my computer! * Fix comment indents * Remove unecessary async, removed magic strings, simplfied sawmill to not use post inject * Make struct private * Simplfiy TryGetLongHeader * Changed list to enumerable * URI cleanup * Got rid of the queue, used a much better way! * Made the comments a little better and fix some issues with them * Added header consts * Maximum reports per round is now an error message * Time between reports is now in seconds * Change ordering * Change hotkey to O * only update window when its open * Split up validation * address review * Address a few issues * inheritance fix * API now doesn't keep track of requests, just uses the rate limited response from github * Rough idea of how channels would work * refactor: reorganized code, placed rate limiter into http-client-handler AND manager (usually only manager-one should work) * cleanup * Add user agent so api doesn't get mad * Better error logs * Cleanup * It now throws! * refactor: renaming, moved some methods, xml-doc cleanups * refactor: BugReportWindow formatted to convention, enforced 1 updates only 1 per sec * Add very basic licence info * Fixed the issues! * Set ccvar default to false * make the button better * fix test fail silly me * Adress the review! * refactor: cleanup of entry point code, binding server-side code with client-facing manager * Resolve the other issues and cleanup and stuff smile :) * not entity * fixes * Cleanup * Cleanup * forgor region * fixes * Split up function and more stuff * Better unsubs yaygit add -A * I pray... * Revert "I pray..." This reverts commit 9629fb4f1289c9009a03e4e4facd9ae975e6303e. * I think I have to add it in the pr * Revert "I think I have to add it in the pr" This reverts commit e185b42f570fe5f0f51e0e44761d7938e22e67f7. * Tweaks * Minor tweak to permissions --------- Co-authored-by: pa.pecherskij --- .../BugReport/BugReportUIController.cs | 113 +++++ .../BugReport/Windows/BugReportWindow.xaml | 31 ++ .../BugReport/Windows/BugReportWindow.xaml.cs | 181 ++++++++ .../MenuBar/GameTopMenuBarUIController.cs | 4 + .../MenuBar/Widgets/GameTopMenuBar.xaml | 9 + Content.Server/BugReports/BugReportManager.cs | 221 ++++++++++ Content.Server/BugReports/IBugReportEvents.cs | 94 ++++ .../BugReports/IBugReportManager.cs | 22 + Content.Server/Entry/EntryPoint.cs | 10 +- .../GameTicking/GameTicker.RoundFlow.cs | 2 + Content.Server/GameTicking/GameTicker.cs | 2 + .../Github/Commands/TestGithubApiCommand.cs | 71 +++ Content.Server/Github/GithubApiManager.cs | 53 +++ .../Github/GithubBackgroundWorker.cs | 74 ++++ Content.Server/Github/GithubClient.cs | 417 ++++++++++++++++++ .../Github/Requests/CreateIssueRequest.cs | 38 ++ .../Github/Requests/IGithubRequest.cs | 44 ++ .../Github/Requests/InstallationsRequest.cs | 18 + .../Github/Requests/TokenRequest.cs | 22 + .../Github/Responses/InstallationResponse.cs | 21 + .../Github/Responses/TokenResponse.cs | 15 + Content.Server/Github/RetryHttpHandler.cs | 100 +++++ Content.Server/IoC/ServerContentIoC.cs | 7 +- Content.Shared.Database/LogType.cs | 6 + Content.Shared/BugReport/BugReportMessage.cs | 42 ++ Content.Shared/CCVar/CCVars.BugReports.cs | 64 +++ Content.Shared/CCVar/CCVars.Github.cs | 71 +++ Resources/Locale/en-US/HUD/game-hud.ftl | 1 + .../en-US/bugreport/bug-report-report.ftl | 1 + .../en-US/bugreport/bug-report-window.ftl | 13 + Resources/Locale/en-US/github/github-api.ftl | 36 ++ Resources/Textures/Interface/bug.svg | 13 + .../Textures/Interface/bug.svg.192dpi.png | Bin 0 -> 1852 bytes .../Textures/Interface/bug.svg.192dpi.png.yml | 2 + Resources/Textures/Interface/splat.svg | 14 + .../Textures/Interface/splat.svg.192dpi.png | Bin 0 -> 2069 bytes .../Interface/splat.svg.192dpi.png.yml | 2 + 37 files changed, 1831 insertions(+), 3 deletions(-) create mode 100644 Content.Client/UserInterface/Systems/BugReport/BugReportUIController.cs create mode 100644 Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml create mode 100644 Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml.cs create mode 100644 Content.Server/BugReports/BugReportManager.cs create mode 100644 Content.Server/BugReports/IBugReportEvents.cs create mode 100644 Content.Server/BugReports/IBugReportManager.cs create mode 100644 Content.Server/Github/Commands/TestGithubApiCommand.cs create mode 100644 Content.Server/Github/GithubApiManager.cs create mode 100644 Content.Server/Github/GithubBackgroundWorker.cs create mode 100644 Content.Server/Github/GithubClient.cs create mode 100644 Content.Server/Github/Requests/CreateIssueRequest.cs create mode 100644 Content.Server/Github/Requests/IGithubRequest.cs create mode 100644 Content.Server/Github/Requests/InstallationsRequest.cs create mode 100644 Content.Server/Github/Requests/TokenRequest.cs create mode 100644 Content.Server/Github/Responses/InstallationResponse.cs create mode 100644 Content.Server/Github/Responses/TokenResponse.cs create mode 100644 Content.Server/Github/RetryHttpHandler.cs create mode 100644 Content.Shared/BugReport/BugReportMessage.cs create mode 100644 Content.Shared/CCVar/CCVars.BugReports.cs create mode 100644 Content.Shared/CCVar/CCVars.Github.cs create mode 100644 Resources/Locale/en-US/bugreport/bug-report-report.ftl create mode 100644 Resources/Locale/en-US/bugreport/bug-report-window.ftl create mode 100644 Resources/Locale/en-US/github/github-api.ftl create mode 100644 Resources/Textures/Interface/bug.svg create mode 100644 Resources/Textures/Interface/bug.svg.192dpi.png create mode 100644 Resources/Textures/Interface/bug.svg.192dpi.png.yml create mode 100644 Resources/Textures/Interface/splat.svg create mode 100644 Resources/Textures/Interface/splat.svg.192dpi.png create mode 100644 Resources/Textures/Interface/splat.svg.192dpi.png.yml diff --git a/Content.Client/UserInterface/Systems/BugReport/BugReportUIController.cs b/Content.Client/UserInterface/Systems/BugReport/BugReportUIController.cs new file mode 100644 index 0000000000..7d45829bd2 --- /dev/null +++ b/Content.Client/UserInterface/Systems/BugReport/BugReportUIController.cs @@ -0,0 +1,113 @@ +using Content.Client.Gameplay; +using Content.Client.Resources; +using Content.Client.UserInterface.Controls; +using Content.Client.UserInterface.Systems.BugReport.Windows; +using Content.Client.UserInterface.Systems.MenuBar.Widgets; +using Content.Shared.BugReport; +using Content.Shared.CCVar; +using JetBrains.Annotations; +using Robust.Client.ResourceManagement; +using Robust.Client.UserInterface.Controllers; +using Robust.Client.UserInterface.Controls; +using Robust.Shared.Configuration; +using Robust.Shared.Network; +using Robust.Shared.Utility; + +namespace Content.Client.UserInterface.Systems.BugReport; + +[UsedImplicitly] +public sealed class BugReportUIController : UIController, IOnStateEntered, IOnStateExited +{ + [Dependency] private readonly IClientNetManager _net = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly IResourceCache _resource = default!; + + // This is the link to the hotbar button + private MenuButton? BugReportButton => UIManager.GetActiveUIWidgetOrNull()?.ReportBugButton; + + // Don't clear this window. It needs to be saved so the input doesn't get erased when it's closed! + private BugReportWindow _bugReportWindow = default!; + + private ResPath Bug = new("/Textures/Interface/bug.svg.192dpi.png"); + private ResPath Splat = new("/Textures/Interface/splat.svg.192dpi.png"); + + public void OnStateEntered(GameplayState state) + { + SetupWindow(); + } + + public void OnStateExited(GameplayState state) + { + CleanupWindow(); + } + + public void LoadButton() + { + if (BugReportButton != null) + BugReportButton.OnPressed += ButtonToggleWindow; + } + + public void UnloadButton() + { + if (BugReportButton != null) + BugReportButton.OnPressed -= ButtonToggleWindow; + } + + private void SetupWindow() + { + if (BugReportButton == null) + return; + + _bugReportWindow = UIManager.CreateWindow(); + // This is to make sure the hotbar button gets checked and unchecked when the window is opened / closed. + _bugReportWindow.OnClose += () => + { + BugReportButton.Pressed = false; + BugReportButton.Icon = _resource.GetTexture(Bug); + }; + _bugReportWindow.OnOpen += () => + { + BugReportButton.Pressed = true; + BugReportButton.Icon = _resource.GetTexture(Splat); + }; + + _bugReportWindow.OnBugReportSubmitted += OnBugReportSubmitted; + + _cfg.OnValueChanged(CCVars.EnablePlayerBugReports, UpdateButtonVisibility, true); + } + + private void CleanupWindow() + { + _bugReportWindow.CleanupCCvars(); + + _cfg.UnsubValueChanged(CCVars.EnablePlayerBugReports, UpdateButtonVisibility); + } + + private void ToggleWindow() + { + if (_bugReportWindow.IsOpen) + _bugReportWindow.Close(); + else + _bugReportWindow.OpenCentered(); + } + + private void OnBugReportSubmitted(PlayerBugReportInformation report) + { + var message = new BugReportMessage { ReportInformation = report }; + _net.ClientSendMessage(message); + _bugReportWindow.Close(); + } + + private void ButtonToggleWindow(BaseButton.ButtonEventArgs obj) + { + ToggleWindow(); + } + + private void UpdateButtonVisibility(bool val) + { + if (BugReportButton == null) + return; + + BugReportButton.Visible = val; + } +} diff --git a/Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml b/Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml new file mode 100644 index 0000000000..d3d6570a41 --- /dev/null +++ b/Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml.cs b/Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml.cs new file mode 100644 index 0000000000..a43ba15d68 --- /dev/null +++ b/Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml.cs @@ -0,0 +1,181 @@ +using System.Diagnostics.CodeAnalysis; +using Content.Client.Players.PlayTimeTracking; +using Content.Shared.BugReport; +using Content.Shared.CCVar; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.CustomControls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Configuration; +using Robust.Shared.Timing; +using Robust.Shared.Utility; + +namespace Content.Client.UserInterface.Systems.BugReport.Windows; + +[GenerateTypedNameReferences] +public sealed partial class BugReportWindow : DefaultWindow +{ + [Dependency] private readonly IConfigurationManager _cfg = default!; + // TODO: Use SharedPlaytimeManager when its refactored out of job requirements + [Dependency] private readonly JobRequirementsManager _job = default!; + + // This action gets invoked when the user submits a bug report. + public event Action? OnBugReportSubmitted; + + private DateTime _lastIsEnabledUpdated; + private readonly TimeSpan _isEnabledUpdateInterval = TimeSpan.FromSeconds(1); + + // These are NOT always up to date. If someone disconnects and reconnects, the values will be reset. + // The only other way of getting updated values would be a message from client -> server then from server -> client. + // I don't think that is worth the added complexity. + private DateTime _lastBugReportSubmittedTime = DateTime.MinValue; + private int _amountOfBugReportsSubmitted; + + private readonly ConfigurationMultiSubscriptionBuilder _configSub; + + #region ccvar + + private bool _enablePlayerBugReports; + private int _minimumPlaytimeBugReports; + private int _minimumTimeBetweenBugReports; + private int _maximumBugReportsPerRound; + + private int _maximumBugReportTitleLength; + private int _minimumBugReportTitleLength; + private int _maximumBugReportDescriptionLength; + private int _minimumBugReportDescriptionLength; + + #endregion + + public BugReportWindow() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + + _configSub = _cfg.SubscribeMultiple() + .OnValueChanged(CCVars.EnablePlayerBugReports, x => _enablePlayerBugReports = x, true) + .OnValueChanged(CCVars.MinimumPlaytimeInMinutesToEnableBugReports, x => _minimumPlaytimeBugReports = x, true) + .OnValueChanged(CCVars.MinimumSecondsBetweenBugReports, x => _minimumTimeBetweenBugReports = x, true) + .OnValueChanged(CCVars.MaximumBugReportsPerRound, x => _maximumBugReportsPerRound = x, true) + .OnValueChanged(CCVars.MaximumBugReportTitleLength, x => _maximumBugReportTitleLength = x, true) + .OnValueChanged(CCVars.MinimumBugReportTitleLength, x => _minimumBugReportTitleLength = x, true) + .OnValueChanged(CCVars.MaximumBugReportDescriptionLength, x => _maximumBugReportDescriptionLength = x, true) + .OnValueChanged(CCVars.MinimumBugReportDescriptionLength, x => _minimumBugReportDescriptionLength = x, true); + + // Hook up the events + SubmitButton.OnPressed += _ => OnSubmitButtonPressed(); + BugReportTitle.OnTextChanged += _ => HandleInputChange(); + BugReportDescription.OnTextChanged += _ => HandleInputChange(); + OnOpen += UpdateEnabled; + + HandleInputChange(); + UpdateEnabled(); + } + + private void OnSubmitButtonPressed() + { + var report = new PlayerBugReportInformation + { + BugReportTitle = BugReportTitle.Text, + BugReportDescription = Rope.Collapse(BugReportDescription.TextRope), + }; + OnBugReportSubmitted?.Invoke(report); + + _lastBugReportSubmittedTime = DateTime.UtcNow; + _amountOfBugReportsSubmitted++; + + BugReportTitle.Text = string.Empty; + BugReportDescription.TextRope = Rope.Leaf.Empty; + + HandleInputChange(); + UpdateEnabled(); + } + + /// + /// Deals with the user changing their input. Ensures that things that depend on what the user has inputted get updated + /// (E.g. the amount of characters they have typed) + /// + private void HandleInputChange() + { + var titleLen = BugReportTitle.Text.Length; + var descriptionLen = BugReportDescription.TextLength; + + var invalidTitleLen = titleLen < _minimumBugReportTitleLength || titleLen > _maximumBugReportTitleLength; + var invalidDescriptionLen = descriptionLen < _minimumBugReportDescriptionLength || descriptionLen > _maximumBugReportDescriptionLength; + + TitleCharacterCounter.Text = Loc.GetString("bug-report-window-submit-char-split", ("typed", titleLen), ("total", _maximumBugReportTitleLength)); + TitleCharacterCounter.FontColorOverride = invalidTitleLen ? Color.Red : Color.Green; + + DescriptionCharacterCounter.Text = Loc.GetString("bug-report-window-submit-char-split", ("typed", descriptionLen), ("total", _maximumBugReportDescriptionLength)); + + DescriptionCharacterCounter.FontColorOverride = invalidDescriptionLen ? Color.Red : Color.Green; + + SubmitButton.Disabled = invalidTitleLen || invalidDescriptionLen; + + PlaceholderCenter.Visible = descriptionLen == 0; + } + + /// + /// Checks if the bug report window should be enabled for this client. + /// + private bool IsEnabled([NotNullWhen(false)] out string? errorMessage) + { + errorMessage = null; + + if (!_enablePlayerBugReports) + { + errorMessage = Loc.GetString("bug-report-window-disabled-not-enabled"); + return false; + } + + if (TimeSpan.FromMinutes(_minimumPlaytimeBugReports) > _job.FetchOverallPlaytime()) + { + errorMessage = Loc.GetString("bug-report-window-disabled-playtime"); + return false; + } + + if (_amountOfBugReportsSubmitted >= _maximumBugReportsPerRound) + { + errorMessage = Loc.GetString("bug-report-window-disabled-submissions", ("num", _maximumBugReportsPerRound)); + return false; + } + + var timeSinceLastReport = DateTime.UtcNow - _lastBugReportSubmittedTime; + var timeBetweenBugReports = TimeSpan.FromSeconds(_minimumTimeBetweenBugReports); + + if (timeSinceLastReport <= timeBetweenBugReports) + { + var time = timeBetweenBugReports - timeSinceLastReport; + errorMessage = Loc.GetString("bug-report-window-disabled-cooldown", ("time", time.ToString(@"d\.hh\:mm\:ss"))); + return false; + } + + return true; + } + + // Update the state of the window to display either the bug report window or an error explaining why you can't submit a report. + private void UpdateEnabled() + { + var isEnabled = IsEnabled(out var errorMessage); + DisabledLabel.Text = errorMessage; + + DisabledLabel.Visible = !isEnabled; + BugReportContainer.Visible = isEnabled; + _lastIsEnabledUpdated = DateTime.UtcNow; + } + + protected override void FrameUpdate(FrameEventArgs args) + { + base.FrameUpdate(args); + + if (!Visible) // Don't bother updating if no one can see the window anyway. + return; + + if(DateTime.UtcNow - _lastIsEnabledUpdated > _isEnabledUpdateInterval) + UpdateEnabled(); + } + + public void CleanupCCvars() + { + _configSub.Dispose(); + } +} diff --git a/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs b/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs index e314310bc0..fb7c7f9d25 100644 --- a/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs +++ b/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs @@ -1,5 +1,6 @@ using Content.Client.UserInterface.Systems.Actions; using Content.Client.UserInterface.Systems.Admin; +using Content.Client.UserInterface.Systems.BugReport; using Content.Client.UserInterface.Systems.Bwoink; using Content.Client.UserInterface.Systems.Character; using Content.Client.UserInterface.Systems.Crafting; @@ -24,6 +25,7 @@ public sealed class GameTopMenuBarUIController : UIController [Dependency] private readonly SandboxUIController _sandbox = default!; [Dependency] private readonly GuidebookUIController _guidebook = default!; [Dependency] private readonly EmotesUIController _emotes = default!; + [Dependency] private readonly BugReportUIController _bug = default!; private GameTopMenuBar? GameTopMenuBar => UIManager.GetActiveUIWidgetOrNull(); @@ -47,6 +49,7 @@ public sealed class GameTopMenuBarUIController : UIController _action.UnloadButton(); _sandbox.UnloadButton(); _emotes.UnloadButton(); + _bug.UnloadButton(); } public void LoadButtons() @@ -60,5 +63,6 @@ public sealed class GameTopMenuBarUIController : UIController _action.LoadButton(); _sandbox.LoadButton(); _emotes.LoadButton(); + _bug.LoadButton(); } } diff --git a/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml b/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml index dc8972970a..2c09666fdf 100644 --- a/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml +++ b/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml @@ -93,6 +93,15 @@ HorizontalExpand="True" AppendStyleClass="{x:Static style:StyleBase.ButtonSquare}" /> + +public sealed class BugReportManager : IBugReportManager, IPostInjectInit +{ + [Dependency] private readonly IServerNetManager _net = default!; + [Dependency] private readonly IEntityManager _entity = default!; + [Dependency] private readonly PlayTimeTrackingManager _playTime = default!; + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly IAdminLogManager _admin = default!; + [Dependency] private readonly IGameMapManager _map = default!; + [Dependency] private readonly GithubApiManager _githubApiManager = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly ILogManager _log = default!; + + private ISawmill _sawmill = default!; + + /// + /// List of player NetIds and the number of bug reports they have submitted this round. + /// UserId -> (bug reports this round, last submitted bug report) + /// + private readonly Dictionary _bugReportsPerPlayerThisRound = new(); + + private BugReportLimits _limits = default!; + + private List _tags = []; + + private ConfigurationMultiSubscriptionBuilder _configSub = default!; + + public void Initialize() + { + _net.RegisterNetMessage(ReceivedPlayerBugReport); + + _limits = new BugReportLimits(); + + _configSub = _cfg.SubscribeMultiple() + .OnValueChanged(CCVars.MaximumBugReportTitleLength, x => _limits.TitleMaxLength = x, true) + .OnValueChanged(CCVars.MinimumBugReportTitleLength, x => _limits.TitleMinLength = x, true) + .OnValueChanged(CCVars.MaximumBugReportDescriptionLength, x => _limits.DescriptionMaxLength = x, true) + .OnValueChanged(CCVars.MinimumBugReportDescriptionLength, x => _limits.DescriptionMinLength = x, true) + .OnValueChanged(CCVars.MinimumPlaytimeInMinutesToEnableBugReports, x => _limits.MinimumPlaytimeToEnableBugReports = TimeSpan.FromMinutes(x), true) + .OnValueChanged(CCVars.MaximumBugReportsPerRound, x => _limits.MaximumBugReportsForPlayerPerRound = x, true) + .OnValueChanged(CCVars.MinimumSecondsBetweenBugReports, x => _limits.MinimumTimeBetweenBugReports = TimeSpan.FromSeconds(x), true) + .OnValueChanged(CCVars.BugReportTags, x => _tags = x.Split(",").ToList(), true); + } + + public void Restart() + { + // When the round restarts, clear the dictionary. + _bugReportsPerPlayerThisRound.Clear(); + } + + public void Shutdown() + { + _configSub.Dispose(); + } + + private void ReceivedPlayerBugReport(BugReportMessage message) + { + if (!_cfg.GetCVar(CCVars.EnablePlayerBugReports)) + return; + + var netId = message.MsgChannel.UserId; + var userName = message.MsgChannel.UserName; + var report = message.ReportInformation; + if (!IsBugReportValid(report, (NetId: netId, UserName: userName)) || !CanPlayerSendReport(netId, userName)) + return; + + var playerBugReportingStats = _bugReportsPerPlayerThisRound.GetValueOrDefault(netId); + _bugReportsPerPlayerThisRound[netId] = (playerBugReportingStats.ReportsCount + 1, DateTime.UtcNow); + + var title = report.BugReportTitle; + var description = report.BugReportDescription; + + _admin.Add(LogType.BugReport, LogImpact.High, $"{message.MsgChannel.UserName}, {netId}: submitted a bug report. Title: {title}, Description: {description}"); + + var bugReport = CreateBugReport(message); + + _githubApiManager.TryCreateIssue(bugReport); + } + + /// + /// Checks that the given report is valid (E.g. not too long etc...). + /// Logs problems if report is invalid. + /// + /// True if the report is valid, false there is an issue with the report. + private bool IsBugReportValid(PlayerBugReportInformation report, (NetUserId NetId, string UserName) userData) + { + var descriptionLen = report.BugReportDescription.Length; + var titleLen = report.BugReportTitle.Length; + + // These should only happen if there is a hacked client or a glitch! + if (titleLen < _limits.TitleMinLength || titleLen > _limits.TitleMaxLength) + { + _sawmill.Warning( + $"{userData.UserName}, {userData.NetId}: has tried to submit a bug report " + + $"with a title of {titleLen} characters, min/max: {_limits.TitleMinLength}/{_limits.TitleMaxLength}." + ); + return false; + } + + if (descriptionLen < _limits.DescriptionMinLength || descriptionLen > _limits.DescriptionMaxLength) + { + _sawmill.Warning( + $"{userData.UserName}, {userData.NetId}: has tried to submit a bug report " + + $"with a description of {descriptionLen} characters, min/max: {_limits.DescriptionMinLength}/{_limits.DescriptionMaxLength}." + ); + return false; + } + + return true; + } + + /// + /// Checks that the player sending the report is allowed to (E.g. not spamming etc...). + /// Logs problems if report is invalid. + /// + /// True if the player can submit a report, false if they can't. + private bool CanPlayerSendReport(NetUserId netId, string userName) + { + var session = _player.GetSessionById(netId); + var playtime = _playTime.GetOverallPlaytime(session); + if (_limits.MinimumPlaytimeToEnableBugReports > playtime) + return false; + + var playerBugReportingStats = _bugReportsPerPlayerThisRound.GetValueOrDefault(netId); + var maximumBugReportsForPlayerPerRound = _limits.MaximumBugReportsForPlayerPerRound; + if (playerBugReportingStats.ReportsCount >= maximumBugReportsForPlayerPerRound) + { + _admin.Add(LogType.BugReport, + LogImpact.High, + $"{userName}, {netId}: has tried to submit more than {maximumBugReportsForPlayerPerRound} bug reports this round."); + return false; + } + + var timeSinceLastReport = DateTime.UtcNow - playerBugReportingStats.ReportedDateTime; + var timeBetweenBugReports = _limits.MinimumTimeBetweenBugReports; + if (timeSinceLastReport <= timeBetweenBugReports) + { + _admin.Add(LogType.BugReport, + LogImpact.High, + $"{userName}, {netId}: has tried to submit a bug report. " + + $"Last bug report was {timeSinceLastReport:g} ago. The limit is {timeBetweenBugReports:g} minutes." + ); + return false; + } + + return true; + } + + /// + /// Create a bug report out of the given message. Add will extra metadata that could be useful, along with + /// the original text report from the user. + /// + /// The message from user. + /// A based of the user report. + private ValidPlayerBugReportReceivedEvent CreateBugReport(BugReportMessage message) + { + // todo: dont request entity system out of sim, check if you are in-sim before doing so. Bug report should work out of sim too. + var ticker = _entity.System(); + var metadata = new BugReportMetaData + { + Username = message.MsgChannel.UserName, + PlayerGUID = message.MsgChannel.UserData.UserId, + ServerName = _cfg.GetCVar(CCVars.AdminLogsServerName), + NumberOfPlayers = _player.PlayerCount, + SubmittedTime = DateTime.UtcNow, + BuildVersion = _cfg.GetCVar(CVars.BuildVersion), + EngineVersion = _cfg.GetCVar(CVars.BuildEngineVersion), + }; + + // Only add these if your in round. + if (ticker.Preset != null) + { + metadata.RoundTime = _timing.CurTime.Subtract(ticker.RoundStartTimeSpan); + metadata.RoundNumber = ticker.RoundId; + metadata.RoundType = Loc.GetString(ticker.CurrentPreset?.ModeTitle ?? "bug-report-report-unknown"); + metadata.Map = _map.GetSelectedMap()?.MapName ?? Loc.GetString("bug-report-report-unknown"); + } + + return new ValidPlayerBugReportReceivedEvent( + message.ReportInformation.BugReportTitle.Trim(), + message.ReportInformation.BugReportDescription.Trim(), + metadata, + _tags + ); + } + + void IPostInjectInit.PostInject() + { + _sawmill = _log.GetSawmill("BugReport"); + } + + private sealed class BugReportLimits + { + public int TitleMaxLength; + public int TitleMinLength; + public int DescriptionMaxLength; + public int DescriptionMinLength; + + public TimeSpan MinimumPlaytimeToEnableBugReports; + public int MaximumBugReportsForPlayerPerRound; + public TimeSpan MinimumTimeBetweenBugReports; + } +} diff --git a/Content.Server/BugReports/IBugReportEvents.cs b/Content.Server/BugReports/IBugReportEvents.cs new file mode 100644 index 0000000000..3e79ff542e --- /dev/null +++ b/Content.Server/BugReports/IBugReportEvents.cs @@ -0,0 +1,94 @@ +using Robust.Shared.Network; + +namespace Content.Server.BugReports; + +/// +/// This event stores information related to a player submitted bug report. +/// +public sealed class ValidPlayerBugReportReceivedEvent(string title, string description, BugReportMetaData metaData, List tags) : EventArgs +{ + /// + /// Title for the bug report. This is player controlled! + /// + public string Title = title; + + /// + /// Description for the bug report. This is player controlled! + /// + public string Description = description; + + /// + /// Metadata for bug report, containing data collected by server. + /// + public BugReportMetaData MetaData = metaData; + + public List Tags = tags; +} + +/// +/// Metadata for a bug report. Holds relevant data for bug reports that aren't directly player controlled. +/// +public sealed class BugReportMetaData +{ + /// + /// Bug reporter SS14 username. + /// + /// piggylongsnout + public required string Username; + + /// + /// The GUID of the player who reported the bug. + /// + public required NetUserId PlayerGUID; + + /// + /// Name of the server from which bug report was issued. + /// + /// DeltaV> + public required string ServerName; + + /// + /// Date and time on which player submitted report (NOT round time). + /// The time is UTC and based off the servers clock. + /// + public required DateTime SubmittedTime; + + /// + /// Time that has elapsed in the round. Can be null if bug was not reported during a round. + /// + public TimeSpan? RoundTime; + + /// + /// Round number during which bug report was issued. Can be null if bug was reported not during round. + /// + /// 1311 + public int? RoundNumber; + + /// + /// Type preset title (type of round that is being played). Can be null if bug was reported not during round. + /// + /// Sandbox + public string? RoundType; + + /// + /// The map being played. + /// + /// "Dev"> + public string? Map; + + /// + /// Number of players currently on server. + /// + public int NumberOfPlayers; + + /// + /// Build version of the game. + /// + public required string BuildVersion; + + /// + /// Engine version of the game. + /// + /// 253.0.0 + public required string EngineVersion; +} diff --git a/Content.Server/BugReports/IBugReportManager.cs b/Content.Server/BugReports/IBugReportManager.cs new file mode 100644 index 0000000000..28264bc8c0 --- /dev/null +++ b/Content.Server/BugReports/IBugReportManager.cs @@ -0,0 +1,22 @@ +namespace Content.Server.BugReports; + +/// +/// Manager for validating client bug reports, issued in-game, and relaying creation of issue in tracker to dedicated api client. +/// +public interface IBugReportManager +{ + /// Will get called when the manager is first initialized. + public void Initialize(); + + /// + /// Will get called whenever the round is restarted. + /// Should be used to clean up anything that needs reset after each round. + /// + public void Restart(); + + /// + /// Will get called whenever the round is restarted. + /// Should be used to clean up anything that needs reset after each round. + /// + public void Shutdown(); +} diff --git a/Content.Server/Entry/EntryPoint.cs b/Content.Server/Entry/EntryPoint.cs index df4af14f1e..1f2d035a4a 100644 --- a/Content.Server/Entry/EntryPoint.cs +++ b/Content.Server/Entry/EntryPoint.cs @@ -3,6 +3,7 @@ using Content.Server.Administration; using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; using Content.Server.Afk; +using Content.Server.BugReports; using Content.Server.Chat.Managers; using Content.Server.Connection; using Content.Server.Database; @@ -10,13 +11,12 @@ using Content.Server.Discord.DiscordLink; using Content.Server.EUI; using Content.Server.GameTicking; using Content.Server.GhostKick; +using Content.Server.Github; using Content.Server.GuideGenerator; using Content.Server.Info; using Content.Server.IoC; using Content.Server.Maps; using Content.Server.NodeContainer.NodeGroups; -using Content.Server.Objectives; -using Content.Server.Players; using Content.Server.Players.JobWhitelist; using Content.Server.Players.PlayTimeTracking; using Content.Server.Players.RateLimiting; @@ -111,6 +111,10 @@ namespace Content.Server.Entry IoCManager.Resolve().Initialize(); IoCManager.Resolve().Initialize(); IoCManager.Resolve().Initialize(); + IoCManager.Resolve().Initialize(); + IoCManager.Resolve().Initialize(); + IoCManager.Resolve().Initialize(); + IoCManager.Resolve().Initialize(); _voteManager.Initialize(); _updateManager.Initialize(); @@ -192,6 +196,8 @@ namespace Content.Server.Entry IoCManager.Resolve().Shutdown(); IoCManager.Resolve().Shutdown(); + + IoCManager.Resolve().Shutdown(); } private static void LoadConfigPresets(IConfigurationManager cfg, IResourceManager res, ISawmill sawmill) diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 1dadca4c03..cb5a1a4187 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -725,6 +725,8 @@ namespace Content.Server.GameTicking _banManager.Restart(); + _bugManager.Restart(); + _gameMapManager.ClearSelectedMap(); // Clear up any game rules. diff --git a/Content.Server/GameTicking/GameTicker.cs b/Content.Server/GameTicking/GameTicker.cs index 55bf51db02..290d363047 100644 --- a/Content.Server/GameTicking/GameTicker.cs +++ b/Content.Server/GameTicking/GameTicker.cs @@ -1,5 +1,6 @@ using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; +using Content.Server.BugReports; using Content.Server.Chat.Managers; using Content.Server.Chat.Systems; using Content.Server.Database; @@ -65,6 +66,7 @@ namespace Content.Server.GameTicking [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedRoleSystem _roles = default!; [Dependency] private readonly ServerDbEntryManager _dbEntryManager = default!; + [Dependency] private readonly IBugReportManager _bugManager = default!; [ViewVariables] private bool _initialized; [ViewVariables] private bool _postInitialized; diff --git a/Content.Server/Github/Commands/TestGithubApiCommand.cs b/Content.Server/Github/Commands/TestGithubApiCommand.cs new file mode 100644 index 0000000000..85ac798057 --- /dev/null +++ b/Content.Server/Github/Commands/TestGithubApiCommand.cs @@ -0,0 +1,71 @@ +using Content.Server.Administration; +using Content.Server.Github.Requests; +using Content.Shared.Administration; +using Content.Shared.CCVar; +using Robust.Shared.Configuration; +using Robust.Shared.Console; + +namespace Content.Server.Github.Commands; + +/// +/// Simple command for testing if the GitHub api is set up correctly! It ensures that all necessary ccvars are set, +/// and will also create one new issue on the targeted repository. +/// +[AdminCommand(AdminFlags.Server)] +public sealed class TestGithubApiCommand : LocalizedCommands +{ + [Dependency] private readonly GithubApiManager _git = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + + public override string Command => Loc.GetString("github-command-test-name"); + + public override async void Execute(IConsoleShell shell, string argStr, string[] args) + { + var enabled = _cfg.GetCVar(CCVars.GithubEnabled); + var path = _cfg.GetCVar(CCVars.GithubAppPrivateKeyPath); + var appId = _cfg.GetCVar(CCVars.GithubAppId); + var repoName = _cfg.GetCVar(CCVars.GithubRepositoryName); + var owner = _cfg.GetCVar(CCVars.GithubRepositoryOwner); + + if (!enabled) + { + shell.WriteError(Loc.GetString("github-command-not-enabled")); + return; + } + + if (string.IsNullOrWhiteSpace(path)) + { + shell.WriteError(Loc.GetString("github-command-no-path")); + return; + } + + if (string.IsNullOrWhiteSpace(appId)) + { + shell.WriteError(Loc.GetString("github-command-no-app-id")); + return; + } + + if (string.IsNullOrWhiteSpace(repoName)) + { + shell.WriteError(Loc.GetString("github-command-no-repo-name")); + return; + } + + if (string.IsNullOrWhiteSpace(owner)) + { + shell.WriteError(Loc.GetString("github-command-no-owner")); + return; + } + + // Create two issues and send them to the api. + var request = new CreateIssueRequest + { + Title = Loc.GetString("github-command-issue-title-one"), + Body = Loc.GetString("github-command-issue-description-one"), + }; + + _git.TryMakeRequest(request); + + shell.WriteLine(Loc.GetString("github-command-finish")); + } +} diff --git a/Content.Server/Github/GithubApiManager.cs b/Content.Server/Github/GithubApiManager.cs new file mode 100644 index 0000000000..44f164fdf0 --- /dev/null +++ b/Content.Server/Github/GithubApiManager.cs @@ -0,0 +1,53 @@ +using Content.Server.Github.Requests; +using System.Threading.Tasks; +using Content.Server.BugReports; + +namespace Content.Server.Github; + +public sealed class GithubApiManager +{ + [Dependency] private readonly GithubBackgroundWorker _githubWorker = default!; + + public void Initialize() + { + Task.Run(() => _githubWorker.HandleQueue()); + } + + public bool TryCreateIssue(ValidPlayerBugReportReceivedEvent bugReport) + { + var createIssueRequest = ConvertToCreateIssue(bugReport); + return TryMakeRequest(createIssueRequest); + } + + public bool TryMakeRequest(IGithubRequest request) + { + return _githubWorker.Writer.TryWrite(request); + } + + private CreateIssueRequest ConvertToCreateIssue(ValidPlayerBugReportReceivedEvent bugReport) + { + var request = new CreateIssueRequest + { + Title = bugReport.Title, + Labels = bugReport.Tags, + }; + + var metadata = bugReport.MetaData; + + request.Body = Loc.GetString("github-issue-format", + ("description", bugReport.Description), + ("buildVersion", metadata.BuildVersion), + ("engineVersion", metadata.EngineVersion), + ("serverName", metadata.ServerName), + ("submittedTime", metadata.SubmittedTime), + ("roundNumber", metadata.RoundNumber.ToString() ?? ""), + ("roundTime", metadata.RoundTime.ToString() ?? ""), + ("roundType", metadata.RoundType ?? ""), + ("map", metadata.Map ?? ""), + ("numberOfPlayers", metadata.NumberOfPlayers), + ("username", metadata.Username), + ("playerGUID", metadata.PlayerGUID)); + + return request; + } +} diff --git a/Content.Server/Github/GithubBackgroundWorker.cs b/Content.Server/Github/GithubBackgroundWorker.cs new file mode 100644 index 0000000000..06d85dd001 --- /dev/null +++ b/Content.Server/Github/GithubBackgroundWorker.cs @@ -0,0 +1,74 @@ +using System.Threading; +using System.Threading.Channels; +using System.Threading.Tasks; +using Content.Server.Github.Requests; +using Content.Shared.CCVar; +using Robust.Shared.Configuration; + +namespace Content.Server.Github; + +public sealed class GithubBackgroundWorker +{ + [Dependency] private readonly GithubClient _client = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly ILogManager _log = default!; + + private ISawmill _sawmill = default!; + + private bool _enabled; + private readonly Channel _channel = Channel.CreateUnbounded(); + private readonly CancellationTokenSource _cts = new CancellationTokenSource(); + + public ChannelWriter Writer => _channel.Writer; + + public void Initialize() + { + _sawmill = _log.GetSawmill("github-ratelimit"); + _cfg.OnValueChanged(CCVars.GithubEnabled, val => Interlocked.Exchange(ref _enabled, val), true); + } + + public async Task HandleQueue() + { + var token = _cts.Token; + var reader = _channel.Reader; + while (!token.IsCancellationRequested) + { + await reader.WaitToReadAsync(token); + if (!reader.TryRead(out var request)) + continue; + + await SendRequest(request, token); + } + } + + // this should be called in BaseServer.Cleanup! + public void Shutdown() + { + _cts.Cancel(); + } + + /// + /// Directly send a request to the API. This does not have any rate limits checks so be careful! + /// Only use this if you have a very good reason to! + /// + /// The request to make. + /// Request cancellation token. + /// The direct HTTP response from the API. If null the request could not be made. + private async Task SendRequest(T request, CancellationToken ct) where T : IGithubRequest + { + if (!_enabled) + { + _sawmill.Info("Tried to make a github api request but the api was not enabled."); + return; + } + + try + { + await _client.TryMakeRequestSafe(request, ct); + } + catch (Exception e) + { + _sawmill.Error("Github API exception: {error}", e.ToString()); + } + } +} diff --git a/Content.Server/Github/GithubClient.cs b/Content.Server/Github/GithubClient.cs new file mode 100644 index 0000000000..ed7563dd3f --- /dev/null +++ b/Content.Server/Github/GithubClient.cs @@ -0,0 +1,417 @@ +using System.Diagnostics.CodeAnalysis; +using System.IO; +using System.Linq; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Net.Http.Json; +using System.Security.Cryptography; +using System.Text; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using Content.Server.Github.Requests; +using Content.Server.Github.Responses; +using Content.Shared.CCVar; +using JetBrains.Annotations; +using Robust.Shared.Configuration; + +namespace Content.Server.Github; + +/// +/// Basic implementation of the GitHub api. This was mainly created for making issues from users bug reports - it is not +/// a full implementation! I tried to follow the spec very closely and the docs are really well done. I highly recommend +/// taking a look at them! +///
+///
Some useful information about the api: +///
Api home page +///
Best practices +///
Rate limit information +///
Troubleshooting +///
+/// As it uses async, it should be called from background worker when possible, like . +public sealed class GithubClient +{ + [Dependency] private readonly ILogManager _log = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + private HttpClient _httpClient = default!; + + private ISawmill _sawmill = default!; + + // Token data for the GitHub app (This is used to authenticate stuff like new issue creation) + private (DateTime? Expiery, string Token) _tokenData; + + // Json web token for the GitHub app (This is used to authenticate stuff like seeing where the app is installed) + // The token is created locally. + private (DateTime? Expiery, string JWT) _jwtData; + + private const int ErrorResponseMaxLogSize = 200; + + private readonly JsonSerializerOptions _jsonSerializerOptions = new() + { + PropertyNamingPolicy = JsonNamingPolicy.CamelCase, + }; + + // Docs say 10 should be the maximum. + private readonly TimeSpan _jwtExpiration = TimeSpan.FromMinutes(10); + private readonly TimeSpan _jwtBackDate = TimeSpan.FromMinutes(1); + + // Buffers because requests can take a while. We don't want the tokens to expire in the middle of doing requests! + private readonly TimeSpan _jwtBuffer = TimeSpan.FromMinutes(2); + private readonly TimeSpan _tokenBuffer = TimeSpan.FromMinutes(2); + + private string _privateKey = ""; + + #region Header constants + + private const string ProductName = "SpaceStation14GithubApi"; + private const string ProductVersion = "1"; + + private const string AcceptHeader = "Accept"; + private const string AcceptHeaderType = "application/vnd.github+json"; + + private const string AuthHeader = "Authorization"; + private const string AuthHeaderBearer = "Bearer "; + + private const string VersionHeader = "X-GitHub-Api-Version"; + private const string VersionNumber = "2022-11-28"; + + #endregion + + private readonly Uri _baseUri = new("https://api.github.com/"); + + #region CCvar values + + private string _appId = ""; + private string _repository = ""; + private string _owner = ""; + private int _maxRetries; + + #endregion + + public void Initialize() + { + _sawmill = _log.GetSawmill("github"); + _tokenData = (null, ""); + _jwtData = (null, ""); + + _cfg.OnValueChanged(CCVars.GithubAppPrivateKeyPath, OnPrivateKeyPathChanged, true); + _cfg.OnValueChanged(CCVars.GithubAppId, val => Interlocked.Exchange(ref _appId, val), true); + _cfg.OnValueChanged(CCVars.GithubRepositoryName, val => Interlocked.Exchange(ref _repository, val), true); + _cfg.OnValueChanged(CCVars.GithubRepositoryOwner, val => Interlocked.Exchange(ref _owner, val), true); + _cfg.OnValueChanged(CCVars.GithubMaxRetries, val => SetValueAndInitHttpClient(ref _maxRetries, val), true); + } + + private void OnPrivateKeyPathChanged(string path) + { + if (string.IsNullOrEmpty(path)) + return; + + if (!File.Exists(path)) + { + _sawmill.Error($"\"{path}\" does not exist."); + return; + } + + string fileText; + try + { + fileText = File.ReadAllText(path); + } + catch (Exception e) + { + _sawmill.Error($"\"{path}\" could not be read!\n{e}"); + return; + } + + var rsa = RSA.Create(); + try + { + rsa.ImportFromPem(fileText); + } + catch + { + _sawmill.Error($"\"{path}\" does not contain a valid private key!"); + return; + } + + _privateKey = fileText; + } + + private void SetValueAndInitHttpClient(ref T toSet, T value) + { + Interlocked.Exchange(ref toSet, value); + + var httpMessageHandler = new RetryHandler(new HttpClientHandler(), _maxRetries, _sawmill); + var newClient = new HttpClient(httpMessageHandler) + { + BaseAddress = _baseUri, + DefaultRequestHeaders = + { + { AcceptHeader, AcceptHeaderType }, + { VersionHeader, VersionNumber }, + }, + Timeout = TimeSpan.FromSeconds(15), + }; + + newClient.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue(ProductName, ProductVersion)); + + Interlocked.Exchange(ref _httpClient, newClient); + } + + #region Public functions + + /// + /// The standard way to make requests to the GitHub api. This will ensure that the request respects the rate limit + /// and will also retry the request if it fails. Awaiting this to finish could take a very long time depending + /// on what exactly is going on! Only await for it if you're willing to wait a long time. + /// + /// The request you want to make. + /// Token for operation cancellation. + /// The direct HTTP response from the API. If null the request could not be made. + public async Task TryMakeRequestSafe(IGithubRequest request, CancellationToken ct) + { + if (!HaveFullApiData()) + { + _sawmill.Info("Tried to make a github api request but the api was not enabled."); + return null; + } + + if (request.AuthenticationMethod == GithubAuthMethod.Token && !await TryEnsureTokenNotExpired(ct)) + return null; + + return await MakeRequest(request, ct); + } + + private async Task MakeRequest(IGithubRequest request, CancellationToken ct) + { + var httpRequestMessage = BuildRequest(request); + + var response = await _httpClient.SendAsync(httpRequestMessage, ct); + + var message = $"Made a github api request to: '{httpRequestMessage.RequestUri}', status is {response.StatusCode}"; + if (response.IsSuccessStatusCode) + { + _sawmill.Info(message); + return response; + } + + _sawmill.Error(message); + var responseText = await response.Content.ReadAsStringAsync(ct); + + if (responseText.Length > ErrorResponseMaxLogSize) + responseText = responseText.Substring(0, ErrorResponseMaxLogSize); + + _sawmill.Error(message + "\r\n" + responseText); + + return null; + } + + /// + /// A simple helper function that just tries to parse a header value that is expected to be a long int. + /// In general, there are just a lot of single value headers that are longs so this removes a lot of duplicate code. + /// + /// The headers that you want to search. + /// The header you want to get the long value for. + /// Value of header, if found, null otherwise. + /// The headers value if it exists, null otherwise. + public static bool TryGetHeaderAsLong(HttpResponseHeaders? headers, string header, [NotNullWhen(true)] out long? value) + { + value = null; + if (headers == null) + return false; + + if (!headers.TryGetValues(header, out var headerValues)) + return false; + + if (!long.TryParse(headerValues.First(), out var result)) + return false; + + value = result; + return true; + } + + # endregion + + #region Helper functions + + private HttpRequestMessage BuildRequest(IGithubRequest request) + { + var json = JsonSerializer.Serialize(request, _jsonSerializerOptions); + var payload = new StringContent(json, Encoding.UTF8, "application/json"); + + var builder = new UriBuilder(_baseUri) + { + Port = -1, + Path = request.GetLocation(_owner, _repository), + }; + + var httpRequest = new HttpRequestMessage + { + Method = request.RequestMethod, + RequestUri = builder.Uri, + Content = payload, + }; + + httpRequest.Headers.Add(AuthHeader, CreateAuthenticationHeader(request)); + + return httpRequest; + } + + private bool HaveFullApiData() + { + return !string.IsNullOrWhiteSpace(_privateKey) && + !string.IsNullOrWhiteSpace(_repository) && + !string.IsNullOrWhiteSpace(_owner); + } + + private string CreateAuthenticationHeader(IGithubRequest request) + { + return request.AuthenticationMethod switch + { + GithubAuthMethod.Token => AuthHeaderBearer + _tokenData.Token, + GithubAuthMethod.JWT => AuthHeaderBearer + GetValidJwt(), + _ => throw new Exception("Unknown auth method!"), + }; + } + + // TODO: Maybe ensure that perms are only read metadata / write issues so people don't give full access + /// + /// Try to get a valid verification token from the GitHub api + /// + /// True if the token is valid and successfully found, false if there was an error. + private async Task TryEnsureTokenNotExpired(CancellationToken ct) + { + if (_tokenData.Expiery != null && _tokenData.Expiery - _tokenBuffer > DateTime.UtcNow) + return true; + + _sawmill.Info("Token expired - requesting new token!"); + + var installationRequest = new InstallationsRequest(); + var installationHttpResponse = await MakeRequest(installationRequest, ct); + if (installationHttpResponse == null) + { + _sawmill.Error("Could not make http installation request when creating token."); + return false; + } + + var installationResponse = await installationHttpResponse.Content.ReadFromJsonAsync>(_jsonSerializerOptions, ct); + if (installationResponse == null) + { + _sawmill.Error("Could not parse installation response."); + return false; + } + + if (installationResponse.Count == 0) + { + _sawmill.Error("App not installed anywhere."); + return false; + } + + int? installationId = null; + foreach (var installation in installationResponse) + { + if (installation.Account.Login != _owner) + continue; + + installationId = installation.Id; + break; + } + + if (installationId == null) + { + _sawmill.Error("App not installed in given repository."); + return false; + } + + var tokenRequest = new TokenRequest + { + InstallationId = installationId.Value, + }; + + var tokenHttpResponse = await MakeRequest(tokenRequest, ct); + if (tokenHttpResponse == null) + { + _sawmill.Error("Could not make http token request when creating token.."); + return false; + } + + var tokenResponse = await tokenHttpResponse.Content.ReadFromJsonAsync(_jsonSerializerOptions, ct); + if (tokenResponse == null) + { + _sawmill.Error("Could not parse token response."); + return false; + } + + _tokenData = (tokenResponse.ExpiresAt, tokenResponse.Token); + return true; + } + + // See: https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/generating-a-json-web-token-jwt-for-a-github-app + private string GetValidJwt() + { + if (_jwtData.Expiery != null && _jwtData.Expiery - _jwtBuffer > DateTime.UtcNow) + return _jwtData.JWT; + + var githubClientId = _appId; + var apiPrivateKey = _privateKey; + + var time = DateTime.UtcNow; + var expTime = time + _jwtExpiration; + var iatTime = time - _jwtBackDate; + + var iat = ((DateTimeOffset) iatTime).ToUnixTimeSeconds(); + var exp = ((DateTimeOffset) expTime).ToUnixTimeSeconds(); + + const string headerJson = """ + { + "typ":"JWT", + "alg":"RS256" + } + """; + + var headerEncoded = Base64EncodeUrlSafe(headerJson); + + var payloadJson = $$""" + { + "iat":{{iat}}, + "exp":{{exp}}, + "iss":"{{githubClientId}}" + } + """; + + var payloadJsonEncoded = Base64EncodeUrlSafe(payloadJson); + + var headPayload = $"{headerEncoded}.{payloadJsonEncoded}"; + + var rsa = System.Security.Cryptography.RSA.Create(); + rsa.ImportFromPem(apiPrivateKey); + + var bytesPlainTextData = Encoding.UTF8.GetBytes(headPayload); + + var signedData = rsa.SignData(bytesPlainTextData, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1); + var signBase64 = Base64EncodeUrlSafe(signedData); + + var jwt = $"{headPayload}.{signBase64}"; + + _jwtData = (expTime, jwt); + + _sawmill.Info("Generated new JWT."); + + return jwt; + } + + private string Base64EncodeUrlSafe(string plainText) + { + return Base64EncodeUrlSafe(Encoding.UTF8.GetBytes(plainText)); + } + + private string Base64EncodeUrlSafe(byte[] plainText) + { + return Convert.ToBase64String(plainText) + .TrimEnd('=') + .Replace('+', '-') + .Replace('/', '_'); + } + + #endregion +} diff --git a/Content.Server/Github/Requests/CreateIssueRequest.cs b/Content.Server/Github/Requests/CreateIssueRequest.cs new file mode 100644 index 0000000000..92cee609fa --- /dev/null +++ b/Content.Server/Github/Requests/CreateIssueRequest.cs @@ -0,0 +1,38 @@ +using System.Net.Http; +using System.Text.Json.Serialization; + +namespace Content.Server.Github.Requests; + +/// +/// > +/// +public sealed class CreateIssueRequest : IGithubRequest +{ + [JsonIgnore] + public HttpMethod RequestMethod => HttpMethod.Post; + + [JsonIgnore] + public GithubAuthMethod AuthenticationMethod => GithubAuthMethod.Token; + + #region JSON fields + + [JsonInclude, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] + public required string Title; + [JsonInclude, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] + public string? Body; + [JsonInclude, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] + public string? Assignee; + [JsonInclude, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] + public string? Milestone; + [JsonInclude, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] + public List Labels = []; + [JsonInclude, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] + public List Assignees = []; + + #endregion + + public string GetLocation(string owner, string repository) + { + return $"repos/{owner}/{repository}/issues"; + } +} diff --git a/Content.Server/Github/Requests/IGithubRequest.cs b/Content.Server/Github/Requests/IGithubRequest.cs new file mode 100644 index 0000000000..afc421722d --- /dev/null +++ b/Content.Server/Github/Requests/IGithubRequest.cs @@ -0,0 +1,44 @@ +using System.Net.Http; +using System.Text.Json.Serialization; + +namespace Content.Server.Github.Requests; + +/// +/// Interface for all github api requests. +/// +/// +/// WARNING: You must add this JsonDerivedType for all requests that have json otherwise they will not parse properly! +/// +[JsonPolymorphic(UnknownDerivedTypeHandling = JsonUnknownDerivedTypeHandling.FailSerialization)] +[JsonDerivedType(typeof(CreateIssueRequest))] +[JsonDerivedType(typeof(InstallationsRequest))] +[JsonDerivedType(typeof(TokenRequest))] +public interface IGithubRequest +{ + /// + /// The kind of request method for the request. + /// + [JsonIgnore] + public HttpMethod RequestMethod { get; } + + /// + /// There are different types of authentication methods depending on which endpoint you are working with. + /// E.g. the app api endpoint mostly uses JWTs, while stuff like issue creation uses Tokens + /// + [JsonIgnore] + public GithubAuthMethod AuthenticationMethod { get; } + + /// + /// Location of the api endpoint for this request. + /// + /// Owner of the repository. + /// The repository to make the request. + /// The api location for this request. + public string GetLocation(string owner, string repository); +} + +public enum GithubAuthMethod +{ + JWT, + Token, +} diff --git a/Content.Server/Github/Requests/InstallationsRequest.cs b/Content.Server/Github/Requests/InstallationsRequest.cs new file mode 100644 index 0000000000..4e75bbdc38 --- /dev/null +++ b/Content.Server/Github/Requests/InstallationsRequest.cs @@ -0,0 +1,18 @@ +using System.Net.Http; + +namespace Content.Server.Github.Requests; + +/// +/// > +/// +public sealed class InstallationsRequest : IGithubRequest +{ + public HttpMethod RequestMethod => HttpMethod.Get; + + public GithubAuthMethod AuthenticationMethod => GithubAuthMethod.JWT; + + public string GetLocation(string owner, string repository) + { + return "app/installations"; + } +} diff --git a/Content.Server/Github/Requests/TokenRequest.cs b/Content.Server/Github/Requests/TokenRequest.cs new file mode 100644 index 0000000000..f07764cdf0 --- /dev/null +++ b/Content.Server/Github/Requests/TokenRequest.cs @@ -0,0 +1,22 @@ +using System.Net.Http; +using System.Text.Json.Serialization; + +namespace Content.Server.Github.Requests; + +/// +/// > +/// +public sealed class TokenRequest : IGithubRequest +{ + public HttpMethod RequestMethod => HttpMethod.Post; + + public GithubAuthMethod AuthenticationMethod => GithubAuthMethod.JWT; + + [JsonPropertyName("id")] + public required int InstallationId; + + public string GetLocation(string owner, string repository) + { + return $"/app/installations/{InstallationId}/access_tokens"; + } +} diff --git a/Content.Server/Github/Responses/InstallationResponse.cs b/Content.Server/Github/Responses/InstallationResponse.cs new file mode 100644 index 0000000000..ffc84a6f0c --- /dev/null +++ b/Content.Server/Github/Responses/InstallationResponse.cs @@ -0,0 +1,21 @@ +using System.Text.Json.Serialization; + +namespace Content.Server.Github.Responses; + +/// +/// Not all fields are filled out - only the necessary ones. If you need more just add them. +/// > +/// +public sealed class InstallationResponse +{ + public required int Id { get; set; } + + public required GithubInstallationAccount Account { get; set; } +} + +/// +public sealed class GithubInstallationAccount +{ + public required string Login { get; set; } +} + diff --git a/Content.Server/Github/Responses/TokenResponse.cs b/Content.Server/Github/Responses/TokenResponse.cs new file mode 100644 index 0000000000..5b3748219c --- /dev/null +++ b/Content.Server/Github/Responses/TokenResponse.cs @@ -0,0 +1,15 @@ +using System.Text.Json.Serialization; + +namespace Content.Server.Github.Responses; + +/// +/// Not all fields are filled out - only the necessary ones. If you need more just add them. +/// > +/// +public sealed class TokenResponse +{ + public required string Token { get; set; } + + [JsonPropertyName("expires_at")] + public required DateTime ExpiresAt { get; set; } +} diff --git a/Content.Server/Github/RetryHttpHandler.cs b/Content.Server/Github/RetryHttpHandler.cs new file mode 100644 index 0000000000..28dcff643b --- /dev/null +++ b/Content.Server/Github/RetryHttpHandler.cs @@ -0,0 +1,100 @@ +using System.Net.Http; +using System.Threading.Tasks; +using System.Threading; +using System.Net; + +namespace Content.Server.Github; + +/// +/// Basic rate limiter for the GitHub api! Will ensure there is only ever one outgoing request at a time and all +/// requests respect the rate limit the best they can. +///
+///
Links to the api for more information: +///
Best practices +///
Rate limit information +///
+/// This was designed for the 2022-11-28 version of the API. +public sealed class RetryHandler(HttpMessageHandler innerHandler, int maxRetries, ISawmill sawmill) : DelegatingHandler(innerHandler) +{ + private const int MaxWaitSeconds = 32; + + /// Extra buffer time (In seconds) after getting rate limited we don't make the request exactly when we get more credits. + private const long ExtraBufferTime = 1L; + + #region Headers + + private const string RetryAfterHeader = "retry-after"; + + private const string RemainingHeader = "x-ratelimit-remaining"; + private const string RateLimitResetHeader = "x-ratelimit-reset"; + + #endregion + + protected override async Task SendAsync( + HttpRequestMessage request, + CancellationToken cancellationToken + ) + { + HttpResponseMessage response; + var i = 0; + do + { + response = await base.SendAsync(request, cancellationToken); + if (response.IsSuccessStatusCode) + return response; + + i++; + if (i < maxRetries) + { + var waitTime = CalculateNextRequestTime(response, i); + await Task.Delay(waitTime, cancellationToken); + } + } while (!response.IsSuccessStatusCode && i < maxRetries); + + return response; + } + + /// + /// Follows these guidelines but also has a small buffer so you should never quite hit zero: + ///
+ /// + ///
+ /// The last response from the API. + /// Number of current call attempt. + /// The amount of time to wait until the next request. + private TimeSpan CalculateNextRequestTime(HttpResponseMessage response, int attempt) + { + var headers = response.Headers; + var statusCode = response.StatusCode; + + // Specific checks for rate limits. + if (statusCode is HttpStatusCode.Forbidden or HttpStatusCode.TooManyRequests) + { + // Retry after header + if (GithubClient.TryGetHeaderAsLong(headers, RetryAfterHeader, out var retryAfterSeconds)) + return TimeSpan.FromSeconds(retryAfterSeconds.Value + ExtraBufferTime); + + // Reset header (Tells us when we get more api credits) + if (GithubClient.TryGetHeaderAsLong(headers, RemainingHeader, out var remainingRequests) + && GithubClient.TryGetHeaderAsLong(headers, RateLimitResetHeader, out var resetTime) + && remainingRequests == 0) + { + var delayTime = resetTime.Value - DateTimeOffset.UtcNow.ToUnixTimeSeconds(); + sawmill.Warning( + "github returned '{status}' status, have to wait until limit reset - in '{delay}' seconds", + response.StatusCode, + delayTime + ); + return TimeSpan.FromSeconds(delayTime + ExtraBufferTime); + } + } + + // If the status code is not the expected one or the rate limit checks are failing, just do an exponential backoff. + return ExponentialBackoff(attempt); + } + + private static TimeSpan ExponentialBackoff(int i) + { + return TimeSpan.FromSeconds(Math.Min(MaxWaitSeconds, Math.Pow(2, i))); + } +} diff --git a/Content.Server/IoC/ServerContentIoC.cs b/Content.Server/IoC/ServerContentIoC.cs index b4d999bef4..96124330f0 100644 --- a/Content.Server/IoC/ServerContentIoC.cs +++ b/Content.Server/IoC/ServerContentIoC.cs @@ -3,6 +3,7 @@ using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; using Content.Server.Administration.Notes; using Content.Server.Afk; +using Content.Server.BugReports; using Content.Server.Chat.Managers; using Content.Server.Connection; using Content.Server.Database; @@ -11,6 +12,7 @@ using Content.Server.Discord.DiscordLink; using Content.Server.Discord.WebhookMessages; using Content.Server.EUI; using Content.Server.GhostKick; +using Content.Server.Github; using Content.Server.Info; using Content.Server.Mapping; using Content.Server.Maps; @@ -59,6 +61,7 @@ namespace Content.Server.IoC IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); + IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); @@ -76,9 +79,11 @@ namespace Content.Server.IoC IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); - IoCManager.Register(); IoCManager.Register(); + IoCManager.Register(); + IoCManager.Register(); + IoCManager.Register(); } } } diff --git a/Content.Shared.Database/LogType.cs b/Content.Shared.Database/LogType.cs index 58a41a5f7a..388c44bb28 100644 --- a/Content.Shared.Database/LogType.cs +++ b/Content.Shared.Database/LogType.cs @@ -464,6 +464,7 @@ public enum LogType /// Logs related to botany, such as planting and harvesting crops /// Botany = 100, + /// /// Artifact node got activated. /// @@ -478,4 +479,9 @@ public enum LogType /// Events relating to midi playback. /// Instrument = 103, + + /// + /// For anything relating to bug reports. + /// + BugReport = 104, } diff --git a/Content.Shared/BugReport/BugReportMessage.cs b/Content.Shared/BugReport/BugReportMessage.cs new file mode 100644 index 0000000000..46976eda6e --- /dev/null +++ b/Content.Shared/BugReport/BugReportMessage.cs @@ -0,0 +1,42 @@ +using Lidgren.Network; +using Robust.Shared.Network; +using Robust.Shared.Serialization; + +namespace Content.Shared.BugReport; + +/// +/// Message with bug report data, which should be handled by server and used to create issue on issue tracker +/// (or some other notification). +/// +public sealed class BugReportMessage : NetMessage +{ + public override MsgGroups MsgGroup => MsgGroups.Command; + + public PlayerBugReportInformation ReportInformation = new(); + + public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer serializer) + { + ReportInformation.BugReportTitle = buffer.ReadString(); + ReportInformation.BugReportDescription = buffer.ReadString(); + } + + public override void WriteToBuffer(NetOutgoingMessage buffer, IRobustSerializer serializer) + { + buffer.Write(ReportInformation.BugReportTitle); + buffer.Write(ReportInformation.BugReportDescription); + } + + public override NetDeliveryMethod DeliveryMethod => NetDeliveryMethod.ReliableUnordered; +} + +/// +/// Stores user specified information from a bug report. +/// +/// +/// Clients can put whatever they want here so be careful! +/// +public sealed class PlayerBugReportInformation +{ + public string BugReportTitle = string.Empty; + public string BugReportDescription = string.Empty; +} diff --git a/Content.Shared/CCVar/CCVars.BugReports.cs b/Content.Shared/CCVar/CCVars.BugReports.cs new file mode 100644 index 0000000000..789ffc9a48 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.BugReports.cs @@ -0,0 +1,64 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Allow users to submit bug reports. Will enable a button on the hotbar. See for + /// setting up the GitHub API! + /// + public static readonly CVarDef EnablePlayerBugReports = + CVarDef.Create("bug_reports.enable_player_bug_reports", false, CVar.SERVER | CVar.REPLICATED); + + /// + /// Minimum playtime that players need to have played to submit bug reports. + /// + public static readonly CVarDef MinimumPlaytimeInMinutesToEnableBugReports = + CVarDef.Create("bug_reports.minimum_playtime_in_minutes_to_enable_bug_reports", 120, CVar.SERVER | CVar.REPLICATED); + + /// + /// Maximum number of bug reports a user can submit per round. + /// + public static readonly CVarDef MaximumBugReportsPerRound = + CVarDef.Create("bug_reports.maximum_bug_reports_per_round", 5, CVar.SERVER | CVar.REPLICATED); + + /// + /// Minimum time between bug reports. + /// + public static readonly CVarDef MinimumSecondsBetweenBugReports = + CVarDef.Create("bug_reports.minimum_seconds_between_bug_reports", 120, CVar.SERVER | CVar.REPLICATED); + + /// + /// Maximum length of a bug report title. + /// + public static readonly CVarDef MaximumBugReportTitleLength = + CVarDef.Create("bug_reports.maximum_bug_report_title_length", 35, CVar.SERVER | CVar.REPLICATED); + + /// + /// Minimum length of a bug report title. + /// + public static readonly CVarDef MinimumBugReportTitleLength = + CVarDef.Create("bug_reports.minimum_bug_report_title_length", 10, CVar.SERVER | CVar.REPLICATED); + + /// + /// Maximum length of a bug report description. + /// + public static readonly CVarDef MaximumBugReportDescriptionLength = + CVarDef.Create("bug_reports.maximum_bug_report_description_length", 750, CVar.SERVER | CVar.REPLICATED); + + /// + /// Minimum length of a bug report description. + /// + public static readonly CVarDef MinimumBugReportDescriptionLength = + CVarDef.Create("bug_reports.minimum_bug_report_description_length", 10, CVar.SERVER | CVar.REPLICATED); + + /// + /// List of tags that are added to the report. Separate each value with ",". + /// + /// + /// IG report, Bug + /// + public static readonly CVarDef BugReportTags = + CVarDef.Create("bug_reports.tags", "IG bug report", CVar.SERVER | CVar.REPLICATED); +} diff --git a/Content.Shared/CCVar/CCVars.Github.cs b/Content.Shared/CCVar/CCVars.Github.cs new file mode 100644 index 0000000000..77c1ffc2fe --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Github.cs @@ -0,0 +1,71 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Marker, for if the GitHub api is enabled. If it is not enabled, any actions that require GitHub API will be ignored. + /// To fully set up the API, you also need to set , , + /// and . + /// + public static readonly CVarDef GithubEnabled = + CVarDef.Create("github.github_enabled", true, CVar.SERVERONLY); + + /// + /// GitHub app private keys location. PLEASE READ THIS CAREFULLY!! + /// + /// + /// Its highly recommend to create a new (private) repository specifically for this app. This will help avoid + /// moderation issues and also allow you to ignore duplicate or useless issues. You can just transfer legitimate + /// issues from the private repository to the main public one. + /// + /// + /// Only create the auth token with the MINIMUM required access (Specifically only give it access to one + /// repository - and the minimum required access for your use case). + ///

If this token is only for forwarding issues then you should only need to grant read and write + /// permission to "Issues" and read only permissions to "Metadata". + ///
+ ///
+ /// Also remember to use the testgithubapi command to test if you set everything up correctly. + /// [Insert YouTube video link with walkthrough here] + ///
+ /// + /// (If your on linux): /home/beck/key.pem + /// + public static readonly CVarDef GithubAppPrivateKeyPath = + CVarDef.Create("github.github_app_private_key_path", "", CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// The GitHub apps app id. Go to https://github.com/settings/apps/APPNAME to find the app id. + /// + /// + /// 1009555 + /// + public static readonly CVarDef GithubAppId = + CVarDef.Create("github.github_app_id", "", CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// Name of the targeted GitHub repository. + /// + /// + /// If your URL was https://github.com/space-wizards/space-station-14 the repo name would be "space-station-14". + /// > + public static readonly CVarDef GithubRepositoryName = + CVarDef.Create("github.github_repository_name", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// Owner of the GitHub repository. + /// + /// + /// If your URL was https://github.com/space-wizards/space-station-14 the owner would be "space-wizards". + /// + public static readonly CVarDef GithubRepositoryOwner = + CVarDef.Create("github.github_repository_owner", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// The maximum number of times the api will retry requests before giving up. + /// + public static readonly CVarDef GithubMaxRetries = + CVarDef.Create("github.github_max_retries", 3, CVar.SERVERONLY | CVar.CONFIDENTIAL); +} diff --git a/Resources/Locale/en-US/HUD/game-hud.ftl b/Resources/Locale/en-US/HUD/game-hud.ftl index ea423f080a..d88403a6af 100644 --- a/Resources/Locale/en-US/HUD/game-hud.ftl +++ b/Resources/Locale/en-US/HUD/game-hud.ftl @@ -7,3 +7,4 @@ game-hud-open-crafting-menu-button-tooltip = Open crafting menu. game-hud-open-actions-menu-button-tooltip = Open actions menu. game-hud-open-admin-menu-button-tooltip = Open admin menu. game-hud-open-sandbox-menu-button-tooltip = Open sandbox menu. +game-hud-open-bug-report-window-button-tooltip = Open bug report menu. diff --git a/Resources/Locale/en-US/bugreport/bug-report-report.ftl b/Resources/Locale/en-US/bugreport/bug-report-report.ftl new file mode 100644 index 0000000000..c6296c520f --- /dev/null +++ b/Resources/Locale/en-US/bugreport/bug-report-report.ftl @@ -0,0 +1 @@ +bug-report-report-unknown = unknown diff --git a/Resources/Locale/en-US/bugreport/bug-report-window.ftl b/Resources/Locale/en-US/bugreport/bug-report-window.ftl new file mode 100644 index 0000000000..794014ca98 --- /dev/null +++ b/Resources/Locale/en-US/bugreport/bug-report-window.ftl @@ -0,0 +1,13 @@ +bug-report-window-name = Create bug report +bug-report-window-explanation = Try to be as detailed as possible. If you have recreation steps, list them! +bug-report-window-disabled-not-enabled = Bug reports are currently disabled! +bug-report-window-disabled-playtime = You do not have enough playtime to submit a bug report! +bug-report-window-disabled-cooldown = You can submit a new bug report in {$time}. +bug-report-window-disabled-submissions = You have reached the maximum number of bug reports ({$num}) for this round. +bug-report-window-title-place-holder = Bug report title +bug-report-window-description-place-holder = Type bug report here +bug-report-window-submit-button-text = Submit +bug-report-window-submit-button-confirm-text = Click again to submit! +bug-report-window-submit-button-disclaimer = Your SS14 username and other in game information will be saved. + +bug-report-window-submit-char-split = {$typed}/{$total} diff --git a/Resources/Locale/en-US/github/github-api.ftl b/Resources/Locale/en-US/github/github-api.ftl new file mode 100644 index 0000000000..c439503b60 --- /dev/null +++ b/Resources/Locale/en-US/github/github-api.ftl @@ -0,0 +1,36 @@ +github-command-test-name = testgithubapi + +cmd-testgithubapi-desc = This command makes an issue request to the github api. Remember to check the servers console for errors. +cmd-testgithubapi-help = Usage: testgithubapi + +github-command-not-enabled = The api is not enabled! +github-command-no-path = The key path is empty! +github-command-no-app-id = The app id is empty! +github-command-no-repo-name = The repository name is empty! +github-command-no-owner = The repository owner is empty! + +github-command-issue-title-one = This is a test issue! +github-command-issue-description-one = This is the description of the first issue. :) + +github-command-finish = Check your repository for a newly created issue. If you don't see any, check the server console for errors! + +github-issue-format = ## Description: + {$description} + + ## Meta Data: + Build version: {$buildVersion} + Engine version: {$engineVersion} + + Server name: {$serverName} + Submitted time: {$submittedTime} + + -- Round information -- + Round number: {$roundNumber} + Round time: {$roundTime} + Round type: {$roundType} + Map: {$map} + Number of players: {$numberOfPlayers} + + -- Submitter information -- + Player name: {$username} + Player GUID: {$playerGUID} diff --git a/Resources/Textures/Interface/bug.svg b/Resources/Textures/Interface/bug.svg new file mode 100644 index 0000000000..f79bfe3e04 --- /dev/null +++ b/Resources/Textures/Interface/bug.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/Resources/Textures/Interface/bug.svg.192dpi.png b/Resources/Textures/Interface/bug.svg.192dpi.png new file mode 100644 index 0000000000000000000000000000000000000000..d901996bd6ba1130b25e69c088893dbaa16199e0 GIT binary patch literal 1852 zcmV-C2gCS@P)EX>4Tx04R}tkv&MmKpe$iQ>8^J4rUN>$WWauh>AFB6^c+H)C#RSm|Xe=O$fqw6tAnc`2!4RL3r>nIQsV!TLW>v=j{EWM-sA2aAT+8>x4Xsw-Egc- zDkN7|Tmsr#XZa7O)5z5>(VsK@|=Xv>K$?$k2W=z(45uWpb(Hs(_JW z9vjf1cz*Cd_}#5toEZ0$Vo9L;#dSZ1fyge4ux=P;w2Zz8& ziL%!M-W~1i?cX!4{(b<}^>Sz{?N6})000JJOGiWi{{a600FA#$9smFU32;bRa{vGx zhX4Q_hXIe}@nrx200(qQO+^Rk0u%=cBQDOb`~Uz2I!Q!9RCwC$n{Q}Ubr{FLzqRI; zfA(SpsYU+7W|Si%Qev?%XO<9V5e7x{a){2dmr=cnO0(WX80Csy)Iv-lA`KkE`a@9| zlxQt&mb2Pg>2Pi8KE3c6-F}>N&%O7YbMIO13m5jg_nhbV{e92x&+|OznKX$>Od>9T z7N7%o45&-7pE~QK18B+0;O77%{EHr7bqf8gHrwME0p?^ufK>!z4=^tQ`}53J5LRVD zfT_UY5Q1lbr+`|Z3TOtl0A0XIU>Fzz4gvdtXMiPUx7O}G6Jq-?Ff}X7pdNS$I2%It zH{fRqN3RJKgtOLHeHJ&v#lQj5!vSD%)=vZnJOuoa;J^pWrc0V{Rni8Xb4co!bXma9 zBa+^hbf2U-lIkQ)lhi2bK}nsGMg#7fCaKqKXWl1R2%HLdihF^p3b=nhush)X-+{Rk zL4f@p@iB8=T#c z+yva5#B>D~c&;|UjTc+6)#(ZFbY_pil(5@tH)l=&;BIqwkEal%eCf4kC+4?A45~`f zMoCSQ_Db66oEr(b_PC_+bAC|Lc1g1&)yCxbw>egua=tt5oSPBCV~V7;l3FDll=QN5 zZmiU&+U~8reqbxm=v`Ms`BCF>Xf$s9-gWJ9ruB}H&c`gIT?5NqSh)H> z!*Nh6X{MxGC9SXkDhmCQ-jei+bFL?;U49C%&V2o`kVM56pdm$npaFO>B=It4+}7Df zm>P*1JL+=rC$OT7j!~=inTwzNjWMmxHwHZU)(UusD}i$!mks6U_=wl()(X1F+x$dn z+8r(m$oe)^P=JPjtZ`$SuJCfNz0Wx}P$>bd?~fxmCMtlR((2AYpyYG7I!ys)dhNap z2+$Y7F;M~P0s@svV>p82{~{ld8ZLSPszc)cTSCNHHUY-84Co9AoIcN+9|(y5qtKRt zd|_LWoZIs)fu@+pVkJ;4ho*c2ys6-Kb7A-{#*Ot6(z-R7_~75?*Y!aE^{T9 zgzN#EynSFK2Ju%dXE^?Msk6!F@TsJ2A$!1A&bgzZ0+Elvi3;$m*UrN0YM;Z&GzB=~wXe^B05?Q%O!UmX&O1~8 z0;)^2^&gaI<5J+XXX@HC1#m#0*I{b~1-Q#Ib0XDPz-n|p@VgRw3<(>gni{vLoo68}90}gr}@2r3Tej(M@WvL$mW&!U81R3|1O90^hfd1bBW~DXg zDl3ZKm8Tqbu$ZM#ssJ|i2lJHC?lP`bNe%pQ;8=m7<`2M?X$b&a;g!ti!!hGt6-R)m z{J>C%2=h}C;DrJ?6kHz=rA}CW;2TNnEr{vxew#1p3t&wOtIRnR}ydR?e&ai!<#2Ii6@U6WG?(n@(V5xB&%K5L7mbm-CT=Tf<^ITJ% zr<&xPof>!M5)Ko<_MQ3&PBjs~*Bj^Z1#9LXYzQc7%*83-L*V&<-=4Gg`{TZSXCga! z1(K9aKzBlQK(}im!e+w*0Ul$qSfYsx6QUW|4xA`r;3t61<>2VbEXX1|mKN&5OU&uI qP-Qk?pYJ7o=A7%*BqlM5a^N4Qe+CTN2#ARQ0000 + + + + + + + + + + + + + diff --git a/Resources/Textures/Interface/splat.svg.192dpi.png b/Resources/Textures/Interface/splat.svg.192dpi.png new file mode 100644 index 0000000000000000000000000000000000000000..9540031f0445426f6148d774edb4906bb4cc9810 GIT binary patch literal 2069 zcmV+w2EX>4Tx04R}tkv&MmKpe$iQ?()$hjtKA$WWau6u)rPDionYsTEpvFuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;yWphgA|?JWDYS_3;J6>}?mh0_0YbgZRI?)nsG4P@ z6LB${TM+}V=)w>}m_$rsraqfWCE+=~?&0I>U6f~epZjz4DtVIuK9P8a>4rtTPCT_~ z>74h8!>lAJ#OK7L23?T&k?XR{Z=8z`3p_JyWYTlQVPdh^#&R38lA#h$5JwbMqkJLj zvch?bvs$jQ<~{ifgL!RviR&~6k-!2Lk%9;rRcxRP3sG7%QcR?2KknflaQrE9$>iDq zBgZ@{P$4;f@IUz7tyvf!bCZH`p!3DHKZb$8F3_mi_V=-EH%pV2qvfY2?_v+DNN+{ftykfE-UH^9Lm zFjA!KHIH|9xA*q%nPz`K`UP^`_=WEk00006VoOIv03HAy03zi}T>=0A010qNS#tmY z9ftq_9ftvr{DWHV|581~32s1`dy~sld|l&_ndoA@4ZDQxgYkPo&V0v?wOsP*(3eO$>f3% zK!K!UNqr?9m9*a&(|AE!9vB5Y1MC2rIiL0etAHs${)MFYFkpRv(m}Kfxa&eteim?& z)M-7?wLL0sfEC0;JAjgQKF(x;NDBpsC0LsF@v$&zl9ROsQ`E@?u$ zaFoDJ0q^@JU}O^BB4Bv{|C;uod;##2NBEbccy?eaaNL7)U9KBox<}}D0FwgN-JX^3 zZ7NuqG{9Gmzz2bzY2dB)7<62&DqjSga)e!&CgwoTHo7=h4KT$sTO(q?{oKKQUo<3)Q(J{#Rp@Vx2D2&4ZZ+nDpvS;{-z!2a{;5pz(3PyS( z1{nu5}+!A@>}h0lCGSKJlNOAVSvRR;E73idIBFLQTz* z#uGsAII#01^>Y5J%fZ8CU#Gp>7*ijY0bGR#g;08P*0tB?=O2mVRX2=&0# zVVur=!26cLrK%iojD3K)z&ADwk3t84fnf*g3cT(CDO8S-T@{0DQfCNI0`#`+1p$+| zA<6)ccmRsjP6!z6N%%AaW5Y1dwug__RIPSKz&KCdF9c-%0M~l=B$+L}CChEL8 zK>5maDlu6$K)IXw3hH=IfbyGxVzpDU!O%H*&jQ~TC~1j@|3yhp8e>jpN%+2!MoKD@ z)F^4EF(ztJWU$k&@eMT1GxIC5IBOGuEjIn`E6zL^qDs}WRsQVoZ}fF^lbsFO*z&9s zUKuj5sYn*$dftD4GGE8PoldK=puDkBXcTG!o^p@JcIM}LR?y+|Ce}t!F5R0213Z?- zfoG3R_0I&J_bmGsD)$Y1g{R}#3@hI&Aas4p7I8WQLxH6MSLedeCtkl{9ga(-88*PI zuz{B~L`4e9_Xrw%yoX_Uh7GX6v!wGA^e?b=gSrrv?DB*=2GHNbI4Q#hsC34EHNvYi z+g`z~woY-cO`wzkeZqhgc;2gJac^%)p1W6Tm$s$B&sh#O%5!Uj(`HILUhPTKXLJer?)T0~1MkuVH&2>?o1Om4Jbel?X@DM{g6XlK`vOU@ihQn)%7r2In;_VNh)H)J!5QUYvCL-{)3)_}m}_YnMFWW8K(9n%cEOvBPC zd;P8?0q*#KgHH>67b=3wpdq^1Z+F%O#NJKzJDvq$D=*d`eB_+ht1U*GCtppP2I;P| zS8BTG>{Xk6spbsrw?w6q8g%wndb9qgwx@pqQe3SuX=^^u00000NkvXXu0mjfb}!J1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/splat.svg.192dpi.png.yml b/Resources/Textures/Interface/splat.svg.192dpi.png.yml new file mode 100644 index 0000000000..dabd6601f7 --- /dev/null +++ b/Resources/Textures/Interface/splat.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true From 3e84efb05172f6ddd41c0d03c70a9e17c4eee1f4 Mon Sep 17 00:00:00 2001 From: Blaine Pavlock <146504016+PavlockBlaine03@users.noreply.github.com> Date: Fri, 15 Aug 2025 16:55:38 -0500 Subject: [PATCH 014/194] Tabs in the Credits window only populate once (#39667) * Tabs in the Credits window only populate once * Changed functions to RemoveAllChildren() --- Content.Client/Credits/CreditsWindow.xaml.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Content.Client/Credits/CreditsWindow.xaml.cs b/Content.Client/Credits/CreditsWindow.xaml.cs index 61adf40fc5..050d801170 100644 --- a/Content.Client/Credits/CreditsWindow.xaml.cs +++ b/Content.Client/Credits/CreditsWindow.xaml.cs @@ -80,7 +80,7 @@ public sealed partial class CreditsWindow : DefaultWindow private async void PopulateAttributions(BoxContainer attributionsContainer, int count) { - attributionsContainer.DisposeAllChildren(); + attributionsContainer.RemoveAllChildren(); if (_attributions.Count == 0) { @@ -253,6 +253,8 @@ public sealed partial class CreditsWindow : DefaultWindow private void PopulateLicenses(BoxContainer licensesContainer) { + licensesContainer.RemoveAllChildren(); + foreach (var entry in CreditsManager.GetLicenses(_resourceManager).OrderBy(p => p.Name)) { licensesContainer.AddChild(new Label @@ -269,6 +271,8 @@ public sealed partial class CreditsWindow : DefaultWindow private void PopulatePatrons(BoxContainer patronsContainer) { + patronsContainer.RemoveAllChildren(); + var patrons = LoadPatrons(); // Do not show "become a patron" button on Steam builds @@ -318,6 +322,8 @@ public sealed partial class CreditsWindow : DefaultWindow private void PopulateContributors(BoxContainer ss14ContributorsContainer) { + ss14ContributorsContainer.RemoveAllChildren(); + Button contributeButton; ss14ContributorsContainer.AddChild(new BoxContainer From d4f8568e50c3d5941830198648571a24e5d1f499 Mon Sep 17 00:00:00 2001 From: CoolioDudio <147223024+CoolioDudio@users.noreply.github.com> Date: Fri, 15 Aug 2025 17:50:13 -0800 Subject: [PATCH 015/194] Added baby and cube hair (awesome) (#39680) * Added baby and cube hair (awesome) * added yml and ftl (oops) * Update cube.png Made cube smaller --- Resources/Locale/en-US/accessories/human-hair.ftl | 2 ++ .../Mobs/Customization/Markings/human_hair.yml | 14 ++++++++++++++ .../Mobs/Customization/human_hair.rsi/baby.png | Bin 0 -> 439 bytes .../Mobs/Customization/human_hair.rsi/cube.png | Bin 0 -> 640 bytes .../Mobs/Customization/human_hair.rsi/meta.json | 10 +++++++++- 5 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Mobs/Customization/human_hair.rsi/baby.png create mode 100644 Resources/Textures/Mobs/Customization/human_hair.rsi/cube.png diff --git a/Resources/Locale/en-US/accessories/human-hair.ftl b/Resources/Locale/en-US/accessories/human-hair.ftl index 7754d772a5..50d2b2790e 100644 --- a/Resources/Locale/en-US/accessories/human-hair.ftl +++ b/Resources/Locale/en-US/accessories/human-hair.ftl @@ -2,6 +2,7 @@ marking-HumanHairAfro = Afro marking-HumanHairAfro2 = Afro 2 marking-HumanHairBigafro = Afro (Large) marking-HumanHairAntenna = Ahoge +marking-HumanHairBaby = Baby marking-HumanHairBalding = Balding Hair marking-HumanHairBedhead = Bedhead marking-HumanHairBedheadv2 = Bedhead 2 @@ -59,6 +60,7 @@ marking-HumanHairCornrowbraid = Cornrow Braid marking-HumanHairCornrowtail = Cornrow Tail marking-HumanHairCrewcut = Crewcut marking-HumanHairCrewcut2 = Crewcut 2 +marking-HumanHairCube = Cube marking-HumanHairCurls = Curls marking-HumanHairC = Cut Hair marking-HumanHairDandypompadour = Dandy Pompadour diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml index b67eb7631c..fb6f8d4fed 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml @@ -12,6 +12,13 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: afro2 +- type: marking + id: HumanHairBaby + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: baby - type: marking id: HumanHairBigafro bodyPart: Hair @@ -54,6 +61,13 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: bedheadv3 +- type: marking + id: HumanHairCube + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: cube - type: marking id: HumanHairPulato bodyPart: Hair diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/baby.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/baby.png new file mode 100644 index 0000000000000000000000000000000000000000..9829225fac7be00e9402309870378a169b79877d GIT binary patch literal 439 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1qucL5ULAh?3y^w370~qEv=}#LT=BJwMkF1yemk zJ>#C;#tJ|++fpMu(>y)37&w3&Rt70XRt82O%L|C5p=^+AG#Ht|;!HrcAtMum0FaIX z;>>myuy_`b4FU;34AKvy(JW6ie=^O_-y@&~`hm-FVdQ&MBb@020q-y8r+H literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/cube.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/cube.png new file mode 100644 index 0000000000000000000000000000000000000000..eabf49acad5cec0409877fb210de1e5e0a580a3c GIT binary patch literal 640 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`212l#}ze);lc|Ni|qZroV8awSlVx$VyZAjMh|XGjn;EKAeQ@BvEuS#|!L$oI zYFB Date: Sat, 16 Aug 2025 01:51:20 +0000 Subject: [PATCH 016/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 7974427302..b94e3bfef6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ScarKy0 - changes: - - message: Interdyne cigs now cost 1TC instead of 2TC. - type: Tweak - id: 8343 - time: '2025-04-25T04:52:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36841 - author: lzk228 changes: - message: Seashell is small size. @@ -3954,3 +3947,10 @@ id: 8855 time: '2025-08-15T05:56:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39457 +- author: CoolioDudio + changes: + - message: Added baby and cube hair + type: Add + id: 8856 + time: '2025-08-16T01:50:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39680 From 05aad3bfd29b8915c8af7df0e69fd00cb7c3273d Mon Sep 17 00:00:00 2001 From: EnrichedCaramel Date: Sat, 16 Aug 2025 03:59:58 -0300 Subject: [PATCH 017/194] Expand soap making, but better (#39303) * Add lye reagent and its recipes * Move and add soap recipes * Add temperature to soap recipes * Silly comments * Remove NaHO based lye recipe due to sigynate recipe conflict. * Typo * Typo, again * Change lye color and description --- .../Locale/en-US/reagents/meta/chemicals.ftl | 3 + Resources/Prototypes/Flavors/flavors.yml | 5 + Resources/Prototypes/Reagents/chemicals.yml | 15 +++ .../Recipes/Reactions/chemicals.yml | 10 ++ .../Prototypes/Recipes/Reactions/fun.yml | 28 ----- .../Prototypes/Recipes/Reactions/soap.yml | 119 ++++++++++++++++++ 6 files changed, 152 insertions(+), 28 deletions(-) create mode 100644 Resources/Prototypes/Recipes/Reactions/soap.yml diff --git a/Resources/Locale/en-US/reagents/meta/chemicals.ftl b/Resources/Locale/en-US/reagents/meta/chemicals.ftl index f5dfec7d6a..eca057c9ac 100644 --- a/Resources/Locale/en-US/reagents/meta/chemicals.ftl +++ b/Resources/Locale/en-US/reagents/meta/chemicals.ftl @@ -33,3 +33,6 @@ reagent-desc-cellulose = A crystaline polydextrose polymer, plants swear by this reagent-name-rororium = rororium reagent-desc-rororium = A strange substance which fills the cores of the hivelords that roam the mining asteroid. Thought to be the source of their regenerative powers. + +reagent-name-lye = lye +reagent-desc-lye = A translucent, orange, alkaline solution used in traditional soap production. diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index 8eef7e1cb5..513803e102 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -1484,6 +1484,11 @@ flavorType: Complex description: flavor-complex-artifact-glue +- type: flavor + id: alkaline + flavorType: Base + description: flavor-base-alkaline + - type: flavor id: motivating flavorType: Base diff --git a/Resources/Prototypes/Reagents/chemicals.yml b/Resources/Prototypes/Reagents/chemicals.yml index 45c55ce4dd..11945d1dc9 100644 --- a/Resources/Prototypes/Reagents/chemicals.yml +++ b/Resources/Prototypes/Reagents/chemicals.yml @@ -51,6 +51,21 @@ physicalDesc: reagent-physical-desc-powdery color: white +- type: reagent + id: Lye + name: reagent-name-lye + desc: reagent-desc-lye + flavor: alkaline + physicalDesc: reagent-physical-desc-alkaline + color: "#e5420b" + metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Caustic: 1 + - type: reagent id: SodiumCarbonate name: reagent-name-sodium-carbonate diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml index 959488376c..fef96df5cf 100644 --- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml +++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml @@ -532,3 +532,13 @@ amount: 1 products: ArtifactGlue: 2 + +- type: reaction + id: Lye + reactants: + Water: + amount: 1 + Ash: + amount: 1 + products: + Lye: 2 diff --git a/Resources/Prototypes/Recipes/Reactions/fun.yml b/Resources/Prototypes/Recipes/Reactions/fun.yml index 87a9682102..35987b6be5 100644 --- a/Resources/Prototypes/Recipes/Reactions/fun.yml +++ b/Resources/Prototypes/Recipes/Reactions/fun.yml @@ -24,34 +24,6 @@ products: BuzzochloricBees: 3 -- type: reaction - id: CreateSoap - impact: Low - quantized: true - reactants: - Fat: - amount: 15 - Saline: - amount: 25 - effects: - - !type:CreateEntityReactionEffect - entity: Soap - -- type: reaction - id: CreateSoapHomemade - impact: Low - quantized: true - reactants: - Fat: - amount: 15 - TableSalt: - amount: 10 - Blood: - amount: 10 - effects: - - !type:CreateEntityReactionEffect - entity: SoapHomemade - - type: reaction id: Meatification impact: Low diff --git a/Resources/Prototypes/Recipes/Reactions/soap.yml b/Resources/Prototypes/Recipes/Reactions/soap.yml new file mode 100644 index 0000000000..d07c582f8b --- /dev/null +++ b/Resources/Prototypes/Recipes/Reactions/soap.yml @@ -0,0 +1,119 @@ +- type: reaction + id: CreateSoapRegular + impact: Low + quantized: true + minTemp: 383 # Water boiling point + 10 Kelvin. We are boiling it + reactants: + Oil: + amount: 10 + Lye: + amount: 15 + TableSalt: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: Soap + +- type: reaction + id: CreateSoapNT + impact: Low + quantized: true + minTemp: 373 # Water boiling point. We are boiling it too, but with higher priority! + reactants: + Oil: + amount: 15 + Lye: + amount: 20 + TableSalt: + amount: 5 + Plasma: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: SoapNT + +- type: reaction + id: CreateSoapDeluxe + impact: Low + quantized: true + minTemp: 373 + reactants: + Oil: + amount: 15 + Lye: + amount: 20 + TableSalt: + amount: 5 + JuiceBerry: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: SoapDeluxe + +- type: reaction + id: CreateSoapBlood + impact: Low + quantized: true + minTemp: 373 + reactants: + Fat: + amount: 10 + Lye: + amount: 20 + TableSalt: + amount: 5 + Blood: + amount: 10 + effects: + - !type:CreateEntityReactionEffect + entity: SoapHomemade + +- type: reaction + id: CreateSoapSyndie + impact: Medium + quantized: true + minTemp: 373 + reactants: + Oil: + amount: 15 + Lye: + amount: 20 + TableSalt: + amount: 5 + Stimulants: + amount: 5 + effects: + - !type:CreateEntityReactionEffect + entity: SoapSyndie + +- type: reaction + id: CreateSoapOmega + impact: Medium + quantized: true + minTemp: 373 + reactants: + Oil: + amount: 5 + Fat: + amount: 5 + Lye: + amount: 10 + TableSalt: + amount: 5 + Honk: + amount: 10 + SpaceLube: + amount: 5 + SpaceDrugs: + amount: 3 + THC: + amount: 2 + Bananadine: + amount: 2 + Omnizine: + amount: 2 + Amatoxin: + amount: 1 + effects: + - !type:CreateEntityReactionEffect + entity: SoapOmega From 0947e2cd2248e3bbe6d2f8b7592aff72e890afa2 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 16 Aug 2025 07:01:08 +0000 Subject: [PATCH 018/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b94e3bfef6..ec4c1f91a9 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Seashell is small size. - type: Tweak - id: 8344 - time: '2025-04-25T05:54:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32262 - author: Blackern5000 changes: - message: Inaprovaline now heals slower, but lingers in the bloodstream for much @@ -3954,3 +3947,12 @@ id: 8856 time: '2025-08-16T01:50:13.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39680 +- author: CaramelOrdnance + changes: + - message: Lye reagent + type: Add + - message: Recipes for all soap bars + type: Add + id: 8857 + time: '2025-08-16T06:59:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39303 From 71f5c2d665b124845d6e0b73f969d70d995999bd Mon Sep 17 00:00:00 2001 From: Artxmisery <78118840+Artxmisery@users.noreply.github.com> Date: Sat, 16 Aug 2025 13:50:32 +0000 Subject: [PATCH 019/194] Equip and unequip triggers (#39675) * added equip and unequip triggers for equipment and equipee * Update Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipComponent.cs --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Triggers/TriggerOnDidEquipComponent.cs | 18 +++++ .../Triggers/TriggerOnDidUnequipComponent.cs | 18 +++++ .../Triggers/TriggerOnGotEquippedComponent.cs | 18 +++++ .../TriggerOnGotUnequippedComponent.cs | 18 +++++ .../Systems/TriggerOnEquipmentSystem.cs | 70 +++++++++++++++++++ 5 files changed, 142 insertions(+) create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipComponent.cs create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipComponent.cs create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedComponent.cs create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedComponent.cs create mode 100644 Content.Shared/Trigger/Systems/TriggerOnEquipmentSystem.cs diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipComponent.cs new file mode 100644 index 0000000000..3c970eb855 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity equips another entity. +/// The user is the entity being equipped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDidEquipComponent : BaseTriggerOnXComponent +{ + /// + /// The slots entities being equipped to will trigger the entity. + /// + [DataField, AutoNetworkedField] + public SlotFlags SlotFlags; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipComponent.cs new file mode 100644 index 0000000000..c6ec3821b1 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity unequips another entity. +/// The user is the entity being unequipped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDidUnequipComponent : BaseTriggerOnXComponent +{ + /// + /// The slots that entities being unequipped from will trigger the entity. + /// + [DataField, AutoNetworkedField] + public SlotFlags SlotFlags; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedComponent.cs new file mode 100644 index 0000000000..c3bb62fa80 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity is equipped to another entity. +/// The user is the entity being equipped to (i.e. the equipee). +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotEquippedComponent : BaseTriggerOnXComponent +{ + /// + /// The slots that being equipped to will trigger the entity. + /// + [DataField, AutoNetworkedField] + public SlotFlags SlotFlags; +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedComponent.cs new file mode 100644 index 0000000000..2b6663e1f0 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Inventory; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity is unequipped from another entity. +/// The user is the entity being unequipped from (i.e. the (un)equipee). +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotUnequippedComponent : BaseTriggerOnXComponent +{ + /// + /// The slots that being unequipped from will trigger the entity. + /// + [DataField, AutoNetworkedField] + public SlotFlags SlotFlags; +} diff --git a/Content.Shared/Trigger/Systems/TriggerOnEquipmentSystem.cs b/Content.Shared/Trigger/Systems/TriggerOnEquipmentSystem.cs new file mode 100644 index 0000000000..bc097ae831 --- /dev/null +++ b/Content.Shared/Trigger/Systems/TriggerOnEquipmentSystem.cs @@ -0,0 +1,70 @@ +using Content.Shared.Trigger.Components.Triggers; +using Robust.Shared.Timing; +using Content.Shared.Inventory.Events; + +namespace Content.Shared.Trigger.Systems; + +/// +/// System for creating triggers when entities are equipped or unequipped from inventory slots. +/// +public sealed class TriggerOnEquipmentSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDidEquip); + SubscribeLocalEvent(OnDidUnequip); + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); + } + + // Used by entities when equipping or unequipping other entities + private void OnDidEquip(Entity ent, ref DidEquipEvent args) + { + if (_timing.ApplyingState) + return; + + if ((ent.Comp.SlotFlags & args.SlotFlags) == 0) + return; + + _trigger.Trigger(ent.Owner, args.Equipment, ent.Comp.KeyOut); + } + + private void OnDidUnequip(Entity ent, ref DidUnequipEvent args) + { + if (_timing.ApplyingState) + return; + + if ((ent.Comp.SlotFlags & args.SlotFlags) == 0) + return; + + _trigger.Trigger(ent.Owner, args.Equipment, ent.Comp.KeyOut); + } + + // Used by entities when they get equipped or unequipped + private void OnGotEquipped(Entity ent, ref GotEquippedEvent args) + { + if (_timing.ApplyingState) + return; + + if ((ent.Comp.SlotFlags & args.SlotFlags) == 0) + return; + + _trigger.Trigger(ent.Owner, args.Equipee, ent.Comp.KeyOut); + } + + private void OnGotUnequipped(Entity ent, ref GotUnequippedEvent args) + { + if (_timing.ApplyingState) + return; + + if ((ent.Comp.SlotFlags & args.SlotFlags) == 0) + return; + + _trigger.Trigger(ent.Owner, args.Equipee, ent.Comp.KeyOut); + } +} From 529d7ff2922788c13997a26b61e384119116648d Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Sat, 16 Aug 2025 17:03:50 +0200 Subject: [PATCH 020/194] Predict MessyDrinker (#39660) init --- .../Components/MessyDrinkerComponent.cs | 13 ++++++------ .../EntitySystems/MessyDrinkerSystem.cs | 21 +++++++++++-------- 2 files changed, 19 insertions(+), 15 deletions(-) rename {Content.Server => Content.Shared}/Nutrition/Components/MessyDrinkerComponent.cs (71%) rename {Content.Server => Content.Shared}/Nutrition/EntitySystems/MessyDrinkerSystem.cs (58%) diff --git a/Content.Server/Nutrition/Components/MessyDrinkerComponent.cs b/Content.Shared/Nutrition/Components/MessyDrinkerComponent.cs similarity index 71% rename from Content.Server/Nutrition/Components/MessyDrinkerComponent.cs rename to Content.Shared/Nutrition/Components/MessyDrinkerComponent.cs index 5519c5d983..c077db8231 100644 --- a/Content.Server/Nutrition/Components/MessyDrinkerComponent.cs +++ b/Content.Shared/Nutrition/Components/MessyDrinkerComponent.cs @@ -1,30 +1,31 @@ using Content.Shared.FixedPoint; using Content.Shared.Nutrition.Prototypes; +using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -namespace Content.Server.Nutrition.Components; +namespace Content.Shared.Nutrition.Components; /// /// Entities with this component occasionally spill some of the solution they're ingesting. /// -[RegisterComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class MessyDrinkerComponent : Component { - [DataField] + [DataField, AutoNetworkedField] public float SpillChance = 0.2f; /// /// The amount of solution that is spilled when procs. /// - [DataField] + [DataField, AutoNetworkedField] public FixedPoint2 SpillAmount = 1.0; /// /// The types of food prototypes we can spill /// - [DataField] + [DataField, AutoNetworkedField] public List> SpillableTypes = new List> { "Drink" }; - [DataField] + [DataField, AutoNetworkedField] public LocId? SpillMessagePopup; } diff --git a/Content.Server/Nutrition/EntitySystems/MessyDrinkerSystem.cs b/Content.Shared/Nutrition/EntitySystems/MessyDrinkerSystem.cs similarity index 58% rename from Content.Server/Nutrition/EntitySystems/MessyDrinkerSystem.cs rename to Content.Shared/Nutrition/EntitySystems/MessyDrinkerSystem.cs index dc8c11bb7f..bf084e6054 100644 --- a/Content.Server/Nutrition/EntitySystems/MessyDrinkerSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/MessyDrinkerSystem.cs @@ -1,18 +1,18 @@ -using Content.Server.Fluids.EntitySystems; -using Content.Server.Nutrition.Components; -using Content.Shared.Nutrition; -using Content.Shared.Nutrition.EntitySystems; +using Content.Shared.Fluids; +using Content.Shared.Nutrition.Components; using Content.Shared.Popups; +using Content.Shared.Random.Helpers; using Robust.Shared.Random; +using Robust.Shared.Timing; -namespace Content.Server.Nutrition.EntitySystems; +namespace Content.Shared.Nutrition.EntitySystems; public sealed class MessyDrinkerSystem : EntitySystem { - [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IngestionSystem _ingestion = default!; - [Dependency] private readonly PuddleSystem _puddle = default!; + [Dependency] private readonly SharedPuddleSystem _puddle = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { @@ -35,11 +35,14 @@ public sealed class MessyDrinkerSystem : EntitySystem if (ev.ForceFed) return; - if (!_random.Prob(ent.Comp.SpillChance)) + // TODO: Replace with RandomPredicted once the engine PR is merged + var seed = SharedRandomExtensions.HashCodeCombine(new() { (int)_timing.CurTick.Value, GetNetEntity(ent).Id }); + var rand = new System.Random(seed); + if (!rand.Prob(ent.Comp.SpillChance)) return; if (ent.Comp.SpillMessagePopup != null) - _popup.PopupEntity(Loc.GetString(ent.Comp.SpillMessagePopup), ent, ent, PopupType.MediumCaution); + _popup.PopupPredicted(Loc.GetString(ent.Comp.SpillMessagePopup), null, ent, ent, PopupType.MediumCaution); var split = ev.Split.SplitSolution(ent.Comp.SpillAmount); From 201bc6cc5ce8b6132f663c501a96866478acf26b Mon Sep 17 00:00:00 2001 From: Zeneganto Date: Sun, 17 Aug 2025 07:01:04 +1000 Subject: [PATCH 021/194] Swap ExudeGasses and ConsumeGasses (#39688) Uh, um --- Content.Server/EntityEffects/EntityEffectSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/EntityEffects/EntityEffectSystem.cs b/Content.Server/EntityEffects/EntityEffectSystem.cs index 1277c8df59..b0b8ab5045 100644 --- a/Content.Server/EntityEffects/EntityEffectSystem.cs +++ b/Content.Server/EntityEffects/EntityEffectSystem.cs @@ -889,7 +889,7 @@ public sealed class EntityEffectSystem : EntitySystem if (plantholder.Seed == null) return; - var gasses = plantholder.Seed.ExudeGasses; + var gasses = plantholder.Seed.ConsumeGasses; // Add a random amount of a random gas to this gas dictionary float amount = _random.NextFloat(args.Effect.MinValue, args.Effect.MaxValue); @@ -911,7 +911,7 @@ public sealed class EntityEffectSystem : EntitySystem if (plantholder.Seed == null) return; - var gasses = plantholder.Seed.ConsumeGasses; + var gasses = plantholder.Seed.ExudeGasses; // Add a random amount of a random gas to this gas dictionary float amount = _random.NextFloat(args.Effect.MinValue, args.Effect.MaxValue); From 6e8260cf3fe0ac11a05ae212c0492ba430c8e30c Mon Sep 17 00:00:00 2001 From: ViolentMonk Date: Sat, 16 Aug 2025 14:57:16 -0700 Subject: [PATCH 022/194] Trigger for OnInteractUsing (#39692) * Add trigger for InteractOnUsing * Add blacklist and targetUsed fields * Update Content.Shared/Trigger/Components/Triggers/TriggerOnInteractUsingComponent.cs --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../TriggerOnInteractUsingComponent.cs | 34 +++++++++++++++++++ .../Systems/TriggerSystem.Interaction.cs | 16 ++++++++- 2 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnInteractUsingComponent.cs diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnInteractUsingComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnInteractUsingComponent.cs new file mode 100644 index 0000000000..0a5844338e --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnInteractUsingComponent.cs @@ -0,0 +1,34 @@ +using Content.Shared.Interaction; +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers when an entity is used to interact with another entity (). +/// The user is the player initiating the interaction or the item used, depending on the TargetUsed datafield. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnInteractUsingComponent : BaseTriggerOnXComponent +{ + /// + /// Whitelist of entities that can be used to trigger this component. + /// + /// No whitelist check when null. + [DataField, AutoNetworkedField] + public EntityWhitelist? Whitelist; + + /// + /// Blacklist of entities that cannot be used to trigger this component. + /// + /// No blacklist check when null. + [DataField, AutoNetworkedField] + public EntityWhitelist? Blacklist; + + /// + /// If false, the trigger user will be the user that initiated the interaction. + /// If true, the trigger user will the entity that was used to interact. + /// + [DataField, AutoNetworkedField] + public bool TargetUsed = false; +} diff --git a/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs b/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs index 39ef4889de..62f483e876 100644 --- a/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs +++ b/Content.Shared/Trigger/Systems/TriggerSystem.Interaction.cs @@ -1,4 +1,4 @@ -using Content.Shared.Examine; +using Content.Shared.Examine; using Content.Shared.Interaction; using Content.Shared.Interaction.Events; using Content.Shared.Item.ItemToggle.Components; @@ -16,6 +16,8 @@ public sealed partial class TriggerSystem SubscribeLocalEvent(OnActivate); SubscribeLocalEvent(OnUse); SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnInteractUsing); + SubscribeLocalEvent(OnThrow); SubscribeLocalEvent(OnThrown); @@ -59,6 +61,18 @@ public sealed partial class TriggerSystem args.Handled = true; } + private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) + { + if (args.Handled) + return; + + if (!_whitelist.CheckBoth(args.Used, ent.Comp.Blacklist, ent.Comp.Whitelist)) + return; + + Trigger(ent.Owner, ent.Comp.TargetUsed ? args.Used : args.User, ent.Comp.KeyOut); + args.Handled = true; + } + private void OnThrow(Entity ent, ref ThrowEvent args) { Trigger(ent.Owner, args.Thrown, ent.Comp.KeyOut); From 01f4f0cf1492a80eee16dfb88a09078b7c49729f Mon Sep 17 00:00:00 2001 From: youtissoum <51883137+youtissoum@users.noreply.github.com> Date: Sat, 16 Aug 2025 23:04:12 +0000 Subject: [PATCH 023/194] Increase the bananium horn use delay (#39674) Increase bananium horn use delay to 3 seconds --- Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml index f124be8a42..e5f68aac8f 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml @@ -158,6 +158,8 @@ sprite: Objects/Fun/bananiumhorn.rsi slots: [Belt] quickEquip: false + - type: UseDelay + delay: 3 - type: EmitSoundOnUse sound: collection: BananiumHorn From 1b16a837484d1230508833a9e78f65f1c60f2906 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 16 Aug 2025 23:05:19 +0000 Subject: [PATCH 024/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ec4c1f91a9..93853d75c7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: Blackern5000 - changes: - - message: Inaprovaline now heals slower, but lingers in the bloodstream for much - longer, making it much more useful for stabilizing critical patients for an - extended duration rather than outright treating damage. - type: Tweak - id: 8345 - time: '2025-04-25T06:03:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32293 - author: kosticia changes: - message: Moths can no longer eat rubber toys. @@ -3956,3 +3947,10 @@ id: 8857 time: '2025-08-16T06:59:58.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39303 +- author: youtissoum + changes: + - message: The usage delay of the bananium horn is now 3 seconds. + type: Tweak + id: 8858 + time: '2025-08-16T23:04:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39674 From 5bf44ea0335e8012f0ba17bd2521d55689f85793 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Aug 2025 03:14:28 +0200 Subject: [PATCH 025/194] Update Credits (#39697) Co-authored-by: PJBot --- Resources/Credits/GitHub.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 814930806c..7526e5ac03 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0leshe, 0tito, 0x6273, 12rabbits, 1337dakota, 13spacemen, 154942, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, 96flo, aaron, abadaba695, Ablankmann, abregado, Absolute-Potato, Absotively, achookh, Acruid, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, adm2play, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aearo-Deepwater, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, AgentSmithRadio, Agoichi, Ahion, aiden, Aidenkrz, Aisu9, ajcm, AJCM-git, AjexRose, Alekshhh, alexalexmax, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alice4267, Alithsko, Alkheemist, alliephante, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, Arcane-Waffle, archee1, ArchPigeon, ArchRBX, areitpog, Arendian, areyouconfused, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, azzyisnothere, B-Kirill, B3CKDOOR, baa14453, BackeTako, Bakke, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, beesterman, bellwetherlogic, ben, benbryant0, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BigfootBravo, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blitzthesquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Bokser815, bolantej, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, BWTCK, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, Camdot, capnsockless, CaptainMaru, captainsqrbeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, catdotjs, catlord, Catofquestionableethics, CatTheSystem, Centronias, Chaboricks, chairbender, Chaoticaa, Charlese2, charlie, chartman, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, ciaran, citrea, civilCornball, claustro305, Clement-O, clyf, Clyybber, CMDR-Piboy314, cnv41, coco, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, Compilatron144, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, cooperwallace, corentt, CormosLemming, CrafterKolyan, crazybrain23, Crazydave91920, creadth, CrigCrag, CroilBird, Crotalus, CrudeWax, cryals, CrzyPotato, cubixthree, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, dan, dangerrevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, DeepwaterCreations, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, devinschubert14, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinnerCalzone, DinoWattz, Disp-Dev, DisposableCrewmember42, dissidentbullet, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, Dragonjspider, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, DuckManZach, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, dylanwhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, EnrichedCaramel, Entvari, eoineoineoin, ephememory, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, farrellka-dev, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, Firewars763, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FlipBrooke, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FrostRibbon, Funce, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gamewar360, gansulalan, GaussiArson, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, Gentleman-Bird, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GnarpGnarp, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, golubgik, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helix-ctrl, helm4142, Henry, HerCoyote23, HighTechPuddle, Hitlinemoss, hiucko, hivehum, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hoshizora, Hreno, Hrosts, htmlsystem, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iaada, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imatsoup, IMCB, impubbi, imrenq, imweax, indeano, Injazz, Insineer, insoPL, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jacktastic09, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JCGWE30, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jkwookee, jmcb, JohnGinnane, johnku1, Jophire, joshepvodka, JpegOfAFrog, jproads, JrInventor05, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, kaiserbirch, KaiShibaa, kalane15, kalanosh, KamTheSythe, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, kiri-yoshikage, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, Kittygyat, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kontakt, kosticia, koteq, kotobdev, Kowlin, KrasnoshchekovPavel, Krosus777, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, LaCumbiaDelCoronavirus, lajolico, Lamrr, lanedon, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, linkbro1, linkuyx, Litraxx, little-meow-meow, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, ljm862, lmsnoise, localcc, lokachop, lolman360, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, Lusatia, Luxeator, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M1tht1c, M3739, M87S, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, maland1, malchanceux, MaloTV, manelnavola, ManelNavola, Mangohydra, marboww, Markek1, marlyn, matt, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, memeproof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterImp, MisterMecky, Mith-randalf, Mixelz, mjarduk, MjrLandWhale, mkanke-real, MLGTASTICa, mnva0, moderatelyaware, modern-nm, mokiros, momo, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, murolem, musicmanvr, MWKane, Myakot, Myctai, N3X15, nabegator, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikitosych, nikthechampiongr, Nimfar11, ninruB, Nirnael, NIXC, nkokic, NkoKirkto, nmajask, noctyrnal, noelkathegod, noirogen, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, Nyxilath, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OneZerooo0, OnyxTheBrave, Orange-Winds, OrangeMoronage9622, Orsoniks, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paige404, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, perryprog, PeterFuto, PetMudstone, pewter-wiz, pgraycs, Pgriha, Phantom-Lily, pheenty, philingham, Phill101, Phooooooooooooooooooooooooooooooosphate, phunnyguy, PicklOH, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, PotRoastPiggy, Princess-Cheeseballs, ProfanedBane, PROG-MohamedDwidar, Prole0, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, pumkin69, PuroSlavKing, PursuitInAshes, Putnam3145, py01, Pyrovi, qrtDaniil, qrwas, Quantum-cross, quatre, QueerNB, QuietlyWhisper, qwerltaz, Radezolid, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rhsvenson, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, rlebell33, RobbyTheFish, robinthedragon, Rockdtben, Rohesie, rok-povsic, rokudara-sen, rolfero, RomanNovo, rosieposieeee, Roudenn, router, ruddygreat, rumaks, RumiTiger, Ruzihm, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, Samuka-C, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, SeamLesss, Segonist, semensponge, sephtasm, ser1-1y, Serkket, sewerpig, SG6732, sh18rw, Shaddap1, ShadeAware, ShadowCommander, shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SharkSnake98, shibechef, Siginanto, SignalWalker, siigiil, silicon14wastaken, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skybailey-dev, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, Smugman, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, solstar2, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, soupkilove, southbridge-fur, sowelipililimute, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, Spangs04, spanky-spanky, Sparlight, spartak, SpartanKadence, spderman3333, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, Stop-Signs, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, supergdpwyl, superjj18, Supernorn, SweptWasTaken, SyaoranFox, Sybil, SYNCHRONIC, Szunti, t, Tainakov, takemysoult, taonewt, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, TheBlueYowie, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheFlyingSentry, TheIntoxicatedCat, thekilk, themias, theomund, TheProNoob678, TherapyGoth, ThereDrD0, TheShuEd, thetolbean, thevinter, TheWaffleJesus, thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, TiniestShark, Titian3, tk-a369, tkdrg, tmtmtl30, ToastEnjoyer, Toby222, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, tornado-technology, TornadoTechnology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, treytipton, trixxedbit, TrixxedHeart, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, uhbg, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Utmanarn, Vaaankas, valentfingerov, valquaint, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, VerinSenpai, veritable-calamity, Veritius, Vermidia, vero5123, verslebas, vexerot, viceemargo, VigersRay, violet754, Visne, vitusveit, vlad, vlados1408, VMSolidus, vmzd, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, Vortebo, vulppine, wafehling, walksanatora, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, whatston3, widgetbeck, Will-Oliver-Br, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, Wolfkey-SomeoneElseTookMyUsername, wrexbe, WTCWR68, xeri7, xkreksx, xprospero, xRiriq, xsainteer, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, YoungThugSS14, Yousifb26, youtissoum, yunii, yuriykiss, YuriyKiss, zach-hill, Zadeon, Zalycon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, Zokkie, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex +0leshe, 0tito, 0x6273, 12rabbits, 1337dakota, 13spacemen, 154942, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, 96flo, aaron, abadaba695, Ablankmann, abregado, Absolute-Potato, Absotively, achookh, Acruid, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, adm2play, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aearo-Deepwater, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, AgentSmithRadio, Agoichi, Ahion, aiden, Aidenkrz, Aisu9, ajcm, AJCM-git, AjexRose, Alekshhh, alex, alexalexmax, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alice4267, Alithsko, Alkheemist, alliephante, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, Arcane-Waffle, archee1, ArchPigeon, ArchRBX, areitpog, Arendian, areyouconfused, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, Artxmisery, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, azzyisnothere, AzzyIsNotHere, B-Kirill, B3CKDOOR, baa14453, BackeTako, Bakke, BananaFlambe, Baptr0b0t, BarryNorfolk, BasedUser, beck-thompson, beesterman, bellwetherlogic, ben, benbryant0, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BigfootBravo, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, blitzthesquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Bokser815, bolantej, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, BWTCK, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, Camdot, capnsockless, CaptainMaru, captainsqrbeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, catdotjs, catlord, Catofquestionableethics, CatTheSystem, Centronias, Chaboricks, chairbender, Chaoticaa, Charlese2, charlie, chartman, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, CheesePlated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, ciaran, citrea, civilCornball, claustro305, Clement-O, clyf, Clyybber, CMDR-Piboy314, cnv41, coco, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, Compilatron144, CookieMasterT, coolboy911, CoolioDudio, coolmankid12345, Coolsurf6, cooperwallace, corentt, CormosLemming, CrafterKolyan, crazybrain23, Crazydave91920, creadth, CrigCrag, CroilBird, Crotalus, CrudeWax, cryals, CrzyPotato, cubixthree, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, dan, dangerrevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, DeepwaterCreations, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, devinschubert14, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinnerCalzone, DinoWattz, Disp-Dev, DisposableCrewmember42, dissidentbullet, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, DR-DOCTOR-EVIL-EVIL, Dragonjspider, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, DuckManZach, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, dylanwhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, EnrichedCaramel, Entvari, eoineoineoin, ephememory, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, farrellka-dev, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, Firewars763, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FlipBrooke, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FrostRibbon, Funce, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gamewar360, gansulalan, GaussiArson, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, Gentleman-Bird, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GnarpGnarp, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, golubgik, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Helix-ctrl, helm4142, Henry, HerCoyote23, HighTechPuddle, Hitlinemoss, hiucko, hivehum, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hoshizora, Hreno, Hrosts, htmlsystem, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iaada, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imatsoup, IMCB, impubbi, imrenq, imweax, indeano, Injazz, Insineer, insoPL, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jacktastic09, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JCGWE30, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jkwookee, jmcb, JohnGinnane, johnku1, Jophire, joshepvodka, JpegOfAFrog, jproads, JrInventor05, Jrpl, jukereise, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, kaiserbirch, KaiShibaa, kalane15, kalanosh, KamTheSythe, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, kiri-yoshikage, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, Kittygyat, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kontakt, kosticia, koteq, kotobdev, Kowlin, KrasnoshchekovPavel, Krosus777, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, LaCumbiaDelCoronavirus, lajolico, Lamrr, lanedon, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, linkbro1, LinkUyx, Litraxx, little-meow-meow, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, ljm862, lmsnoise, localcc, lokachop, lolman360, Lomcastar, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, Lusatia, Luxeator, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M1tht1c, M3739, M87S, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, maland1, malchanceux, MaloTV, manelnavola, ManelNavola, Mangohydra, marboww, Markek1, marlyn, matt, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, memeproof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterImp, MisterMecky, Mith-randalf, Mixelz, mjarduk, MjrLandWhale, mkanke-real, MLGTASTICa, mnva0, moderatelyaware, modern-nm, mokiros, momo, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, murolem, musicmanvr, MWKane, Myakot, Myctai, N3X15, nabegator, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikitosych, nikthechampiongr, Nimfar11, ninruB, Nirnael, NIXC, nkokic, NkoKirkto, nmajask, noctyrnal, noelkathegod, noirogen, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, Nyxilath, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OneZerooo0, OnyxTheBrave, Orange-Winds, OrangeMoronage9622, Orsoniks, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paige404, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, partyaddict, patrikturi, PaulRitter, pavlockblaine03, peccneck, Peptide90, peptron1, perryprog, PeterFuto, PetMudstone, pewter-wiz, PGrayCS, pgraycs, Pgriha, Phantom-Lily, pheenty, philingham, Phill101, Phooooooooooooooooooooooooooooooosphate, phunnyguy, PicklOH, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, PotRoastPiggy, Princess-Cheeseballs, ProfanedBane, PROG-MohamedDwidar, Prole0, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, pumkin69, PuroSlavKing, PursuitInAshes, Putnam3145, py01, Pyrovi, qrtDaniil, qrwas, Quantum-cross, quatre, QueerNB, QuietlyWhisper, qwerltaz, Radezolid, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rhsvenson, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, rlebell33, RobbyTheFish, robinthedragon, Rockdtben, Rohesie, rok-povsic, rokudara-sen, rolfero, RomanNovo, rosieposieeee, Roudenn, router, ruddygreat, rumaks, RumiTiger, Ruzihm, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, Samuka-C, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, ScholarNZL, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, SeamLesss, Segonist, semensponge, sephtasm, ser1-1y, Serkket, sewerpig, SG6732, sh18rw, Shaddap1, ShadeAware, ShadowCommander, shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SharkSnake98, shibechef, Siginanto, SignalWalker, siigiil, silicon14wastaken, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skybailey-dev, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, Smugman, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, solstar2, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, soupkilove, southbridge-fur, sowelipililimute, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, Spangs04, spanky-spanky, Sparlight, spartak, SpartanKadence, spderman3333, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, starbuckss14, Stealthbomber16, stellar-novas, stewie523, stomf, Stop-Signs, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, supergdpwyl, superjj18, Supernorn, SweptWasTaken, SyaoranFox, Sybil, SYNCHRONIC, Szunti, t, Tainakov, takemysoult, taonewt, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, TheBlueYowie, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheFlyingSentry, TheIntoxicatedCat, thekilk, themias, theomund, TheProNoob678, TherapyGoth, ThereDrD0, TheShuEd, thetolbean, thevinter, TheWaffleJesus, thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, TiniestShark, Titian3, tk-a369, tkdrg, tmtmtl30, ToastEnjoyer, Toby222, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, tornado-technology, TornadoTechnology, tosatur, TotallyLemon, ToxicSonicFan04, Tr1bute, treytipton, trixxedbit, TrixxedHeart, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, uhbg, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Utmanarn, Vaaankas, valentfingerov, valquaint, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, VerinSenpai, veritable-calamity, Veritius, Vermidia, vero5123, verslebas, vexerot, viceemargo, VigersRay, violet754, Visne, vitusveit, vlad, vlados1408, VMSolidus, vmzd, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, Vortebo, vulppine, wafehling, walksanatora, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, whatston3, widgetbeck, Will-Oliver-Br, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, Wolfkey-SomeoneElseTookMyUsername, wrexbe, wtcwr68, xeri7, xkreksx, xprospero, xRiriq, xsainteer, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, YoungThugSS14, Yousifb26, youtissoum, yunii, yuriykiss, YuriyKiss, zach-hill, Zadeon, Zalycon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, ZeWaka, zHonys, zionnBE, ZNixian, Zokkie, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex From 5ea928863f2aa00455ba040487f4c78ee33e4495 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Sun, 17 Aug 2025 08:39:23 -0400 Subject: [PATCH 026/194] Cleanup warnings in ChatSystem (#36773) * Cleanup warnings in ChatSystem * fix after merge --------- Co-authored-by: pa.pecherskij --- Content.Server/Chat/Systems/ChatSystem.cs | 6 +++--- Content.Shared/Chat/SharedChatSystem.cs | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 7ff12595d1..2dc001a9c9 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -322,7 +322,7 @@ public sealed partial class ChatSystem : SharedChatSystem _chatManager.ChatMessageToAll(ChatChannel.Radio, message, wrappedMessage, default, false, true, colorOverride); if (playSound) { - _audio.PlayGlobal(announcementSound == null ? DefaultAnnouncementSound : _audio.ResolveSound(announcementSound), Filter.Broadcast(), true, AudioParams.Default.WithVolume(-2f)); + _audio.PlayGlobal(announcementSound ?? DefaultAnnouncementSound, Filter.Broadcast(), true, AudioParams.Default.WithVolume(-2f)); } _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Global station announcement from {sender}: {message}"); } @@ -352,7 +352,7 @@ public sealed partial class ChatSystem : SharedChatSystem _chatManager.ChatMessageToManyFiltered(filter, ChatChannel.Radio, message, wrappedMessage, source ?? default, false, true, colorOverride); if (playSound) { - _audio.PlayGlobal(announcementSound?.ToString() ?? DefaultAnnouncementSound, filter, true, AudioParams.Default.WithVolume(-2f)); + _audio.PlayGlobal(announcementSound ?? DefaultAnnouncementSound, filter, true, AudioParams.Default.WithVolume(-2f)); } _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Station Announcement from {sender}: {message}"); } @@ -392,7 +392,7 @@ public sealed partial class ChatSystem : SharedChatSystem if (playDefaultSound) { - _audio.PlayGlobal(announcementSound?.ToString() ?? DefaultAnnouncementSound, filter, true, AudioParams.Default.WithVolume(-2f)); + _audio.PlayGlobal(announcementSound ?? DefaultAnnouncementSound, filter, true, AudioParams.Default.WithVolume(-2f)); } _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Station Announcement on {station} from {sender}: {message}"); diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index 34e955a50e..d9f7f5fc57 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -3,6 +3,7 @@ using System.Text.RegularExpressions; using Content.Shared.Popups; using Content.Shared.Radio; using Content.Shared.Speech; +using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -27,7 +28,8 @@ public abstract class SharedChatSystem : EntitySystem public const int VoiceRange = 10; // how far voice goes in world units public const int WhisperClearRange = 2; // how far whisper goes while still being understandable, in world units public const int WhisperMuffledRange = 5; // how far whisper goes at all, in world units - public const string DefaultAnnouncementSound = "/Audio/Announcements/announce.ogg"; + public static readonly SoundSpecifier DefaultAnnouncementSound + = new SoundPathSpecifier("/Audio/Announcements/announce.ogg"); public static readonly ProtoId CommonChannel = "Common"; From 514c28137ccd42a638ece921acafa3f692c3e8d6 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 17 Aug 2025 20:50:57 +0200 Subject: [PATCH 027/194] Fix typo and make capitalization consistent in fax names (#39455) --- Resources/Maps/oasis.yml | 20 ++++++++++---------- Resources/Maps/plasma.yml | 2 +- Resources/Maps/saltern.yml | 12 ++++++------ 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 057dd96e4b..573c93ad85 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -95771,7 +95771,7 @@ entities: pos: -7.5,-34.5 parent: 2 - type: FaxMachine - name: medical + name: Medical - uid: 2423 components: - type: MetaData @@ -95780,7 +95780,7 @@ entities: pos: 25.5,4.5 parent: 2 - type: FaxMachine - name: bridge + name: Bridge - uid: 3415 components: - type: MetaData @@ -95798,7 +95798,7 @@ entities: pos: 38.5,5.5 parent: 2 - type: FaxMachine - name: lawyer + name: Lawyer - uid: 6248 components: - type: MetaData @@ -95807,7 +95807,7 @@ entities: pos: 8.5,34.5 parent: 2 - type: FaxMachine - name: engineering + name: Engineering - uid: 7988 components: - type: MetaData @@ -95816,7 +95816,7 @@ entities: pos: -11.5,35.5 parent: 2 - type: FaxMachine - name: library + name: Library - uid: 9013 components: - type: MetaData @@ -95825,7 +95825,7 @@ entities: pos: -23.5,28.5 parent: 2 - type: FaxMachine - name: atmos + name: Atmos - uid: 10599 components: - type: MetaData @@ -95834,7 +95834,7 @@ entities: pos: 9.5,-45.5 parent: 2 - type: FaxMachine - name: science + name: Science - uid: 11204 components: - type: MetaData @@ -95843,7 +95843,7 @@ entities: pos: -48.5,3.5 parent: 2 - type: FaxMachine - name: cargo + name: Cargo - uid: 11856 components: - type: MetaData @@ -95852,7 +95852,7 @@ entities: pos: -46.5,-27.5 parent: 2 - type: FaxMachine - name: news + name: News - uid: 13061 components: - type: MetaData @@ -95870,7 +95870,7 @@ entities: pos: 34.5,-21.5 parent: 2 - type: FaxMachine - name: security + name: Security - uid: 22766 components: - type: MetaData diff --git a/Resources/Maps/plasma.yml b/Resources/Maps/plasma.yml index 03e759a003..df62227ce3 100644 --- a/Resources/Maps/plasma.yml +++ b/Resources/Maps/plasma.yml @@ -77807,7 +77807,7 @@ entities: pos: -51.5,-7.5 parent: 2 - type: FaxMachine - name: Head of Personell + name: Head of Personnel - uid: 17656 components: - type: Transform diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 826045296e..58400ac0fe 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -32338,7 +32338,7 @@ entities: pos: 40.5,4.5 parent: 31 - type: FaxMachine - name: engineering + name: Engineering - uid: 2045 components: - type: Transform @@ -32353,7 +32353,7 @@ entities: pos: 9.5,-28.5 parent: 31 - type: FaxMachine - name: library + name: Library - uid: 8994 components: - type: Transform @@ -32368,15 +32368,15 @@ entities: pos: 8.5,18.5 parent: 31 - type: FaxMachine - name: hop's office + name: HoP's office - uid: 10825 components: - type: Transform pos: 1.5,32.5 parent: 31 - type: FaxMachine - destinationAddress: bridge - name: bridge + destinationAddress: Bridge + name: Bridge - proto: FaxMachineCaptain entities: - uid: 9686 @@ -32385,7 +32385,7 @@ entities: pos: 7.5,24.5 parent: 31 - type: FaxMachine - name: captain's office + name: Captain's office - proto: filingCabinetDrawerRandom entities: - uid: 4637 From 367156fba3150a1e71c2a3b0c5e39f59969756dd Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 17 Aug 2025 18:52:10 +0000 Subject: [PATCH 028/194] Automatic changelog update --- Resources/Changelog/Maps.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Changelog/Maps.yml b/Resources/Changelog/Maps.yml index 195d7b0e1a..f6c3b270fe 100644 --- a/Resources/Changelog/Maps.yml +++ b/Resources/Changelog/Maps.yml @@ -510,4 +510,11 @@ id: 63 time: '2025-08-11T15:43:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39331 +- author: Steffo99 + changes: + - message: On many stations, fax machines have slightly more consistent names. + type: Tweak + id: 64 + time: '2025-08-17T18:50:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39455 Order: 1 From 8e34228309e85d2db45e1ce04baf47318df6f94e Mon Sep 17 00:00:00 2001 From: Nox Date: Sun, 17 Aug 2025 12:00:48 -0700 Subject: [PATCH 029/194] Packed Station - North East Overhaul (#38339) Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> --- Resources/Maps/packed.yml | 34272 ++++++++++++++----------- Resources/Prototypes/Maps/packed.yml | 109 +- 2 files changed, 19553 insertions(+), 14828 deletions(-) diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 69c83395d1..c371d2f04c 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 265.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 16:27:25 - entityCount: 15464 + time: 08/17/2025 18:39:31 + entityCount: 15905 maps: - 126 grids: @@ -15,12 +15,15 @@ nullspace: [] tilemap: 0: Space 3: FloorArcadeRed + 11: FloorAstroAsteroidSandBorderless + 7: FloorAstroGrass 14: FloorBar 16: FloorBlue 17: FloorBlueCircuit 21: FloorCarpetOffice 29: FloorDark 1: FloorDarkDiagonal + 13: FloorDarkMini 34: FloorDarkMono 41: FloorEighties 44: FloorFreezer @@ -36,6 +39,7 @@ tilemap: 80: FloorShowroom 91: FloorSteel 5: FloorSteelCheckerDark + 12: FloorSteelDamaged 98: FloorSteelDirty 100: FloorSteelLime 101: FloorSteelMini @@ -43,11 +47,14 @@ tilemap: 106: FloorTechMaint 107: FloorTechMaint2 6: FloorTechMaint3 + 8: FloorTechMaintDark 110: FloorWhite 114: FloorWhiteMini + 9: FloorWhitePlastic 120: FloorWood 122: Lattice 123: Plating + 10: PlatingDamaged entities: - proto: "" entities: @@ -73,19 +80,19 @@ entities: version: 7 0,-1: ind: 0,-1 - tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAgBrAAAAAAAAewAAAAAAAHsAAAAAAAA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAADAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAMAWwAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAMAHQAAAAADAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAgBrAAAAAAAAewAAAAAAAHsAAAAAAAA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAOgAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAADAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAMAWwAAAAAAAA== version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAA== version: 7 0,-2: ind: 0,-2 - tiles: ewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAACAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAGoAAAAAAABrAAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAGsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAACAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAGoAAAAAAABrAAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAGsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAA== version: 7 0,1: ind: 0,1 - tiles: egAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAgBbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAwB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAEAewAAAAAAACIAAAAAAwAiAAAAAAEAIgAAAAACAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAAiAAAAAAEAIgAAAAADACIAAAAAAQB7AAAAAAAAewAAAAAAAA== + tiles: egAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAgBbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAEAewAAAAAAACIAAAAAAwAiAAAAAAEAIgAAAAACAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAAiAAAAAAEAIgAAAAADACIAAAAAAQB7AAAAAAAAewAAAAAAAA== version: 7 1,0: ind: 1,0 @@ -93,15 +100,15 @@ entities: version: 7 1,-1: ind: 1,-1 - tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAB0AAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB4AAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAIAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAIAeAAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAACAHsAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAHgAAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAgAdAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAAB4AAAAAAAAHQAAAAACAB0AAAAAAgB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAAB7AAAAAAAAPgAAAAAAAD4AAAAAAAAOAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAADgAAAAACAB0AAAAAAgAdAAAAAAAAeAAAAAACAHgAAAAAAwB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAABQAAAAACAFsAAAAAAQBbAAAAAAMAWwAAAAABAFsAAAAAAwAOAAAAAAMADgAAAAABAA4AAAAAAwAdAAAAAAIAHQAAAAADAHgAAAAAAAB4AAAAAAAAeAAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAAUAAAAAAwBbAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAADgAAAAABAA4AAAAAAAAOAAAAAAMAHQAAAAAAAB0AAAAAAwB4AAAAAAEAeAAAAAADAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAewAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAFsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAgB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAACAHsAAAAAAAAOAAAAAAMADgAAAAAAAA4AAAAAAgBbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAEAWwAAAAABAA== + tiles: EQAAAAAAABEAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAB0AAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAAB7AAAAAAAAHQAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB4AAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAIAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAIAeAAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAACAHsAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAHgAAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAgAdAAAAAAMALAAAAAAAACwAAAAAAAAsAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAAB4AAAAAAAAHQAAAAACAB0AAAAAAgB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAAB7AAAAAAAAPgAAAAAAAD4AAAAAAAAOAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAADgAAAAACAB0AAAAAAgAdAAAAAAAAeAAAAAACAHgAAAAAAwB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAABQAAAAACAFsAAAAAAQBbAAAAAAMAWwAAAAABAFsAAAAAAwAOAAAAAAMADgAAAAABAA4AAAAAAwAdAAAAAAIAHQAAAAADAHgAAAAAAAB4AAAAAAAAeAAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAAUAAAAAAwBbAAAAAAIAWwAAAAADAFsAAAAAAAB7AAAAAAAADgAAAAABAA4AAAAAAAAOAAAAAAMAHQAAAAAAAB0AAAAAAwB4AAAAAAEAeAAAAAADAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAewAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAFsAAAAAAAB7AAAAAAAAeAAAAAABAHgAAAAAAgB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAACAHsAAAAAAAAOAAAAAAMADgAAAAAAAA4AAAAAAgBbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAEAWwAAAAABAA== version: 7 1,-2: ind: 1,-2 - tiles: agAAAAAAAFsAAAAAAwBbAAAAAAEAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAHsAAAAAAABbAAAAAAIAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAwB7AAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAACAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAADAB0AAAAAAwB7AAAAAAAAWwAAAAABAFsAAAAAAwBbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABEAAAAAAAB7AAAAAAAAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAARAAAAAAAAawAAAAAAAB0AAAAAAwB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAHQAAAAACAB0AAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAEQAAAAAAAHsAAAAAAAAdAAAAAAEAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAB0AAAAAAwB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAA== + tiles: agAAAAAAAFsAAAAAAwBbAAAAAAEAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAHsAAAAAAABbAAAAAAIAWwAAAAACAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAwB7AAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAAAAFsAAAAAAQBbAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAACAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAB0AAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAwBbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAwB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAHQAAAAACAB0AAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAABAB0AAAAAAwB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAA== version: 7 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAABAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAeAAAAAADAHgAAAAAAAB4AAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAQB4AAAAAAEAeAAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAADAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAMAeAAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAgAdAAAAAAMAHQAAAAABAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAHQAAAAADAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAABAHgAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAeAAAAAADAHgAAAAAAAB4AAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAHgAAAAAAQB4AAAAAAEAeAAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAADAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAMAeAAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAgAdAAAAAAMAHQAAAAABAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAQB4AAAAAAIAHQAAAAADAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 1,-3: ind: 1,-3 @@ -117,15 +124,15 @@ entities: version: 7 1,1: ind: 1,1 - tiles: eAAAAAABAHsAAAAAAAAFAAAAAAEAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAwB7AAAAAAAABQAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAABbAAAAAAMAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAAUAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAQBbAAAAAAMAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgB7AAAAAAAAWwAAAAAAAFsAAAAAAwB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAABAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAADAHsAAAAAAAB4AAAAAAIAeAAAAAACAHgAAAAAAgB4AAAAAAMAeAAAAAAAAHgAAAAAAAB4AAAAAAEAWwAAAAADAFsAAAAAAQBbAAAAAAIAWwAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAAAAB0AAAAAAwB7AAAAAAAAeAAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAAAAHgAAAAAAAB4AAAAAAIAeAAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAewAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAACAHgAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: eAAAAAABAHsAAAAAAAAFAAAAAAEAewAAAAAAAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAwB7AAAAAAAABQAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAAAIAAAAAAAACAAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAAUAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAQB7AAAAAAAACAAAAAAAAAgAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAMAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAADAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABbAAAAAAMAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAwBrAAAAAAAAHQAAAAAAAAUAAAAAAAAFAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgBrAAAAAAAAHQAAAAAAAB0AAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAawAAAAAAAB0AAAAAAQAdAAAAAAAAawAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAACAHgAAAAAAgB4AAAAAAMAeAAAAAAAAHgAAAAAAAB4AAAAAAEAeAAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAAAAHgAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHgAAAAAAgB4AAAAAAIAeAAAAAACAHgAAAAAAAB4AAAAAAMAeAAAAAACAHgAAAAAAAB4AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAA== version: 7 2,0: ind: 2,0 - tiles: WwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAAFAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAA+AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAEAbgAAAAACAB0AAAAAAQB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAEAewAAAAAAAD4AAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAwAdAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAEAewAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAPgAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAEAawAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAA+AAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgB7AAAAAAAANgAAAAAAADYAAAAAAAAdAAAAAAMAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAHQAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAEAWwAAAAACAA== + tiles: WwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAAFAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAA+AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAEAbgAAAAACAB0AAAAAAQB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAEAewAAAAAAAD4AAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAgBbAAAAAAEAewAAAAAAAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAwAdAAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAEAewAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAPgAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAEAawAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAA+AAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAACAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAIAHQAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAAB7AAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAHQAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAACAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAgBbAAAAAAMAWwAAAAADAFsAAAAAAABbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAEAWwAAAAACAA== version: 7 2,-1: ind: 2,-1 - tiles: WwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIATQAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAACAE0AAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAAdAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAMAewAAAAAAAC8AAAAAAAAvAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAeAAAAAACAHgAAAAAAwB4AAAAAAMAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAAAvAAAAAAAALwAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAALwAAAAAAAC8AAAAAAAAOAAAAAAAADgAAAAADAA4AAAAAAwAOAAAAAAIADgAAAAABAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAAADgAAAAABAA4AAAAAAwAOAAAAAAIADgAAAAACAA4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAWwAAAAABADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAABAA4AAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAMAewAAAAAAAFsAAAAAAwA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAOgAAAAAAAFsAAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAQAOAAAAAAIADgAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAABAHsAAAAAAABbAAAAAAAAOgAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAADoAAAAAAABbAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAMADgAAAAABAA4AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAWwAAAAACADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAAAAA4AAAAAAgAOAAAAAAIADgAAAAACAA4AAAAAAAAOAAAAAAMAewAAAAAAAB0AAAAAAQAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQB7AAAAAAAAOgAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAA== + tiles: WwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIATQAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAACAE0AAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAAdAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAAB4AAAAAAAAeAAAAAACAHgAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAMAewAAAAAAAC8AAAAAAAAvAAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAEAeAAAAAACAHgAAAAAAwB4AAAAAAMAewAAAAAAAFsAAAAAAABbAAAAAAIAWwAAAAABAHsAAAAAAAAvAAAAAAAALwAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAewAAAAAAAB0AAAAAAwAdAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAALwAAAAAAAC8AAAAAAAAOAAAAAAAADgAAAAADAA4AAAAAAwAOAAAAAAIADgAAAAABAB0AAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAgBbAAAAAAMAWwAAAAACAFsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAAADgAAAAABAA4AAAAAAwAOAAAAAAIADgAAAAACAA4AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAWwAAAAABADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAABAA4AAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAMAewAAAAAAAFsAAAAAAwA6AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAMAOgAAAAAAAFsAAAAAAQAOAAAAAAMADgAAAAACAA4AAAAAAQAOAAAAAAIADgAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAABAHsAAAAAAABbAAAAAAAAOgAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAADoAAAAAAABbAAAAAAMADgAAAAACAA4AAAAAAgAOAAAAAAMADgAAAAABAA4AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAEAWwAAAAACADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAAA6AAAAAAAAWwAAAAAAAA4AAAAAAgAOAAAAAAIADgAAAAACAA4AAAAAAAAOAAAAAAMAewAAAAAAAB0AAAAAAQAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQB7AAAAAAAAOgAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAADAHsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAFsAAAAAAgBbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAA== version: 7 1,-4: ind: 1,-4 @@ -141,11 +148,11 @@ entities: version: 7 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAA== version: 7 3,-1: ind: 3,-1 @@ -161,23 +168,23 @@ entities: version: 7 1,2: ind: 1,2 - tiles: ewAAAAAAAHgAAAAAAwB4AAAAAAMAeAAAAAABAHgAAAAAAAB4AAAAAAEAeAAAAAADAHgAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAIAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAADAHgAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAIAWwAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAA2AAAAAAAANgAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAAAewAAAAAAABEAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQB7AAAAAAAAHQAAAAABAHgAAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAewAAAAAAAB0AAAAAAQB4AAAAAAEAewAAAAAAAB0AAAAAAQA2AAAAAAAAHQAAAAAAAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAHsAAAAAAAAdAAAAAAAAeAAAAAAAAHsAAAAAAAAdAAAAAAMANgAAAAAAAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwB7AAAAAAAAHQAAAAADAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAMAewAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAQAAAAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAABAA== + tiles: ewAAAAAAAHgAAAAAAwB4AAAAAAMAeAAAAAABAHgAAAAAAAB4AAAAAAEAeAAAAAADAHgAAAAAAAB4AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAADAHgAAAAAAAB4AAAAAAEAeAAAAAACAHgAAAAAAAB4AAAAAAIAeAAAAAAAAFsAAAAAAgBbAAAAAAIAWwAAAAACAFsAAAAAAABbAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAMAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAABbAAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAQBbAAAAAAAAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQB7AAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQB7AAAAAAAAeAAAAAAAAHgAAAAAAQB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAewAAAAAAAHgAAAAAAAB4AAAAAAEAewAAAAAAAB0AAAAAAQA2AAAAAAAAHQAAAAAAAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAAdAAAAAAMANgAAAAAAAB0AAAAAAgB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwB7AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAADAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAQAAAAAAAAAAegAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAgAdAAAAAAEAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAABAA== version: 7 2,1: ind: 2,1 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAgAdAAAAAAIAHQAAAAACAB0AAAAAAAAdAAAAAAIAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgBbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAMAHQAAAAACAB0AAAAAAQAdAAAAAAAAHQAAAAACAHsAAAAAAAA+AAAAAAAAPgAAAAAAAD4AAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAABbAAAAAAIAWwAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAPgAAAAAAAD4AAAAAAAA+AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAEAWwAAAAACAFsAAAAAAABbAAAAAAMAWwAAAAABAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAD4AAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAGsAAAAAAABbAAAAAAIAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAABAHsAAAAAAAAdAAAAAAEAHQAAAAADAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAIAWwAAAAADAFsAAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAgB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAADAFsAAAAAAwBbAAAAAAEAewAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAMAewAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAACAHsAAAAAAABNAAAAAAAAHQAAAAABAB0AAAAAAgBNAAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAB0AAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAwAdAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAwB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAADAFsAAAAAAQAdAAAAAAAAewAAAAAAAE0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAgBNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAMAHQAAAAABAHsAAAAAAABNAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEATQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAB0AAAAAAAB7AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAMAWwAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAEAWwAAAAACAFsAAAAAAwBbAAAAAAIAWwAAAAABAFsAAAAAAQBrAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAMAWwAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAEAawAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAwBbAAAAAAIAWwAAAAACAB0AAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB7AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAgAdAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAewAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAB0AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAWwAAAAADAFsAAAAAAQBbAAAAAAEAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAawAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAgB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAawAAAAAAAFAAAAAAAABQAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAABQAAAAAAAAUAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAFAAAAAAAABQAAAAAAAB0AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAAdAAAAAAAAawAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAABAFsAAAAAAABbAAAAAAAAWwAAAAAAAB0AAAAAAAB7AAAAAAAACQAAAAAAAG4AAAAAAAAJAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAMAWwAAAAADAFsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAADAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAAAAGsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAABAFsAAAAAAwBbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABrAAAAAAAAWwAAAAAAAA== version: 7 2,2: ind: 2,2 - tiles: ewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABrAAAAAAAANgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAawAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAARAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAEAeAAAAAAAAHgAAAAAAgB4AAAAAAMAeAAAAAACAHgAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHgAAAAAAAB4AAAAAAMAewAAAAAAAHgAAAAAAAB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHgAAAAAAwB4AAAAAAEAeAAAAAACAHsAAAAAAAB4AAAAAAIAeAAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB4AAAAAAIAeAAAAAADAHgAAAAAAQB7AAAAAAAAHQAAAAAAAHgAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQB7AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAawAAAAAAAGoAAAAAAABqAAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAAB7AAAAAAAATQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAHgAAAAAAwB4AAAAAAEAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB4AAAAAAEAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAACAHgAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAADAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAGsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAwB4AAAAAAEAeAAAAAAAAHgAAAAAAAB4AAAAAAIAewAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAHQAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAYgAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAQB7AAAAAAAAAAAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAADAAAAAAAAGIAAAAAAABbAAAAAAAAewAAAAAAAFsAAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAIAewAAAAAAAAAAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAYgAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAA== version: 7 1,3: ind: 1,3 - tiles: AAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,3: ind: 2,3 - tiles: HQAAAAADAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HQAAAAADAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-1: ind: 4,-1 @@ -185,59 +192,59 @@ entities: version: 7 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAAAeAAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB4AAAAAAAAeAAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAA== version: 7 3,0: ind: 3,0 - tiles: bgAAAAABAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAwBuAAAAAAAAbgAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAbgAAAAACAG4AAAAAAQBuAAAAAAEAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAADAG4AAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAwBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAIAbgAAAAABAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAGsAAAAAAABrAAAAAAAAHQAAAAABAG4AAAAAAABuAAAAAAEAbgAAAAABAHsAAAAAAAAdAAAAAAEAHQAAAAAAAHsAAAAAAAAdAAAAAAAAeAAAAAADAHgAAAAAAwB4AAAAAAMAHQAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAB0AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAgB7AAAAAAAAHQAAAAABAGsAAAAAAAB7AAAAAAAAHQAAAAABAHgAAAAAAQB4AAAAAAMAeAAAAAACAB0AAAAAAgAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAABrAAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAADAHsAAAAAAAAdAAAAAAMAawAAAAAAAHsAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAEAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAADAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAwBuAAAAAAEAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAAAAB0AAAAAAgBuAAAAAAEAbgAAAAABAG4AAAAAAQBuAAAAAAEAbgAAAAADAG4AAAAAAwBuAAAAAAAAbgAAAAACAG4AAAAAAwBuAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAAdAAAAAAMAbgAAAAAAAG4AAAAAAgBuAAAAAAMAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAABAA== + tiles: bgAAAAABAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAACAB0AAAAAAwBuAAAAAAAAbgAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAbgAAAAACAG4AAAAAAQBuAAAAAAEAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAADAG4AAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAwBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAIAbgAAAAABAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAcgAAAAAAAHIAAAAAAAByAAAAAAAAewAAAAAAAGsAAAAAAAANAAAAAAAAawAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABrAAAAAAAADQAAAAAAAGsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAFsAAAAAAABrAAAAAAAAewAAAAAAAGsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAABrAAAAAAAAawAAAAAAAA0AAAAAAABrAAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAABbAAAAAAAAawAAAAAAAHsAAAAAAABrAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAewAAAAAAAGsAAAAAAAANAAAAAAAAawAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABrAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAawAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAA== version: 7 4,0: ind: 4,0 - tiles: bgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAABAG4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAIAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAwBuAAAAAAIAewAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAgBuAAAAAAMAbgAAAAADAHsAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAACAFsAAAAAAgBuAAAAAAEAbgAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAMAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAACAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAWwAAAAACAFsAAAAAAQBbAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAewAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAbgAAAAABAG4AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAIAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: bgAAAAACAG4AAAAAAwBuAAAAAAMAbgAAAAACAG4AAAAAAABuAAAAAAMAewAAAAAAAHsAAAAAAAAdAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAgBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAABAG4AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAwAdAAAAAAIAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAQB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAIAbgAAAAADAG4AAAAAAwBuAAAAAAIAewAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAABAG4AAAAAAABuAAAAAAMAewAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAgBuAAAAAAMAbgAAAAADAHsAAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQB7AAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAACAGsAAAAAAABuAAAAAAEAbgAAAAABAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAMAewAAAAAAAD4AAAAAAAA+AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAA+AAAAAAAAPgAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAWwAAAAAAAGsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,0: ind: 5,0 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHsAAAAAAAB4AAAAAAIAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAAAAAQAdAAAAAAEAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAIAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAwB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHsAAAAAAAB4AAAAAAIAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAeAAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,1: ind: 3,1 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAABABEAAAAAAAAdAAAAAAMAEQAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAABAG4AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAbgAAAAACAG4AAAAAAgARAAAAAAAAHQAAAAADABEAAAAAAABuAAAAAAEAbgAAAAAAAG4AAAAAAgBuAAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAADAG4AAAAAAwBuAAAAAAEAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAbgAAAAADAG4AAAAAAQBuAAAAAAIAbgAAAAACAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAEAEQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAIAbgAAAAACAG4AAAAAAQBuAAAAAAMAbgAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAADAHsAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAABAG4AAAAAAQBuAAAAAAAAbgAAAAABAG4AAAAAAABuAAAAAAEAbgAAAAADAG4AAAAAAgB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAACAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAQBuAAAAAAIAbgAAAAACAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAgBuAAAAAAIAewAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAE0AAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABNAAAAAAAATQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAQAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAQB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABABEAAAAAAAB7AAAAAAAAEQAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAABAG4AAAAAAQBuAAAAAAMAbgAAAAAAAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAbgAAAAACAG4AAAAAAgBuAAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAEAbgAAAAAAAG4AAAAAAgBuAAAAAAAAbgAAAAABAG4AAAAAAwBuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAAAAG4AAAAAAQBuAAAAAAEAbgAAAAABAG4AAAAAAwBuAAAAAAMAbgAAAAADAG4AAAAAAwBuAAAAAAEAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAIAbgAAAAADABEAAAAAAAB7AAAAAAAAEQAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAIAbgAAAAABAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAbgAAAAADAG4AAAAAAAARAAAAAAAAewAAAAAAABEAAAAAAAB7AAAAAAAAbgAAAAAAAG4AAAAAAABuAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAACAHsAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAABuAAAAAAAAagAAAAAAAHsAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAB7AAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAQBrAAAAAAAAbgAAAAABAG4AAAAAAABuAAAAAAAAbgAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAMAawAAAAAAAG4AAAAAAgBuAAAAAAEAbgAAAAADAG4AAAAAAQBuAAAAAAIAawAAAAAAAG4AAAAAAABuAAAAAAIAbgAAAAAAAG4AAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAwBuAAAAAAEAbgAAAAAAAHsAAAAAAABuAAAAAAEAbgAAAAAAAG4AAAAAAABuAAAAAAAAbgAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA0AAAAAAAANAAAAAAAAawAAAAAAAE0AAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAATQAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAATQAAAAAAAE0AAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAABrAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAAWwAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAA== version: 7 3,3: ind: 3,3 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAFsAAAAAAABiAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAGIAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABbAAAAAAAAYgAAAAAAAFsAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAADAAAAAAAAHsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,2: ind: 3,2 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAIAWwAAAAADAFsAAAAAAwBbAAAAAAAAWwAAAAACAB0AAAAAAQAdAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAwBbAAAAAAMAWwAAAAACAFsAAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAABAFsAAAAAAgBbAAAAAAMAewAAAAAAAB0AAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAQBbAAAAAAEAWwAAAAADAFsAAAAAAgACAAAAAAIAWwAAAAACAHsAAAAAAAAdAAAAAAMAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAIAWwAAAAAAAFsAAAAAAwAdAAAAAAAAHQAAAAACAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAFsAAAAAAQBbAAAAAAAAewAAAAAAAB0AAAAAAwB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwBbAAAAAAIAWwAAAAABAHsAAAAAAAAdAAAAAAIAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAWwAAAAACAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAEAHQAAAAACAFsAAAAAAQBbAAAAAAIAHQAAAAAAAB0AAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgB7AAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: TAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAAAWwAAAAAAAGsAAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAALAAAAAAAACwAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAAB7AAAAAAAACwAAAAAAAAsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAsAAAAAAAALAAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAAAAHsAAAAAAAAGAAAAAAAABgAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHsAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB7AAAAAAAABQAAAAAAAAoAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAB7AAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAewAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABiAAAAAAAAYgAAAAAAAFsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAABbAAAAAAAAYgAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAWwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 4,1: ind: 4,1 - tiles: bgAAAAADAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAWwAAAAADAFsAAAAAAgB7AAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAADAGoAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgB7AAAAAAAAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAbgAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAIAAQAAAAACAAEAAAAAAwB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAG4AAAAAAwB7AAAAAAAAewAAAAAAAGIAAAAAAABrAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAAEAAAAAAAABAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAewAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAbgAAAAACAHsAAAAAAABiAAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAQB7AAAAAAAAeAAAAAACAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAATQAAAAAAAHsAAAAAAABiAAAAAAAAewAAAAAAAGsAAAAAAAB4AAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAAQAAAAAAAB7AAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAEAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAAB6AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAEAeAAAAAABAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAegAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAADAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAACAA== + tiles: WwAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAGoAAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAWwAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAADAGoAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAgB7AAAAAAAAHQAAAAABAB0AAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAMAWwAAAAABAHsAAAAAAAAdAAAAAAAAewAAAAAAAB0AAAAAAgAdAAAAAAIAAQAAAAACAAEAAAAAAwB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAABrAAAAAAAAHQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAAEAAAAAAAABAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAbgAAAAAAAHsAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGIAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAGoAAAAAAAB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAATQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAB0AAAAAAABrAAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAIAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAHQAAAAACAA== version: 7 4,2: ind: 4,2 - tiles: AAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAGsAAAAAAAB4AAAAAAMAeAAAAAAAAHgAAAAAAgB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAeAAAAAACAHsAAAAAAAB4AAAAAAIAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAeAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAMAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAgB7AAAAAAAAeAAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABrAAAAAAAAeAAAAAACAHgAAAAAAgB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAAB6AAAAAAAATAAAAAADAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAMAegAAAAAAAEwAAAAAAgBrAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABAHoAAAAAAABMAAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAagAAAAAAAGoAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgB6AAAAAAAATAAAAAABAA== + tiles: egAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABbAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAWwAAAAAAAHsAAAAAAAAHAAAAAAAAWwAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAAABwAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAABwAAAAAAAAcAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB4AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHgAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAeAAAAAACAHgAAAAAAgB4AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHgAAAAAAAB4AAAAAAIAeAAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAA== version: 7 4,3: ind: 4,3 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAgB6AAAAAAAATAAAAAACAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAEAegAAAAAAAEwAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,-1: ind: 5,-1 - tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABAG4AAAAAAQBuAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAQBuAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAABuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABAG4AAAAAAQBuAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAwBuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAEAbgAAAAACAG4AAAAAAQB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAQBuAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG4AAAAAAABuAAAAAAIAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABuAAAAAAAAbgAAAAACAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADAG4AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAewAAAAAAAGsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAwB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAagAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABqAAAAAAAAagAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,2: ind: 5,2 - tiles: ewAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAAE0AAAAAAAA2AAAAAAAATQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAHQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAHoAAAAAAABMAAAAAAIAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAQB6AAAAAAAATAAAAAACAAAAAAAAAABMAAAAAAEAegAAAAAAAEwAAAAAAQAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAEAegAAAAAAAEwAAAAAAgB6AAAAAAAATAAAAAACAHoAAAAAAABMAAAAAAMAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABAHoAAAAAAABMAAAAAAIAegAAAAAAAEwAAAAAAQB6AAAAAAAATAAAAAABAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAAB6AAAAAAAATAAAAAACAAAAAAAAAABMAAAAAAAAegAAAAAAAEwAAAAAAQB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: ewAAAAAAAB0AAAAAAQB7AAAAAAAAewAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAIAHQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAwB7AAAAAAAAHQAAAAAAAB0AAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,3: ind: 5,3 - tiles: egAAAAAAAEwAAAAAAwB6AAAAAAAATAAAAAADAHoAAAAAAABMAAAAAAAAegAAAAAAAEwAAAAAAQAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABMAAAAAAIAegAAAAAAAEwAAAAAAgAAAAAAAAAATAAAAAAAAHoAAAAAAABMAAAAAAIAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAATAAAAAACAHoAAAAAAABMAAAAAAEAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,-3: ind: 3,-3 @@ -245,11 +252,11 @@ entities: version: 7 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAEwAAAAAAwBMAAAAAAEATAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAAB7AAAAAAAAHQAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAgBMAAAAAAAATAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAwBuAAAAAAAAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAHQAAAAACAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAAAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAEwAAAAAAwBMAAAAAAEATAAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAGsAAAAAAABuAAAAAAMAbgAAAAABAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAawAAAAAAAHsAAAAAAABrAAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAMAbgAAAAAAAG4AAAAAAABuAAAAAAMAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAEwAAAAAAgBMAAAAAAAATAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAG4AAAAAAQBuAAAAAAAAbgAAAAACAG4AAAAAAwBuAAAAAAAAbgAAAAABAG4AAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABuAAAAAAAAbgAAAAABAG4AAAAAAgBuAAAAAAEAbgAAAAACAG4AAAAAAQBuAAAAAAAAawAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAABuAAAAAAAAbgAAAAACAG4AAAAAAABuAAAAAAAAbgAAAAADAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 6,-1: ind: 6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAgBuAAAAAAMAbgAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABQAAAAAAAAUAAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAUAAAAAAAAFAAAAAAAABbAAAAAAIAFQAAAAAAABUAAAAAAAAVAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAbgAAAAADAG4AAAAAAgBuAAAAAAMAbgAAAAAAAG4AAAAAAQBuAAAAAAMAbgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABrAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAABQAAAAAAAAUAAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAUAAAAAAAAFAAAAAAAABrAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAHsAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAB7AAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 7,-2: ind: 7,-2 @@ -261,7 +268,7 @@ entities: version: 7 5,1: ind: 5,1 - tiles: egAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABNAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAABEAAAAAAAA2AAAAAAAAEQAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAgAdAAAAAAIATQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB7AAAAAAAAEQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABADYAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAiAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADADYAAAAAAAAdAAAAAAIAIgAAAAAAAB0AAAAAAgARAAAAAAAAewAAAAAAAHsAAAAAAAA2AAAAAAAAHQAAAAACAB0AAAAAAwBNAAAAAAAAewAAAAAAABEAAAAAAAAdAAAAAAEAEQAAAAAAAHsAAAAAAAARAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMANgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== + tiles: egAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAegAAAAAAAHsAAAAAAAB6AAAAAAAAewAAAAAAAHsAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAMAewAAAAAAAGoAAAAAAAB7AAAAAAAAewAAAAAAADYAAAAAAAA2AAAAAAAANgAAAAAAAHsAAAAAAAB7AAAAAAAAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAHsAAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAQB7AAAAAAAAEQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAABADYAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAiAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAACAE0AAAAAAAAdAAAAAAMAHQAAAAADADYAAAAAAAAdAAAAAAIAIgAAAAAAAB0AAAAAAgBNAAAAAAAAewAAAAAAAHsAAAAAAAA2AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAAAewAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAHsAAAAAAAARAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMANgAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAA== version: 7 3,-4: ind: 3,-4 @@ -269,7 +276,7 @@ entities: version: 7 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAIgAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAgB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADACIAAAAAAgB7AAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB7AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGoAAAAAAAB7AAAAAAAAIgAAAAACAFsAAAAAAABbAAAAAAAAWwAAAAABAGsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAACAFsAAAAAAgB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAAHsAAAAAAAAiAAAAAAIAWwAAAAACAFsAAAAAAgBbAAAAAAIAewAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAFsAAAAAAgBbAAAAAAAAWwAAAAABAHsAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHsAAAAAAABbAAAAAAAAWwAAAAABAFsAAAAAAgB7AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB7AAAAAAAAWwAAAAACAFsAAAAAAABbAAAAAAMAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAewAAAAAAAFsAAAAAAQBbAAAAAAIAWwAAAAADACIAAAAAAgB7AAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -2,-1: ind: -2,-1 @@ -458,7 +465,7 @@ entities: 1,-5: 0: 53486 2,-4: - 0: 7399 + 0: 7271 2,-3: 0: 62379 2,-2: @@ -466,26 +473,26 @@ entities: 2,-5: 0: 30310 3,-4: - 0: 11136 + 0: 43791 3,-3: - 0: 40174 + 0: 40162 3,-2: 0: 52573 3,-5: - 0: 61152 + 0: 65535 4,-4: - 0: 37332 + 0: 37319 4,-3: - 0: 10923 + 0: 10937 4,-2: 0: 65295 4,-1: 0: 61919 -4,-8: - 1: 61688 - 0: 4 + 1: 61624 + 0: 68 -5,-8: - 1: 34944 + 1: 34952 -4,-7: 1: 112 0: 29184 @@ -497,8 +504,8 @@ entities: 0: 17408 1: 35807 -3,-8: - 0: 69 - 1: 61624 + 0: 85 + 1: 61608 -3,-7: 1: 3840 -3,-6: @@ -508,8 +515,8 @@ entities: 0: 21760 1: 43759 -2,-8: - 0: 21 - 1: 61674 + 0: 85 + 1: 61610 -2,-7: 1: 768 -2,-6: @@ -518,8 +525,8 @@ entities: 0: 21760 1: 35471 -1,-8: - 0: 34953 - 1: 12848 + 0: 34969 + 1: 12832 -1,-6: 0: 3840 1: 8 @@ -552,7 +559,7 @@ entities: 2,-7: 0: 7406 2,-6: - 0: 60655 + 0: 27887 2,-8: 0: 61166 3,-8: @@ -568,25 +575,25 @@ entities: 4,-6: 0: 3855 4,-5: - 0: 22352 + 0: 30583 0,6: 0: 2056 - 1,6: - 0: 53199 1,5: + 0: 56512 1: 16 - 0: 52416 + 1,6: + 0: 57295 1,7: 1: 16 - 0: 60428 + 0: 60620 1,8: - 0: 15086 + 0: 47854 2,5: 0: 65529 2,6: 0: 65535 2,7: - 0: 48063 + 0: 47903 2,8: 0: 35763 3,5: @@ -594,7 +601,7 @@ entities: 3,6: 0: 46079 3,7: - 0: 48063 + 0: 48015 4,4: 0: 3845 4,5: @@ -718,11 +725,12 @@ entities: 8,-5: 0: 64287 0,-11: - 1: 14080 + 1: 4368 -1,-11: - 1: 14896 + 1: 58608 + 0: 4096 0,-10: - 1: 243 + 1: 241 0: 49152 1,-10: 1: 3316 @@ -931,24 +939,22 @@ entities: 0: 65534 6,8: 0: 65279 - 7,5: - 0: 61550 7,6: - 0: 3839 - 7,4: - 0: 3680 + 0: 61679 7,7: - 0: 3822 - 7,8: - 0: 53703 + 0: 65295 + 7,4: + 0: 36576 + 7,5: + 0: 58606 8,4: 0: 65520 8,5: - 0: 65535 + 0: 29439 8,6: - 0: 65535 + 0: 29303 8,7: - 0: 65407 + 0: 65527 9,0: 0: 20735 9,1: @@ -969,8 +975,6 @@ entities: 0: 65527 10,-1: 0: 65167 - 10,4: - 0: 61156 11,0: 0: 65327 11,1: @@ -986,13 +990,13 @@ entities: 12,0: 0: 65263 12,1: - 0: 3854 + 0: 36622 12,2: 0: 65534 12,3: 0: 61408 9,-3: - 0: 57275 + 0: 57339 9,-2: 0: 65535 10,-3: @@ -1094,31 +1098,32 @@ entities: 2,-14: 1: 21847 -4,-11: - 1: 62448 + 1: 46064 + 0: 16384 -5,-11: 1: 34944 -4,-10: 1: 48008 0: 1092 -5,-10: - 1: 44768 + 1: 44776 -5,-9: 1: 60074 -3,-11: - 1: 45296 - 0: 16384 + 1: 41200 + 0: 20480 -3,-10: 0: 1365 1: 64168 -2,-11: - 1: 57584 - 0: 4096 + 1: 41200 + 0: 20480 -2,-10: 0: 1365 1: 47752 -1,-10: 0: 273 - 1: 28672 + 1: 29764 12,-3: 0: 58470 13,-4: @@ -1188,13 +1193,13 @@ entities: 1: 9728 0,9: 1: 9826 - 0: 2176 0,10: 1: 59938 1,9: - 0: 32754 + 3: 32752 + 0: 2 1,10: - 0: 7 + 3: 7 1: 63488 2,10: 1: 15906 @@ -1238,121 +1243,114 @@ entities: 6,12: 0: 15 1: 61440 + 7,8: + 0: 49072 7,9: - 0: 53727 + 0: 53691 7,10: - 0: 7645 + 0: 40413 7,11: - 0: 65527 + 0: 65523 7,12: 0: 15 1: 61440 8,8: - 0: 21746 + 0: 7644 8,9: - 0: 14557 + 0: 47359 8,10: - 0: 30591 + 0: 65459 8,11: 0: 8177 9,4: - 0: 65520 + 0: 65248 9,5: - 0: 57296 + 0: 4095 9,6: - 0: 56733 + 0: 65535 9,7: - 0: 65293 + 0: 65358 + 9,8: + 0: 35763 + 10,4: + 0: 64976 10,5: - 0: 64302 + 0: 3057 10,6: - 0: 30491 + 0: 53757 10,7: - 0: 65287 + 0: 65485 10,8: - 0: 13105 - 1: 34944 + 0: 64433 11,5: - 0: 48010 + 0: 52692 11,6: - 0: 59579 + 0: 56541 11,7: - 0: 30574 - 11,8: - 0: 61030 + 0: 65309 12,4: - 0: 61408 + 0: 61424 12,5: 0: 57598 12,6: - 0: 28910 + 0: 65294 12,7: - 1: 3840 - 0: 6 + 0: 65327 + 11,8: + 0: 48056 8,12: 0: 1 - 1: 12800 - 9,8: - 0: 35760 + 1: 61952 9,9: - 0: 36795 + 0: 65339 9,10: - 0: 15291 - 9,12: - 1: 4369 + 0: 56796 9,11: - 0: 8 + 0: 34952 10,9: - 0: 3 - 1: 3720 + 0: 57867 10,10: - 0: 40944 + 0: 56768 10,11: - 0: 2203 - 10,12: - 1: 50244 - 11,10: - 0: 4914 - 1: 34944 - 11,11: - 0: 53009 - 1: 12 + 0: 65521 11,9: - 0: 26214 + 0: 56331 + 11,10: + 0: 7676 + 11,11: + 0: 65532 12,8: - 0: 65392 + 0: 56831 12,9: - 1: 16624 + 0: 7645 12,10: - 1: 36804 + 0: 35771 12,11: - 0: 13056 - 1: 2052 + 0: 63347 + 4,13: + 1: 226 5,13: - 1: 36066 - 5,14: - 1: 236 + 1: 242 6,13: - 1: 63728 - 6,14: - 1: 241 + 1: 240 7,13: - 1: 63728 - 7,14: - 1: 252 + 1: 240 8,13: - 1: 318 - 8,14: - 1: 49 + 1: 242 + 9,12: + 1: 62528 9,13: - 1: 15 + 1: 244 + 10,12: + 1: 61440 10,13: - 1: 7 + 1: 240 11,12: 1: 61440 - 12,12: - 1: 12800 - 0: 14 + 11,13: + 1: 240 + 12,13: + 1: 241 16,-3: 0: 61166 16,0: @@ -1378,7 +1376,7 @@ entities: 18,-1: 0: 65399 18,-5: - 0: 62692 + 0: 62702 18,0: 0: 4081 19,-4: @@ -1406,40 +1404,45 @@ entities: 1: 65024 18,-7: 1: 63232 + 18,-6: + 1: 1 + 0: 16384 19,-7: 1: 63488 + 19,-6: + 1: 1 20,-7: 1: 7936 20,-5: 0: 61440 13,1: - 0: 12163 + 0: 3971 13,2: - 0: 65535 + 0: 32631 13,3: - 0: 61412 + 0: 61408 14,1: 0: 12089 - 14,3: - 0: 65526 14,2: - 0: 26214 + 0: 30583 + 14,3: + 0: 65527 14,4: 0: 65532 15,1: 0: 3855 15,2: - 0: 65535 + 0: 65399 15,3: 0: 65524 15,4: - 0: 21789 + 0: 54557 16,1: - 0: 26383 + 0: 30479 + 16,2: + 0: 48015 16,3: 0: 64976 - 16,2: - 0: 61166 16,4: 0: 65309 17,1: @@ -1447,7 +1450,7 @@ entities: 17,2: 0: 65309 17,3: - 0: 65520 + 0: 65522 17,4: 0: 3855 18,1: @@ -1460,11 +1463,11 @@ entities: 0: 1894 19,1: 0: 28791 + 19,2: + 0: 61542 19,3: 0: 15 1: 16128 - 19,2: - 0: 1638 19,4: 1: 16025 20,0: @@ -1479,9 +1482,9 @@ entities: 20,4: 1: 19 21,0: - 0: 20985 + 0: 46073 21,1: - 0: 12639 + 0: 12735 21,2: 0: 30499 21,3: @@ -1490,120 +1493,129 @@ entities: 21,-1: 0: 48127 22,0: - 0: 51 + 0: 4147 + 22,1: + 0: 19 + 1: 8192 22,3: 1: 3874 22,-1: 0: 12919 1: 32768 - 22,1: - 1: 8192 22,2: 1: 8738 + 23,0: + 0: 256 + 1: 17 + 23,1: + 0: 256 + 1: 4096 23,3: 1: 273 - 23,0: - 1: 4369 23,-1: 1: 4352 - 23,1: - 1: 4369 23,2: 1: 4369 13,4: 0: 65520 13,5: - 0: 60447 + 0: 59583 13,6: - 0: 239 - 1: 61440 + 0: 61679 13,7: - 1: 273 - 0: 49152 + 0: 30479 13,8: - 0: 65518 + 0: 57983 14,5: - 0: 65487 + 0: 64319 14,6: - 0: 255 - 1: 61440 + 0: 47295 14,7: - 0: 28672 + 0: 47603 14,8: - 0: 47935 + 0: 29115 15,5: - 0: 64789 + 0: 65285 15,6: - 0: 50431 - 1: 4096 + 0: 61695 15,7: - 1: 44817 - 0: 12 + 0: 4572 + 1: 49152 15,8: - 1: 25668 + 0: 12049 + 1: 12 16,5: 0: 56783 16,6: 0: 56541 16,7: - 0: 50381 - 1: 4352 + 0: 50397 + 1: 4096 + 12,12: + 0: 3822 13,12: - 0: 34959 - 1: 768 + 0: 36351 + 13,13: + 1: 48 + 0: 2184 13,11: - 0: 49152 - 1: 302 + 0: 62207 14,12: - 0: 8751 - 1: 2048 + 0: 14335 14,11: - 0: 28672 - 1: 143 + 0: 61694 + 14,13: + 0: 546 + 1: 128 15,12: - 0: 15 - 1: 256 + 0: 4095 + 15,13: + 1: 240 15,11: - 0: 34816 - 1: 768 + 0: 65263 + 16,13: + 1: 17 13,10: - 1: 12544 - 0: 206 + 0: 65535 13,9: - 0: 61166 + 0: 3822 14,9: - 0: 15295 + 0: 61007 14,10: - 0: 127 - 1: 32768 - 15,10: - 1: 8100 + 0: 61152 15,9: - 1: 17510 - 16,10: - 1: 272 - 0: 56524 - 16,11: - 0: 32669 + 0: 60934 + 15,10: + 0: 57582 16,8: - 0: 52428 + 1: 1 + 0: 65484 + 16,9: + 0: 64961 + 16,10: + 0: 64733 + 16,11: + 0: 61007 17,5: 0: 47790 - 17,7: - 0: 61167 17,6: + 0: 45056 1: 224 - 0: 57344 + 17,7: + 0: 61098 17,8: - 0: 3823 + 0: 61166 18,5: 0: 30495 18,6: - 1: 57360 - 0: 3584 + 1: 49168 + 0: 7168 18,7: - 1: 57568 - 0: 3584 + 0: 7441 + 1: 49344 + 18,8: + 0: 3089 + 1: 57536 19,5: 1: 3955 0: 61440 @@ -1620,50 +1632,52 @@ entities: 1: 92 20,7: 0: 30578 - 16,9: - 0: 52428 + 16,12: + 0: 4 17,9: - 0: 61679 + 0: 65248 17,10: 0: 9998 17,11: 0: 3822 18,11: 0: 112 - 1: 2176 - 18,8: - 1: 57568 - 0: 3584 + 1: 16512 18,9: - 1: 11810 + 1: 28194 18,10: - 1: 14 + 1: 17476 18,12: - 1: 61713 + 1: 29764 19,8: 1: 12336 0: 2944 19,9: - 1: 3852 - 19,10: - 1: 17487 - 0: 43680 + 1: 20236 19,11: - 1: 20468 + 1: 17652 0: 40960 + 19,10: + 0: 43690 + 1: 17476 19,12: - 0: 170 - 1: 65092 + 0: 2730 + 1: 17476 20,8: 0: 1906 20,9: - 1: 3855 + 1: 20303 20,11: - 1: 19964 + 1: 17652 0: 40960 - 20,12: - 1: 62805 - 0: 2730 + 17,12: + 1: 57344 + 18,13: + 1: 12 + 19,13: + 1: 15 + 20,13: + 1: 15 21,-4: 0: 54479 21,-3: @@ -1700,41 +1714,48 @@ entities: 20,10: 0: 43690 1: 17476 + 20,12: + 0: 2730 + 1: 17476 21,8: 0: 7 1: 24576 21,9: - 1: 3843 - 21,10: - 1: 21831 - 0: 43680 + 1: 20227 21,11: - 1: 18429 + 1: 17652 0: 40960 21,7: 0: 30583 + 21,10: + 0: 43690 + 1: 17476 21,12: - 0: 170 - 1: 64325 + 0: 2730 + 1: 17476 22,9: - 1: 30472 - 22,10: - 1: 65126 + 1: 9002 22,11: - 1: 39611 + 1: 43770 22,7: 0: 65534 22,8: 0: 24590 + 22,10: + 1: 44578 + 22,12: + 1: 8750 23,8: 0: 255 - 22,12: - 1: 14190 23,7: 0: 7455 24,8: 0: 17 1: 18440 + 21,13: + 1: 15 + 22,13: + 1: 3 13,-11: 1: 12835 13,-10: @@ -2030,12 +2051,14 @@ entities: decals: 2727: -22,-17 2728: -22,-10 + 5972: 29,24 - node: color: '#FFFFFFFF' id: Arrows decals: 753: 21,-16 2729: -15,-2 + 6846: 33,23 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2054,6 +2077,7 @@ entities: 4811: 26.969461,-36.186703 4812: 24.969461,-32.249786 4813: 26.969461,-32.249786 + 6847: 30,21 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2088,19 +2112,13 @@ entities: 1468: 22,24 1469: 22,25 1470: 23,25 - 2085: 52,17 - 2086: 52,18 2199: 68,13 2200: 66,13 - 2201: 67,13 2564: 46,-46 2574: 44,-43 2575: 43,-43 2576: 42,-43 2577: 41,-43 - 2835: 38,24 - 2836: 41,24 - 2845: 38,21 3094: 96,30 3179: 11,31 3180: 12,31 @@ -2132,10 +2150,6 @@ entities: 4358: 41,-41 4506: 35,-31 4569: 58,9 - 4570: 58,10 - 4582: 31,26 - 4583: 38,26 - 4584: 38,27 4600: 17,39 4601: 19,39 4727: 20,-32 @@ -2163,9 +2177,11 @@ entities: 5175: 6,-19 5192: 30,-35 5193: 32,-35 - 5258: 42,26 - 5259: 42,27 - 5266: 41,28 + 6182: 58,8 + 6577: 66,16 + 6578: 68,16 + 6836: 56,9 + 6837: 56,8 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2198,16 +2214,12 @@ entities: 1873: 10,-6 1874: 11,-6 1875: 12,-6 - 2196: 68,16 - 2197: 67,16 - 2198: 66,16 3151: 14,-51 3152: 14,-52 3153: 14,-53 3154: 28,-51 3155: 28,-52 3156: 28,-53 - 4589: 38,28 4842: 9,-30 4843: 9,-31 4844: 9,-32 @@ -2217,7 +2229,6 @@ entities: 5063: 25,-43 5180: 5,-21 5181: 7,-19 - 5260: 42,28 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -2246,6 +2257,7 @@ entities: 1547: 15,39 1871: 8,-8 1872: 8,-6 + 6535: 8,-5 - node: color: '#FFFFFFFF' id: Box @@ -2254,31 +2266,169 @@ entities: 4100: 25,-35 4101: 25,-34 4102: 27,-34 + 5876: 39,33 + 6292: 41,33 + 6331: 46,38 + 6390: 41,33 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: 1552: 14,40 + 5379: 12,-18 + 5881: 18,-18 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlayNE + decals: + 6279: 45,36 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlayNW + decals: + 6283: 43,36 + - node: + color: '#DE3A3A96' + id: BrickCornerOverlaySE + decals: + 6281: 41,33 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayE + decals: + 6280: 45,35 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayN + decals: + 6284: 44,36 + 6286: 44,31 + 6287: 45,31 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayS + decals: + 6288: 44,30 + 6289: 45,30 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayW + decals: + 6285: 39,34 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: 3076: 74,23 + 5275: 35,18 + 5276: 38,22 + 5295: 39,18 + 5374: 39,27 + 5688: 40,20 + 5868: 30,18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 3075: 73,23 + 5277: 36,22 + 5278: 37,18 + 5279: 33,18 + 5364: 37,27 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 3078: 74,22 + 5282: 35,17 + 5284: 38,21 + 5296: 39,17 + 5367: 39,25 + 5687: 40,19 + 5867: 30,17 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: 3077: 73,22 + 5285: 36,21 + 5286: 37,17 + 5287: 33,17 + 5365: 37,25 + 5872: 31,19 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 5651: 33,24 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 5654: 30,24 + 5689: 29,20 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 5873: 31,20 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 5370: 39,26 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 5289: 37,22 + 5290: 34,18 + 5294: 38,18 + 5363: 38,27 + 5655: 31,24 + 5656: 32,24 + 5677: 30,20 + 5680: 33,20 + 5681: 34,20 + 5685: 38,20 + 5686: 39,20 + 5828: 35,20 + 5829: 36,20 + 5830: 37,20 + 5869: 31,20 + 5870: 32,20 + 6619: 50,13 + 6620: 51,13 + 6621: 49,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 5291: 34,17 + 5292: 37,21 + 5293: 38,17 + 5369: 38,25 + 5443: 55,43 + 5445: 53.98346,42.996826 + 5447: 52.990402,43.003773 + 5449: 52,43 + 5652: 32,24 + 5653: 31,24 + 5690: 30,20 + 5692: 33,19 + 5693: 34,19 + 5697: 38,19 + 5698: 39,19 + 5831: 35,19 + 5832: 36,19 + 5833: 37,19 + 5871: 32,19 + 6298: 50.961994,43.007206 + 6406: 50,35 + 6407: 51,35 + 6622: 49,15 + 6623: 50,15 + 6624: 51,15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -2287,16 +2437,50 @@ entities: 1782: 22,-12 1783: 22,-11 1784: 22,-10 - 2885: 56,39 - 2889: 56,40 - 2969: 56,36 - 2970: 56,37 - 2971: 56,38 + 5368: 37,26 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: 4345: 30,-7 + 5817: 53,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 6398: 48,32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 5810: 53,31 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 6399: 48,31 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 6783: 61,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 6442: 57,49 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 6784: 57,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 6439: 55,49 - node: color: '#D381C996' id: BrickTileSteelLineE @@ -2322,6 +2506,45 @@ entities: 836: 47,-9 4044: 29,-39 4344: 29,-7 + 5376: 44,29 + 5377: 42,29 + 5815: 52,32 + 6330: 51,32 + 6402: 50,32 + 6403: 49,32 + 6780: 58,14 + 6781: 59,14 + 6782: 60,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 6441: 56,49 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 5441: 52,43 + 5444: 54.49735,43.003773 + 5446: 53.50429,43.003773 + 5448: 52.490402,42.996826 + 5450: 51.496826,43.003773 + 5811: 52,31 + 5812: 51,31 + 6299: 50.493244,43.02283 + 6400: 50,31 + 6506: 49,31 + 6776: 58,14 + 6777: 59,14 + 6778: 60,14 + 6789: 54,11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 6440: 56,49 - node: color: '#D381C996' id: BrickTileSteelLineW @@ -2341,26 +2564,85 @@ entities: id: BrickTileWhiteCornerNe decals: 1844: 17,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 5882: 44,29 - node: color: '#A4610696' id: BrickTileWhiteCornerNe decals: 1447: 20,24 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 6654: 64,16 + 6666: 60,20 + 6697: 57,25 + 6706: 62,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 5550: 31,31 + 5603: 37,34 + 5719: 40,28 + 5756: 41,36 + 6486: 34,25 + 6498: 57,33 + 6503: 54,33 + 6850: 30,28 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: 1849: 14,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 5884: 42,29 - node: color: '#A4610696' id: BrickTileWhiteCornerNw decals: 1446: 17,24 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 6601: 44,11 + 6631: 53,15 + 6655: 62,16 + 6682: 49,21 + 6693: 53,25 + 6699: 59,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 5542: 29,25 + 5548: 29,31 + 5552: 32,31 + 5716: 36,27 + 5758: 39,36 + 6395: 34,34 + 6479: 47,36 + 6483: 37,28 + 6500: 56,33 + 6857: 29,28 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: 1843: 17,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 5887: 44,27 - node: color: '#9FED583B' id: BrickTileWhiteCornerSe @@ -2371,11 +2653,37 @@ entities: id: BrickTileWhiteCornerSe decals: 1451: 20,20 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 6590: 47,13 + 6652: 64,13 + 6703: 62,22 + 6812: 51,8 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 5573: 35,29 + 5582: 54,30 + 5601: 37,32 + 5779: 45,33 + 6487: 31,30 + 6493: 40,24 + 6497: 57,31 + 6841: 34,23 + 6852: 30,27 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: 1845: 14,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 5886: 42,27 - node: color: '#9FED583B' id: BrickTileWhiteCornerSw @@ -2386,6 +2694,27 @@ entities: id: BrickTileWhiteCornerSw decals: 1452: 17,20 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 6600: 44,9 + 6632: 53,13 + 6683: 49,17 + 6692: 53,23 + 6700: 59,22 + 6796: 49,8 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 5547: 29,30 + 5723: 36,24 + 5761: 39,33 + 5859: 29,23 + 6396: 34,32 + 6501: 56,31 + 6853: 29,27 - node: color: '#9FED5847' id: BrickTileWhiteEndE @@ -2410,7 +2739,14 @@ entities: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 2089: 51,20 + 6596: 42,8 + 6669: 57,20 + 6672: 60,15 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 6328: 48,33 - node: color: '#9FED5847' id: BrickTileWhiteInnerNw @@ -2420,17 +2756,34 @@ entities: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2088: 53,20 + 6658: 62,15 + 6673: 58,15 + 6687: 55,20 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 5583: 47,31 + 6484: 37,27 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2084: 50,19 + 6831: 51,9 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 5571: 35,30 + 5572: 34,29 + 6478: 48,36 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2083: 54,19 + 6674: 58,17 + 6690: 55,23 + 6814: 49,9 - node: color: '#334E6DC8' id: BrickTileWhiteLineE @@ -2442,6 +2795,7 @@ entities: decals: 2687: -23,-10 2688: -23,-17 + 5883: 44,28 - node: color: '#9FED583B' id: BrickTileWhiteLineE @@ -2468,9 +2822,51 @@ entities: color: '#D381C996' id: BrickTileWhiteLineE decals: - 2076: 50,17 - 2077: 50,18 - 2090: 51,21 + 6584: 47,19 + 6585: 47,18 + 6586: 47,17 + 6587: 47,16 + 6588: 47,15 + 6593: 42,11 + 6595: 42,9 + 6653: 64,14 + 6663: 60,17 + 6664: 60,18 + 6665: 60,19 + 6670: 57,21 + 6671: 57,22 + 6704: 62,23 + 6705: 62,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 5483: 27,32 + 5484: 27,31 + 5485: 27,30 + 5494: 27,21 + 5495: 27,20 + 5496: 27,19 + 5497: 27,18 + 5498: 27,17 + 5499: 27,22 + 5537: 34,24 + 5593: 57,32 + 5602: 37,33 + 5726: 40,27 + 5782: 45,34 + 6290: 34,28 + 6291: 34,27 + 6320: 48,34 + 6321: 48,35 + 6494: 40,26 + 6504: 54,31 + 6528: 27,27 + 6529: 27,26 + 6530: 27,28 + 6531: 27,29 + 6838: 27,25 + 6839: 27,23 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -2481,7 +2877,6 @@ entities: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2741: 32,36 3117: -3,1 - node: color: '#9FED5847' @@ -2507,23 +2902,61 @@ entities: decals: 1458: 18,24 1459: 19,24 - 2739: 30,36 3121: -11,1 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 2056: 52,14 - 2057: 51,14 - 2058: 50,14 - 2059: 49,14 - 2060: 48,14 - 2087: 52,20 - 2182: 66,15 - 2183: 67,15 - 2184: 68,15 - 2740: 31,36 3120: -13,1 + 6225: 60,25 + 6597: 48,11 + 6598: 47,11 + 6599: 46,11 + 6604: 45,11 + 6633: 54,15 + 6634: 55,15 + 6635: 56,15 + 6636: 57,15 + 6656: 63,16 + 6657: 61,15 + 6667: 59,20 + 6668: 58,20 + 6685: 50,21 + 6686: 54,20 + 6694: 54,25 + 6695: 55,25 + 6696: 56,25 + 6707: 61,25 + 6708: 60,25 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineN + decals: + 5540: 30,25 + 5541: 31,25 + 5549: 30,31 + 5555: 37,31 + 5556: 38,31 + 5559: 42,31 + 5560: 43,31 + 5562: 46,31 + 5606: 35,34 + 5607: 36,34 + 5704: 35,21 + 5757: 40,36 + 5861: 32,21 + 5862: 34,21 + 6378: 33,31 + 6485: 32,25 + 6489: 34,31 + 6490: 36,31 + 6495: 39,28 + 6512: 41,31 + 6522: 39,31 + 6842: 31,21 + 6843: 29,21 + 6859: 52,33 + 6860: 49,33 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -2538,13 +2971,6 @@ entities: 418: 44,-40 419: 45,-40 420: 46,-40 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineN - decals: - 2039: 50,13 - 2040: 49,13 - 2044: 51,13 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -2552,10 +2978,10 @@ entities: 1851: 16,-6 1852: 15,-6 - node: - color: '#334E6DFF' + color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2736: 32,36 + 5888: 43,27 - node: color: '#9FED583B' id: BrickTileWhiteLineS @@ -2584,34 +3010,55 @@ entities: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2051: 49,14 - 2052: 50,14 - 2053: 51,14 - 2054: 52,14 - 2055: 48,14 - 2078: 51,19 - 2079: 52,19 - 2080: 53,19 - 2185: 68,14 - 2186: 67,14 - 2187: 66,14 + 6606: 45,9 + 6607: 46,9 + 6608: 47,9 + 6609: 48,9 + 6637: 54,13 + 6647: 59,13 + 6648: 60,13 + 6649: 61,13 + 6651: 63,13 + 6675: 57,17 + 6676: 56,17 + 6677: 54,17 + 6678: 55,17 + 6679: 50,17 + 6691: 54,23 + 6701: 60,22 + 6702: 61,22 + 6798: 50,8 + 6828: 52,9 + 6829: 53,9 + 6830: 54,9 + 6872: 46,13 + 6873: 43,13 + 6874: 55,13 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 2737: 31,36 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 2738: 30,36 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineS - decals: - 2041: 51,15 - 2042: 50,15 - 2043: 49,15 + 5551: 30,30 + 5563: 36,30 + 5570: 46,30 + 5576: 47,30 + 5579: 51,30 + 5580: 52,30 + 5581: 53,30 + 5599: 36,32 + 5720: 37,24 + 5721: 38,24 + 5722: 39,24 + 5780: 44,33 + 5860: 31,23 + 6480: 42,30 + 6482: 37,30 + 6496: 48,30 + 6505: 50,30 + 6523: 39,30 + 6524: 40,30 + 6525: 41,30 + 6840: 32,23 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -2623,6 +3070,7 @@ entities: decals: 2689: -7,-17 2690: -7,-10 + 5885: 42,28 - node: color: '#9FED583B' id: BrickTileWhiteLineW @@ -2660,20 +3108,73 @@ entities: color: '#D381C996' id: BrickTileWhiteLineW decals: - 2081: 54,17 - 2082: 54,18 + 6553: 69,33 + 6554: 69,32 + 6555: 69,31 + 6680: 49,19 + 6681: 49,20 + 6684: 49,18 + 6688: 55,21 + 6689: 55,22 + 6698: 53,24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 5717: 36,26 + 5718: 36,25 + 5759: 39,35 + 6324: 47,35 + 6325: 47,34 + 6326: 47,33 + 6327: 47,32 + 6397: 34,33 + 6488: 32,30 + 6499: 56,32 + 6532: 32,29 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: 2224: 78,-2 2225: 78,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BushAOne + decals: + 6458: 61,49 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BushAThree + decals: + 6461: 51,49 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Busha1 + decals: + 6460: 63,48 + - node: + angle: 0.4014257279586958 rad + color: '#FF140922' + id: Bushn1 + decals: + 5415: 54.875694,44.926968 - node: color: '#FFFFFFFF' id: Caution decals: 4814: 26.000326,-32.342445 4815: 26.000326,-36.049404 + 6807: 52.9952,10.188756 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Caution + decals: + 6808: 59.910686,26.985073 - node: color: '#52B4E996' id: CheckerNESW @@ -2733,6 +3234,13 @@ entities: 2237: 76,-8 2238: 76,-7 2239: 77,-7 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 6709: 60.495213,23.502304 + 6735: 56,21 + 6736: 56,22 - node: color: '#D4D4D428' id: CheckerNESW @@ -2772,6 +3280,11 @@ entities: 4686: 26,-37 4772: 26,-36 4773: 26,-32 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 5890: 43,28 - node: color: '#9FED5822' id: CheckerNWSE @@ -2789,12 +3302,26 @@ entities: 2222: 77,-2 2223: 77,-1 - node: - color: '#EFB34196' + color: '#DE3A3A96' id: CheckerNWSE decals: - 3921: 18,-19 - 3922: 18,-18 - 3923: 18,-17 + 5728: 38,26 + 5802: 56.498737,31.993965 + 5803: 37.003437,30.50393 + 5804: 38.004116,30.50393 + 5808: 42.002586,30.50393 + 5818: 33.004704,19.493225 + 5819: 34.003857,19.493225 + 5823: 37.996056,19.493225 + 5824: 39.002533,19.493225 + 5825: 36.0029,19.497932 + 5826: 35.0029,19.497932 + 5827: 37.0029,19.497932 + 6391: 44,34 + 6392: 44,35 + 6393: 40,34 + 6394: 40,35 + 6858: 29.49797,27.479872 - node: color: '#FFFFFF93' id: CheckerNWSE @@ -2828,8 +3355,6 @@ entities: 203: 5,-4 204: 6,-4 205: 6,-5 - 241: 51,8 - 242: 49,8 385: 5,-7 413: 46,-39 414: 46,-38 @@ -2851,7 +3376,6 @@ entities: 1182: 17,1 1694: 40,12 1695: 41,12 - 1696: 42,12 1771: 39,-1 1772: 39,0 1773: 39,1 @@ -2863,15 +3387,9 @@ entities: 1938: 38,13 1939: 38,14 1940: 38,15 - 2061: 53,13 - 2062: 53,14 - 2063: 53,15 2096: 58,16 2097: 59,16 2098: 60,16 - 2099: 58,21 - 2100: 59,21 - 2101: 60,21 3182: 11,30 3183: 12,30 3184: 13,30 @@ -2895,8 +3413,16 @@ entities: 4360: 39,-41 4432: 21,16 4505: 35,-33 - 4571: 58,11 5176: 6,-20 + 6579: 42,12 + 6713: 58,23 + 6714: 58,24 + 6799: 56,12 + 6800: 57,12 + 6801: 58,12 + 6806: 53,11 + 6832: 48,14 + 6835: 55,10 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2907,8 +3433,8 @@ entities: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 2064: 52,14 - 2065: 48,14 + 6223: 48,18 + 6224: 48,17 - node: color: '#334E6DC8' id: DiagonalCheckerBOverlay @@ -2917,6 +3443,19 @@ entities: 3062: 73,23 3063: 74,23 3064: 74,22 + - node: + color: '#FF1409FF' + id: Dirt + decals: + 5413: 55.06262,44.98224 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 6463: 61,49 + 6464: 63,48 + 6465: 51,49 - node: cleanable: True zIndex: 1 @@ -2951,29 +3490,13 @@ entities: 1524: 23,22 1525: 23,23 1526: 23,21 - 1623: 32,17 - 1624: 32,18 - 1625: 33,17 - 1626: 35,20 - 1627: 35,21 - 1628: 33,23 - 1629: 34,24 - 1633: 30,23 - 1634: 30,18 - 1635: 29,17 - 1636: 29,20 - 1637: 30,20 1653: 25,18 1654: 25,19 1655: 25,20 1656: 25,22 - 1657: 27,20 1658: 25,23 1659: 25,24 - 1660: 26,24 - 1661: 27,23 1662: 25,25 - 1663: 27,26 2256: 55,-16 2257: 55,-16 2258: 56,-16 @@ -2985,15 +3508,10 @@ entities: 2306: 33,-17 2307: 31,-16 2308: 29,-17 - 3031: 36,31 - 3128: 56,35 - 3129: 57,40 3288: 12,28 3289: 11,27 3290: 13,27 3297: 8,20 - 3298: 6,22 - 3299: 6,24 3300: 7,23 3301: 7,27 3302: 10,24 @@ -3007,11 +3525,8 @@ entities: 3310: 13,24 3311: 12,25 3312: 9,22 - 3313: 8,27 3315: 10,25 3316: 9,23 - 3317: 8,24 - 3318: 6,26 3319: 12,23 3320: 10,22 3325: 11,20 @@ -3025,10 +3540,8 @@ entities: 3444: 5,31 3445: 9,34 3446: 8,34 - 3447: 9,29 3448: 5,35 3455: 7,28 - 3456: 6,27 3538: 6,33 3539: 8,33 3601: 4,37 @@ -3039,7 +3552,6 @@ entities: 4083: 25,-26 4084: 24,-24 4085: 27,-25 - 4617: 32,25 4780: 24,-32 4784: 29,-33 4790: 22,-31 @@ -3053,7 +3565,6 @@ entities: 5098: 23,-39 5099: 17,-39 5100: 16,-42 - 5101: 19,-44 5102: 23,-42 5103: 25,-42 5104: 25,-41 @@ -3072,6 +3583,26 @@ entities: 5160: 22,-28 5207: 22,-37 5208: 20,-37 + - node: + color: '#FF1409FF' + id: DirtHeavy + decals: + 5403: 55,41 + 5412: 54.00012,44.997864 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 6424: 38,41 + 6429: 45,45 + 6430: 49,44 + 6431: 49,49 + 6432: 57,50 + 6437: 39,46 + 6466: 48,26 + 6546: 71,31 + 6547: 71,32 - node: cleanable: True zIndex: 1 @@ -3084,24 +3615,9 @@ entities: 1485: 18,21 1507: 23,23 2260: 55,-15 - 2895: 41,34 - 2901: 39,34 2906: 46,27 - 2922: 49,33 - 2995: 54,32 - 2996: 53,37 - 2997: 58,36 - 3007: 59,34 - 3008: 59,38 - 3009: 58,32 - 3010: 59,32 - 3011: 59,40 - 3029: 38,22 - 3041: 54,47 - 3132: 58,31 3251: 7,22 3252: 6,25 - 3253: 8,26 3254: 11,28 3256: 13,30 3257: 14,23 @@ -3109,14 +3625,12 @@ entities: 3259: 10,23 3260: 13,21 3261: 11,25 - 3262: 7,24 3263: 13,26 3264: 11,21 3265: 16,20 3330: 11,29 3418: 8,29 3419: 6,28 - 3433: 9,29 3526: 7,34 3540: 7,33 3605: 5,37 @@ -3137,12 +3651,6 @@ entities: 3864: 72,-4 3898: 4,38 3909: 30,-27 - 3931: 35,31 - 3934: 31,23 - 3937: 31,29 - 3948: 47,35 - 3949: 52,34 - 3952: 46,35 4076: 29,-27 4086: 24,-25 4274: 30,-37 @@ -3157,9 +3665,7 @@ entities: 5009: 13,-25 5014: 15,-24 5035: 19,-35 - 5046: 19,-44 5047: 20,-40 - 5048: 22,-44 5049: 22,-39 5050: 22,-41 5055: 22,-43 @@ -3179,32 +3685,34 @@ entities: 5182: 5,-21 5253: 30,-26 5256: 30,-25 + - node: + color: '#FF1409FF' + id: DirtHeavyMonotile + decals: + 5402: 54,40 + 5407: 55,45 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 6425: 38,42 + 6433: 59,49 + 6438: 40,47 + 6462: 62,48 + 6470: 67,33 + 6548: 70,32 - node: cleanable: True zIndex: 1 color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2894: 39,33 - 2904: 40,35 - 2932: 37,19 - 2933: 38,17 - 3000: 55,34 - 3001: 54,35 - 3002: 56,38 3003: 54,39 - 3024: 37,31 - 3025: 40,30 - 3033: 59,36 - 3039: 50,34 - 3044: 58,47 - 3131: 58,31 3268: 7,26 3269: 13,25 3271: 9,21 3272: 14,21 - 3273: 6,23 - 3274: 6,26 3275: 9,25 3276: 13,28 3277: 12,29 @@ -3216,7 +3724,6 @@ entities: 3421: 8,28 3435: 6,31 3437: 8,30 - 3457: 6,23 3592: 4,40 3608: 4,38 3609: 6,37 @@ -3233,13 +3740,6 @@ entities: 3904: 6,32 3905: 8,30 3908: 29,-27 - 3932: 35,30 - 3933: 28,24 - 3938: 29,30 - 3942: 29,28 - 3950: 47,34 - 3951: 52,35 - 3953: 46,36 4075: 29,-29 4080: 31,-27 4089: 25,-24 @@ -3271,7 +3771,6 @@ entities: 5034: 16,-37 5036: 21,-35 5044: 21,-36 - 5051: 20,-44 5052: 23,-41 5053: 22,-40 5054: 20,-43 @@ -3298,6 +3797,20 @@ entities: 5184: 7,-19 5238: 31,-24 5254: 31,-26 + - node: + color: '#FF1409FF' + id: DirtLight + decals: + 5405: 55,45 + 5406: 55,45 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 6428: 44,45 + 6435: 55,49 + 6467: 50,26 - node: cleanable: True zIndex: 1 @@ -3344,29 +3857,12 @@ entities: 1516: 23,23 1517: 23,22 1518: 22,25 - 1638: 30,17 - 1639: 30,21 - 1640: 33,18 - 1641: 35,19 - 1642: 34,23 - 1644: 35,23 - 1645: 30,24 - 1646: 29,23 - 1647: 35,28 - 1648: 34,27 - 1650: 33,29 - 1652: 36,22 1664: 25,21 1665: 26,22 - 1666: 26,23 - 1667: 27,20 1668: 26,19 1669: 25,15 1788: 25,27 - 1789: 26,28 - 1790: 27,30 1793: 26,34 - 1794: 27,34 2263: 55,-15 2264: 55,-14 2265: 54,-14 @@ -3374,42 +3870,7 @@ entities: 2267: 57,-16 2268: 57,-15 2269: 57,-14 - 2896: 39,35 - 2897: 41,36 - 2900: 41,33 - 2902: 39,36 - 2903: 40,34 - 2908: 49,35 - 2935: 39,18 - 2982: 54,34 - 2983: 55,37 - 2984: 55,40 - 2985: 53,40 - 2986: 57,37 - 2987: 56,33 - 2988: 54,33 - 2989: 58,36 - 2990: 58,40 - 2991: 55,41 - 2992: 54,40 - 2993: 53,34 - 2994: 53,33 - 2999: 55,35 - 3004: 57,39 - 3006: 55,32 - 3012: 55,38 - 3013: 46,33 - 3015: 36,30 - 3016: 39,31 - 3017: 41,30 - 3018: 43,31 - 3028: 40,22 - 3030: 39,24 - 3040: 51,35 - 3042: 57,47 - 3133: 55,39 3279: 7,25 - 3280: 8,23 3281: 12,21 3282: 14,24 3283: 10,27 @@ -3434,19 +3895,12 @@ entities: 3902: 4,37 3903: 5,33 3906: 8,32 - 3935: 31,24 - 3936: 28,23 - 3940: 31,30 - 3941: 30,29 - 3943: 29,29 4078: 30,-29 4081: 31,-28 4087: 26,-25 4090: 27,-24 4275: 30,-36 4462: 39,-37 - 4613: 33,25 - 4614: 34,27 4745: 26,-37 4779: 24,-33 4782: 28,-32 @@ -3503,6 +3957,27 @@ entities: 5210: 19,-37 5212: 19,-29 5236: 31,-25 + - node: + color: '#FF1409FF' + id: DirtMedium + decals: + 5401: 53,41 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 6544: 70,33 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 6426: 39,43 + 6427: 42,45 + 6434: 58,50 + 6468: 49,26 + 6469: 67,31 + 6549: 72,32 - node: cleanable: True zIndex: 1 @@ -3526,23 +4001,6 @@ entities: 1506: 23,21 2261: 56,-14 2262: 55,-16 - 2891: 33,30 - 2898: 40,33 - 2899: 39,35 - 2918: 58,40 - 2936: 37,18 - 2975: 53,32 - 2976: 56,34 - 2977: 54,37 - 2978: 58,40 - 2979: 56,32 - 2981: 55,31 - 3019: 37,30 - 3020: 39,30 - 3021: 43,30 - 3022: 38,31 - 3023: 42,31 - 3043: 56,47 3291: 8,25 3292: 8,22 3293: 7,21 @@ -3570,15 +4028,11 @@ entities: 3880: 71,-6 3882: 74,-4 3895: 30,-29 - 3939: 30,28 - 3954: 46,34 4077: 29,-28 4088: 25,-25 4362: 41,-39 4363: 35,-44 4463: 40,-37 - 4615: 33,27 - 4616: 32,26 4746: 25,-37 4778: 24,-34 4783: 26,-32 @@ -3619,6 +4073,11 @@ entities: id: Flowersy1 decals: 798: 46.528667,-10.391078 + - node: + color: '#DE3A3A96' + id: Flowersy4 + decals: + 6295: 57.77299,36.672016 - node: color: '#FFFFFFFF' id: Flowersy4 @@ -3696,18 +4155,6 @@ entities: 1713: 24,48 1714: 23,48 1715: 22,48 - - node: - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 92: 31,18 - 93: 31,20 - 1613: 27,23 - 1614: 27,24 - 3944: 47,34 - 3945: 47,35 - 3946: 52,35 - 3947: 52,34 - node: color: '#EFB34196' id: FullTileOverlayGreyscale @@ -3731,6 +4178,33 @@ entities: 4768: 22,-33 4877: 18,-40 4878: 24,-40 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 6552: 70,32 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 6536: 71,35 + 6551: 71,33 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 6541: 71,33 + 6550: 71,32 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 6537: 71,34 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 6538: 70,35 - node: color: '#FFFFFFFF' id: Grassd1 @@ -3753,6 +4227,12 @@ entities: 791: 46.966167,-10.891078 792: 46.091167,-10.859828 793: 46.263042,-10.062953 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineN + decals: + 6404: 50,37 + 6405: 51,37 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -3763,8 +4243,6 @@ entities: 1723: 26,37 1724: 27,37 1725: 28,37 - 1726: 27,36 - 1727: 27,35 1863: 10,-6 1864: 11,-6 1865: 12,-6 @@ -3813,33 +4291,6 @@ entities: decals: 3210: 14,25 3214: 10,28 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 26: 62,25 - 27: 63,25 - 28: 64,25 - 2066: 53,11 - 2067: 52,11 - 2068: 51,11 - 2069: 50,11 - 2070: 48,11 - 2071: 49,11 - 2072: 55,11 - 2615: 61,25 - 2616: 54,20 - 2617: 55,20 - 2618: 56,20 - 2619: 57,20 - 4530: 60,11 - 4531: 61,11 - 4532: 62,11 - 4533: 63,11 - 4543: 47,11 - 4544: 46,11 - 4545: 45,11 - 4561: 44,11 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale @@ -3855,21 +4306,7 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 74: 31,24 - 75: 30,24 - 76: 29,24 - 77: 28,24 - 178: 36,24 1149: -2,-4 - 2744: 33,31 - 2808: 34,31 - 2823: 36,19 - 2824: 37,19 - 2825: 38,19 - 2826: 39,19 - 2939: 36,31 - 2940: 43,31 - 3930: 35,31 - node: color: '#EFB34128' id: HalfTileOverlayGreyscale @@ -3968,18 +4405,6 @@ entities: 3199: 10,21 3202: 12,20 3203: 13,20 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 32: 62,13 - 2620: 57,17 - 2621: 56,17 - 2622: 55,17 - 2623: 54,17 - 4548: 48,9 - 4549: 47,9 - 4562: 46,9 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale180 @@ -3989,21 +4414,7 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 39: 36,21 - 78: 28,23 - 79: 29,23 - 80: 30,23 - 81: 31,23 - 90: 33,17 - 91: 34,17 1150: -2,-6 - 2819: 36,17 - 2820: 37,17 - 2821: 38,17 - 2822: 39,17 - 2937: 36,30 - 2938: 43,30 - 3929: 35,30 - node: color: '#EFB34166' id: HalfTileOverlayGreyscale180 @@ -4016,9 +4427,6 @@ entities: id: HalfTileOverlayGreyscale180 decals: 4722: 21,-31 - 4868: 20,-44 - 4869: 21,-44 - 4870: 22,-44 4918: 16,-37 4919: 17,-37 4920: 18,-37 @@ -4031,6 +4439,9 @@ entities: 5199: 19,-37 5200: 20,-37 5201: 21,-37 + 6413: 20,-44 + 6414: 21,-44 + 6415: 22,-44 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -4084,45 +4495,12 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 3219: 6,22 3220: 6,25 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 18: 49,21 - 19: 49,20 - 20: 49,19 - 21: 49,18 - 22: 49,17 - 23: 53,25 - 24: 53,24 - 25: 53,23 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 83: 32,22 - 84: 32,21 - 85: 32,20 - 86: 32,19 - 87: 32,18 - 88: 32,17 1148: -3,-5 - 2745: 32,30 - 2815: 32,29 - 2816: 29,28 - 2817: 29,29 - 2818: 29,30 - 2829: 35,23 - 2830: 35,22 - 2840: 38,23 - 2841: 38,22 - 2842: 38,21 - 4609: 32,25 - 4610: 32,26 - 4611: 32,27 - 4612: 32,28 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -4210,48 +4588,11 @@ entities: 3208: 15,24 3212: 13,26 3213: 13,27 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 11: 47,19 - 12: 47,18 - 13: 47,17 - 14: 47,16 - 15: 47,15 - 16: 47,14 - 17: 47,13 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 36: 35,18 - 37: 35,19 - 38: 35,20 - 41: 35,17 - 44: 36,22 - 50: 35,25 - 51: 35,26 - 52: 35,27 - 53: 35,28 - 56: 34,29 - 179: 36,23 1147: -1,-5 - 1600: 27,17 - 1601: 27,18 - 1602: 27,19 - 1603: 27,20 - 1604: 27,21 - 1605: 27,26 - 1606: 27,27 - 1609: 27,30 - 1610: 27,31 - 2813: 27,29 - 2814: 27,28 - 2827: 33,23 - 2828: 33,22 - 2843: 41,23 - 2844: 41,22 - node: color: '#EFB34166' id: HalfTileOverlayGreyscale90 @@ -4290,15 +4631,17 @@ entities: id: LoadingArea decals: 1473: 23,25 - 1621: 31,18 - 1622: 31,20 - 3235: 8,26 + 6573: 7,26 - node: color: '#FFFFFFFF' id: LoadingArea decals: 1471: 22,23 1472: 22,24 + 6418: 20,-44 + 6419: 21,-44 + 6420: 22,-44 + 6845: 33,21 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -4308,14 +4651,75 @@ entities: 1177: 14,-2 1178: 15,-2 3096: 82,30 - 3236: 8,24 + 6572: 7,24 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 2838: 39,24 - 2839: 40,24 + 6844: 30,23 + - node: + color: '#827F8896' + id: MiniTileCheckerAOverlay + decals: + 6765: 66,15 + 6766: 67,15 + 6767: 68,15 + 6768: 68,14 + 6769: 67,14 + 6770: 66,14 + 6772: 50,14 + 6773: 51,14 + 6790: 52,11 + 6791: 52,10 + 6792: 53,10 + 6793: 53,11 + 6794: 54,11 + 6795: 54,10 + - node: + color: '#85828896' + id: MiniTileCheckerAOverlay + decals: + 6834: 49,14 + - node: + color: '#88818B96' + id: MiniTileCheckerAOverlay + decals: + 6802: 57,8 + 6803: 57,9 + 6804: 57,10 + 6805: 57,11 + - node: + color: '#D4D4D428' + id: MiniTileCheckerBOverlay + decals: + 6556: 72,29 + 6557: 71,29 + 6558: 71,28 + 6559: 72,28 + 6560: 72,27 + 6561: 71,27 + 6562: 70,34 + 6563: 69,34 + 6564: 69,35 + - node: + cleanable: True + color: '#D4D4D428' + id: MiniTileCheckerBOverlay + decals: + 6443: 52,50 + 6444: 51,50 + 6445: 50,50 + 6446: 49,50 + 6447: 60,50 + 6448: 61,50 + 6449: 62,50 + 6450: 63,50 + 6451: 54,47 + 6452: 55,47 + 6453: 56,47 + 6454: 57,47 + 6455: 58,47 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -4362,20 +4766,6 @@ entities: 3837: 62,2 3838: 65,2 3840: 59,2 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale - decals: - 2130: 54,15 - 2131: 54,15 - 2132: 55,15 - 2133: 55,15 - 2134: 56,15 - 2135: 56,15 - 2136: 57,15 - 2137: 57,15 - 2138: 58,15 - 2139: 58,15 - node: color: '#80C71FFF' id: QuarterTileOverlayGreyscale @@ -4428,7 +4818,6 @@ entities: 1540: 25,23 1541: 25,24 1542: 25,25 - 1543: 35,29 1753: 25,26 1947: 18,1 1948: 19,1 @@ -4451,8 +4840,6 @@ entities: 2013: 45,17 2014: 45,18 2015: 45,19 - 2016: 46,19 - 2017: 47,19 2018: 40,11 2019: 40,10 2020: 40,8 @@ -4505,7 +4892,6 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 54: 35,28 739: 24,-25 740: 24,-24 955: 27,5 @@ -4537,19 +4923,6 @@ entities: 1111: 0,0 1112: 1,0 1113: 2,0 - 2768: 48,35 - 2769: 49,35 - 2770: 50,35 - 2771: 51,35 - 2780: 39,36 - 2781: 40,36 - 2788: 41,36 - 2941: 37,31 - 2942: 38,31 - 2943: 39,31 - 2944: 40,31 - 2945: 41,31 - 2946: 42,31 4367: -6,0 4368: -7,0 4369: -8,0 @@ -4563,7 +4936,6 @@ entities: 4377: -19,0 4378: -20,0 4379: -21,0 - 4581: 32,24 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -4619,36 +4991,6 @@ entities: 988: 25,8 989: 26,8 990: 27,8 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale180 - decals: - 2102: 60,13 - 2103: 60,13 - 2104: 59,13 - 2105: 59,13 - 2106: 58,13 - 2107: 58,13 - 2140: 64,13 - 2141: 64,13 - 2142: 64,14 - 2143: 64,14 - 2150: 60,17 - 2151: 60,17 - 2152: 60,18 - 2153: 60,18 - 2154: 60,19 - 2155: 60,19 - 2156: 60,20 - 2157: 60,20 - 2174: 54,22 - 2175: 54,22 - 2176: 55,22 - 2177: 55,22 - 2178: 56,22 - 2179: 56,22 - 2180: 57,22 - 2181: 57,22 - node: color: '#80C71FFF' id: QuarterTileOverlayGreyscale180 @@ -4686,7 +5028,6 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 33: 61,13 2531: 106,-19 2532: 108,-17 2533: 108,-19 @@ -4717,7 +5058,6 @@ entities: 1141: 0,-2 1142: 1,-2 1754: 27,33 - 1755: 27,34 1756: 28,34 1757: 28,35 1758: 28,36 @@ -4785,9 +5125,6 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 40: 35,21 - 89: 32,17 - 180: 36,24 2471: 105,-19 2472: 104,-18 2473: 106,-16 @@ -4796,20 +5133,6 @@ entities: 2476: 103,-17 2477: 102,-18 2478: 103,-20 - 2764: 48,34 - 2765: 49,34 - 2766: 50,34 - 2767: 51,34 - 2778: 40,33 - 2779: 41,33 - 2787: 39,33 - 2807: 34,30 - 2947: 37,30 - 2948: 38,30 - 2949: 39,30 - 2950: 40,30 - 2951: 41,30 - 2952: 42,30 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 @@ -4819,6 +5142,11 @@ entities: 1904: 9,-7 4912: 18,-31 4967: 26,-30 + 5385: 22,-20 + 5386: 22,-19 + 5387: 22,-18 + 5388: 22,-17 + 5389: 22,-16 - node: color: '#EFCC2E82' id: QuarterTileOverlayGreyscale180 @@ -4835,28 +5163,6 @@ entities: 732: 27,-23 733: 27,-24 734: 27,-25 - - node: - color: '#EFCC4593' - id: QuarterTileOverlayGreyscale180 - decals: - 748: 22,-20 - 749: 22,-19 - 750: 22,-18 - 751: 22,-17 - 752: 22,-16 - - node: - color: '#FA750096' - id: QuarterTileOverlayGreyscale180 - decals: - 2955: 57,40 - 2956: 57,39 - 2957: 57,38 - 2958: 57,37 - 2959: 57,36 - 2960: 57,35 - 2965: 57,32 - 2967: 57,34 - 2968: 57,33 - node: color: '#FED83DFF' id: QuarterTileOverlayGreyscale180 @@ -4902,28 +5208,6 @@ entities: decals: 2685: -22,-15 3688: 54,2 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale270 - decals: - 2112: 57,8 - 2113: 57,8 - 2114: 57,9 - 2115: 57,9 - 2116: 57,10 - 2117: 57,10 - 2118: 57,11 - 2119: 57,11 - 2120: 57,12 - 2121: 57,12 - 2122: 57,13 - 2123: 57,13 - 2124: 56,13 - 2125: 56,13 - 2126: 55,13 - 2127: 55,13 - 2128: 54,13 - 2129: 54,13 - node: color: '#951710FF' id: QuarterTileOverlayGreyscale270 @@ -4967,7 +5251,6 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 34: 63,13 4563: 55,5 4564: 56,5 4565: 57,5 @@ -5033,14 +5316,6 @@ entities: 1990: 19,-1 1991: 18,-1 1996: 39,13 - 1997: 40,13 - 1998: 41,13 - 1999: 42,13 - 2000: 43,13 - 2001: 44,13 - 2002: 45,13 - 2003: 46,13 - 2004: 47,13 2465: 40,-1 2466: 41,-1 2467: 41,-2 @@ -5060,11 +5335,6 @@ entities: 4404: -19,-2 4405: -20,-2 4406: -21,-2 - 4604: 24,33 - 4605: 24,32 - 4606: 24,31 - 4607: 24,30 - 4608: 24,29 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 @@ -5101,16 +5371,21 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 42: 36,16 - 43: 35,17 - 82: 32,23 - 2831: 34,23 + 6519: 39,31 + 6520: 40,31 + 6521: 41,31 + 6527: 32,20 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: 4886: 16,-40 4911: 17,-31 + 5380: 20,-20 + 5381: 20,-19 + 5382: 20,-18 + 5383: 20,-17 + 5384: 20,-16 - node: color: '#EFCC2E82' id: QuarterTileOverlayGreyscale270 @@ -5127,15 +5402,6 @@ entities: 720: 25,-16 721: 25,-15 722: 25,-14 - - node: - color: '#EFCC4593' - id: QuarterTileOverlayGreyscale270 - decals: - 743: 20,-20 - 744: 20,-19 - 745: 20,-18 - 746: 20,-17 - 747: 20,-16 - node: color: '#F9801DFF' id: QuarterTileOverlayGreyscale270 @@ -5153,7 +5419,6 @@ entities: 223: 26,41 224: 26,42 3079: 69,22 - 3080: 69,23 3084: 79,31 3085: 80,31 3086: 81,31 @@ -5192,30 +5457,6 @@ entities: 3835: 64,2 3836: 67,2 3841: 58,2 - - node: - color: '#797C8250' - id: QuarterTileOverlayGreyscale90 - decals: - 2144: 64,16 - 2145: 64,16 - 2146: 63,16 - 2147: 63,16 - 2148: 62,16 - 2149: 62,16 - 2160: 60,25 - 2161: 60,25 - 2162: 59,25 - 2163: 59,25 - 2164: 58,25 - 2165: 58,25 - 2166: 57,25 - 2167: 57,25 - 2168: 56,25 - 2169: 56,25 - 2170: 55,25 - 2171: 55,25 - 2172: 54,25 - 2173: 54,25 - node: color: '#8932B8FF' id: QuarterTileOverlayGreyscale90 @@ -5269,7 +5510,6 @@ entities: 1675: 33,15 1676: 34,15 1677: 35,15 - 1678: 36,15 1679: 37,15 1728: 25,37 1729: 24,37 @@ -5321,9 +5561,6 @@ entities: 2030: 42,6 2031: 42,7 2032: 42,8 - 2033: 42,9 - 2034: 42,10 - 2035: 42,11 2458: 47,0 2459: 46,0 2460: 45,0 @@ -5373,9 +5610,10 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 45: 36,21 - 55: 34,28 - 177: 35,24 + 6516: 39,30 + 6517: 40,30 + 6518: 41,30 + 6526: 32,19 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -5472,7 +5710,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 1144: -3,-4 - 2743: 32,31 - node: color: '#EFB34128' id: ThreeQuarterTileOverlayGreyscale @@ -5530,7 +5767,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 1146: -1,-6 - 1612: 27,25 - node: color: '#EFB34166' id: ThreeQuarterTileOverlayGreyscale180 @@ -5540,10 +5776,10 @@ entities: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 4867: 23,-44 4880: 17,-43 4964: 23,-29 5197: 22,-37 + 6423: 23,-44 - node: color: '#EFCC2E82' id: ThreeQuarterTileOverlayGreyscale180 @@ -5593,12 +5829,12 @@ entities: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 4866: 19,-44 4879: 16,-43 4885: 15,-40 4906: 15,-37 4930: 13,-29 4966: 25,-30 + 6417: 19,-44 - node: color: '#EFCC2E82' id: ThreeQuarterTileOverlayGreyscale270 @@ -5645,7 +5881,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 1143: -1,-4 - 1611: 27,22 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -5667,6 +5902,12 @@ entities: 1785: 23,-12 1786: 26,-8 1787: 30,-11 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 5262: 85,30 + 6750: 51,15 - node: color: '#52B4E996' id: WarnCornerGreyscaleNE @@ -5692,17 +5933,14 @@ entities: id: WarnCornerNE decals: 2249: 57,-14 - 3101: 92,27 4516: 3,-30 - 5265: 41,27 + 6294: 43,33 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 1586: 39,27 2248: 54,-14 2580: 36,-44 - 3098: 82,29 3102: 96,27 4517: 2,-30 - node: @@ -5710,7 +5948,6 @@ entities: id: WarnCornerSE decals: 2246: 57,-16 - 3104: 92,33 3108: 80,33 4518: 3,-33 - node: @@ -5718,9 +5955,8 @@ entities: id: WarnCornerSW decals: 2247: 54,-16 - 3097: 82,31 - 3103: 96,33 4519: 2,-33 + 5264: 96,33 - node: color: '#334E6DC8' id: WarnCornerSmallGreyscaleNE @@ -5731,6 +5967,15 @@ entities: id: WarnCornerSmallGreyscaleNE decals: 1890: 9,-7 + 6117: 10,28 + 6118: 7,28 + 6389: 41,33 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 6119: 9,28 + 6226: 60,25 - node: color: '#334E6DC8' id: WarnCornerSmallGreyscaleSE @@ -5741,38 +5986,49 @@ entities: id: WarnCornerSmallGreyscaleSE decals: 1891: 9,-8 + 6107: 20,22 + 6114: 15,22 + 6115: 13,20 + 6121: 7,21 + 6388: 41,36 + - node: + color: '#FFFFFFDC' + id: WarnCornerSmallGreyscaleSW + decals: + 5616: 36,32 + 5639: 29,25 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 6106: 17,22 + 6116: 15,20 + 6120: 9,21 + 6387: 43,36 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1620: 27,21 2561: 39,-49 - 3014: 46,33 3533: 6,33 3919: 18,-46 - 4578: 57,8 4831: 24,-36 - 4859: 19,-44 + 6422: 19,-44 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 2560: 41,-49 - 2974: 53,33 3920: 24,-46 4827: 28,-36 - 4860: 23,-44 + 6421: 23,-44 + 6731: 60,25 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1619: 27,26 2563: 39,-45 - 2848: 46,36 3653: 6,39 - 4542: 48,10 - 4560: 52,10 - 4577: 57,12 4807: 24,-32 4862: 19,-42 5206: 19,-37 @@ -5781,19 +6037,23 @@ entities: id: WarnCornerSmallSW decals: 2562: 41,-45 - 2852: 53,36 - 4559: 52,10 4808: 28,-32 4861: 23,-42 5205: 23,-37 + 6811: 60,27 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 5263: 92,30 - node: color: '#FFFFFFFF' id: WarnFull decals: - 1594: 40,25 - 1595: 39,25 2242: 77,0 2245: 77,-3 + 6727: 59,26 + 6728: 61,27 - node: color: '#52B4E996' id: WarnFullGreyscale @@ -5801,6 +6061,12 @@ entities: 2436: 71,3 3832: 70,2 3833: 70,1 + - node: + color: '#FFFFFF93' + id: WarnFullGreyscale + decals: + 5511: 33,26 + 5742: 40,32 - node: color: '#FFFFFFFF' id: WarnFullGreyscale @@ -5822,14 +6088,14 @@ entities: 4983: 31,-34 4984: 31,-30 5169: 14,-35 + 6095: 45,12 + 6096: 44,12 + 6381: 42,34 + 6382: 42,35 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 1615: 27,22 - 1616: 27,23 - 1617: 27,24 - 1618: 27,25 2251: 57,-15 2557: 39,-48 2558: 39,-46 @@ -5838,8 +6104,6 @@ entities: 2643: 40,-16 2644: 40,-15 2731: -23,-23 - 2846: 46,35 - 2847: 46,34 3110: 80,34 3651: 6,38 3652: 6,37 @@ -5853,17 +6117,13 @@ entities: 4501: 36,-33 4520: 3,-32 4521: 3,-31 - 4551: 48,9 - 4556: 52,9 - 4557: 52,8 - 4572: 57,9 - 4573: 57,10 - 4574: 57,11 4800: 24,-35 4801: 24,-34 4802: 24,-33 4855: 19,-43 - 5264: 41,26 + 5265: 65,47 + 5266: 65,46 + 6809: 60,27 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5875,11 +6135,32 @@ entities: decals: 3770: 62,-6 3849: 61,-1 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 6745: 57,23 + 6746: 57,24 + 6747: 64,15 + 6820: 42,10 + 6826: 47,14 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleE + decals: + 6492: 40,25 + 6509: 54,32 + 6855: 27,24 - node: color: '#FA750096' id: WarnLineGreyscaleE decals: 3767: 53,-7 + - node: + color: '#FFFFFFDC' + id: WarnLineGreyscaleE + decals: + 5623: 31,30 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -5900,6 +6181,12 @@ entities: 4891: 23,-40 4902: 27,-29 4988: 28,-37 + 6108: 20,21 + 6109: 20,20 + 6110: 15,20 + 6111: 15,21 + 6383: 41,34 + 6384: 41,35 - node: color: '#52B4E996' id: WarnLineGreyscaleN @@ -5908,11 +6195,17 @@ entities: 3850: 58,0 3851: 59,0 3852: 60,0 + 6869: 43,29 - node: - color: '#D381C996' + color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 4552: 54,11 + 6471: 33,25 + 6472: 35,31 + 6474: 38,28 + 6477: 48,36 + 6508: 53,33 + 6510: 40,31 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -5945,11 +6238,35 @@ entities: 3846: 58,-2 3847: 59,-2 3848: 60,-2 + - node: + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 6870: 44,13 + 6871: 45,13 + 6875: 56,13 + 6876: 57,13 + 6877: 58,13 + 6878: 62,13 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 6473: 38,30 + 6475: 43,30 + 6476: 49,30 + 6854: 40,33 - node: color: '#FA750096' id: WarnLineGreyscaleS decals: 3768: 50,-9 + - node: + color: '#FFFFFFDC' + id: WarnLineGreyscaleS + decals: + 5613: 34,32 + 5614: 35,32 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS @@ -5978,6 +6295,20 @@ entities: id: WarnLineGreyscaleW decals: 3853: 57,-1 + - node: + color: '#D381C996' + id: WarnLineGreyscaleW + decals: + 6744: 53,14 + 6748: 59,24 + 6749: 59,23 + 6817: 44,10 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleW + decals: + 6533: 32,27 + 6534: 32,28 - node: color: '#FA750096' id: WarnLineGreyscaleW @@ -6003,13 +6334,16 @@ entities: 4892: 16,-42 4900: 15,-35 4971: 25,-29 + 6104: 22,20 + 6105: 22,21 + 6112: 17,20 + 6113: 17,21 + 6385: 43,34 + 6386: 43,35 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 2045: 51,13 - 2046: 50,13 - 2047: 49,13 2243: 78,-2 2244: 77,-2 2252: 56,-16 @@ -6018,16 +6352,7 @@ entities: 2600: 49,-12 2601: 50,-12 2732: -6,-20 - 3099: 84,32 - 3100: 86,32 3109: 79,33 - 4534: 49,10 - 4535: 50,10 - 4536: 51,10 - 4538: 53,10 - 4539: 54,10 - 4540: 55,10 - 4575: 58,12 4793: 25,-32 4794: 26,-32 4795: 27,-32 @@ -6037,6 +6362,9 @@ entities: 5202: 21,-37 5203: 20,-37 5204: 22,-37 + 6751: 50,15 + 6752: 49,15 + 6810: 59,27 - node: color: '#FFFFFFFF' id: WarnLineS @@ -6053,12 +6381,6 @@ entities: 2591: 36,-47 2592: 36,-46 2593: 36,-45 - 2972: 53,34 - 2973: 53,35 - 3221: 6,27 - 3222: 6,26 - 3223: 6,24 - 3224: 6,23 4047: 46,-49 4478: 46,-45 4502: 34,-31 @@ -6066,9 +6388,6 @@ entities: 4504: 34,-33 4522: 2,-32 4523: 2,-31 - 4554: 52,8 - 4558: 52,9 - 4590: 39,26 4803: 28,-35 4804: 28,-34 4805: 28,-33 @@ -6078,6 +6397,18 @@ entities: 5220: 33,-25 5221: 33,-24 5222: 33,-23 + 5267: 67,47 + 5268: 67,46 + 6569: 6,27 + 6570: 6,26 + 6574: 6,24 + 6575: 6,23 + - node: + color: '#DE3A3A96' + id: WarnLineW + decals: + 6867: 50,33 + 6868: 51,33 - node: color: '#FFFFFFFF' id: WarnLineW @@ -6085,12 +6416,7 @@ entities: 218: 13,37 219: 14,37 220: 15,37 - 754: 22,-16 755: 21,-16 - 756: 20,-16 - 2048: 51,15 - 2049: 50,15 - 2050: 49,15 2240: 77,-1 2241: 78,-1 2254: 56,-14 @@ -6104,9 +6430,6 @@ entities: 2586: 42,-44 2587: 44,-44 2588: 43,-44 - 2854: 48,33 - 2855: 49,33 - 2856: 50,33 3530: 7,33 3531: 8,33 3537: 9,33 @@ -6115,23 +6438,17 @@ entities: 3916: 21,-46 3917: 22,-46 3918: 23,-46 - 4576: 58,8 4797: 25,-36 4798: 26,-36 4799: 27,-36 - 4852: 20,-44 - 4853: 21,-44 - 4854: 22,-44 - 5263: 40,27 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 175: 36,21 - 176: 36,22 - 181: 36,23 - 182: 36,24 + 5390: 20,-16 + 5391: 21,-16 + 5392: 22,-16 + 5393: 23,-16 + 6726: 59,25 + 6753: 49,13 + 6754: 50,13 + 6755: 51,13 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -6139,6 +6456,13 @@ entities: 1858: 20,-3 3240: 9,19 3249: 6,16 + 5297: 44,25 + 6240: 65,11 + 6307: 49,42 + 6317: 44,43 + 6340: 55,38 + 6350: 59,39 + 6359: 55,38 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -6146,6 +6470,13 @@ entities: 1856: 18,-3 3237: 5,19 3250: 5,16 + 5300: 42,25 + 6244: 64,11 + 6256: 60,11 + 6306: 46,42 + 6318: 42,43 + 6341: 53,38 + 6351: 57,39 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -6154,6 +6485,13 @@ entities: 3239: 9,18 3248: 6,15 5213: 21,-12 + 5299: 44,24 + 6241: 65,10 + 6261: 62,8 + 6308: 49,40 + 6316: 44,41 + 6348: 59,38 + 6362: 58,35 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -6161,6 +6499,22 @@ entities: 1853: 18,-6 3238: 5,18 3247: 5,15 + 5298: 42,24 + 6245: 64,10 + 6259: 60,8 + 6319: 42,41 + 6349: 57,38 + 6367: 53,35 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 6360: 59,36 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 6356: 55,36 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw @@ -6170,8 +6524,10 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 4529: 60,10 5215: 20,-12 + 6264: 62,10 + 6309: 48,40 + 6361: 58,36 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -6180,9 +6536,11 @@ entities: 1780: 21,-10 1859: 20,-4 1860: 20,-5 - 4524: 60,8 - 4525: 60,9 5214: 20,-13 + 6262: 62,9 + 6310: 49,41 + 6311: 44,42 + 6357: 55,37 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -6197,6 +6555,20 @@ entities: 5143: 10,-37 5144: 11,-37 5145: 12,-37 + 5302: 43,25 + 6265: 61,11 + 6266: 62,11 + 6267: 63,11 + 6300: 48,39 + 6301: 47,39 + 6302: 46,39 + 6303: 43,43 + 6312: 47,42 + 6313: 48,42 + 6353: 58,39 + 6354: 57,36 + 6355: 56,36 + 6358: 54,38 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -6206,9 +6578,19 @@ entities: 3244: 6,18 3245: 7,18 3246: 8,18 - 4526: 61,10 - 4527: 62,10 - 4528: 63,10 + 5301: 43,24 + 6260: 61,8 + 6263: 63,10 + 6304: 43,41 + 6344: 54,35 + 6345: 55,35 + 6346: 56,35 + 6347: 57,35 + 6352: 58,38 + 6363: 57,35 + 6364: 56,35 + 6365: 55,35 + 6366: 54,35 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -6218,6 +6600,25 @@ entities: 5146: 13,-36 5147: 13,-35 5148: 13,-34 + 6257: 60,10 + 6258: 60,9 + 6305: 46,40 + 6314: 46,41 + 6315: 42,42 + 6342: 53,37 + 6343: 53,36 + - node: + angle: 0.4014257279586958 rad + color: '#FFFFFFFF' + id: body + decals: + 5414: 54.859493,45.13849 + - node: + color: '#FFFFFFFF' + id: burnt1 + decals: + 5433: 55,41 + 5435: 52,40 - node: cleanable: True color: '#FFFFFFFF' @@ -6245,6 +6646,13 @@ entities: 4496: 47,-49 4508: 35,-31 4512: 36,-32 + - node: + color: '#FFFFFFFF' + id: burnt3 + decals: + 5430: 52,42 + 5431: 52,42 + 5434: 52,42 - node: cleanable: True color: '#FFFFFFFF' @@ -6255,6 +6663,11 @@ entities: 4492: 47,-48 4509: 36,-31 4513: 34,-33 + - node: + color: '#FFFFFFFF' + id: burnt4 + decals: + 5432: 54,41 - node: cleanable: True color: '#FFFFFFFF' @@ -6268,28 +6681,11 @@ entities: 4510: 34,-32 4514: 35,-33 - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#1206120F' - id: footprint + angle: 0.13962634015954636 rad + color: '#9C2020FF' + id: danger decals: - 3038: 37.85091,30.216513 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#12061228' - id: footprint - decals: - 3037: 37.455074,30.584824 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#12061247' - id: footprint - decals: - 3034: 36.107853,30.160917 - 3035: 36.482853,30.550077 - 3036: 37.08702,30.258207 + 6457: 62.048172,49.059433 - node: cleanable: True angle: -1.5707963267948966 rad @@ -6358,7 +6754,6 @@ entities: color: '#4632327F' id: footprint decals: - 3459: 7.786436,27.447971 3460: 8.098936,28.059507 3461: 7.765602,28.810028 3462: 8.182269,29.303427 @@ -6411,7 +6806,6 @@ entities: 3359: 7.8475504,21.302177 3360: 8.173939,21.823374 3361: 7.7850504,22.497452 - 3362: 8.132273,23.053394 3478: 5.7794914,30.754562 3479: 6.140602,31.234062 3480: 5.79338,31.73441 @@ -6424,8 +6818,6 @@ entities: 3506: 8.198838,29.574697 3507: 7.7405043,30.297422 3508: 7.976616,30.756943 - 3509: 8.210273,27.260662 - 3510: 7.793606,26.725567 3542: 5.813014,32.55113 3543: 6.104681,33.051476 3544: 8.569844,32.77003 @@ -6450,7 +6842,6 @@ entities: 3356: 12.595434,24.818508 3357: 11.762101,25.263262 3368: 6.7781057,25.172922 - 3369: 7.125328,24.776814 3370: 7.7642174,25.20072 3385: 13.443252,22.368464 3386: 13.033529,22.01405 @@ -6475,7 +6866,6 @@ entities: 3517: 14.683398,20.187449 3518: 14.183398,20.656523 3519: 13.641731,20.27084 - 3520: 8.2431135,24.784645 3521: 8.8368635,25.201601 3522: 17.269722,20.829908 3523: 16.759306,20.339985 @@ -6541,10 +6931,15 @@ entities: decals: 509: 19.872448,-39.76645 - node: - color: '#FFFFFFFF' - id: ghost + color: '#DE3A3A96' + id: grasssnow03 decals: - 2468: 13,-11 + 6296: 58.069866,36.640766 + - node: + color: '#DE3A3A96' + id: grasssnow10 + decals: + 6297: 58.007366,36.859516 - node: color: '#D4D4D428' id: guy @@ -6637,6 +7032,57 @@ entities: - type: Transform pos: 12.501018,-34.058125 parent: 2 +- proto: ActionToggleInternals + entities: + - uid: 6295 + mapInit: true + paused: true + components: + - type: Transform + parent: 10308 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 10308 +- proto: ActionToggleJetpack + entities: + - uid: 6125 + mapInit: true + paused: true + components: + - type: Transform + parent: 10308 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 10308 +- proto: ActionToggleLight + entities: + - uid: 6399 + mapInit: true + paused: true + components: + - type: Transform + parent: 10814 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 10814 + - uid: 6731 + mapInit: true + paused: true + components: + - type: Transform + parent: 8472 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 8472 + - uid: 11094 + mapInit: true + paused: true + components: + - type: Transform + parent: 11032 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 11032 - proto: AirAlarm entities: - uid: 5 @@ -6656,12 +7102,6 @@ entities: - 14736 - 429 - 8203 - - uid: 129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-33.5 - parent: 2 - uid: 138 components: - type: Transform @@ -6672,19 +7112,6 @@ entities: devices: - 4027 - 4092 - - uid: 151 - components: - - type: Transform - pos: 56.5,16.5 - parent: 2 - - type: DeviceList - devices: - - 10418 - - 10417 - - 10416 - - 12554 - - 10358 - - 10403 - uid: 170 components: - type: Transform @@ -6695,16 +7122,6 @@ entities: devices: - 4460 - 4447 - - uid: 182 - components: - - type: Transform - pos: 67.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 12564 - - 10347 - - 10400 - uid: 195 components: - type: Transform @@ -6768,26 +7185,16 @@ entities: - 5657 - uid: 1520 components: + - type: MetaData + name: Telecomms Air Monitor - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-15.5 parent: 2 - type: DeviceList devices: - - 1560 - - uid: 1647 - components: - - type: Transform - pos: 53.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 10413 - - 10414 - - 10415 - - 10412 - - 12559 - - 10352 + - 6881 + - 5820 - uid: 2124 components: - type: Transform @@ -6804,23 +7211,37 @@ entities: - 241 - 14065 - 14064 - - uid: 2296 + - uid: 2132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,20.5 + rot: 3.141592653589793 rad + pos: 82.5,28.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 91.5,33.5 parent: 2 - type: DeviceList devices: - - 10416 - - 10417 - - 10418 - - 185 - - 10413 - - 10414 - - 10415 - - 10356 - - 10375 + - 14548 + - 14421 + - 14420 + - 14433 + - 14432 + - 14549 + - uid: 2614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,40.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,42.5 + parent: 2 - uid: 5020 components: - type: Transform @@ -6858,22 +7279,40 @@ entities: parent: 2 - type: DeviceList devices: - - 10402 - - 10331 - 12989 - - uid: 5859 + - 5392 + - 10662 + - 12485 + - 13435 + - 10324 + - 3481 + - uid: 5242 components: + - type: MetaData + name: air alarm (Sci - RD Office) - type: Transform - pos: 34.5,32.5 + rot: 1.5707963267948966 rad + pos: 59.5,9.5 parent: 2 - type: DeviceList devices: - - 2691 - - 8575 - - 10452 - - 2263 - - 2265 - - 12529 + - 9454 + - 12563 + - 4280 + - uid: 5398 + components: + - type: MetaData + name: air alarm (Sec - East) + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 15375 + - 15368 + - 5450 + - 15524 - uid: 6126 components: - type: Transform @@ -6969,17 +7408,27 @@ entities: - 7708 - uid: 8571 components: - - type: MetaData - name: Head of Security Room Air Alarm - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,21.5 + pos: 42.5,32.5 parent: 2 - type: DeviceList devices: - - 2330 - - 8595 - - 8596 + - 1231 + - 8706 + - 11683 + - 15368 + - 14941 + - 14939 + - 2334 + - 10527 + - 9589 + - 10613 + - 10612 + - 5395 + - 15554 + - 73 + - 248 + - 15375 - uid: 8922 components: - type: Transform @@ -6999,22 +7448,6 @@ entities: - 6804 - 10206 - 10205 - - uid: 9587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 2 - - type: DeviceList - devices: - - 9586 - - 9585 - - 9584 - - 9589 - - 9570 - - 9569 - - 9236 - - 13510 - uid: 9637 components: - type: Transform @@ -7024,6 +7457,18 @@ entities: devices: - 9636 - 9635 + - uid: 10135 + components: + - type: MetaData + name: air alarm (Armory) + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 5426 + - 13644 - uid: 10201 components: - type: Transform @@ -7086,16 +7531,97 @@ entities: devices: - 10249 - 10248 + - uid: 10409 + components: + - type: MetaData + name: air alarm (Sci - Anomaly) + - type: Transform + pos: 67.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 1622 + - 10080 + - 3 + - 15898 - uid: 10419 components: + - type: MetaData + name: air alarm (Artifact Chamber) - type: Transform rot: -1.5707963267948966 rad pos: 65.5,24.5 parent: 2 - type: DeviceList devices: - - 10411 - - 10355 + - 5651 + - 10671 + - 15476 + - 15492 + - 15535 + - uid: 10469 + components: + - type: MetaData + name: air alarm (Sci - South Hall) + - type: Transform + pos: 55.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 10418 + - 8460 + - 10416 + - 15492 + - 15898 + - 10340 + - 9442 + - 10662 + - 5478 + - 12485 + - uid: 10524 + components: + - type: MetaData + name: air alarm (Sec - Brig) + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 5395 + - 15368 + - 15554 + - 15490 + - 15491 + - 10598 + - 12553 + - 14330 + - 15552 + - 5390 + - 12516 + - 12518 + - uid: 10576 + components: + - type: MetaData + name: air alarm (Sci - North) + - type: Transform + pos: 58.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 8601 + - 15492 + - 10058 + - 10418 + - 8460 + - 10416 + - 15898 + - 5651 + - 10671 + - 15476 + - 12087 + - 7267 + - 12485 - uid: 10653 components: - type: Transform @@ -7120,18 +7646,6 @@ entities: - 5774 - 5775 - 5776 - - uid: 10988 - components: - - type: Transform - pos: 37.5,32.5 - parent: 2 - - type: DeviceList - devices: - - 6774 - - 9456 - - 7760 - - 2301 - - 1812 - uid: 11165 components: - type: Transform @@ -7143,20 +7657,27 @@ entities: - 1103 - 1104 - 11250 - - 11249 - - 11248 - 11322 - 11323 - 11324 - 12516 - - 12085 - 8240 - - 8810 - 8242 - 8243 - - 9586 - - 9585 - - 9584 + - 8625 + - 11249 + - 11248 + - 12518 + - uid: 11289 + components: + - type: MetaData + name: air monitor (Artifact Chamber) + - type: Transform + pos: 61.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 8980 - uid: 11508 components: - type: Transform @@ -7193,6 +7714,18 @@ entities: - 14994 - 14992 - 12161 + - uid: 11680 + components: + - type: Transform + pos: 82.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 14373 + - 14385 + - 14547 + - 14384 + - 14377 - uid: 11730 components: - type: Transform @@ -7310,10 +7843,10 @@ entities: - 3459 - 9359 - 9358 - - 9351 - 9353 - 9352 - 2690 + - 3224 - uid: 12480 components: - type: Transform @@ -7361,11 +7894,15 @@ entities: - 9364 - 9363 - 9362 - - 9351 - 9353 - 9352 - 5103 - 10365 + - 3224 + - 7267 + - 15492 + - 5478 + - 15898 - uid: 12488 components: - type: Transform @@ -7407,36 +7944,6 @@ entities: devices: - 11957 - 11956 - - uid: 12528 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - - type: DeviceList - devices: - - 8629 - - 8630 - - uid: 12530 - components: - - type: MetaData - name: Armory Air Alarm - - type: Transform - pos: 41.5,29.5 - parent: 2 - - type: DeviceList - devices: - - 8607 - - 8610 - - 15477 - - uid: 12532 - components: - - type: Transform - pos: 42.5,21.5 - parent: 2 - - type: DeviceList - devices: - - 8684 - - 8685 - uid: 12537 components: - type: Transform @@ -7458,44 +7965,6 @@ entities: - 12540 - 9558 - 9557 - - uid: 12548 - components: - - type: Transform - pos: 54.5,21.5 - parent: 2 - - type: DeviceList - devices: - - 12550 - - 12087 - - 10366 - - 10351 - - uid: 12562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,10.5 - parent: 2 - - type: DeviceList - devices: - - 12563 - - 10346 - - 10401 - - uid: 13512 - components: - - type: Transform - pos: 48.5,36.5 - parent: 2 - - type: DeviceList - devices: - - 8349 - - 13511 - - 4414 - - 13515 - - 13517 - - 3152 - - 13523 - - 13514 - - 13507 - uid: 13984 components: - type: Transform @@ -7544,27 +8013,31 @@ entities: - 7895 - 6854 - 7663 - - uid: 14247 + - uid: 14171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,31.5 + rot: 1.5707963267948966 rad + pos: 52.5,35.5 parent: 2 - type: DeviceList devices: - - 14547 - - 14385 - - 14373 - - 14377 - - 14384 - - 14420 - - 14421 - - 14433 - - 14432 - - 14549 - - 14552 - - 14551 - - 14553 + - 2145 + - 8485 + - 8498 + - uid: 14521 + components: + - type: MetaData + name: air alarm (Security - Warden) + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 14871 + - 14850 + - 14852 + - 15465 - uid: 14615 components: - type: Transform @@ -7576,7 +8049,17 @@ entities: - 14614 - 14613 - 14616 - - 14622 + - uid: 14653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 7269 + - 5866 + - 5821 - uid: 14670 components: - type: Transform @@ -7612,45 +8095,92 @@ entities: devices: - 15296 - 15298 - - uid: 15476 + - uid: 15466 components: - type: MetaData - name: Armory Entrance Air Alarm + name: air alarm (North Hall) - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,21.5 + rot: -1.5707963267948966 rad + pos: 28.5,23.5 parent: 2 - type: DeviceList devices: - - 12531 - - 8597 - - 8598 + - 2334 + - 10527 + - 15368 + - 9589 + - 8243 + - 8625 + - 8240 + - 8242 + - 9570 + - 9569 + - 12516 + - 1103 + - 1104 + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 10613 + - 10612 + - 5390 + - 15554 + - 12518 + - uid: 15520 + components: + - type: MetaData + name: air alarm (Sec - HOS Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 12770 + - uid: 15578 + components: + - type: MetaData + name: air alarm (Sci - Can Storage) + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 15879 + - 15880 + - 15882 + - 10336 + - 2421 + - 10585 + - 5392 - proto: AirCanister entities: - uid: 2078 components: - type: Transform + anchored: True pos: 28.5,-23.5 parent: 2 + - type: Physics + bodyType: Static - uid: 4572 components: - type: Transform pos: 32.5,-26.5 parent: 2 - - uid: 5518 - components: - - type: Transform - pos: 66.5,44.5 - parent: 2 - uid: 5706 components: - type: Transform pos: 85.5,-1.5 parent: 2 - - uid: 8337 + - uid: 9003 components: - type: Transform - pos: 46.5,38.5 + pos: 56.5,9.5 parent: 2 - uid: 9900 components: @@ -7672,11 +8202,6 @@ entities: - type: Transform pos: 14.5,-9.5 parent: 2 - - uid: 13571 - components: - - type: Transform - pos: 46.5,37.5 - parent: 2 - uid: 14401 components: - type: Transform @@ -7689,6 +8214,12 @@ entities: - type: Transform pos: 11.5,11.5 parent: 2 + - uid: 613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,19.5 + parent: 2 - uid: 1079 components: - type: Transform @@ -7699,23 +8230,30 @@ entities: - type: Transform pos: 17.5,13.5 parent: 2 + - uid: 4124 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 - uid: 8842 components: - type: Transform pos: 104.5,-12.5 parent: 2 -- proto: AirlockArmoryGlassLocked +- proto: AirlockArmoryLocked entities: - - uid: 37 + - uid: 2217 components: - type: Transform - pos: 40.5,25.5 + rot: 1.5707963267948966 rad + pos: 41.5,25.5 parent: 2 - - uid: 150 +- proto: AirlockAssembly + entities: + - uid: 10659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,25.5 + pos: 56.5,45.5 parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: @@ -7748,36 +8286,76 @@ entities: parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 232 + - uid: 257 components: - type: Transform - pos: 31.5,23.5 + pos: 28.5,28.5 parent: 2 - - uid: 896 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8414: + - - DoorStatus + - Close + 8412: + - - DoorStatus + - Close + - uid: 318 components: - type: Transform - pos: 31.5,24.5 + pos: 28.5,27.5 parent: 2 - - uid: 1152 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8412: + - - DoorStatus + - Close + 8414: + - - DoorStatus + - Close + - uid: 2117 components: - type: Transform - pos: 35.5,30.5 + pos: 46.5,31.5 parent: 2 - - uid: 1153 + - uid: 3082 components: - type: Transform - pos: 35.5,31.5 + pos: 46.5,30.5 parent: 2 - - uid: 2188 + - uid: 8412 components: - type: Transform - pos: 28.5,24.5 + pos: 31.5,27.5 parent: 2 - - uid: 2189 + - type: DeviceLinkSource + linkedPorts: + 318: + - - DoorStatus + - Close + 257: + - - DoorStatus + - Close + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8414 components: - type: Transform - pos: 28.5,23.5 + pos: 31.5,28.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 318: + - - DoorStatus + - Close + 257: + - - DoorStatus + - Close + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockBrigLocked entities: - uid: 32 @@ -7796,11 +8374,6 @@ entities: parent: 2 - proto: AirlockCaptainLocked entities: - - uid: 389 - components: - - type: Transform - pos: 35.5,40.5 - parent: 2 - uid: 2616 components: - type: Transform @@ -7863,16 +8436,16 @@ entities: parent: 2 - proto: AirlockCommandGlassLocked entities: + - uid: 348 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 - uid: 2756 components: - type: Transform pos: 28.5,38.5 parent: 2 - - uid: 2757 - components: - - type: Transform - pos: 26.5,38.5 - parent: 2 - uid: 2758 components: - type: Transform @@ -7901,13 +8474,6 @@ entities: - type: Transform pos: 16.5,36.5 parent: 2 - - uid: 8592 - components: - - type: MetaData - name: Camera Servers - - type: Transform - pos: 29.5,36.5 - parent: 2 - uid: 14087 components: - type: Transform @@ -7920,17 +8486,17 @@ entities: parent: 2 - proto: AirlockDetectiveGlassLocked entities: - - uid: 2004 + - uid: 628 components: - type: Transform - pos: 42.5,16.5 + pos: 53.5,34.5 parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 11279 + - uid: 3158 components: - type: Transform - pos: 41.5,21.5 + pos: 56.5,34.5 parent: 2 - proto: AirlockEngineering entities: @@ -8019,11 +8585,22 @@ entities: - type: Transform pos: 3.5,-9.5 parent: 2 + - uid: 413 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 - uid: 596 components: - type: Transform pos: 15.5,6.5 parent: 2 + - uid: 662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 - uid: 815 components: - type: Transform @@ -8049,11 +8626,6 @@ entities: - type: Transform pos: 18.5,-39.5 parent: 2 - - uid: 3208 - components: - - type: Transform - pos: 35.5,33.5 - parent: 2 - uid: 3267 components: - type: Transform @@ -8064,20 +8636,22 @@ entities: - type: Transform pos: 69.5,43.5 parent: 2 - - uid: 3490 + - uid: 4012 components: - type: Transform - pos: 48.5,27.5 + rot: 3.141592653589793 rad + pos: 63.5,19.5 parent: 2 - uid: 5824 components: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 6899 + - uid: 8500 components: - type: Transform - pos: 16.5,-12.5 + rot: -1.5707963267948966 rad + pos: 61.5,35.5 parent: 2 - uid: 11212 components: @@ -8094,18 +8668,22 @@ entities: - type: Transform pos: 52.5,-12.5 parent: 2 +- proto: AirlockEVALocked + entities: + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 - proto: AirlockExternal entities: - - uid: 1889 - components: - - type: Transform - pos: 85.5,4.5 - parent: 2 - - uid: 3072 - components: - - type: Transform - pos: 74.5,-17.5 - parent: 2 - uid: 11758 components: - type: Transform @@ -8146,11 +8724,6 @@ entities: - type: Transform pos: 101.5,-20.5 parent: 2 - - uid: 15456 - components: - - type: Transform - pos: 40.5,43.5 - parent: 2 - proto: AirlockExternalAtmosphericsLocked entities: - uid: 4391 @@ -8179,35 +8752,6 @@ entities: 225: - - DoorStatus - DoorBolt - - uid: 226 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 2 - - uid: 1902 - components: - - type: Transform - pos: 74.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2128: - - - DoorStatus - - DoorBolt - - uid: 2128 - components: - - type: Transform - pos: 72.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 1902: - - - DoorStatus - - DoorBolt - uid: 4392 components: - type: Transform @@ -8252,30 +8796,89 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-1.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 509: + - - DoorStatus + - DoorBolt + - uid: 418 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 + - type: AccessReader + access: + - - Research + - - ResearchDirector + - uid: 427 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 + - type: AccessReader + access: + - - Research + - - ResearchDirector + - uid: 565 + components: + - type: Transform + pos: 74.5,-17.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 3321 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 2 - - uid: 4873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,49.5 - parent: 2 - - uid: 5298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,49.5 - parent: 2 - uid: 7610 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,0.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4518: + - - DoorStatus + - DoorBolt + - uid: 9283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,52.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9303: + - - DoorStatus + - DoorBolt + - uid: 10771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,52.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11675: + - - DoorStatus + - DoorBolt - uid: 13291 components: - type: Transform @@ -8293,6 +8896,13 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-20.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13305: + - - DoorStatus + - DoorBolt - uid: 13300 components: - type: Transform @@ -8305,6 +8915,20 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-22.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13294: + - - DoorStatus + - DoorBolt + - uid: 14764 + components: + - type: Transform + pos: 86.5,4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 1078 @@ -8319,12 +8943,26 @@ entities: - type: Transform pos: 5.5,24.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 607: + - - DoorStatus + - DoorBolt - uid: 428 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,26.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 451: + - - DoorStatus + - DoorBolt - uid: 974 components: - type: Transform @@ -8364,17 +9002,35 @@ entities: 173: - - DoorStatus - DoorBolt - - uid: 662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-15.5 - parent: 2 - uid: 1216 components: - type: Transform pos: 33.5,-39.5 parent: 2 + - uid: 14522 + components: + - type: Transform + pos: 72.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14523: + - - DoorStatus + - DoorBolt + - uid: 14523 + components: + - type: Transform + pos: 74.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14522: + - - DoorStatus + - DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 941 @@ -8480,61 +9136,149 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 8327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,4.5 - parent: 2 - - uid: 15442 - components: - - type: Transform - pos: 74.5,-19.5 - parent: 2 - - uid: 15457 + - uid: 389 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,45.5 + pos: 66.5,48.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4920 + components: + - type: Transform + pos: 74.5,-20.5 + parent: 2 + - uid: 9708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalGlassShuttleLocked entities: + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10982: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - uid: 509 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-1.5 parent: 2 - - uid: 4506 + - type: DeviceLinkSource + linkedPorts: + 8663: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,51.5 + rot: -1.5707963267948966 rad + pos: 3.5,24.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 553: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - uid: 4518 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,0.5 parent: 2 - - uid: 4914 + - type: DeviceLinkSource + linkedPorts: + 6639: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 9303 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,51.5 + pos: 57.5,54.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13328: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,54.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13329: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - uid: 13294 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-22.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13297: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - uid: 13305 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-20.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9402: + - - DoorStatus + - InputA + - - DockStatus + - InputB + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalLocked entities: - uid: 1369 @@ -8585,18 +9329,6 @@ entities: 4556: - - DoorStatus - DoorBolt - - uid: 7759 - components: - - type: Transform - pos: 64.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 13556: - - - DoorStatus - - DoorBolt - uid: 8728 components: - type: Transform @@ -8621,18 +9353,6 @@ entities: 8728: - - DoorStatus - DoorBolt - - uid: 13556 - components: - - type: Transform - pos: 64.5,43.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7759: - - - DoorStatus - - DoorBolt - uid: 13780 components: - type: Transform @@ -8669,16 +9389,6 @@ entities: - type: Transform pos: 9.5,12.5 parent: 2 - - uid: 6066 - components: - - type: Transform - pos: 59.5,35.5 - parent: 2 - - uid: 9927 - components: - - type: Transform - pos: 59.5,37.5 - parent: 2 - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 559 @@ -8907,32 +9617,6 @@ entities: - type: Transform pos: -21.5,-1.5 parent: 2 -- proto: AirlockGlassShuttle - entities: - - uid: 7965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 2 - - uid: 8030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 2 -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 203 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 2 - - uid: 205 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 222 @@ -8942,10 +9626,17 @@ entities: parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 2375 + - uid: 2338 components: - type: Transform - pos: 42.5,23.5 + rot: -1.5707963267948966 rad + pos: 48.5,37.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,41.5 parent: 2 - proto: AirlockHydroGlassLocked entities: @@ -8975,11 +9666,6 @@ entities: parent: 2 - proto: AirlockMaint entities: - - uid: 178 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 2 - uid: 295 components: - type: Transform @@ -8995,11 +9681,6 @@ entities: - type: Transform pos: 22.5,-1.5 parent: 2 - - uid: 6639 - components: - - type: Transform - pos: 66.5,30.5 - parent: 2 - uid: 11785 components: - type: Transform @@ -9045,6 +9726,14 @@ entities: - type: Transform pos: 50.5,-9.5 parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 - proto: AirlockMaintEngiLocked entities: - uid: 810 @@ -9063,11 +9752,6 @@ entities: parent: 2 - proto: AirlockMaintHOPLocked entities: - - uid: 221 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - uid: 577 components: - type: MetaData @@ -9108,6 +9792,12 @@ entities: - type: Transform pos: 2.5,-15.5 parent: 2 + - uid: 653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,-1.5 + parent: 2 - uid: 1110 components: - type: Transform @@ -9123,11 +9813,6 @@ entities: - type: Transform pos: 26.5,11.5 parent: 2 - - uid: 1705 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - uid: 1745 components: - type: Transform @@ -9143,11 +9828,31 @@ entities: - type: Transform pos: 55.5,-16.5 parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 - uid: 2168 components: - type: Transform pos: 19.5,18.5 parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 66.5,30.5 + parent: 2 - uid: 2540 components: - type: Transform @@ -9178,51 +9883,11 @@ entities: - type: Transform pos: 68.5,-16.5 parent: 2 - - uid: 3386 - components: - - type: Transform - pos: 68.5,39.5 - parent: 2 - - uid: 3412 - components: - - type: Transform - pos: 68.5,28.5 - parent: 2 - - uid: 3413 - components: - - type: Transform - pos: 68.5,32.5 - parent: 2 - - uid: 4729 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - - uid: 5444 - components: - - type: Transform - pos: 68.5,36.5 - parent: 2 - - uid: 5469 - components: - - type: Transform - pos: 67.5,45.5 - parent: 2 - uid: 5519 components: - type: Transform pos: 88.5,-10.5 parent: 2 - - uid: 5520 - components: - - type: Transform - pos: 87.5,-1.5 - parent: 2 - - uid: 5650 - components: - - type: Transform - pos: 45.5,46.5 - parent: 2 - uid: 5716 components: - type: Transform @@ -9258,6 +9923,18 @@ entities: - type: Transform pos: 13.5,15.5 parent: 2 + - uid: 7822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,46.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,39.5 + parent: 2 - uid: 9609 components: - type: Transform @@ -9268,6 +9945,12 @@ entities: - type: Transform pos: 1.5,-18.5 parent: 2 + - uid: 13587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,34.5 + parent: 2 - uid: 13769 components: - type: Transform @@ -9278,6 +9961,11 @@ entities: - type: Transform pos: -21.5,-22.5 parent: 2 + - uid: 15629 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 - proto: AirlockMaintMedLocked entities: - uid: 5120 @@ -9317,11 +10005,6 @@ entities: - type: Transform pos: 64.5,17.5 parent: 2 - - uid: 5398 - components: - - type: Transform - pos: 53.5,7.5 - parent: 2 - proto: AirlockMaintRnDMedLocked entities: - uid: 1470 @@ -9329,6 +10012,16 @@ entities: - type: Transform pos: 57.5,7.5 parent: 2 + - uid: 8189 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + pos: 69.5,12.5 + parent: 2 - uid: 15364 components: - type: Transform @@ -9336,21 +10029,22 @@ entities: parent: 2 - proto: AirlockMaintSecLocked entities: - - uid: 365 + - uid: 2460 components: - type: Transform - pos: 39.5,37.5 - parent: 2 - - uid: 3206 - components: - - type: Transform - pos: 33.5,32.5 + pos: 56.5,30.5 parent: 2 - uid: 7737 components: - type: Transform pos: 0.5,-4.5 parent: 2 + - uid: 14626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,29.5 + parent: 2 - proto: AirlockMaintTheatreLocked entities: - uid: 1160 @@ -9466,10 +10160,33 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: - - uid: 5244 + - uid: 1041 components: - type: Transform - pos: 54.5,12.5 + pos: 58.5,24.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,15.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 11477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,23.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,10.5 parent: 2 - proto: AirlockScienceLocked entities: @@ -9478,75 +10195,51 @@ entities: - type: Transform pos: 43.5,10.5 parent: 2 - - uid: 5249 + - uid: 9258 components: - type: Transform - pos: 65.5,15.5 - parent: 2 - - uid: 10448 - components: - - type: Transform - pos: 52.5,14.5 + pos: 68.5,27.5 parent: 2 - uid: 10449 components: - type: Transform pos: 48.5,14.5 parent: 2 + - uid: 12168 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 613 + - uid: 2284 components: - type: Transform - pos: 52.5,34.5 - parent: 2 - - uid: 2402 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - - uid: 4132 - components: - - type: Transform - pos: 52.5,35.5 + rot: 3.141592653589793 rad + pos: 38.5,29.5 parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 1660 + - uid: 2337 components: - type: Transform - pos: 47.5,34.5 - parent: 2 - - uid: 1831 - components: - - type: Transform - pos: 44.5,30.5 - parent: 2 - - type: Door - secondsUntilStateChange: -4092.861 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - uid: 3259 - components: - - type: Transform - pos: 47.5,35.5 + rot: -1.5707963267948966 rad + pos: 33.5,26.5 parent: 2 - uid: 7736 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 8430 + - uid: 8550 components: - type: Transform pos: 40.5,32.5 parent: 2 - - uid: 12450 + - uid: 8699 components: - type: Transform - pos: 44.5,31.5 + pos: 55.5,32.5 parent: 2 - proto: AirlockServiceLocked entities: @@ -9590,11 +10283,6 @@ entities: deviceLists: - 7013 - 14754 - - uid: 185 - components: - - type: Transform - pos: 59.5,18.5 - parent: 2 - uid: 202 components: - type: Transform @@ -9612,14 +10300,14 @@ entities: deviceLists: - 14737 - 5 - - uid: 1812 + - uid: 1622 components: - type: Transform - pos: 39.5,35.5 + pos: 67.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 10988 + - 10409 - uid: 2125 components: - type: Transform @@ -9628,27 +10316,27 @@ entities: - type: DeviceNetwork deviceLists: - 14067 - - uid: 2265 + - uid: 2145 components: - type: Transform - pos: 30.5,29.5 + pos: 56.5,36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 5859 - - uid: 2330 - components: - - type: Transform - pos: 44.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8571 + - 14171 - uid: 4554 components: - type: Transform pos: 26.5,-27.5 parent: 2 + - uid: 5820 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1520 - uid: 6636 components: - type: Transform @@ -9669,6 +10357,14 @@ entities: - type: Transform pos: 44.5,-6.5 parent: 2 + - uid: 7269 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14653 - uid: 8008 components: - type: Transform @@ -9679,6 +10375,16 @@ entities: - type: Transform pos: 21.5,0.5 parent: 2 + - uid: 8555 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 - uid: 8659 components: - type: Transform @@ -9692,24 +10398,46 @@ entities: - type: Transform pos: 26.5,-5.5 parent: 2 - - uid: 9456 + - uid: 8980 components: - type: Transform - pos: 40.5,30.5 + pos: 63.5,29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 10988 + - 11289 + - uid: 9409 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 - uid: 9589 components: - type: Transform pos: 26.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - 15172 - uid: 10216 components: - type: Transform pos: 22.5,-12.5 parent: 2 + - uid: 10662 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5101 + - 8570 + - 10469 + - 2296 - uid: 10950 components: - type: Transform @@ -9720,6 +10448,15 @@ entities: - type: Transform pos: 47.5,-0.5 parent: 2 + - uid: 11683 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - 15172 - uid: 11746 components: - type: Transform @@ -9778,6 +10515,14 @@ entities: - type: Transform pos: 43.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10576 + - 2296 + - 5101 + - 10469 + - 8570 - uid: 12490 components: - type: Transform @@ -9803,32 +10548,29 @@ entities: - type: Transform pos: 26.5,19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 + - 10524 + - 12517 - uid: 12518 components: - type: Transform pos: 24.5,25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2045 + - 10524 + - 7720 + - 15466 + - 11165 - uid: 12519 components: - type: Transform pos: 18.5,23.5 parent: 2 - - uid: 12529 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5859 - - uid: 12531 - components: - - type: Transform - pos: 41.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15476 - uid: 12538 components: - type: Transform @@ -9847,38 +10589,25 @@ entities: - uid: 12544 components: - type: Transform - pos: 37.5,43.5 - parent: 2 - - uid: 12550 - components: - - type: Transform - pos: 52.5,18.5 - parent: 2 - - uid: 12553 - components: - - type: Transform - pos: 49.5,9.5 - parent: 2 - - uid: 12554 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 12559 - components: - - type: Transform - pos: 58.5,24.5 + rot: -1.5707963267948966 rad + pos: 43.5,42.5 parent: 2 - uid: 12563 components: - type: Transform pos: 61.5,10.5 parent: 2 - - uid: 12564 + - type: DeviceNetwork + deviceLists: + - 5242 + - uid: 12770 components: - type: Transform - pos: 67.5,13.5 + pos: 49.5,41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15520 - uid: 12833 components: - type: Transform @@ -9887,22 +10616,14 @@ entities: - type: DeviceNetwork deviceLists: - 7962 - - uid: 13511 + - uid: 13644 components: - type: Transform - pos: 48.5,35.5 + pos: 41.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13512 - - uid: 13515 - components: - - type: Transform - pos: 56.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 + - 10135 - uid: 14061 components: - type: Transform @@ -9957,6 +10678,15 @@ entities: deviceLists: - 7662 - 14067 + - uid: 14330 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 2045 - uid: 14547 components: - type: Transform @@ -9964,12 +10694,15 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - uid: 14548 components: - type: Transform pos: 90.5,30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2602 - uid: 14549 components: - type: Transform @@ -9977,7 +10710,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - uid: 14614 components: - type: Transform @@ -9994,6 +10727,19 @@ entities: - type: DeviceNetwork deviceLists: - 14670 + - uid: 14871 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14521 + - uid: 14940 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 - uid: 15298 components: - type: Transform @@ -10007,14 +10753,112 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 2 - - uid: 15477 + - uid: 15368 components: - type: Transform - pos: 41.5,27.5 + pos: 38.5,31.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12530 + - 2248 + - 5398 + - 15466 + - 7720 + - 10524 + - 2045 + - 8571 + - 15172 + - uid: 15375 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2248 + - 5398 + - 8571 + - 15172 + - uid: 15465 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14521 + - uid: 15476 + components: + - type: Transform + pos: 61.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15585 + - 10419 + - 10078 + - 10576 + - uid: 15492 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10576 + - 10078 + - 10469 + - 8570 + - 15585 + - 10419 + - 12487 + - 12486 + - uid: 15552 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 2045 + - uid: 15554 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 15466 + - 7720 + - 2045 + - 8571 + - 15172 + - uid: 15882 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15578 + - 15897 + - uid: 15898 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8570 + - 10469 + - 15897 + - 12487 + - 12486 + - 10576 + - 10078 + - 10409 - proto: AltarSpawner entities: - uid: 2526 @@ -10034,32 +10878,35 @@ entities: - uid: 15328 components: - type: Transform - pos: 28.354391,-41.23593 - parent: 2 + parent: 5235 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 15329 components: - type: Transform - pos: 28.416891,-41.64218 - parent: 2 + parent: 5235 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 15330 components: - type: Transform - pos: 28.698141,-41.39218 - parent: 2 + parent: 5235 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AnalysisComputerCircuitboard entities: - uid: 13492 components: - type: Transform - pos: 63.442497,9.333562 - parent: 2 + parent: 14590 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AnomalyScanner entities: - - uid: 1838 - components: - - type: Transform - pos: 71.66338,14.074104 - parent: 2 - uid: 5381 components: - type: Transform @@ -10072,13 +10919,20 @@ entities: parent: 2 - proto: APCBasic entities: - - uid: 257 + - uid: 43 components: - type: MetaData - name: Head of Security Room APC + name: APC (Main Hall West) - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,21.5 + pos: 9.5,11.5 + parent: 2 + - uid: 64 + components: + - type: MetaData + name: APC (Sci - RD Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,10.5 parent: 2 - uid: 340 components: @@ -10104,14 +10958,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-6.5 parent: 2 - - uid: 466 - components: - - type: MetaData - name: Bathroom APC - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,11.5 - parent: 2 - uid: 598 components: - type: MetaData @@ -10144,14 +10990,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-35.5 parent: 2 - - uid: 1111 - components: - - type: MetaData - name: Laundry APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,5.5 - parent: 2 - uid: 1177 components: - type: MetaData @@ -10186,14 +11024,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-15.5 parent: 2 - - uid: 1748 - components: - - type: MetaData - name: Technical Storage APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-15.5 - parent: 2 - uid: 2378 components: - type: MetaData @@ -10202,20 +11032,26 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,3.5 parent: 2 - - uid: 2451 + - uid: 2464 components: - type: MetaData - name: Bridge Hallway APC + name: APC (Armory) - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,33.5 + pos: 44.5,37.5 parent: 2 - - uid: 2481 + - uid: 2603 components: - type: MetaData - name: Courtroom APC + name: APC (Maints NW) - type: Transform - pos: 20.5,34.5 + pos: 9.5,17.5 + parent: 2 + - uid: 2612 + components: + - type: MetaData + name: APC (Sec - HOS) + - type: Transform + pos: 47.5,43.5 parent: 2 - uid: 2721 components: @@ -10225,28 +11061,6 @@ entities: rot: -1.5707963267948966 rad pos: 68.5,-15.5 parent: 2 - - uid: 2902 - components: - - type: MetaData - name: Solar North East APC - - type: Transform - pos: 69.5,47.5 - parent: 2 - - uid: 3221 - components: - - type: MetaData - name: Perma APC - - type: Transform - pos: 51.5,36.5 - parent: 2 - - uid: 3250 - components: - - type: MetaData - name: Detective APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,20.5 - parent: 2 - uid: 3333 components: - type: MetaData @@ -10263,22 +11077,35 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-8.5 parent: 2 - - uid: 4116 + - uid: 3687 components: - type: MetaData - name: Maint North West APC + name: APC (Sci - R&D) - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,16.5 + pos: 52.5,22.5 parent: 2 - uid: 4186 components: - type: MetaData - name: Theatre APC + name: APC (Central - Theatre) - type: Transform rot: -1.5707963267948966 rad pos: 28.5,7.5 parent: 2 + - uid: 4351 + components: + - type: MetaData + name: APC (Solars NE) + - type: Transform + pos: 70.5,47.5 + parent: 2 + - uid: 4367 + components: + - type: MetaData + name: APC (Maints NE) + - type: Transform + pos: 61.5,37.5 + parent: 2 - uid: 4647 components: - type: MetaData @@ -10378,37 +11205,6 @@ entities: - type: Transform pos: 74.5,9.5 parent: 2 - - uid: 5201 - components: - - type: MetaData - name: RD Office APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,11.5 - parent: 2 - - uid: 5236 - components: - - type: MetaData - name: Robotics APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,11.5 - parent: 2 - - uid: 5269 - components: - - type: MetaData - name: RND APC - - type: Transform - pos: 53.5,21.5 - parent: 2 - - uid: 5270 - components: - - type: MetaData - name: Sci Server Room APC - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,22.5 - parent: 2 - uid: 5271 components: - type: MetaData @@ -10426,6 +11222,13 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 + - uid: 5333 + components: + - type: MetaData + name: APC (Sci - Server) + - type: Transform + pos: 51.5,25.5 + parent: 2 - uid: 5427 components: - type: MetaData @@ -10434,14 +11237,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-4.5 parent: 2 - - uid: 5648 - components: - - type: MetaData - name: Maint Dorms APC - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,41.5 - parent: 2 - uid: 5689 components: - type: MetaData @@ -10480,14 +11275,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-19.5 parent: 2 - - uid: 6095 - components: - - type: MetaData - name: Maint Central APC - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 2 - uid: 6099 components: - type: MetaData @@ -10496,13 +11283,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,12.5 parent: 2 - - uid: 6172 - components: - - type: MetaData - name: Maint North East APC - - type: Transform - pos: 66.5,45.5 - parent: 2 - uid: 6342 components: - type: MetaData @@ -10535,14 +11315,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-11.5 parent: 2 - - uid: 6697 - components: - - type: MetaData - name: Library APC - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,2.5 - parent: 2 - uid: 6717 components: - type: MetaData @@ -10551,14 +11323,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 2 - - uid: 6954 - components: - - type: MetaData - name: Main Hall West APC - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,8.5 - parent: 2 - uid: 6960 components: - type: MetaData @@ -10566,13 +11330,41 @@ entities: - type: Transform pos: 22.5,-22.5 parent: 2 - - uid: 8061 + - uid: 6965 components: - type: MetaData - name: Camera Server APC + name: APC (Dorms) - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,36.5 + rot: 3.141592653589793 rad + pos: 21.5,11.5 + parent: 2 + - uid: 6968 + components: + - type: MetaData + name: APC (Maints Central) + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 6990 + components: + - type: MetaData + name: APC (Sci - Robotics) + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,7.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,11.5 + parent: 2 + - uid: 8062 + components: + - type: MetaData + name: Inner AI Core APC + - type: Transform + pos: 94.5,34.5 parent: 2 - uid: 8228 components: @@ -10617,13 +11409,13 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-7.5 parent: 2 - - uid: 10545 + - uid: 10319 components: - type: MetaData - name: Science APC + name: APC (Maints North) - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,18.5 + rot: 3.141592653589793 rad + pos: 42.5,44.5 parent: 2 - uid: 10924 components: @@ -10633,29 +11425,21 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,6.5 parent: 2 - - uid: 10970 - components: - - type: MetaData - name: Interrogation APC - - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 12151 - components: - - type: MetaData - name: XenoArch APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,23.5 - parent: 2 - uid: 12522 components: - type: MetaData - name: Grav Gen APC + name: APC (Bridge - Gravity Generator) - type: Transform rot: 1.5707963267948966 rad pos: 12.5,36.5 parent: 2 + - uid: 12751 + components: + - type: MetaData + name: APC (Sec - Warden) + - type: Transform + pos: 42.5,26.5 + parent: 2 - uid: 12934 components: - type: MetaData @@ -10671,12 +11455,36 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-3.5 parent: 2 - - uid: 13497 + - uid: 13117 components: - type: MetaData - name: North Maint APC + name: APC (Sec - East) - type: Transform - pos: 47.5,29.5 + rot: 3.141592653589793 rad + pos: 52.5,29.5 + parent: 2 + - uid: 13173 + components: + - type: MetaData + name: Telecomms APC + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-20.5 + parent: 2 + - uid: 13549 + components: + - type: MetaData + name: APC (Sec - Hallway West) + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 14084 + components: + - type: MetaData + name: APC (North Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,36.5 parent: 2 - uid: 14150 components: @@ -10692,13 +11500,13 @@ entities: - type: Transform pos: 80.5,32.5 parent: 2 - - uid: 14434 + - uid: 14569 components: - type: MetaData - name: AI Core Inner APC + name: APC (Sec - Detective) - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,28.5 + rot: 1.5707963267948966 rad + pos: 52.5,36.5 parent: 2 - uid: 14691 components: @@ -10708,6 +11516,30 @@ entities: rot: 3.141592653589793 rad pos: 6.5,17.5 parent: 2 + - uid: 15562 + components: + - type: MetaData + name: APC (Sec - Brig) + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,22.5 + parent: 2 + - uid: 15579 + components: + - type: MetaData + name: APC (Sci - XenoArch) + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,22.5 + parent: 2 + - uid: 15806 + components: + - type: MetaData + name: APC (Tech Vault Secure) + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-14.5 + parent: 2 - proto: APCElectronics entities: - uid: 6656 @@ -10717,14 +11549,6 @@ entities: parent: 2 - proto: APCHighCapacity entities: - - uid: 43 - components: - - type: MetaData - name: Dorms APC - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 2 - uid: 775 components: - type: MetaData @@ -10746,23 +11570,16 @@ entities: - type: Transform pos: 29.5,-37.5 parent: 2 - - uid: 6914 + - uid: 15878 components: - type: MetaData - name: Chapel APC + name: APC (Central - Chapel) - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,7.5 + rot: -1.5707963267948966 rad + pos: 33.5,8.5 parent: 2 - proto: APCHyperCapacity entities: - - uid: 301 - components: - - type: MetaData - name: Telecomms APC - - type: Transform - pos: 19.5,-13.5 - parent: 2 - uid: 8254 components: - type: MetaData @@ -10771,13 +11588,13 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,33.5 parent: 2 - - uid: 13690 + - uid: 15818 components: - type: MetaData - name: Cargo Bay APC + name: APC (Supply - Cargo Bay) - type: Transform rot: 3.141592653589793 rad - pos: 13.5,19.5 + pos: 10.5,20.5 parent: 2 - proto: APCSuperCapacity entities: @@ -10788,13 +11605,6 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 2 - - uid: 14639 - components: - - type: MetaData - name: Security APC - - type: Transform - pos: 35.5,29.5 - parent: 2 - proto: ArrivalsShuttleTimer entities: - uid: 13576 @@ -10812,14 +11622,16 @@ entities: - uid: 15428 components: - type: Transform - pos: 63.531895,9.595779 - parent: 2 + parent: 14590 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ArtistCircuitBoard entities: - uid: 14277 components: - type: Transform - pos: 84.42593,28.765135 + pos: 84.53071,32.620792 parent: 2 - proto: Ashtray entities: @@ -10838,7 +11650,7 @@ entities: - uid: 14276 components: - type: Transform - pos: 85.47454,28.607038 + pos: 86.51151,28.70847 parent: 2 - proto: AtmosDeviceFanDirectional entities: @@ -10854,18 +11666,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 2 - - uid: 258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,26.5 - parent: 2 - - uid: 320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 2 - uid: 332 components: - type: Transform @@ -10884,24 +11684,12 @@ entities: rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 - - uid: 2450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-22.5 - parent: 2 - uid: 2609 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-16.5 parent: 2 - - uid: 2628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-1.5 - parent: 2 - uid: 2666 components: - type: Transform @@ -10914,65 +11702,23 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-9.5 parent: 2 - - uid: 4920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,0.5 - parent: 2 - uid: 5262 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-10.5 parent: 2 - - uid: 5754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-20.5 - parent: 2 - uid: 6591 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-10.5 parent: 2 - - uid: 6876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,4.5 - parent: 2 - - uid: 10982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,27.5 - parent: 2 - - uid: 14979 + - uid: 14551 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,51.5 - parent: 2 - - uid: 14980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,51.5 - parent: 2 - - uid: 14989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 - parent: 2 - - uid: 15466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,45.5 + pos: 66.5,48.5 parent: 2 - proto: AtmosFixBlockerMarker entities: @@ -11006,6 +11752,16 @@ entities: - type: Transform pos: 50.5,-33.5 parent: 2 + - uid: 2037 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 - uid: 4157 components: - type: Transform @@ -11021,6 +11777,41 @@ entities: - type: Transform pos: 50.5,-27.5 parent: 2 + - uid: 8067 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 14660 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 + - uid: 14738 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - uid: 14743 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - uid: 14765 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 - uid: 15188 components: - type: Transform @@ -11166,6 +11957,31 @@ entities: - type: Transform pos: 49.5,-48.5 parent: 2 + - uid: 15792 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 15794 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 15795 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + pos: 7.5,38.5 + parent: 2 - proto: AtmosFixFreezerMarker entities: - uid: 6535 @@ -11281,16 +12097,22 @@ entities: parent: 2 - proto: Autolathe entities: - - uid: 474 - components: - - type: Transform - pos: 51.5,18.5 - parent: 2 - uid: 942 components: - type: Transform pos: 15.5,-23.5 parent: 2 + - uid: 5383 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - uid: 6910 components: - type: Transform @@ -11305,6 +12127,11 @@ entities: parent: 2 - proto: Barricade entities: + - uid: 1889 + components: + - type: Transform + pos: 43.5,45.5 + parent: 2 - uid: 2913 components: - type: Transform @@ -11336,6 +12163,55 @@ entities: rot: 3.141592653589793 rad pos: 82.5,-14.5 parent: 2 + - uid: 14796 + components: + - type: Transform + pos: 64.5,43.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 9452 + components: + - type: Transform + pos: 68.5,27.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: 56.5,45.5 + parent: 2 + - uid: 13446 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 10681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,45.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,50.5 + parent: 2 +- proto: BarSign + entities: + - uid: 9244 + components: + - type: MetaData + name: Kitchen sign + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,43.5 + parent: 2 + - type: AccessReader + access: + - - Maintenance - proto: BarSignMaidCafe entities: - uid: 6528 @@ -11350,6 +12226,9 @@ entities: - type: Transform pos: 66.5,-18.5 parent: 2 + - type: AccessReader + access: + - - Maintenance - proto: BaseGasCondenser entities: - uid: 585 @@ -11366,20 +12245,25 @@ entities: parent: 2 - proto: Beaker entities: + - uid: 2573 + components: + - type: Transform + pos: 52.654243,40.651337 + parent: 2 - uid: 4247 components: - type: Transform - pos: 35.89168,-12.492103 + pos: 36.31066,-10.451814 parent: 2 - uid: 5202 components: - type: Transform pos: 63.66416,-9.582929 parent: 2 - - uid: 5324 + - uid: 10887 components: - type: Transform - pos: 54.76479,17.614588 + pos: 63.28595,25.773993 parent: 2 - uid: 11423 components: @@ -11393,66 +12277,56 @@ entities: parent: 2 - proto: Bed entities: - - uid: 388 + - uid: 1014 components: - type: Transform - pos: 36.5,42.5 + pos: 43.5,17.5 parent: 2 - uid: 2014 components: - type: Transform pos: 6.5,15.5 parent: 2 - - uid: 2250 + - uid: 2128 components: - type: Transform - pos: 29.5,18.5 + pos: 70.5,40.5 parent: 2 - - uid: 2251 + - uid: 2456 components: - type: Transform - pos: 29.5,20.5 - parent: 2 - - uid: 4365 - components: - - type: Transform - pos: 59.5,40.5 - parent: 2 - - uid: 5445 - components: - - type: Transform - pos: 71.5,36.5 - parent: 2 - - uid: 5446 - components: - - type: Transform - pos: 71.5,39.5 + pos: 59.5,39.5 parent: 2 - uid: 5709 components: - type: Transform pos: 77.5,-12.5 parent: 2 - - uid: 6873 - components: - - type: Transform - pos: 59.5,32.5 - parent: 2 - uid: 8434 components: - type: Transform pos: 59.5,-4.5 parent: 2 - - uid: 9623 + - uid: 8669 components: - type: Transform - pos: 47.5,4.5 + pos: 43.5,19.5 + parent: 2 + - uid: 9420 + components: + - type: Transform + pos: 71.5,27.5 parent: 2 - uid: 10669 components: - type: Transform pos: 11.5,-42.5 parent: 2 + - uid: 12048 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 - uid: 12245 components: - type: Transform @@ -11513,6 +12387,16 @@ entities: - type: Transform pos: 107.5,-23.5 parent: 2 + - uid: 13179 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 14826 + components: + - type: Transform + pos: 43.5,43.5 + parent: 2 - uid: 15388 components: - type: Transform @@ -11520,10 +12404,10 @@ entities: parent: 2 - proto: BedsheetCaptain entities: - - uid: 379 + - uid: 14854 components: - type: Transform - pos: 36.5,42.5 + pos: 36.5,41.5 parent: 2 - proto: BedsheetCE entities: @@ -11577,6 +12461,14 @@ entities: parent: 9438 - type: Physics canCollide: False +- proto: BedsheetHOS + entities: + - uid: 2348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,43.5 + parent: 2 - proto: BedsheetMedical entities: - uid: 5197 @@ -11584,10 +12476,11 @@ entities: - type: Transform pos: 62.5,-10.5 parent: 2 - - uid: 9624 + - uid: 10654 components: - type: Transform - pos: 47.5,4.5 + rot: -1.5707963267948966 rad + pos: 44.5,27.5 parent: 2 - uid: 11299 components: @@ -11618,29 +12511,15 @@ entities: parent: 2 - proto: BedsheetOrange entities: - - uid: 5253 + - uid: 2225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,32.5 + pos: 43.5,19.5 parent: 2 - - uid: 6333 + - uid: 3454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,40.5 - parent: 2 - - uid: 14656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,18.5 - parent: 2 - - uid: 14657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,20.5 + pos: 43.5,17.5 parent: 2 - proto: BedsheetQM entities: @@ -11671,20 +12550,22 @@ entities: - uid: 4300 components: - type: Transform - parent: 565 - - type: Physics - canCollide: False + pos: 62.5,8.5 + parent: 2 +- proto: BedsheetRed + entities: + - uid: 2462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,39.5 + parent: 2 - proto: BedsheetSpawner entities: - - uid: 5447 + - uid: 8482 components: - type: Transform - pos: 71.5,36.5 - parent: 2 - - uid: 5448 - components: - - type: Transform - pos: 71.5,39.5 + pos: 70.5,40.5 parent: 2 - uid: 12271 components: @@ -11740,11 +12621,17 @@ entities: parent: 2 - proto: Biogenerator entities: - - uid: 13612 + - uid: 6265 components: - type: Transform - pos: 57.5,41.5 + pos: 35.5,21.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - uid: 13653 components: - type: Transform @@ -11757,6 +12644,11 @@ entities: - type: Transform pos: 35.5,-29.5 parent: 2 + - uid: 365 + components: + - type: Transform + pos: 62.5,30.5 + parent: 2 - uid: 779 components: - type: Transform @@ -11777,36 +12669,43 @@ entities: - type: Transform pos: 12.5,-26.5 parent: 2 + - uid: 2000 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3357 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 - uid: 4257 components: - type: Transform pos: 35.5,-33.5 parent: 2 - - uid: 5351 - components: - - type: Transform - pos: 63.5,29.5 - parent: 2 - - uid: 5361 - components: - - type: Transform - pos: 64.5,29.5 - parent: 2 - uid: 5875 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 8067 - components: - - type: Transform - pos: 4.5,23.5 - parent: 2 - - uid: 8103 - components: - - type: Transform - pos: 4.5,27.5 - parent: 2 - uid: 8248 components: - type: Transform @@ -11815,6 +12714,16 @@ entities: - type: AccessReader access: - - Research + - uid: 8520 + components: + - type: Transform + pos: 63.5,30.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + pos: 64.5,30.5 + parent: 2 - uid: 11022 components: - type: Transform @@ -11843,8 +12752,19 @@ entities: - type: Transform pos: 47.5,-11.5 parent: 2 + - uid: 15789 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 - proto: BlockGameArcade entities: + - uid: 5457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,20.5 + parent: 2 - uid: 6617 components: - type: Transform @@ -11853,12 +12773,6 @@ entities: parent: 2 - type: SpamEmitSound enabled: False - - uid: 14655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,39.5 - parent: 2 - proto: Bonfire entities: - uid: 12709 @@ -11871,7 +12785,7 @@ entities: - uid: 297 components: - type: Transform - pos: 35.484184,-12.498516 + pos: 35.37316,-10.326814 parent: 2 - proto: BookshelfFilled entities: @@ -11905,21 +12819,24 @@ entities: - type: Transform pos: 10.5,7.5 parent: 2 - - uid: 3193 - components: - - type: Transform - pos: 57.5,34.5 - parent: 2 - uid: 5100 components: - type: Transform pos: 29.5,6.5 parent: 2 - - uid: 13607 + - uid: 10834 components: - type: Transform - pos: 57.5,33.5 + pos: 41.5,22.5 parent: 2 + - uid: 11946 + components: + - type: Transform + anchored: False + pos: 58.5,37.5 + parent: 2 + - type: Physics + bodyType: Dynamic - proto: BoozeDispenser entities: - uid: 2921 @@ -11960,21 +12877,20 @@ entities: parent: 2 - proto: BorgCharger entities: - - uid: 12911 + - uid: 8505 components: - type: Transform - pos: 44.5,9.5 + pos: 79.5,31.5 parent: 2 - - uid: 13431 + - uid: 14789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,9.5 + pos: 51.5,11.5 parent: 2 - - uid: 14630 + - uid: 15873 components: - type: Transform - pos: 82.5,31.5 + pos: 49.5,11.5 parent: 2 - proto: BoxBeaker entities: @@ -11983,13 +12899,6 @@ entities: - type: Transform pos: 82.3458,-6.40663 parent: 2 -- proto: BoxBeanbag - entities: - - uid: 8432 - components: - - type: Transform - pos: 39.509068,21.682957 - parent: 2 - proto: BoxBodyBag entities: - uid: 11987 @@ -11997,29 +12906,25 @@ entities: - type: Transform pos: 75.5329,-0.39068663 parent: 2 + - uid: 14263 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 44.667503,29.610659 + parent: 2 - proto: BoxFlare entities: - uid: 7714 components: - type: Transform - pos: 4.504114,40.66977 - parent: 2 - - uid: 8690 - components: - - type: Transform - pos: 32.455227,27.041605 + pos: 7.5811415,29.417955 parent: 2 - proto: BoxFlashbang entities: - - uid: 6340 + - uid: 10541 components: - type: Transform - pos: 36.349575,28.40067 - parent: 2 - - uid: 8689 - components: - - type: Transform - pos: 32.47085,27.36973 + pos: 39.424168,28.449154 parent: 2 - proto: BoxFolderBlack entities: @@ -12040,6 +12945,20 @@ entities: - type: Transform pos: -1.3771312,-12.370462 parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 2173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.41103,8.401679 + parent: 2 + - uid: 15686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.41794,37.811577 + parent: 2 - proto: BoxFolderGreen entities: - uid: 14568 @@ -12056,16 +12975,6 @@ entities: parent: 2 - proto: BoxFolderRed entities: - - uid: 3138 - components: - - type: Transform - pos: 39.5,17.5 - parent: 2 - - uid: 6900 - components: - - type: Transform - pos: 43.442894,20.146849 - parent: 2 - uid: 8249 components: - type: Transform @@ -12076,6 +12985,12 @@ entities: - type: Transform pos: -1.5646312,-12.245462 parent: 2 + - uid: 15178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.057922,37.57559 + parent: 2 - proto: BoxFolderWhite entities: - uid: 11421 @@ -12095,10 +13010,11 @@ entities: - type: Transform pos: 12.5,-35.5 parent: 2 - - uid: 6888 + - uid: 9014 components: - type: Transform - pos: 43.630394,20.021849 + rot: 3.141592653589793 rad + pos: 54.792297,37.653713 parent: 2 - uid: 14766 components: @@ -12107,17 +13023,10 @@ entities: parent: 2 - proto: BoxHandcuff entities: - - uid: 12242 + - uid: 2313 components: - type: Transform - pos: 36.634296,28.185242 - parent: 2 -- proto: BoxHeadset - entities: - - uid: 7269 - components: - - type: Transform - pos: 20.523739,-19.345793 + pos: 40.412716,28.626993 parent: 2 - proto: BoxLatexGloves entities: @@ -12143,11 +13052,6 @@ entities: - type: Transform pos: 72.5,-9.5 parent: 2 - - uid: 10834 - components: - - type: Transform - pos: 65.52434,11.667425 - parent: 2 - proto: BoxMouthSwab entities: - uid: 2091 @@ -12162,13 +13066,6 @@ entities: - type: Transform pos: 19.585323,-12.603194 parent: 2 -- proto: BoxSechud - entities: - - uid: 7681 - components: - - type: Transform - pos: 36.641243,28.595247 - parent: 2 - proto: BoxSterileMask entities: - uid: 5246 @@ -12176,6 +13073,13 @@ entities: - type: Transform pos: 78.44771,-7.014811 parent: 2 +- proto: BoxStinger + entities: + - uid: 10773 + components: + - type: Transform + pos: 39.40727,28.773674 + parent: 2 - proto: BoxSyringe entities: - uid: 7810 @@ -12183,12 +13087,19 @@ entities: - type: Transform pos: 82.5958,-6.203505 parent: 2 -- proto: BoxZiptie +- proto: BoxTearGas entities: - - uid: 2131 + - uid: 6066 components: - type: Transform - pos: 36.363464,27.983711 + pos: 39.662716,28.625252 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 2326 + components: + - type: Transform + pos: 40.67834,28.767618 parent: 2 - proto: BrbSign entities: @@ -12221,36 +13132,6 @@ entities: - type: Transform pos: 22.465576,48.64228 parent: 2 -- proto: BrigTimer - entities: - - uid: 7716 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2258: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - - uid: 7718 - components: - - type: Transform - pos: 31.5,19.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2259: - - - Start - - Close - - - Timer - - AutoClose - - - Timer - - Open - proto: Brutepack entities: - uid: 5712 @@ -12275,6 +13156,17 @@ entities: - type: Transform pos: 46.49411,-7.5341444 parent: 2 + - uid: 8393 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 39.761497,22.483047 + parent: 2 + - uid: 14844 + components: + - type: Transform + pos: 39.759853,22.763851 + parent: 2 - proto: ButtonFrameCaution entities: - uid: 1233 @@ -12282,11 +13174,17 @@ entities: - type: Transform pos: 49.5,-49.5 parent: 2 - - uid: 2045 + - uid: 2060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,33.5 + pos: 5.5,28.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-37.5 parent: 2 - uid: 4150 components: @@ -12294,40 +13192,39 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-49.5 parent: 2 + - uid: 4636 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,34.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 - uid: 8334 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,11.5 parent: 2 - - uid: 8428 - components: - - type: Transform - pos: 31.77084,21.463516 - parent: 2 - - uid: 8429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.777786,17.53082 - parent: 2 - uid: 8529 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-29.5 parent: 2 - - uid: 10991 + - uid: 12824 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-40.5 - parent: 2 - - uid: 11000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-37.5 + pos: 64.5,25.5 parent: 2 - uid: 12987 components: @@ -12335,16 +13232,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-9.5 parent: 2 - - uid: 13115 - components: - - type: Transform - pos: 6.5,34.5 - parent: 2 - - uid: 13446 - components: - - type: Transform - pos: 61.5,26.5 - parent: 2 - uid: 13474 components: - type: Transform @@ -12363,34 +13250,12 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 - - uid: 13483 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - - uid: 13484 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 2 - - uid: 14914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 2 - uid: 15103 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,44.5 parent: 2 - - uid: 15285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 - parent: 2 - uid: 15397 components: - type: Transform @@ -12405,24 +13270,30 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,-0.5 parent: 2 + - uid: 15805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 2 - proto: ButtonFrameGrey entities: - - uid: 6862 + - uid: 705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,39.5 + parent: 2 + - uid: 2010 components: - type: Transform pos: 10.5,29.5 parent: 2 - - uid: 6912 + - uid: 2480 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,28.5 - parent: 2 - - uid: 7885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,22.5 + pos: 4.5,15.5 parent: 2 - uid: 8986 components: @@ -12430,25 +13301,20 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-43.5 parent: 2 - - uid: 11145 + - uid: 13470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,27.5 + pos: 11.5,-32.5 parent: 2 - - uid: 11208 +- proto: ButtonFrameJanitor + entities: + - uid: 15511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,16.5 + pos: 29.5,32.5 parent: 2 - proto: CableApcExtension entities: - - uid: 42 - components: - - type: Transform - pos: 11.5,2.5 - parent: 2 - uid: 59 components: - type: Transform @@ -12479,6 +13345,16 @@ entities: - type: Transform pos: 55.5,50.5 parent: 2 + - uid: 150 + components: + - type: Transform + pos: 74.5,17.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 - uid: 200 components: - type: Transform @@ -12509,16 +13385,21 @@ entities: - type: Transform pos: 59.5,-3.5 parent: 2 - - uid: 349 + - uid: 319 components: - type: Transform - pos: 35.5,18.5 + pos: 11.5,15.5 parent: 2 - uid: 368 components: - type: Transform pos: 29.5,-54.5 parent: 2 + - uid: 412 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 - uid: 420 components: - type: Transform @@ -12649,15 +13530,15 @@ entities: - type: Transform pos: 22.5,-57.5 parent: 2 - - uid: 1109 + - uid: 1111 components: - type: Transform - pos: 40.5,20.5 + pos: 24.5,10.5 parent: 2 - - uid: 1173 + - uid: 1162 components: - type: Transform - pos: 19.5,-13.5 + pos: 74.5,11.5 parent: 2 - uid: 1182 components: @@ -12684,15 +13565,10 @@ entities: - type: Transform pos: 18.5,22.5 parent: 2 - - uid: 1286 + - uid: 1254 components: - type: Transform - pos: 42.5,32.5 - parent: 2 - - uid: 1287 - components: - - type: Transform - pos: 40.5,32.5 + pos: 40.5,-14.5 parent: 2 - uid: 1319 components: @@ -12704,6 +13580,21 @@ entities: - type: Transform pos: 6.5,16.5 parent: 2 + - uid: 1325 + components: + - type: Transform + pos: 74.5,10.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 - uid: 1699 components: - type: Transform @@ -12729,10 +13620,10 @@ entities: - type: Transform pos: 50.5,-13.5 parent: 2 - - uid: 1815 + - uid: 1749 components: - type: Transform - pos: 41.5,31.5 + pos: 74.5,14.5 parent: 2 - uid: 1940 components: @@ -12799,46 +13690,136 @@ entities: - type: Transform pos: 17.5,24.5 parent: 2 - - uid: 2224 + - uid: 2202 components: - type: Transform - pos: 30.5,29.5 + pos: 42.5,25.5 parent: 2 - - uid: 2225 + - uid: 2216 components: - type: Transform - pos: 47.5,29.5 + pos: 38.5,25.5 parent: 2 - - uid: 2295 + - uid: 2226 components: - type: Transform - pos: 37.5,31.5 + pos: 66.5,47.5 parent: 2 - - uid: 2297 + - uid: 2232 components: - type: Transform - pos: 38.5,31.5 + pos: 47.5,43.5 parent: 2 - - uid: 2298 + - uid: 2236 components: - type: Transform - pos: 33.5,33.5 + pos: 30.5,20.5 parent: 2 - - uid: 2303 + - uid: 2241 components: - type: Transform - pos: 39.5,31.5 + pos: 64.5,44.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: 29.5,20.5 parent: 2 - uid: 2323 components: - type: Transform pos: 70.5,-12.5 parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 - uid: 2325 components: - type: Transform pos: 69.5,-12.5 parent: 2 + - uid: 2332 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: 43.5,42.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 65.5,39.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 64.5,39.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 46.5,41.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 70.5,47.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 54.5,40.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 70.5,44.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 - uid: 2389 components: - type: Transform @@ -12859,10 +13840,30 @@ entities: - type: Transform pos: 52.5,-9.5 parent: 2 - - uid: 2428 + - uid: 2405 components: - type: Transform - pos: 36.5,31.5 + pos: 70.5,40.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 59.5,25.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 94.5,33.5 parent: 2 - uid: 2438 components: @@ -12874,25 +13875,45 @@ entities: - type: Transform pos: 45.5,-26.5 parent: 2 - - uid: 2466 + - uid: 2451 components: - type: Transform - pos: 35.5,31.5 + pos: 47.5,33.5 parent: 2 - - uid: 2470 + - uid: 2457 components: - type: Transform - pos: 42.5,31.5 + pos: 32.5,6.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 71.5,34.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 46.5,25.5 parent: 2 - uid: 2471 components: - type: Transform - pos: 33.5,31.5 + pos: 46.5,24.5 parent: 2 - - uid: 2477 + - uid: 2474 components: - type: Transform - pos: 34.5,31.5 + pos: 46.5,23.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 71.5,33.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 30.5,36.5 parent: 2 - uid: 2607 components: @@ -12904,6 +13925,21 @@ entities: - type: Transform pos: 45.5,-33.5 parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 - uid: 2717 components: - type: Transform @@ -12959,6 +13995,11 @@ entities: - type: Transform pos: 51.5,-19.5 parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 - uid: 2950 components: - type: Transform @@ -12969,6 +14010,66 @@ entities: - type: Transform pos: 5.5,39.5 parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: 62.5,27.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: 71.5,32.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + pos: 61.5,39.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 - uid: 3118 components: - type: Transform @@ -12984,170 +14085,150 @@ entities: - type: Transform pos: -23.5,-16.5 parent: 2 + - uid: 3126 + components: + - type: Transform + pos: 62.5,9.5 + parent: 2 - uid: 3132 components: - type: Transform pos: -23.5,-11.5 parent: 2 - - uid: 3151 + - uid: 3138 components: - type: Transform - pos: 43.5,31.5 + pos: 43.5,28.5 parent: 2 - uid: 3154 components: - type: Transform pos: 9.5,22.5 parent: 2 - - uid: 3156 + - uid: 3159 components: - type: Transform - pos: 35.5,33.5 + pos: 65.5,34.5 parent: 2 - - uid: 3157 + - uid: 3160 components: - type: Transform - pos: 36.5,33.5 + pos: 55.5,24.5 parent: 2 - uid: 3167 components: - type: Transform pos: 12.5,21.5 parent: 2 + - uid: 3170 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 - uid: 3173 components: - type: Transform pos: 8.5,25.5 parent: 2 - - uid: 3177 + - uid: 3188 components: - type: Transform - pos: 40.5,36.5 + pos: 66.5,39.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: 42.5,44.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: 70.5,38.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: 43.5,30.5 parent: 2 - uid: 3202 components: - type: Transform pos: -23.5,-9.5 parent: 2 - - uid: 3205 + - uid: 3207 components: - type: Transform - pos: 38.5,18.5 + pos: 56.5,10.5 parent: 2 - uid: 3209 components: - type: Transform pos: -6.5,-8.5 parent: 2 + - uid: 3211 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 - uid: 3222 components: - type: Transform - pos: 51.5,35.5 - parent: 2 - - uid: 3224 - components: - - type: Transform - pos: 49.5,35.5 - parent: 2 - - uid: 3225 - components: - - type: Transform - pos: 48.5,35.5 - parent: 2 - - uid: 3226 - components: - - type: Transform - pos: 52.5,35.5 - parent: 2 - - uid: 3227 - components: - - type: Transform - pos: 53.5,35.5 - parent: 2 - - uid: 3228 - components: - - type: Transform - pos: 54.5,35.5 - parent: 2 - - uid: 3229 - components: - - type: Transform - pos: 55.5,35.5 - parent: 2 - - uid: 3230 - components: - - type: Transform - pos: 56.5,35.5 + pos: 61.5,34.5 parent: 2 - uid: 3231 components: - type: Transform - pos: 56.5,31.5 - parent: 2 - - uid: 3233 - components: - - type: Transform - pos: 56.5,34.5 - parent: 2 - - uid: 3237 - components: - - type: Transform - pos: 56.5,32.5 + pos: 48.5,27.5 parent: 2 - uid: 3238 components: - type: Transform - pos: 56.5,33.5 + pos: 57.5,24.5 parent: 2 - - uid: 3242 + - uid: 3258 components: - type: Transform - pos: 56.5,39.5 + pos: 35.5,37.5 parent: 2 - - uid: 3243 + - uid: 3270 components: - type: Transform - pos: 56.5,40.5 - parent: 2 - - uid: 3244 - components: - - type: Transform - pos: 58.5,36.5 - parent: 2 - - uid: 3245 - components: - - type: Transform - pos: 55.5,39.5 - parent: 2 - - uid: 3246 - components: - - type: Transform - pos: 56.5,36.5 - parent: 2 - - uid: 3247 - components: - - type: Transform - pos: 57.5,36.5 - parent: 2 - - uid: 3248 - components: - - type: Transform - pos: 56.5,41.5 - parent: 2 - - uid: 3249 - components: - - type: Transform - pos: 56.5,38.5 - parent: 2 - - uid: 3260 - components: - - type: Transform - pos: 40.5,31.5 - parent: 2 - - uid: 3261 - components: - - type: Transform - pos: 40.5,34.5 + pos: 22.5,24.5 parent: 2 - uid: 3284 components: @@ -13179,20 +14260,75 @@ entities: - type: Transform pos: -22.5,-9.5 parent: 2 + - uid: 3320 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: 67.5,42.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 - uid: 3339 components: - type: Transform pos: -24.5,-18.5 parent: 2 + - uid: 3341 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: 50.5,37.5 + parent: 2 - uid: 3404 components: - type: Transform - pos: 22.5,9.5 + pos: 34.5,22.5 parent: 2 - - uid: 3428 + - uid: 3462 components: - type: Transform - pos: 69.5,29.5 + pos: 40.5,25.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: 44.5,37.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: 48.5,46.5 parent: 2 - uid: 3515 components: @@ -13219,11 +14355,26 @@ entities: - type: Transform pos: 22.5,4.5 parent: 2 + - uid: 3822 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 - uid: 3982 components: - type: Transform pos: 32.5,-27.5 parent: 2 + - uid: 3992 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 - uid: 3999 components: - type: Transform @@ -13249,6 +14400,11 @@ entities: - type: Transform pos: 46.5,-27.5 parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 71.5,35.5 + parent: 2 - uid: 4040 components: - type: Transform @@ -13259,6 +14415,16 @@ entities: - type: Transform pos: -6.5,-7.5 parent: 2 + - uid: 4116 + components: + - type: Transform + pos: 67.5,39.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: 70.5,37.5 + parent: 2 - uid: 4190 components: - type: Transform @@ -13324,26 +14490,11 @@ entities: - type: Transform pos: 12.5,33.5 parent: 2 - - uid: 4351 - components: - - type: Transform - pos: 51.5,36.5 - parent: 2 - - uid: 4366 - components: - - type: Transform - pos: 50.5,35.5 - parent: 2 - uid: 4505 components: - type: Transform pos: 14.5,33.5 parent: 2 - - uid: 4644 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 2 - uid: 4648 components: - type: Transform @@ -13712,7 +14863,7 @@ entities: - uid: 4791 components: - type: Transform - pos: 8.5,16.5 + pos: 33.5,6.5 parent: 2 - uid: 4882 components: @@ -14004,6 +15155,11 @@ entities: - type: Transform pos: 41.5,-35.5 parent: 2 + - uid: 5194 + components: + - type: Transform + pos: 40.5,44.5 + parent: 2 - uid: 5205 components: - type: Transform @@ -14039,6 +15195,11 @@ entities: - type: Transform pos: 55.5,-3.5 parent: 2 + - uid: 5236 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 - uid: 5251 components: - type: Transform @@ -14049,6 +15210,21 @@ entities: - type: Transform pos: 60.5,-3.5 parent: 2 + - uid: 5270 + components: + - type: Transform + pos: 63.5,28.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: 63.5,29.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 - uid: 5287 components: - type: Transform @@ -14059,6 +15235,21 @@ entities: - type: Transform pos: 57.5,50.5 parent: 2 + - uid: 5305 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 - uid: 5315 components: - type: Transform @@ -14069,6 +15260,11 @@ entities: - type: Transform pos: 35.5,-40.5 parent: 2 + - uid: 5342 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 - uid: 5345 components: - type: Transform @@ -14099,11 +15295,6 @@ entities: - type: Transform pos: 37.5,-43.5 parent: 2 - - uid: 5367 - components: - - type: Transform - pos: 53.5,21.5 - parent: 2 - uid: 5371 components: - type: Transform @@ -14129,11 +15320,21 @@ entities: - type: Transform pos: 41.5,-29.5 parent: 2 + - uid: 5380 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 - uid: 5396 components: - type: Transform pos: 41.5,-43.5 parent: 2 + - uid: 5404 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 - uid: 5412 components: - type: Transform @@ -14144,11 +15345,56 @@ entities: - type: Transform pos: 41.5,-31.5 parent: 2 + - uid: 5446 + components: + - type: Transform + pos: 47.5,42.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 - uid: 5527 components: - type: Transform pos: 41.5,-28.5 parent: 2 + - uid: 5530 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 - uid: 5579 components: - type: Transform @@ -14274,6 +15520,16 @@ entities: - type: Transform pos: 23.5,-40.5 parent: 2 + - uid: 5652 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 - uid: 5889 components: - type: Transform @@ -14324,6 +15580,16 @@ entities: - type: Transform pos: 8.5,-23.5 parent: 2 + - uid: 5928 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 - uid: 6024 components: - type: Transform @@ -14349,10 +15615,55 @@ entities: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 6334 + - uid: 6095 components: - type: Transform - pos: 40.5,35.5 + pos: 8.5,10.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + pos: 40.5,43.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 + - uid: 6296 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 38.5,18.5 parent: 2 - uid: 6460 components: @@ -14364,11 +15675,6 @@ entities: - type: Transform pos: 18.5,-16.5 parent: 2 - - uid: 6462 - components: - - type: Transform - pos: 18.5,-17.5 - parent: 2 - uid: 6463 components: - type: Transform @@ -14419,6 +15725,21 @@ entities: - type: Transform pos: 22.5,-17.5 parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: 70.5,32.5 + parent: 2 - uid: 6592 components: - type: Transform @@ -14474,6 +15795,11 @@ entities: - type: Transform pos: 30.5,-11.5 parent: 2 + - uid: 6697 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 - uid: 6698 components: - type: Transform @@ -14744,6 +16070,11 @@ entities: - type: Transform pos: 20.5,-57.5 parent: 2 + - uid: 6914 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 - uid: 6920 components: - type: Transform @@ -14759,6 +16090,91 @@ entities: - type: Transform pos: 12.5,-30.5 parent: 2 + - uid: 6966 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: 69.5,39.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: 68.5,39.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: 72.5,31.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: 72.5,32.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 7030 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 - uid: 7040 components: - type: Transform @@ -14794,11 +16210,6 @@ entities: - type: Transform pos: 13.5,5.5 parent: 2 - - uid: 7047 - components: - - type: Transform - pos: 14.5,5.5 - parent: 2 - uid: 7048 components: - type: Transform @@ -14814,26 +16225,6 @@ entities: - type: Transform pos: 9.5,6.5 parent: 2 - - uid: 7051 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 7052 - components: - - type: Transform - pos: 10.5,11.5 - parent: 2 - - uid: 7053 - components: - - type: Transform - pos: 10.5,12.5 - parent: 2 - - uid: 7054 - components: - - type: Transform - pos: 10.5,13.5 - parent: 2 - uid: 7055 components: - type: Transform @@ -14889,11 +16280,6 @@ entities: - type: Transform pos: 18.5,10.5 parent: 2 - - uid: 7066 - components: - - type: Transform - pos: 21.5,5.5 - parent: 2 - uid: 7067 components: - type: Transform @@ -14924,11 +16310,6 @@ entities: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 7073 - components: - - type: Transform - pos: 20.5,6.5 - parent: 2 - uid: 7074 components: - type: Transform @@ -14979,16 +16360,6 @@ entities: - type: Transform pos: 22.5,8.5 parent: 2 - - uid: 7087 - components: - - type: Transform - pos: 22.5,11.5 - parent: 2 - - uid: 7088 - components: - - type: Transform - pos: 22.5,12.5 - parent: 2 - uid: 7089 components: - type: Transform @@ -15124,11 +16495,6 @@ entities: - type: Transform pos: 26.5,8.5 parent: 2 - - uid: 7116 - components: - - type: Transform - pos: 28.5,9.5 - parent: 2 - uid: 7117 components: - type: Transform @@ -15192,23 +16558,13 @@ entities: - uid: 7129 components: - type: Transform - pos: 33.5,7.5 - parent: 2 - - uid: 7130 - components: - - type: Transform - pos: 32.5,7.5 + pos: 9.5,9.5 parent: 2 - uid: 7131 components: - type: Transform pos: 31.5,7.5 parent: 2 - - uid: 7132 - components: - - type: Transform - pos: 30.5,7.5 - parent: 2 - uid: 7133 components: - type: Transform @@ -15219,11 +16575,6 @@ entities: - type: Transform pos: 30.5,5.5 parent: 2 - - uid: 7135 - components: - - type: Transform - pos: 34.5,7.5 - parent: 2 - uid: 7136 components: - type: Transform @@ -15419,20 +16770,10 @@ entities: - type: Transform pos: -22.5,-3.5 parent: 2 - - uid: 7452 + - uid: 7457 components: - type: Transform - pos: 13.5,16.5 - parent: 2 - - uid: 7453 - components: - - type: Transform - pos: 12.5,16.5 - parent: 2 - - uid: 7454 - components: - - type: Transform - pos: 12.5,17.5 + pos: 43.5,46.5 parent: 2 - uid: 7551 components: @@ -15674,6 +17015,11 @@ entities: - type: Transform pos: -6.5,-0.5 parent: 2 + - uid: 7679 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 - uid: 7682 components: - type: Transform @@ -15779,11 +17125,21 @@ entities: - type: Transform pos: 4.5,-11.5 parent: 2 + - uid: 7707 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 - uid: 7713 components: - type: Transform pos: -13.5,-0.5 parent: 2 + - uid: 7717 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 - uid: 7719 components: - type: Transform @@ -15819,10 +17175,15 @@ entities: - type: Transform pos: -15.5,-0.5 parent: 2 - - uid: 7752 + - uid: 7760 components: - type: Transform - pos: 39.5,25.5 + pos: 28.5,36.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + pos: 29.5,36.5 parent: 2 - uid: 7823 components: @@ -15849,11 +17210,6 @@ entities: - type: Transform pos: 13.5,-50.5 parent: 2 - - uid: 7972 - components: - - type: Transform - pos: 7.5,38.5 - parent: 2 - uid: 8024 components: - type: Transform @@ -15897,7 +17253,7 @@ entities: - uid: 8037 components: - type: Transform - pos: 21.5,21.5 + pos: 25.5,25.5 parent: 2 - uid: 8038 components: @@ -15907,27 +17263,22 @@ entities: - uid: 8039 components: - type: Transform - pos: 23.5,21.5 + pos: 26.5,17.5 parent: 2 - uid: 8040 components: - type: Transform - pos: 23.5,22.5 + pos: 32.5,20.5 parent: 2 - uid: 8041 components: - type: Transform - pos: 23.5,23.5 + pos: 17.5,31.5 parent: 2 - uid: 8042 components: - type: Transform - pos: 23.5,24.5 - parent: 2 - - uid: 8043 - components: - - type: Transform - pos: 22.5,24.5 + pos: 22.5,20.5 parent: 2 - uid: 8046 components: @@ -15939,16 +17290,6 @@ entities: - type: Transform pos: 12.5,25.5 parent: 2 - - uid: 8049 - components: - - type: Transform - pos: 11.5,25.5 - parent: 2 - - uid: 8050 - components: - - type: Transform - pos: 10.5,25.5 - parent: 2 - uid: 8051 components: - type: Transform @@ -15989,11 +17330,6 @@ entities: - type: Transform pos: 5.5,26.5 parent: 2 - - uid: 8062 - components: - - type: Transform - pos: 39.5,41.5 - parent: 2 - uid: 8064 components: - type: Transform @@ -16334,11 +17670,6 @@ entities: - type: Transform pos: 11.5,-40.5 parent: 2 - - uid: 8189 - components: - - type: Transform - pos: 3.5,26.5 - parent: 2 - uid: 8220 components: - type: Transform @@ -16357,468 +17688,113 @@ entities: - uid: 8285 components: - type: Transform - pos: 41.5,21.5 + pos: 43.5,27.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: 57.5,51.5 parent: 2 - uid: 8305 components: - type: Transform pos: 52.5,-8.5 parent: 2 - - uid: 8347 + - uid: 8360 components: - type: Transform - pos: 63.5,48.5 + pos: 74.5,16.5 parent: 2 - - uid: 8358 + - uid: 8364 components: - type: Transform - pos: 37.5,18.5 + pos: 52.5,47.5 parent: 2 - - uid: 8385 + - uid: 8365 components: - type: Transform - pos: 35.5,28.5 + pos: 51.5,47.5 parent: 2 - - uid: 8386 + - uid: 8374 components: - type: Transform - pos: 35.5,24.5 + pos: 62.5,44.5 parent: 2 - - uid: 8387 + - uid: 8433 components: - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 8388 - components: - - type: Transform - pos: 35.5,26.5 - parent: 2 - - uid: 8394 - components: - - type: Transform - pos: 36.5,18.5 - parent: 2 - - uid: 8396 - components: - - type: Transform - pos: 39.5,24.5 - parent: 2 - - uid: 8407 - components: - - type: Transform - pos: 59.5,36.5 - parent: 2 - - uid: 8448 - components: - - type: Transform - pos: 41.5,20.5 - parent: 2 - - uid: 8449 - components: - - type: Transform - pos: 41.5,19.5 - parent: 2 - - uid: 8450 - components: - - type: Transform - pos: 41.5,18.5 - parent: 2 - - uid: 8451 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 8452 - components: - - type: Transform - pos: 41.5,16.5 - parent: 2 - - uid: 8453 - components: - - type: Transform - pos: 42.5,17.5 - parent: 2 - - uid: 8454 - components: - - type: Transform - pos: 43.5,17.5 + pos: 60.5,27.5 parent: 2 - uid: 8455 components: - type: Transform - pos: 43.5,16.5 - parent: 2 - - uid: 8472 - components: - - type: Transform - pos: 35.5,27.5 - parent: 2 - - uid: 8476 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 8477 - components: - - type: Transform - pos: 33.5,26.5 - parent: 2 - - uid: 8478 - components: - - type: Transform - pos: 33.5,27.5 - parent: 2 - - uid: 8479 - components: - - type: Transform - pos: 33.5,28.5 - parent: 2 - - uid: 8480 - components: - - type: Transform - pos: 33.5,29.5 - parent: 2 - - uid: 8481 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 8482 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 8484 - components: - - type: Transform - pos: 32.5,25.5 - parent: 2 - - uid: 8485 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 8486 - components: - - type: Transform - pos: 30.5,25.5 - parent: 2 - - uid: 8487 - components: - - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 8488 - components: - - type: Transform - pos: 33.5,24.5 - parent: 2 - - uid: 8489 - components: - - type: Transform - pos: 33.5,23.5 - parent: 2 - - uid: 8490 - components: - - type: Transform - pos: 33.5,22.5 - parent: 2 - - uid: 8491 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - uid: 8492 - components: - - type: Transform - pos: 33.5,20.5 - parent: 2 - - uid: 8493 - components: - - type: Transform - pos: 33.5,19.5 - parent: 2 - - uid: 8494 - components: - - type: Transform - pos: 33.5,18.5 - parent: 2 - - uid: 8495 - components: - - type: Transform - pos: 33.5,17.5 - parent: 2 - - uid: 8497 - components: - - type: Transform - pos: 39.5,18.5 - parent: 2 - - uid: 8499 - components: - - type: Transform - pos: 37.5,18.5 - parent: 2 - - uid: 8500 - components: - - type: Transform - pos: 34.5,18.5 - parent: 2 - - uid: 8501 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - uid: 8502 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 8503 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - - uid: 8504 - components: - - type: Transform - pos: 29.5,18.5 - parent: 2 - - uid: 8505 - components: - - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 8506 - components: - - type: Transform - pos: 31.5,20.5 - parent: 2 - - uid: 8507 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 8508 - components: - - type: Transform - pos: 29.5,20.5 - parent: 2 - - uid: 8509 - components: - - type: Transform - pos: 34.5,22.5 - parent: 2 - - uid: 8510 - components: - - type: Transform - pos: 35.5,22.5 - parent: 2 - - uid: 8511 - components: - - type: Transform - pos: 36.5,22.5 - parent: 2 - - uid: 8512 - components: - - type: Transform - pos: 34.5,28.5 - parent: 2 - - uid: 8513 - components: - - type: Transform - pos: 32.5,23.5 - parent: 2 - - uid: 8514 - components: - - type: Transform - pos: 31.5,23.5 - parent: 2 - - uid: 8515 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - - uid: 8516 - components: - - type: Transform - pos: 29.5,23.5 - parent: 2 - - uid: 8520 - components: - - type: Transform - pos: 43.5,23.5 - parent: 2 - - uid: 8521 - components: - - type: Transform - pos: 42.5,23.5 - parent: 2 - - uid: 8522 - components: - - type: Transform - pos: 41.5,23.5 + pos: 70.5,46.5 parent: 2 - uid: 8523 components: - type: Transform - pos: 40.5,23.5 + pos: 94.5,34.5 parent: 2 - - uid: 8524 + - uid: 8560 components: - type: Transform - pos: 39.5,23.5 + pos: 53.5,32.5 parent: 2 - - uid: 8525 + - uid: 8577 components: - type: Transform - pos: 39.5,22.5 + pos: 41.5,46.5 parent: 2 - - uid: 8533 + - uid: 8604 components: - type: Transform - pos: 40.5,26.5 + pos: 42.5,34.5 parent: 2 - - uid: 8535 + - uid: 8607 components: - type: Transform - pos: 39.5,26.5 + pos: 44.5,21.5 parent: 2 - - uid: 8661 + - uid: 8618 components: - type: Transform - pos: 55.5,32.5 + pos: 66.5,45.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: 66.5,44.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + pos: 57.5,32.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + pos: 47.5,41.5 parent: 2 - uid: 8676 components: - type: Transform - pos: 56.5,37.5 + pos: 47.5,34.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + pos: 66.5,43.5 parent: 2 - uid: 8704 components: - type: Transform pos: 47.5,27.5 parent: 2 - - uid: 8705 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 8706 - components: - - type: Transform - pos: 47.5,25.5 - parent: 2 - - uid: 8707 - components: - - type: Transform - pos: 47.5,24.5 - parent: 2 - - uid: 8710 - components: - - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 8712 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - - uid: 8714 - components: - - type: Transform - pos: 46.5,28.5 - parent: 2 - - uid: 8715 - components: - - type: Transform - pos: 46.5,29.5 - parent: 2 - - uid: 8716 - components: - - type: Transform - pos: 46.5,30.5 - parent: 2 - - uid: 8717 - components: - - type: Transform - pos: 46.5,31.5 - parent: 2 - - uid: 8718 - components: - - type: Transform - pos: 46.5,32.5 - parent: 2 - - uid: 8730 - components: - - type: Transform - pos: 46.5,33.5 - parent: 2 - - uid: 8731 - components: - - type: Transform - pos: 46.5,34.5 - parent: 2 - - uid: 8759 - components: - - type: Transform - pos: 46.5,35.5 - parent: 2 - - uid: 8766 - components: - - type: Transform - pos: 46.5,36.5 - parent: 2 - - uid: 8779 - components: - - type: Transform - pos: 46.5,37.5 - parent: 2 - - uid: 8791 - components: - - type: Transform - pos: 46.5,38.5 - parent: 2 - - uid: 8795 - components: - - type: Transform - pos: 46.5,39.5 - parent: 2 - - uid: 8796 - components: - - type: Transform - pos: 45.5,39.5 - parent: 2 - - uid: 8797 - components: - - type: Transform - pos: 45.5,40.5 - parent: 2 - - uid: 8798 - components: - - type: Transform - pos: 45.5,41.5 - parent: 2 - - uid: 8934 - components: - - type: Transform - pos: 69.5,30.5 - parent: 2 - - uid: 9131 - components: - - type: Transform - pos: 20.5,34.5 - parent: 2 - - uid: 9132 - components: - - type: Transform - pos: 20.5,33.5 - parent: 2 - - uid: 9133 - components: - - type: Transform - pos: 20.5,32.5 - parent: 2 - uid: 9134 components: - type: Transform @@ -16849,36 +17825,6 @@ entities: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 9143 - components: - - type: Transform - pos: 23.5,30.5 - parent: 2 - - uid: 9144 - components: - - type: Transform - pos: 23.5,32.5 - parent: 2 - - uid: 9145 - components: - - type: Transform - pos: 21.5,30.5 - parent: 2 - - uid: 9146 - components: - - type: Transform - pos: 21.5,32.5 - parent: 2 - - uid: 9147 - components: - - type: Transform - pos: 18.5,30.5 - parent: 2 - - uid: 9148 - components: - - type: Transform - pos: 18.5,32.5 - parent: 2 - uid: 9149 components: - type: Transform @@ -16904,16 +17850,6 @@ entities: - type: Transform pos: 18.5,39.5 parent: 2 - - uid: 9154 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - - uid: 9155 - components: - - type: Transform - pos: 27.5,33.5 - parent: 2 - uid: 9156 components: - type: Transform @@ -17009,26 +17945,6 @@ entities: - type: Transform pos: 26.5,26.5 parent: 2 - - uid: 9176 - components: - - type: Transform - pos: 30.5,37.5 - parent: 2 - - uid: 9177 - components: - - type: Transform - pos: 30.5,36.5 - parent: 2 - - uid: 9178 - components: - - type: Transform - pos: 30.5,35.5 - parent: 2 - - uid: 9179 - components: - - type: Transform - pos: 54.5,39.5 - parent: 2 - uid: 9180 components: - type: Transform @@ -17189,25 +18105,10 @@ entities: - type: Transform pos: 31.5,42.5 parent: 2 - - uid: 9212 - components: - - type: Transform - pos: 34.5,40.5 - parent: 2 - - uid: 9213 - components: - - type: Transform - pos: 35.5,40.5 - parent: 2 - - uid: 9214 - components: - - type: Transform - pos: 36.5,40.5 - parent: 2 - uid: 9215 components: - type: Transform - pos: 36.5,41.5 + pos: 47.5,39.5 parent: 2 - uid: 9216 components: @@ -17259,95 +18160,30 @@ entities: - type: Transform pos: 28.5,44.5 parent: 2 - - uid: 9234 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - uid: 9235 components: - type: Transform - pos: 30.5,32.5 - parent: 2 - - uid: 9237 - components: - - type: Transform - pos: 58.5,32.5 - parent: 2 - - uid: 9240 - components: - - type: Transform - pos: 34.5,33.5 - parent: 2 - - uid: 9241 - components: - - type: Transform - pos: 34.5,34.5 - parent: 2 - - uid: 9242 - components: - - type: Transform - pos: 34.5,35.5 - parent: 2 - - uid: 9244 - components: - - type: Transform - pos: 34.5,37.5 - parent: 2 - - uid: 9245 - components: - - type: Transform - pos: 35.5,37.5 + pos: 47.5,35.5 parent: 2 - uid: 9246 components: - type: Transform pos: 35.5,38.5 parent: 2 - - uid: 9247 - components: - - type: Transform - pos: 36.5,38.5 - parent: 2 - - uid: 9248 - components: - - type: Transform - pos: 37.5,38.5 - parent: 2 - - uid: 9249 - components: - - type: Transform - pos: 38.5,38.5 - parent: 2 - - uid: 9250 - components: - - type: Transform - pos: 39.5,38.5 - parent: 2 - uid: 9251 components: - type: Transform - pos: 39.5,39.5 + pos: 60.5,24.5 parent: 2 - - uid: 9252 + - uid: 9254 components: - type: Transform - pos: 39.5,40.5 + pos: 55.5,52.5 parent: 2 - - uid: 9267 + - uid: 9255 components: - type: Transform - pos: 69.5,47.5 - parent: 2 - - uid: 9268 - components: - - type: Transform - pos: 69.5,45.5 - parent: 2 - - uid: 9269 - components: - - type: Transform - pos: 69.5,46.5 + pos: 59.5,27.5 parent: 2 - uid: 9270 components: @@ -17369,71 +18205,11 @@ entities: - type: Transform pos: 73.5,45.5 parent: 2 - - uid: 9274 - components: - - type: Transform - pos: 66.5,45.5 - parent: 2 - - uid: 9275 - components: - - type: Transform - pos: 66.5,46.5 - parent: 2 - - uid: 9276 - components: - - type: Transform - pos: 66.5,44.5 - parent: 2 - - uid: 9277 - components: - - type: Transform - pos: 67.5,44.5 - parent: 2 - - uid: 9278 - components: - - type: Transform - pos: 65.5,46.5 - parent: 2 - - uid: 9279 - components: - - type: Transform - pos: 64.5,46.5 - parent: 2 - - uid: 9280 - components: - - type: Transform - pos: 63.5,46.5 - parent: 2 - - uid: 9281 - components: - - type: Transform - pos: 63.5,47.5 - parent: 2 - - uid: 9282 - components: - - type: Transform - pos: 62.5,48.5 - parent: 2 - - uid: 9283 - components: - - type: Transform - pos: 61.5,48.5 - parent: 2 - - uid: 9284 - components: - - type: Transform - pos: 60.5,48.5 - parent: 2 - uid: 9285 components: - type: Transform pos: 59.5,48.5 parent: 2 - - uid: 9286 - components: - - type: Transform - pos: 58.5,48.5 - parent: 2 - uid: 9287 components: - type: Transform @@ -17459,80 +18235,10 @@ entities: - type: Transform pos: 53.5,48.5 parent: 2 - - uid: 9292 - components: - - type: Transform - pos: 52.5,48.5 - parent: 2 - - uid: 9293 - components: - - type: Transform - pos: 51.5,48.5 - parent: 2 - - uid: 9294 - components: - - type: Transform - pos: 50.5,48.5 - parent: 2 - - uid: 9295 - components: - - type: Transform - pos: 49.5,48.5 - parent: 2 - - uid: 9298 - components: - - type: Transform - pos: 44.5,45.5 - parent: 2 - - uid: 9299 - components: - - type: Transform - pos: 49.5,47.5 - parent: 2 - - uid: 9300 - components: - - type: Transform - pos: 48.5,47.5 - parent: 2 - uid: 9301 components: - type: Transform - pos: 47.5,47.5 - parent: 2 - - uid: 9302 - components: - - type: Transform - pos: 46.5,47.5 - parent: 2 - - uid: 9303 - components: - - type: Transform - pos: 46.5,46.5 - parent: 2 - - uid: 9304 - components: - - type: Transform - pos: 45.5,46.5 - parent: 2 - - uid: 9305 - components: - - type: Transform - pos: 44.5,46.5 - parent: 2 - - uid: 9310 - components: - - type: Transform - pos: 68.5,41.5 - parent: 2 - - uid: 9311 - components: - - type: Transform - pos: 68.5,42.5 - parent: 2 - - uid: 9312 - components: - - type: Transform - pos: 67.5,42.5 + pos: 61.5,24.5 parent: 2 - uid: 9313 components: @@ -17549,11 +18255,6 @@ entities: - type: Transform pos: 66.5,40.5 parent: 2 - - uid: 9316 - components: - - type: Transform - pos: 66.5,39.5 - parent: 2 - uid: 9317 components: - type: Transform @@ -17564,16 +18265,6 @@ entities: - type: Transform pos: 66.5,37.5 parent: 2 - - uid: 9319 - components: - - type: Transform - pos: 66.5,36.5 - parent: 2 - - uid: 9320 - components: - - type: Transform - pos: 66.5,35.5 - parent: 2 - uid: 9321 components: - type: Transform @@ -17622,87 +18313,52 @@ entities: - uid: 9330 components: - type: Transform - pos: 67.5,28.5 - parent: 2 - - uid: 9331 - components: - - type: Transform - pos: 68.5,28.5 - parent: 2 - - uid: 9332 - components: - - type: Transform - pos: 69.5,28.5 - parent: 2 - - uid: 9335 - components: - - type: Transform - pos: 69.5,31.5 + pos: 57.5,53.5 parent: 2 - uid: 9336 components: - type: Transform pos: 69.5,32.5 parent: 2 - - uid: 9337 - components: - - type: Transform - pos: 69.5,33.5 - parent: 2 - - uid: 9338 - components: - - type: Transform - pos: 68.5,32.5 - parent: 2 - uid: 9339 components: - type: Transform - pos: 67.5,32.5 - parent: 2 - - uid: 9340 - components: - - type: Transform - pos: 67.5,36.5 - parent: 2 - - uid: 9341 - components: - - type: Transform - pos: 68.5,36.5 - parent: 2 - - uid: 9342 - components: - - type: Transform - pos: 69.5,36.5 + pos: 21.5,11.5 parent: 2 - uid: 9343 components: - type: Transform - pos: 70.5,36.5 - parent: 2 - - uid: 9344 - components: - - type: Transform - pos: 67.5,39.5 + pos: 22.5,10.5 parent: 2 - uid: 9345 components: - type: Transform - pos: 68.5,39.5 - parent: 2 - - uid: 9346 - components: - - type: Transform - pos: 69.5,39.5 + pos: 57.5,52.5 parent: 2 - uid: 9347 components: - type: Transform pos: 70.5,39.5 parent: 2 - - uid: 9454 + - uid: 9351 components: - type: Transform - pos: 32.5,33.5 + pos: 55.5,51.5 + parent: 2 + - uid: 9499 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 9587 + components: + - type: Transform + pos: 33.5,36.5 parent: 2 - uid: 9694 components: @@ -18004,6 +18660,11 @@ entities: - type: Transform pos: 26.5,-12.5 parent: 2 + - uid: 9895 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 - uid: 9905 components: - type: Transform @@ -18109,10 +18770,10 @@ entities: - type: Transform pos: 32.5,-17.5 parent: 2 - - uid: 9926 + - uid: 9928 components: - type: Transform - pos: 39.5,-15.5 + pos: 47.5,37.5 parent: 2 - uid: 9929 components: @@ -18459,16 +19120,6 @@ entities: - type: Transform pos: 17.5,-10.5 parent: 2 - - uid: 10001 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - - uid: 10002 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - uid: 10003 components: - type: Transform @@ -18524,11 +19175,6 @@ entities: - type: Transform pos: 13.5,-11.5 parent: 2 - - uid: 10014 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - uid: 10015 components: - type: Transform @@ -18639,6 +19285,11 @@ entities: - type: Transform pos: 32.5,-32.5 parent: 2 + - uid: 10048 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 - uid: 10075 components: - type: Transform @@ -18654,11 +19305,6 @@ entities: - type: Transform pos: 61.5,-2.5 parent: 2 - - uid: 10084 - components: - - type: Transform - pos: 40.5,33.5 - parent: 2 - uid: 10103 components: - type: Transform @@ -18689,10 +19335,50 @@ entities: - type: Transform pos: 61.5,-10.5 parent: 2 - - uid: 10454 + - uid: 10290 components: - type: Transform - pos: 53.5,20.5 + pos: 42.5,46.5 + parent: 2 + - uid: 10292 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 10339 + components: + - type: Transform + pos: 74.5,15.5 + parent: 2 + - uid: 10348 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: 61.5,44.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + pos: 60.5,44.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + pos: 34.5,24.5 parent: 2 - uid: 10455 components: @@ -18724,26 +19410,6 @@ entities: - type: Transform pos: 49.5,19.5 parent: 2 - - uid: 10461 - components: - - type: Transform - pos: 48.5,19.5 - parent: 2 - - uid: 10462 - components: - - type: Transform - pos: 49.5,18.5 - parent: 2 - - uid: 10463 - components: - - type: Transform - pos: 49.5,17.5 - parent: 2 - - uid: 10464 - components: - - type: Transform - pos: 48.5,17.5 - parent: 2 - uid: 10465 components: - type: Transform @@ -18754,20 +19420,10 @@ entities: - type: Transform pos: 55.5,18.5 parent: 2 - - uid: 10467 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - uid: 10468 components: - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 10469 - components: - - type: Transform - pos: 51.5,23.5 + pos: 26.5,10.5 parent: 2 - uid: 10470 components: @@ -18782,17 +19438,7 @@ entities: - uid: 10472 components: - type: Transform - pos: 55.5,11.5 - parent: 2 - - uid: 10473 - components: - - type: Transform - pos: 54.5,11.5 - parent: 2 - - uid: 10475 - components: - - type: Transform - pos: 54.5,10.5 + pos: 31.5,6.5 parent: 2 - uid: 10476 components: @@ -19014,45 +19660,15 @@ entities: - type: Transform pos: 26.5,14.5 parent: 2 - - uid: 10520 - components: - - type: Transform - pos: 65.5,23.5 - parent: 2 - - uid: 10521 - components: - - type: Transform - pos: 64.5,23.5 - parent: 2 - - uid: 10522 - components: - - type: Transform - pos: 63.5,23.5 - parent: 2 - - uid: 10523 - components: - - type: Transform - pos: 62.5,23.5 - parent: 2 - - uid: 10524 - components: - - type: Transform - pos: 62.5,24.5 - parent: 2 - uid: 10525 components: - type: Transform - pos: 62.5,25.5 + pos: 40.5,20.5 parent: 2 - uid: 10526 components: - type: Transform - pos: 62.5,26.5 - parent: 2 - - uid: 10527 - components: - - type: Transform - pos: 62.5,27.5 + pos: 40.5,19.5 parent: 2 - uid: 10528 components: @@ -19104,51 +19720,16 @@ entities: - type: Transform pos: 70.5,14.5 parent: 2 - - uid: 10538 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - - uid: 10539 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - uid: 10540 components: - type: Transform pos: 62.5,11.5 parent: 2 - - uid: 10541 - components: - - type: Transform - pos: 61.5,11.5 - parent: 2 - uid: 10542 components: - type: Transform pos: 61.5,10.5 parent: 2 - - uid: 10543 - components: - - type: Transform - pos: 61.5,9.5 - parent: 2 - - uid: 10544 - components: - - type: Transform - pos: 61.5,8.5 - parent: 2 - - uid: 10546 - components: - - type: Transform - pos: 61.5,18.5 - parent: 2 - - uid: 10547 - components: - - type: Transform - pos: 60.5,18.5 - parent: 2 - uid: 10548 components: - type: Transform @@ -19177,7 +19758,7 @@ entities: - uid: 10553 components: - type: Transform - pos: 59.5,13.5 + pos: 57.5,12.5 parent: 2 - uid: 10554 components: @@ -19254,51 +19835,11 @@ entities: - type: Transform pos: 59.5,20.5 parent: 2 - - uid: 10569 - components: - - type: Transform - pos: 59.5,21.5 - parent: 2 - - uid: 10570 - components: - - type: Transform - pos: 59.5,22.5 - parent: 2 - - uid: 10571 - components: - - type: Transform - pos: 59.5,23.5 - parent: 2 - uid: 10572 components: - type: Transform pos: 59.5,24.5 parent: 2 - - uid: 10573 - components: - - type: Transform - pos: 58.5,24.5 - parent: 2 - - uid: 10574 - components: - - type: Transform - pos: 57.5,24.5 - parent: 2 - - uid: 10575 - components: - - type: Transform - pos: 56.5,24.5 - parent: 2 - - uid: 10576 - components: - - type: Transform - pos: 55.5,24.5 - parent: 2 - - uid: 10577 - components: - - type: Transform - pos: 54.5,24.5 - parent: 2 - uid: 10578 components: - type: Transform @@ -19334,6 +19875,146 @@ entities: - type: Transform pos: 56.5,6.5 parent: 2 + - uid: 10596 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + pos: 66.5,46.5 + parent: 2 + - uid: 10765 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 10769 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 10805 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 10838 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 10841 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 10844 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 10846 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 10848 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 10852 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 10854 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 10857 + components: + - type: Transform + pos: 60.5,31.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 10859 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 10860 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 10862 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 10865 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 10883 + components: + - type: Transform + pos: 55.5,53.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 - uid: 10925 components: - type: Transform @@ -19447,23 +20128,33 @@ entities: - uid: 10953 components: - type: Transform - pos: 50.5,6.5 + pos: 15.5,7.5 parent: 2 - uid: 10954 components: - type: Transform - pos: 51.5,6.5 + pos: 16.5,3.5 parent: 2 - uid: 10955 components: - type: Transform - pos: 52.5,6.5 + pos: 19.5,10.5 parent: 2 - uid: 10957 components: - type: Transform pos: 54.5,4.5 parent: 2 + - uid: 10974 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 10989 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 - uid: 11008 components: - type: Transform @@ -19489,6 +20180,11 @@ entities: - type: Transform pos: 51.5,3.5 parent: 2 + - uid: 11019 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 - uid: 11023 components: - type: Transform @@ -19529,6 +20225,11 @@ entities: - type: Transform pos: 52.5,-0.5 parent: 2 + - uid: 11033 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 - uid: 11034 components: - type: Transform @@ -19944,6 +20645,76 @@ entities: - type: Transform pos: 66.5,-11.5 parent: 2 + - uid: 11158 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 + - uid: 11208 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: 59.5,44.5 + parent: 2 + - uid: 11210 + components: + - type: Transform + pos: 55.5,45.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: 58.5,44.5 + parent: 2 + - uid: 11224 + components: + - type: Transform + pos: 57.5,44.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + pos: 57.5,45.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + pos: 56.5,45.5 + parent: 2 + - uid: 11279 + components: + - type: Transform + pos: 54.5,45.5 + parent: 2 + - uid: 11283 + components: + - type: Transform + pos: 53.5,45.5 + parent: 2 + - uid: 11284 + components: + - type: Transform + pos: 53.5,46.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + pos: 54.5,44.5 + parent: 2 + - uid: 11333 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 - uid: 11368 components: - type: Transform @@ -20039,21 +20810,76 @@ entities: - type: Transform pos: 61.5,0.5 parent: 2 - - uid: 11473 + - uid: 11465 components: - type: Transform - pos: 7.5,37.5 + pos: 54.5,42.5 + parent: 2 + - uid: 11475 + components: + - type: Transform + pos: 54.5,41.5 parent: 2 - uid: 11632 components: - type: Transform pos: -25.5,-18.5 parent: 2 + - uid: 11665 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 11667 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 11671 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 11673 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 11698 + components: + - type: Transform + pos: 27.5,36.5 + parent: 2 - uid: 11750 components: - type: Transform pos: 41.5,-34.5 parent: 2 + - uid: 11943 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - uid: 11953 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 - uid: 11981 components: - type: Transform @@ -20124,11 +20950,6 @@ entities: - type: Transform pos: 74.5,7.5 parent: 2 - - uid: 11998 - components: - - type: Transform - pos: 74.5,6.5 - parent: 2 - uid: 11999 components: - type: Transform @@ -20282,12 +21103,12 @@ entities: - uid: 12029 components: - type: Transform - pos: 65.5,8.5 + pos: 53.5,24.5 parent: 2 - uid: 12030 components: - type: Transform - pos: 65.5,7.5 + pos: 56.5,24.5 parent: 2 - uid: 12031 components: @@ -20347,42 +21168,12 @@ entities: - uid: 12042 components: - type: Transform - pos: 73.5,11.5 + pos: 54.5,24.5 parent: 2 - uid: 12043 components: - type: Transform - pos: 73.5,12.5 - parent: 2 - - uid: 12044 - components: - - type: Transform - pos: 73.5,13.5 - parent: 2 - - uid: 12045 - components: - - type: Transform - pos: 73.5,14.5 - parent: 2 - - uid: 12046 - components: - - type: Transform - pos: 73.5,15.5 - parent: 2 - - uid: 12047 - components: - - type: Transform - pos: 73.5,16.5 - parent: 2 - - uid: 12048 - components: - - type: Transform - pos: 73.5,17.5 - parent: 2 - - uid: 12049 - components: - - type: Transform - pos: 73.5,18.5 + pos: 52.5,24.5 parent: 2 - uid: 12050 components: @@ -20654,16 +21445,66 @@ entities: - type: Transform pos: -21.5,-3.5 parent: 2 + - uid: 12231 + components: + - type: Transform + pos: 44.5,41.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 12430 + components: + - type: Transform + pos: 49.5,46.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + pos: 42.5,45.5 + parent: 2 - uid: 12448 components: - type: Transform pos: -7.5,-16.5 parent: 2 + - uid: 12450 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 - uid: 12454 components: - type: Transform pos: -7.5,-9.5 parent: 2 + - uid: 12478 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 - uid: 12500 components: - type: Transform @@ -20744,6 +21585,21 @@ entities: - type: Transform pos: 101.5,-19.5 parent: 2 + - uid: 12528 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + pos: 55.5,35.5 + parent: 2 - uid: 12533 components: - type: Transform @@ -20809,6 +21665,11 @@ entities: - type: Transform pos: 110.5,-15.5 parent: 2 + - uid: 12559 + components: + - type: Transform + pos: 54.5,35.5 + parent: 2 - uid: 12560 components: - type: Transform @@ -20954,20 +21815,90 @@ entities: - type: Transform pos: 114.5,-16.5 parent: 2 + - uid: 12652 + components: + - type: Transform + pos: 54.5,36.5 + parent: 2 + - uid: 12661 + components: + - type: Transform + pos: 57.5,35.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + pos: 57.5,36.5 + parent: 2 - uid: 12666 components: - type: Transform pos: 29.5,-47.5 parent: 2 + - uid: 12669 + components: + - type: Transform + pos: 57.5,37.5 + parent: 2 + - uid: 12670 + components: + - type: Transform + pos: 57.5,38.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + pos: 58.5,38.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 - uid: 12742 components: - type: Transform - pos: 31.5,33.5 + pos: 54.5,32.5 parent: 2 - - uid: 12743 + - uid: 12744 components: - type: Transform - pos: 30.5,33.5 + pos: 52.5,32.5 + parent: 2 + - uid: 12747 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 12748 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 12749 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 12750 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + pos: 51.5,31.5 parent: 2 - uid: 12779 components: @@ -21109,6 +22040,21 @@ entities: - type: Transform pos: 43.5,-48.5 parent: 2 + - uid: 13125 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: 49.5,31.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 - uid: 13140 components: - type: Transform @@ -21144,6 +22090,16 @@ entities: - type: Transform pos: -23.5,-3.5 parent: 2 + - uid: 13154 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 - uid: 13181 components: - type: Transform @@ -21154,6 +22110,11 @@ entities: - type: Transform pos: -23.5,-7.5 parent: 2 + - uid: 13183 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 - uid: 13244 components: - type: Transform @@ -21204,6 +22165,11 @@ entities: - type: Transform pos: -12.5,0.5 parent: 2 + - uid: 13288 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 - uid: 13304 components: - type: Transform @@ -21224,30 +22190,200 @@ entities: - type: Transform pos: 10.5,-42.5 parent: 2 - - uid: 13509 + - uid: 13497 components: - type: Transform - pos: 54.5,32.5 + pos: 53.5,36.5 parent: 2 - - uid: 13513 + - uid: 13500 components: - type: Transform - pos: 57.5,40.5 + pos: 52.5,36.5 parent: 2 - - uid: 13516 + - uid: 13504 components: - type: Transform - pos: 58.5,40.5 + pos: 54.5,38.5 parent: 2 - - uid: 13528 + - uid: 13532 components: - type: Transform - pos: 57.5,32.5 + pos: 40.5,34.5 + parent: 2 + - uid: 13560 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 13567 + components: + - type: Transform + pos: 39.5,31.5 parent: 2 - uid: 13570 components: - type: Transform - pos: 47.5,28.5 + pos: 44.5,34.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + pos: 44.5,36.5 + parent: 2 + - uid: 13582 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 + - uid: 13589 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 13603 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 13604 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 13605 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 13611 + components: + - type: Transform + pos: 36.5,33.5 + parent: 2 + - uid: 13612 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - uid: 13613 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 13622 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 13623 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - uid: 13627 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 13628 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 13631 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 13632 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + pos: 55.5,11.5 parent: 2 - uid: 13669 components: @@ -21299,10 +22435,10 @@ entities: - type: Transform pos: -26.5,-20.5 parent: 2 - - uid: 13706 + - uid: 13690 components: - type: Transform - pos: 3.5,24.5 + pos: 19.5,9.5 parent: 2 - uid: 13707 components: @@ -21564,6 +22700,11 @@ entities: - type: Transform pos: 73.5,23.5 parent: 2 + - uid: 14443 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 - uid: 14444 components: - type: Transform @@ -21622,12 +22763,7 @@ entities: - uid: 14455 components: - type: Transform - pos: 88.5,28.5 - parent: 2 - - uid: 14456 - components: - - type: Transform - pos: 88.5,29.5 + pos: 26.5,22.5 parent: 2 - uid: 14457 components: @@ -21744,15 +22880,10 @@ entities: - type: Transform pos: 96.5,29.5 parent: 2 - - uid: 14625 + - uid: 14633 components: - type: Transform - pos: 64.5,45.5 - parent: 2 - - uid: 14626 - components: - - type: Transform - pos: 64.5,44.5 + pos: 18.5,-18.5 parent: 2 - uid: 14634 components: @@ -21779,20 +22910,25 @@ entities: - type: Transform pos: 81.5,24.5 parent: 2 + - uid: 14639 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 - uid: 14640 components: - type: Transform - pos: 35.5,29.5 + pos: 18.5,-20.5 parent: 2 - - uid: 14681 + - uid: 14654 components: - type: Transform - pos: 13.5,19.5 + pos: 74.5,18.5 parent: 2 - uid: 14682 components: - type: Transform - pos: 13.5,20.5 + pos: 9.5,17.5 parent: 2 - uid: 14683 components: @@ -21914,20 +23050,50 @@ entities: - type: Transform pos: 6.5,31.5 parent: 2 - - uid: 14743 - components: - - type: Transform - pos: 6.5,38.5 - parent: 2 - uid: 14744 components: - type: Transform pos: 5.5,38.5 parent: 2 - - uid: 14763 + - uid: 14786 components: - type: Transform - pos: 9.5,18.5 + pos: 26.5,21.5 + parent: 2 + - uid: 14791 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 14794 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 14836 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 14842 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 14862 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 14885 + components: + - type: Transform + pos: 39.5,40.5 parent: 2 - uid: 14905 components: @@ -21954,60 +23120,10 @@ entities: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 14915 + - uid: 14962 components: - type: Transform - pos: 18.5,18.5 - parent: 2 - - uid: 14931 - components: - - type: Transform - pos: 36.5,34.5 - parent: 2 - - uid: 14932 - components: - - type: Transform - pos: 33.5,32.5 - parent: 2 - - uid: 14936 - components: - - type: Transform - pos: 31.5,36.5 - parent: 2 - - uid: 14937 - components: - - type: Transform - pos: 32.5,36.5 - parent: 2 - - uid: 14938 - components: - - type: Transform - pos: 33.5,36.5 - parent: 2 - - uid: 14939 - components: - - type: Transform - pos: 41.5,41.5 - parent: 2 - - uid: 14940 - components: - - type: Transform - pos: 42.5,41.5 - parent: 2 - - uid: 14941 - components: - - type: Transform - pos: 43.5,41.5 - parent: 2 - - uid: 14942 - components: - - type: Transform - pos: 44.5,41.5 - parent: 2 - - uid: 14943 - components: - - type: Transform - pos: 40.5,41.5 + pos: 49.5,14.5 parent: 2 - uid: 15008 components: @@ -22039,6 +23155,11 @@ entities: - type: Transform pos: 41.5,-12.5 parent: 2 + - uid: 15085 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 - uid: 15319 components: - type: Transform @@ -22064,11 +23185,6 @@ entities: - type: Transform pos: 28.5,-32.5 parent: 2 - - uid: 15387 - components: - - type: Transform - pos: 39.5,27.5 - parent: 2 - uid: 15402 components: - type: Transform @@ -22084,6 +23200,11 @@ entities: - type: Transform pos: 11.5,-29.5 parent: 2 + - uid: 15449 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 - uid: 15463 components: - type: Transform @@ -22094,33 +23215,263 @@ entities: - type: Transform pos: 55.5,-19.5 parent: 2 - - uid: 15465 + - uid: 15499 components: - type: Transform - pos: 40.5,42.5 + pos: 19.5,-16.5 parent: 2 - - uid: 15474 + - uid: 15500 components: - type: Transform - pos: 43.5,22.5 + pos: 17.5,-18.5 parent: 2 - - uid: 15475 + - uid: 15580 components: - type: Transform - pos: 43.5,21.5 + pos: 74.5,13.5 + parent: 2 + - uid: 15592 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 15593 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 15594 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 + - uid: 15595 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + pos: 69.5,44.5 + parent: 2 + - uid: 15640 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 15642 + components: + - type: Transform + pos: 69.5,43.5 + parent: 2 + - uid: 15643 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + pos: 61.5,36.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + pos: 51.5,38.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: 37.5,38.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 15692 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 15693 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 15814 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 15820 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 15821 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 15822 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 15827 + components: + - type: Transform + pos: 67.5,27.5 + parent: 2 + - uid: 15828 + components: + - type: Transform + pos: 68.5,27.5 + parent: 2 + - uid: 15829 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - uid: 15830 + components: + - type: Transform + pos: 69.5,27.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + pos: 69.5,28.5 + parent: 2 + - uid: 15832 + components: + - type: Transform + pos: 69.5,29.5 + parent: 2 + - uid: 15833 + components: + - type: Transform + pos: 69.5,30.5 + parent: 2 + - uid: 15834 + components: + - type: Transform + pos: 69.5,31.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + pos: 72.5,30.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + pos: 72.5,29.5 + parent: 2 + - uid: 15837 + components: + - type: Transform + pos: 72.5,28.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + pos: 72.5,27.5 + parent: 2 + - uid: 15850 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 15852 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 15854 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 15866 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 15888 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 15889 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 15890 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 15891 + components: + - type: Transform + pos: 29.5,8.5 parent: 2 - proto: CableApcStack entities: - - uid: 5386 - components: - - type: Transform - pos: 50.555935,8.595494 - parent: 2 - - uid: 5387 - components: - - type: Transform - pos: 50.555935,8.595494 - parent: 2 - uid: 5627 components: - type: Transform @@ -22129,15 +23480,43 @@ entities: - uid: 11130 components: - type: Transform - pos: 54.504898,-15.262592 + pos: 54.44119,-15.013644 + parent: 2 + - uid: 15892 + components: + - type: Transform + pos: 45.046143,9.516216 + parent: 2 + - uid: 15893 + components: + - type: Transform + pos: 44.968018,9.688091 parent: 2 - proto: CableApcStack1 entities: + - uid: 3248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.185898,38.850254 + parent: 2 - uid: 6180 components: - type: Transform pos: 84.31913,7.409586 parent: 2 + - uid: 9286 + components: + - type: Transform + pos: 58.250378,48.64745 + parent: 2 +- proto: CablecuffsBroken + entities: + - uid: 15704 + components: + - type: Transform + pos: 61.707733,50.42947 + parent: 2 - proto: CableHV entities: - uid: 11 @@ -22150,21 +23529,6 @@ entities: - type: Transform pos: 15.5,-13.5 parent: 2 - - uid: 63 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - - uid: 64 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 65 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - uid: 66 components: - type: Transform @@ -22190,26 +23554,36 @@ entities: - type: Transform pos: 26.5,-32.5 parent: 2 + - uid: 232 + components: + - type: Transform + pos: 85.5,40.5 + parent: 2 - uid: 338 components: - type: Transform pos: 24.5,-32.5 parent: 2 - - uid: 603 + - uid: 625 components: - type: Transform - pos: 42.5,41.5 + pos: 11.5,-21.5 parent: 2 - - uid: 628 + - uid: 629 components: - type: Transform - pos: 60.5,18.5 + pos: 16.5,-11.5 parent: 2 - uid: 682 components: - type: Transform pos: 25.5,-31.5 parent: 2 + - uid: 780 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 - uid: 828 components: - type: Transform @@ -22275,76 +23649,61 @@ entities: - type: Transform pos: 17.5,-33.5 parent: 2 - - uid: 2319 + - uid: 2134 components: - type: Transform - pos: 45.5,34.5 + pos: -3.5,-30.5 parent: 2 - - uid: 2324 + - uid: 2188 components: - type: Transform - pos: 45.5,38.5 + pos: 40.5,43.5 parent: 2 - - uid: 2332 + - uid: 2200 components: - type: Transform - pos: 43.5,41.5 + pos: 32.5,36.5 parent: 2 - - uid: 2347 + - uid: 2209 components: - type: Transform - pos: 45.5,37.5 + pos: 30.5,34.5 parent: 2 - - uid: 2353 + - uid: 2211 components: - type: Transform - pos: 45.5,35.5 + pos: 28.5,34.5 parent: 2 - - uid: 2354 + - uid: 2238 components: - type: Transform - pos: 45.5,32.5 + pos: 33.5,36.5 parent: 2 - - uid: 2355 + - uid: 2277 components: - type: Transform - pos: 45.5,33.5 + pos: 87.5,40.5 parent: 2 - - uid: 2356 + - uid: 2301 components: - type: Transform - pos: 45.5,31.5 + pos: 32.5,34.5 parent: 2 - - uid: 2360 + - uid: 2375 components: - type: Transform - pos: 45.5,30.5 - parent: 2 - - uid: 2361 - components: - - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 2362 - components: - - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 2366 - components: - - type: Transform - pos: 45.5,27.5 - parent: 2 - - uid: 2380 - components: - - type: Transform - pos: 45.5,36.5 + pos: 77.5,50.5 parent: 2 - uid: 2387 components: - type: Transform pos: 25.5,-28.5 parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 - uid: 2564 components: - type: Transform @@ -22355,6 +23714,16 @@ entities: - type: Transform pos: 70.5,-12.5 parent: 2 + - uid: 2676 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 - uid: 2711 components: - type: Transform @@ -22390,30 +23759,105 @@ entities: - type: Transform pos: 22.5,9.5 parent: 2 + - uid: 3074 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 - uid: 3163 components: - type: Transform pos: 67.5,19.5 parent: 2 - - uid: 3165 + - uid: 3185 components: - type: Transform - pos: 31.5,33.5 + pos: 40.5,46.5 parent: 2 - - uid: 3171 + - uid: 3223 components: - type: Transform - pos: 30.5,33.5 + pos: 63.5,34.5 parent: 2 - - uid: 3183 + - uid: 3228 components: - type: Transform - pos: 35.5,33.5 + pos: 10.5,-22.5 parent: 2 - - uid: 3184 + - uid: 3254 components: - type: Transform - pos: 36.5,33.5 + pos: 66.5,43.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: 66.5,44.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: 51.5,47.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: 79.5,50.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 52.5,47.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: 46.5,19.5 parent: 2 - uid: 3980 components: @@ -22425,15 +23869,20 @@ entities: - type: Transform pos: 27.5,-32.5 parent: 2 - - uid: 4123 + - uid: 4127 components: - type: Transform - pos: 64.5,17.5 + pos: 46.5,25.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 46.5,24.5 parent: 2 - uid: 4129 components: - type: Transform - pos: 60.5,25.5 + pos: 46.5,23.5 parent: 2 - uid: 4213 components: @@ -22455,6 +23904,16 @@ entities: - type: Transform pos: 22.5,-36.5 parent: 2 + - uid: 4291 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 - uid: 4307 components: - type: Transform @@ -22470,6 +23929,16 @@ entities: - type: Transform pos: 23.5,-42.5 parent: 2 + - uid: 4401 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: 61.5,36.5 + parent: 2 - uid: 4503 components: - type: Transform @@ -22985,11 +24454,6 @@ entities: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 4843 - components: - - type: Transform - pos: -5.5,-31.5 - parent: 2 - uid: 4844 components: - type: Transform @@ -23135,10 +24599,45 @@ entities: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 5146 + - uid: 4914 components: - type: Transform - pos: 41.5,41.5 + pos: 47.5,46.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: 42.5,46.5 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: 46.5,46.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: 79.5,40.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: 60.5,47.5 parent: 2 - uid: 5660 components: @@ -23165,6 +24664,11 @@ entities: - type: Transform pos: 25.5,-32.5 parent: 2 + - uid: 5686 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 - uid: 5726 components: - type: Transform @@ -23183,7 +24687,7 @@ entities: - uid: 5873 components: - type: Transform - pos: 63.5,48.5 + pos: 62.5,47.5 parent: 2 - uid: 5903 components: @@ -23270,26 +24774,6 @@ entities: - type: Transform pos: 10.5,-23.5 parent: 2 - - uid: 5928 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 2 - - uid: 5929 - components: - - type: Transform - pos: 11.5,-22.5 - parent: 2 - - uid: 5930 - components: - - type: Transform - pos: 11.5,-21.5 - parent: 2 - - uid: 5931 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 2 - uid: 5932 components: - type: Transform @@ -24005,6 +25489,16 @@ entities: - type: Transform pos: 82.5,4.5 parent: 2 + - uid: 6131 + components: + - type: Transform + pos: 43.5,46.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: 62.5,36.5 + parent: 2 - uid: 6141 components: - type: Transform @@ -24260,6 +25754,11 @@ entities: - type: Transform pos: 66.5,29.5 parent: 2 + - uid: 6196 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 - uid: 6200 components: - type: Transform @@ -24390,16 +25889,6 @@ entities: - type: Transform pos: 77.5,47.5 parent: 2 - - uid: 6230 - components: - - type: Transform - pos: 77.5,48.5 - parent: 2 - - uid: 6231 - components: - - type: Transform - pos: 77.5,49.5 - parent: 2 - uid: 6232 components: - type: Transform @@ -24450,16 +25939,6 @@ entities: - type: Transform pos: 78.5,43.5 parent: 2 - - uid: 6243 - components: - - type: Transform - pos: 78.5,44.5 - parent: 2 - - uid: 6244 - components: - - type: Transform - pos: 78.5,46.5 - parent: 2 - uid: 6245 components: - type: Transform @@ -24510,11 +25989,6 @@ entities: - type: Transform pos: 82.5,47.5 parent: 2 - - uid: 6255 - components: - - type: Transform - pos: 82.5,46.5 - parent: 2 - uid: 6256 components: - type: Transform @@ -24560,11 +26034,6 @@ entities: - type: Transform pos: 82.5,43.5 parent: 2 - - uid: 6265 - components: - - type: Transform - pos: 82.5,44.5 - parent: 2 - uid: 6266 components: - type: Transform @@ -24585,11 +26054,6 @@ entities: - type: Transform pos: 86.5,47.5 parent: 2 - - uid: 6270 - components: - - type: Transform - pos: 86.5,46.5 - parent: 2 - uid: 6271 components: - type: Transform @@ -24640,11 +26104,6 @@ entities: - type: Transform pos: 86.5,43.5 parent: 2 - - uid: 6281 - components: - - type: Transform - pos: 86.5,44.5 - parent: 2 - uid: 6282 components: - type: Transform @@ -24655,66 +26114,6 @@ entities: - type: Transform pos: 88.5,45.5 parent: 2 - - uid: 6285 - components: - - type: Transform - pos: 67.5,43.5 - parent: 2 - - uid: 6286 - components: - - type: Transform - pos: 67.5,44.5 - parent: 2 - - uid: 6287 - components: - - type: Transform - pos: 67.5,45.5 - parent: 2 - - uid: 6288 - components: - - type: Transform - pos: 67.5,46.5 - parent: 2 - - uid: 6289 - components: - - type: Transform - pos: 66.5,46.5 - parent: 2 - - uid: 6290 - components: - - type: Transform - pos: 65.5,46.5 - parent: 2 - - uid: 6291 - components: - - type: Transform - pos: 64.5,46.5 - parent: 2 - - uid: 6292 - components: - - type: Transform - pos: 63.5,46.5 - parent: 2 - - uid: 6293 - components: - - type: Transform - pos: 63.5,47.5 - parent: 2 - - uid: 6294 - components: - - type: Transform - pos: 62.5,48.5 - parent: 2 - - uid: 6295 - components: - - type: Transform - pos: 61.5,48.5 - parent: 2 - - uid: 6296 - components: - - type: Transform - pos: 60.5,48.5 - parent: 2 - uid: 6297 components: - type: Transform @@ -24750,100 +26149,10 @@ entities: - type: Transform pos: 53.5,48.5 parent: 2 - - uid: 6304 - components: - - type: Transform - pos: 52.5,48.5 - parent: 2 - uid: 6305 components: - type: Transform - pos: 51.5,48.5 - parent: 2 - - uid: 6306 - components: - - type: Transform - pos: 50.5,48.5 - parent: 2 - - uid: 6307 - components: - - type: Transform - pos: 49.5,48.5 - parent: 2 - - uid: 6310 - components: - - type: Transform - pos: 49.5,47.5 - parent: 2 - - uid: 6311 - components: - - type: Transform - pos: 48.5,47.5 - parent: 2 - - uid: 6312 - components: - - type: Transform - pos: 47.5,47.5 - parent: 2 - - uid: 6313 - components: - - type: Transform - pos: 46.5,47.5 - parent: 2 - - uid: 6314 - components: - - type: Transform - pos: 46.5,46.5 - parent: 2 - - uid: 6315 - components: - - type: Transform - pos: 45.5,46.5 - parent: 2 - - uid: 6317 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 6318 - components: - - type: Transform - pos: 44.5,46.5 - parent: 2 - - uid: 6319 - components: - - type: Transform - pos: 44.5,45.5 - parent: 2 - - uid: 6320 - components: - - type: Transform - pos: 44.5,44.5 - parent: 2 - - uid: 6321 - components: - - type: Transform - pos: 44.5,43.5 - parent: 2 - - uid: 6322 - components: - - type: Transform - pos: 44.5,42.5 - parent: 2 - - uid: 6323 - components: - - type: Transform - pos: 44.5,41.5 - parent: 2 - - uid: 6326 - components: - - type: Transform - pos: 45.5,39.5 - parent: 2 - - uid: 6341 - components: - - type: Transform - pos: 46.5,27.5 + pos: 53.5,47.5 parent: 2 - uid: 6343 components: @@ -24865,36 +26174,6 @@ entities: - type: Transform pos: 50.5,27.5 parent: 2 - - uid: 6347 - components: - - type: Transform - pos: 47.5,25.5 - parent: 2 - - uid: 6348 - components: - - type: Transform - pos: 47.5,24.5 - parent: 2 - - uid: 6349 - components: - - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 6350 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - - uid: 6351 - components: - - type: Transform - pos: 47.5,21.5 - parent: 2 - - uid: 6352 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - uid: 6353 components: - type: Transform @@ -25115,16 +26394,6 @@ entities: - type: Transform pos: 65.5,6.5 parent: 2 - - uid: 6399 - components: - - type: Transform - pos: 65.5,7.5 - parent: 2 - - uid: 6400 - components: - - type: Transform - pos: 65.5,8.5 - parent: 2 - uid: 6401 components: - type: Transform @@ -25360,6 +26629,11 @@ entities: - type: Transform pos: 20.5,-39.5 parent: 2 + - uid: 6532 + components: + - type: Transform + pos: 85.5,50.5 + parent: 2 - uid: 6897 components: - type: Transform @@ -25710,6 +26984,11 @@ entities: - type: Transform pos: 16.5,-41.5 parent: 2 + - uid: 8031 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 - uid: 8107 components: - type: Transform @@ -25725,6 +27004,51 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 + - uid: 8366 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: 87.5,50.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: 77.5,48.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 8759 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 - uid: 8818 components: - type: Transform @@ -25740,6 +27064,11 @@ entities: - type: Transform pos: 120.5,-17.5 parent: 2 + - uid: 9299 + components: + - type: Transform + pos: 77.5,49.5 + parent: 2 - uid: 9370 components: - type: Transform @@ -25875,46 +27204,6 @@ entities: - type: Transform pos: 27.5,27.5 parent: 2 - - uid: 9439 - components: - - type: Transform - pos: 40.5,41.5 - parent: 2 - - uid: 9440 - components: - - type: Transform - pos: 39.5,41.5 - parent: 2 - - uid: 9441 - components: - - type: Transform - pos: 39.5,40.5 - parent: 2 - - uid: 9442 - components: - - type: Transform - pos: 39.5,39.5 - parent: 2 - - uid: 9443 - components: - - type: Transform - pos: 39.5,38.5 - parent: 2 - - uid: 9444 - components: - - type: Transform - pos: 38.5,38.5 - parent: 2 - - uid: 9445 - components: - - type: Transform - pos: 37.5,38.5 - parent: 2 - - uid: 9446 - components: - - type: Transform - pos: 36.5,38.5 - parent: 2 - uid: 9447 components: - type: Transform @@ -25935,36 +27224,6 @@ entities: - type: Transform pos: 34.5,36.5 parent: 2 - - uid: 9451 - components: - - type: Transform - pos: 34.5,35.5 - parent: 2 - - uid: 9452 - components: - - type: Transform - pos: 34.5,34.5 - parent: 2 - - uid: 9453 - components: - - type: Transform - pos: 34.5,33.5 - parent: 2 - - uid: 9458 - components: - - type: Transform - pos: 30.5,32.5 - parent: 2 - - uid: 9459 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - - uid: 9460 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - uid: 9462 components: - type: Transform @@ -26125,11 +27384,6 @@ entities: - type: Transform pos: 17.5,-7.5 parent: 2 - - uid: 9499 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - uid: 9500 components: - type: Transform @@ -26300,6 +27554,11 @@ entities: - type: Transform pos: 14.5,35.5 parent: 2 + - uid: 9745 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 - uid: 9821 components: - type: Transform @@ -26415,11 +27674,136 @@ entities: - type: Transform pos: 27.5,13.5 parent: 2 + - uid: 10317 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + pos: 60.5,31.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + pos: 64.5,34.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 + - uid: 10451 + components: + - type: Transform + pos: 40.5,44.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + pos: 66.5,7.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 + - uid: 10772 + components: + - type: Transform + pos: 65.5,34.5 + parent: 2 + - uid: 10970 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 - uid: 11811 components: - type: Transform pos: 10.5,16.5 parent: 2 + - uid: 12044 + components: + - type: Transform + pos: 49.5,46.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + pos: 41.5,46.5 + parent: 2 - uid: 12596 components: - type: Transform @@ -26670,16 +28054,6 @@ entities: - type: Transform pos: 112.5,-15.5 parent: 2 - - uid: 12759 - components: - - type: Transform - pos: 33.5,33.5 - parent: 2 - - uid: 12760 - components: - - type: Transform - pos: 32.5,33.5 - parent: 2 - uid: 12780 components: - type: Transform @@ -26735,6 +28109,11 @@ entities: - type: Transform pos: 13.5,-22.5 parent: 2 + - uid: 12875 + components: + - type: Transform + pos: 66.5,19.5 + parent: 2 - uid: 13046 components: - type: Transform @@ -27075,10 +28454,15 @@ entities: - type: Transform pos: 19.5,-38.5 parent: 2 - - uid: 13485 + - uid: 13580 components: - type: Transform - pos: 15.5,-14.5 + pos: 39.5,42.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + pos: 46.5,26.5 parent: 2 - uid: 13689 components: @@ -27090,6 +28474,11 @@ entities: - type: Transform pos: 16.5,-38.5 parent: 2 + - uid: 14247 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 - uid: 14396 components: - type: Transform @@ -27105,30 +28494,20 @@ entities: - type: Transform pos: 80.5,34.5 parent: 2 - - uid: 14582 - components: - - type: Transform - pos: 45.5,41.5 - parent: 2 - - uid: 14583 - components: - - type: Transform - pos: 45.5,40.5 - parent: 2 - uid: 14727 components: - type: Transform pos: 41.5,-19.5 parent: 2 - - uid: 14929 + - uid: 14849 components: - type: Transform - pos: 37.5,33.5 + pos: 64.5,19.5 parent: 2 - - uid: 14930 + - uid: 14887 components: - type: Transform - pos: 37.5,34.5 + pos: 65.5,19.5 parent: 2 - uid: 15021 components: @@ -27160,6 +28539,86 @@ entities: - type: Transform pos: 52.5,-19.5 parent: 2 + - uid: 15531 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 15661 + components: + - type: Transform + pos: 37.5,38.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: 36.5,38.5 + parent: 2 + - uid: 15687 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 15749 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 15751 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 15773 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 - proto: CableHVStack entities: - uid: 5629 @@ -27167,17 +28626,6 @@ entities: - type: Transform pos: 18.055033,-23.484873 parent: 2 - - uid: 5638 - components: - - type: Transform - rot: -0.0038357104640454054 rad - pos: 70.31901,45.73474 - parent: 2 - - uid: 5651 - components: - - type: Transform - pos: 70.69434,45.41789 - parent: 2 - uid: 6308 components: - type: Transform @@ -27190,11 +28638,6 @@ entities: - type: Transform pos: 15.5,21.5 parent: 2 - - uid: 27 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - uid: 44 components: - type: Transform @@ -27275,15 +28718,35 @@ entities: - type: Transform pos: 69.5,-12.5 parent: 2 + - uid: 380 + components: + - type: Transform + pos: 62.5,36.5 + parent: 2 - uid: 384 components: - type: Transform pos: 12.5,36.5 parent: 2 + - uid: 414 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 - uid: 545 components: - type: Transform - pos: 44.5,23.5 + pos: 65.5,44.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 64.5,44.5 parent: 2 - uid: 609 components: @@ -27295,11 +28758,46 @@ entities: - type: Transform pos: 12.5,21.5 parent: 2 + - uid: 630 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 - uid: 769 components: - type: Transform pos: 4.5,-30.5 parent: 2 + - uid: 782 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 - uid: 1028 components: - type: Transform @@ -27325,20 +28823,15 @@ entities: - type: Transform pos: 4.5,-31.5 parent: 2 - - uid: 1041 - components: - - type: Transform - pos: 31.5,36.5 - parent: 2 - uid: 1180 components: - type: Transform pos: -4.5,-1.5 parent: 2 - - uid: 1281 + - uid: 1255 components: - type: Transform - pos: 42.5,32.5 + pos: 28.5,36.5 parent: 2 - uid: 1307 components: @@ -27355,20 +28848,35 @@ entities: - type: Transform pos: 11.5,21.5 parent: 2 + - uid: 1465 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 - uid: 1555 components: - type: Transform pos: 41.5,-0.5 parent: 2 - - uid: 2065 + - uid: 1560 components: - type: Transform - pos: 41.5,31.5 + pos: 18.5,-17.5 parent: 2 - - uid: 2132 + - uid: 1838 components: - type: Transform - pos: 39.5,29.5 + pos: 51.5,27.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: 70.5,45.5 parent: 2 - uid: 2150 components: @@ -27385,91 +28893,81 @@ entities: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 2279 + - uid: 2190 components: - type: Transform - pos: 40.5,30.5 + pos: 54.5,24.5 parent: 2 - - uid: 2292 + - uid: 2341 components: - type: Transform - pos: 45.5,31.5 + pos: 5.5,9.5 parent: 2 - - uid: 2293 + - uid: 2347 components: - type: Transform - pos: 45.5,32.5 + pos: 57.5,48.5 parent: 2 - - uid: 2294 + - uid: 2350 components: - type: Transform - pos: 45.5,33.5 + pos: 70.5,47.5 parent: 2 - - uid: 2299 + - uid: 2351 components: - type: Transform - pos: 33.5,33.5 + pos: 17.5,-17.5 parent: 2 - - uid: 2307 + - uid: 2410 components: - type: Transform - pos: 35.5,31.5 + pos: 18.5,2.5 parent: 2 - - uid: 2308 + - uid: 2429 components: - type: Transform - pos: 34.5,31.5 + pos: 94.5,33.5 parent: 2 - - uid: 2309 + - uid: 2466 components: - type: Transform - pos: 42.5,31.5 - parent: 2 - - uid: 2310 - components: - - type: Transform - pos: 37.5,31.5 - parent: 2 - - uid: 2312 - components: - - type: Transform - pos: 36.5,31.5 - parent: 2 - - uid: 2462 - components: - - type: Transform - pos: 38.5,31.5 - parent: 2 - - uid: 2463 - components: - - type: Transform - pos: 44.5,31.5 - parent: 2 - - uid: 2464 - components: - - type: Transform - pos: 39.5,31.5 - parent: 2 - - uid: 2465 - components: - - type: Transform - pos: 40.5,31.5 - parent: 2 - - uid: 2467 - components: - - type: Transform - pos: 43.5,31.5 + pos: 44.5,37.5 parent: 2 - uid: 2494 components: - type: Transform pos: 70.5,-12.5 parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 - uid: 2688 components: - type: Transform pos: 22.5,6.5 parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 36.5,28.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 35.5,27.5 + parent: 2 - uid: 2954 components: - type: Transform @@ -27485,45 +28983,130 @@ entities: - type: Transform pos: 22.5,5.5 parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: 51.5,25.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: 69.5,42.5 + parent: 2 - uid: 3131 components: - type: Transform pos: -25.5,-18.5 parent: 2 - - uid: 3168 + - uid: 3144 components: - type: Transform - pos: 37.5,33.5 + pos: 47.5,41.5 parent: 2 - - uid: 3218 + - uid: 3192 components: - type: Transform - pos: 49.5,35.5 + pos: 5.5,5.5 parent: 2 - - uid: 3219 + - uid: 3199 components: - type: Transform - pos: 48.5,35.5 + pos: 33.5,31.5 parent: 2 - - uid: 3220 + - uid: 3225 components: - type: Transform - pos: 51.5,36.5 + pos: 66.5,35.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 66.5,41.5 parent: 2 - uid: 3232 components: - type: Transform - pos: 45.5,34.5 + pos: 69.5,44.5 parent: 2 - - uid: 3239 + - uid: 3234 components: - type: Transform - pos: 41.5,31.5 + pos: 94.5,34.5 parent: 2 - - uid: 3276 + - uid: 3241 components: - type: Transform - pos: 34.5,33.5 + pos: 46.5,46.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 59.5,48.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: 56.5,48.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: 42.5,45.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: 61.5,37.5 parent: 2 - uid: 3403 components: @@ -27540,16 +29123,46 @@ entities: - type: Transform pos: 66.5,37.5 parent: 2 - - uid: 3486 + - uid: 3478 components: - type: Transform - pos: 51.5,21.5 + pos: 42.5,34.5 parent: 2 - uid: 3487 components: - type: Transform pos: 50.5,21.5 parent: 2 + - uid: 3492 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: 53.5,3.5 + parent: 2 - uid: 3682 components: - type: Transform @@ -27563,12 +29176,17 @@ entities: - uid: 4020 components: - type: Transform - pos: 13.5,19.5 + pos: 52.5,3.5 parent: 2 - - uid: 4026 + - uid: 4114 components: - type: Transform - pos: 13.5,20.5 + pos: 47.5,3.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: 63.5,12.5 parent: 2 - uid: 4182 components: @@ -27580,20 +29198,20 @@ entities: - type: Transform pos: 15.5,-39.5 parent: 2 - - uid: 4349 + - uid: 4348 components: - type: Transform - pos: 51.5,35.5 - parent: 2 - - uid: 4360 - components: - - type: Transform - pos: 47.5,35.5 + pos: 54.5,48.5 parent: 2 - uid: 4363 components: - type: Transform - pos: 50.5,35.5 + pos: 46.5,20.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: 64.5,14.5 parent: 2 - uid: 4605 components: @@ -27850,6 +29468,11 @@ entities: - type: Transform pos: 38.5,-38.5 parent: 2 + - uid: 4784 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 - uid: 4785 components: - type: Transform @@ -27905,10 +29528,15 @@ entities: - type: Transform pos: 32.5,-26.5 parent: 2 - - uid: 5116 + - uid: 5062 components: - type: Transform - pos: 35.5,33.5 + pos: 66.5,14.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: 51.5,24.5 parent: 2 - uid: 5185 components: @@ -27920,10 +29548,60 @@ entities: - type: Transform pos: 62.5,-6.5 parent: 2 - - uid: 5511 + - uid: 5239 components: - type: Transform - pos: 66.5,36.5 + pos: 59.5,18.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: 48.5,3.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: 47.5,43.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: 47.5,42.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: 66.5,7.5 parent: 2 - uid: 5578 components: @@ -27940,6 +29618,21 @@ entities: - type: Transform pos: 40.5,-38.5 parent: 2 + - uid: 5687 + components: + - type: Transform + pos: 59.5,47.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: 60.5,47.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: 50.5,47.5 + parent: 2 - uid: 6039 components: - type: Transform @@ -27955,11 +29648,36 @@ entities: - type: Transform pos: 25.5,-36.5 parent: 2 + - uid: 6304 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: 51.5,47.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 - uid: 6358 components: - type: Transform pos: 36.5,-23.5 parent: 2 + - uid: 6379 + components: + - type: Transform + pos: 62.5,47.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: 61.5,47.5 + parent: 2 - uid: 6455 components: - type: Transform @@ -27983,7 +29701,12 @@ entities: - uid: 6459 components: - type: Transform - pos: 19.5,-13.5 + pos: 13.5,-17.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: 59.5,10.5 parent: 2 - uid: 6572 components: @@ -28020,6 +29743,11 @@ entities: - type: Transform pos: 13.5,-45.5 parent: 2 + - uid: 6774 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 - uid: 6780 components: - type: Transform @@ -28065,6 +29793,11 @@ entities: - type: Transform pos: 16.5,-39.5 parent: 2 + - uid: 6954 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 - uid: 6955 components: - type: Transform @@ -28073,7 +29806,7 @@ entities: - uid: 6956 components: - type: Transform - pos: 14.5,8.5 + pos: 15.5,8.5 parent: 2 - uid: 6957 components: @@ -28110,46 +29843,6 @@ entities: - type: Transform pos: 11.5,5.5 parent: 2 - - uid: 6965 - components: - - type: Transform - pos: 10.5,5.5 - parent: 2 - - uid: 6966 - components: - - type: Transform - pos: 9.5,5.5 - parent: 2 - - uid: 6967 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 6968 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - uid: 6969 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 6970 - components: - - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 6971 - components: - - type: Transform - pos: 11.5,2.5 - parent: 2 - - uid: 6972 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 - uid: 6973 components: - type: Transform @@ -28180,95 +29873,35 @@ entities: - type: Transform pos: 9.5,10.5 parent: 2 - - uid: 6979 - components: - - type: Transform - pos: 10.5,10.5 - parent: 2 - uid: 6980 components: - type: Transform - pos: 10.5,11.5 - parent: 2 - - uid: 6981 - components: - - type: Transform - pos: 11.5,10.5 - parent: 2 - - uid: 6982 - components: - - type: Transform - pos: 12.5,10.5 - parent: 2 - - uid: 6983 - components: - - type: Transform - pos: 13.5,10.5 - parent: 2 - - uid: 6984 - components: - - type: Transform - pos: 14.5,10.5 + pos: 31.5,24.5 parent: 2 - uid: 6985 components: - type: Transform - pos: 15.5,10.5 - parent: 2 - - uid: 6986 - components: - - type: Transform - pos: 16.5,10.5 - parent: 2 - - uid: 6987 - components: - - type: Transform - pos: 17.5,10.5 + pos: 66.5,36.5 parent: 2 - uid: 6988 components: - type: Transform - pos: 18.5,10.5 - parent: 2 - - uid: 6989 - components: - - type: Transform - pos: 19.5,10.5 - parent: 2 - - uid: 6990 - components: - - type: Transform - pos: 19.5,9.5 - parent: 2 - - uid: 6991 - components: - - type: Transform - pos: 19.5,8.5 - parent: 2 - - uid: 6992 - components: - - type: Transform - pos: 19.5,7.5 - parent: 2 - - uid: 6993 - components: - - type: Transform - pos: 19.5,6.5 + pos: 50.5,3.5 parent: 2 - uid: 6994 components: - type: Transform - pos: 19.5,5.5 + pos: 46.5,3.5 parent: 2 - uid: 6995 components: - type: Transform - pos: 20.5,5.5 + pos: 49.5,3.5 parent: 2 - uid: 6996 components: - type: Transform - pos: 21.5,5.5 + pos: 14.5,19.5 parent: 2 - uid: 6997 components: @@ -28328,7 +29961,7 @@ entities: - uid: 7018 components: - type: Transform - pos: 22.5,11.5 + pos: 14.5,20.5 parent: 2 - uid: 7019 components: @@ -28358,7 +29991,7 @@ entities: - uid: 7024 components: - type: Transform - pos: 28.5,9.5 + pos: 9.5,17.5 parent: 2 - uid: 7025 components: @@ -28385,46 +30018,101 @@ entities: - type: Transform pos: 26.5,9.5 parent: 2 - - uid: 7030 - components: - - type: Transform - pos: 33.5,7.5 - parent: 2 - uid: 7031 components: - type: Transform - pos: 32.5,7.5 + pos: 29.5,20.5 parent: 2 - uid: 7032 components: - type: Transform - pos: 31.5,7.5 + pos: 32.5,20.5 parent: 2 - uid: 7033 components: - type: Transform - pos: 30.5,7.5 - parent: 2 - - uid: 7036 - components: - - type: Transform - pos: 29.5,7.5 + pos: 14.5,18.5 parent: 2 - uid: 7037 components: - type: Transform - pos: 29.5,8.5 + pos: 33.5,20.5 parent: 2 - uid: 7038 components: - type: Transform - pos: 29.5,9.5 + pos: 51.5,3.5 parent: 2 - uid: 7039 components: - type: Transform pos: 29.5,10.5 parent: 2 + - uid: 7047 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 - uid: 7221 components: - type: Transform @@ -28508,12 +30196,12 @@ entities: - uid: 7255 components: - type: Transform - pos: 13.5,16.5 + pos: 14.5,10.5 parent: 2 - uid: 7256 components: - type: Transform - pos: 12.5,16.5 + pos: 15.5,10.5 parent: 2 - uid: 7257 components: @@ -28550,6 +30238,21 @@ entities: - type: Transform pos: 13.5,21.5 parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 - uid: 7475 components: - type: Transform @@ -28765,46 +30468,31 @@ entities: - type: Transform pos: 18.5,19.5 parent: 2 - - uid: 7849 + - uid: 7793 components: - type: Transform - pos: 32.5,36.5 + pos: 62.5,11.5 parent: 2 - uid: 7891 components: - type: Transform pos: 15.5,-38.5 parent: 2 - - uid: 7937 - components: - - type: Transform - pos: 40.5,20.5 - parent: 2 - - uid: 7939 - components: - - type: Transform - pos: 41.5,20.5 - parent: 2 - - uid: 7947 - components: - - type: Transform - pos: 40.5,29.5 - parent: 2 - - uid: 7953 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 7956 - components: - - type: Transform - pos: 29.5,29.5 - parent: 2 - uid: 8047 components: - type: Transform pos: 14.5,37.5 parent: 2 + - uid: 8049 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 - uid: 8060 components: - type: Transform @@ -28815,11 +30503,6 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 - - uid: 8287 - components: - - type: Transform - pos: 27.5,33.5 - parent: 2 - uid: 8325 components: - type: Transform @@ -28830,290 +30513,150 @@ entities: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 8352 - components: - - type: Transform - pos: 43.5,23.5 - parent: 2 - - uid: 8353 - components: - - type: Transform - pos: 42.5,23.5 - parent: 2 - - uid: 8354 - components: - - type: Transform - pos: 41.5,23.5 - parent: 2 - - uid: 8355 - components: - - type: Transform - pos: 40.5,23.5 - parent: 2 - - uid: 8356 - components: - - type: Transform - pos: 39.5,23.5 - parent: 2 - - uid: 8359 - components: - - type: Transform - pos: 39.5,22.5 - parent: 2 - - uid: 8360 - components: - - type: Transform - pos: 38.5,22.5 - parent: 2 - - uid: 8362 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - - uid: 8363 - components: - - type: Transform - pos: 36.5,22.5 - parent: 2 - - uid: 8364 - components: - - type: Transform - pos: 35.5,22.5 - parent: 2 - - uid: 8365 - components: - - type: Transform - pos: 34.5,22.5 - parent: 2 - - uid: 8366 - components: - - type: Transform - pos: 33.5,22.5 - parent: 2 - uid: 8367 components: - type: Transform - pos: 33.5,23.5 + pos: 52.5,47.5 parent: 2 - - uid: 8368 + - uid: 8389 components: - type: Transform - pos: 33.5,24.5 + pos: 61.5,36.5 parent: 2 - - uid: 8369 + - uid: 8405 components: - type: Transform - pos: 33.5,25.5 + pos: 63.5,44.5 parent: 2 - - uid: 8370 + - uid: 8407 components: - type: Transform - pos: 33.5,26.5 + pos: 56.5,10.5 parent: 2 - - uid: 8371 + - uid: 8418 components: - type: Transform - pos: 33.5,27.5 + pos: 56.5,22.5 parent: 2 - - uid: 8372 + - uid: 8423 components: - type: Transform - pos: 33.5,28.5 + pos: 19.5,12.5 parent: 2 - - uid: 8373 - components: - - type: Transform - pos: 33.5,29.5 - parent: 2 - - uid: 8374 - components: - - type: Transform - pos: 33.5,30.5 - parent: 2 - - uid: 8392 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 8456 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - uid: 8457 - components: - - type: Transform - pos: 32.5,21.5 - parent: 2 - - uid: 8458 - components: - - type: Transform - pos: 31.5,21.5 - parent: 2 - - uid: 8459 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 8460 - components: - - type: Transform - pos: 29.5,21.5 - parent: 2 - - uid: 8461 - components: - - type: Transform - pos: 28.5,21.5 - parent: 2 - - uid: 8462 - components: - - type: Transform - pos: 28.5,20.5 - parent: 2 - - uid: 8463 - components: - - type: Transform - pos: 33.5,20.5 - parent: 2 - - uid: 8464 - components: - - type: Transform - pos: 33.5,19.5 - parent: 2 - - uid: 8465 - components: - - type: Transform - pos: 33.5,18.5 - parent: 2 - - uid: 8466 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - uid: 8467 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 8468 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - - uid: 8469 - components: - - type: Transform - pos: 29.5,18.5 - parent: 2 - - uid: 8470 - components: - - type: Transform - pos: 28.5,18.5 - parent: 2 - - uid: 8471 - components: - - type: Transform - pos: 28.5,17.5 - parent: 2 - - uid: 8473 - components: - - type: Transform - pos: 35.5,28.5 - parent: 2 - - uid: 8474 - components: - - type: Transform - pos: 35.5,29.5 - parent: 2 - - uid: 8475 - components: - - type: Transform - pos: 34.5,28.5 - parent: 2 - - uid: 8483 - components: - - type: Transform - pos: 45.5,35.5 - parent: 2 - - uid: 8531 - components: - - type: Transform - pos: 39.5,26.5 - parent: 2 - - uid: 8536 - components: - - type: Transform - pos: 41.5,21.5 - parent: 2 - - uid: 8539 - components: - - type: Transform - pos: 38.5,25.5 - parent: 2 - - uid: 8540 - components: - - type: Transform - pos: 39.5,25.5 - parent: 2 - - uid: 8541 + - uid: 8428 components: - type: Transform pos: 40.5,25.5 parent: 2 - - uid: 8542 + - uid: 8432 components: - type: Transform - pos: 41.5,25.5 + pos: 56.5,21.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: 42.5,46.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + pos: 62.5,20.5 parent: 2 - uid: 8543 components: - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 8544 - components: - - type: Transform - pos: 37.5,24.5 - parent: 2 - - uid: 8545 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2 - - uid: 8546 - components: - - type: Transform - pos: 38.5,21.5 + pos: 50.5,27.5 parent: 2 - uid: 8547 components: - type: Transform - pos: 38.5,20.5 + pos: 49.5,29.5 parent: 2 - - uid: 8548 + - uid: 8572 components: - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 8562 - components: - - type: Transform - pos: 34.5,16.5 - parent: 2 - - uid: 8570 - components: - - type: Transform - pos: 46.5,35.5 + pos: 33.5,29.5 parent: 2 - uid: 8585 components: - type: Transform pos: 36.5,-25.5 parent: 2 - - uid: 8698 + - uid: 8595 components: - type: Transform - pos: 47.5,28.5 + pos: 70.5,46.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + pos: 46.5,39.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: 47.5,33.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: 53.5,48.5 + parent: 2 + - uid: 8718 + components: + - type: Transform + pos: 66.5,43.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: 49.5,27.5 parent: 2 - uid: 9007 components: @@ -29150,16 +30693,6 @@ entities: - type: Transform pos: 20.5,36.5 parent: 2 - - uid: 9014 - components: - - type: Transform - pos: 20.5,35.5 - parent: 2 - - uid: 9015 - components: - - type: Transform - pos: 20.5,34.5 - parent: 2 - uid: 9021 components: - type: Transform @@ -29225,31 +30758,6 @@ entities: - type: Transform pos: 27.5,36.5 parent: 2 - - uid: 9034 - components: - - type: Transform - pos: 28.5,36.5 - parent: 2 - - uid: 9035 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - - uid: 9037 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - - uid: 9038 - components: - - type: Transform - pos: 29.5,36.5 - parent: 2 - - uid: 9039 - components: - - type: Transform - pos: 30.5,36.5 - parent: 2 - uid: 9042 components: - type: Transform @@ -29520,105 +31028,50 @@ entities: - type: Transform pos: 36.5,46.5 parent: 2 - - uid: 9238 + - uid: 9179 components: - type: Transform - pos: 53.5,35.5 + pos: 55.5,48.5 parent: 2 - - uid: 9239 + - uid: 9245 components: - type: Transform - pos: 56.5,30.5 + pos: 66.5,44.5 + parent: 2 + - uid: 9249 + components: + - type: Transform + pos: 61.5,35.5 + parent: 2 + - uid: 9250 + components: + - type: Transform + pos: 64.5,19.5 parent: 2 - uid: 9253 components: - type: Transform pos: 70.5,44.5 parent: 2 - - uid: 9254 - components: - - type: Transform - pos: 69.5,44.5 - parent: 2 - - uid: 9255 - components: - - type: Transform - pos: 69.5,45.5 - parent: 2 - - uid: 9256 - components: - - type: Transform - pos: 69.5,46.5 - parent: 2 - - uid: 9257 - components: - - type: Transform - pos: 69.5,47.5 - parent: 2 - - uid: 9258 - components: - - type: Transform - pos: 69.5,43.5 - parent: 2 - - uid: 9259 - components: - - type: Transform - pos: 69.5,42.5 - parent: 2 - - uid: 9260 - components: - - type: Transform - pos: 68.5,42.5 - parent: 2 - - uid: 9261 - components: - - type: Transform - pos: 68.5,41.5 - parent: 2 - uid: 9262 components: - type: Transform - pos: 67.5,42.5 + pos: 49.5,30.5 parent: 2 - - uid: 9263 + - uid: 9319 components: - type: Transform - pos: 67.5,43.5 + pos: 20.5,13.5 parent: 2 - - uid: 9264 + - uid: 9338 components: - type: Transform - pos: 67.5,44.5 + pos: 21.5,13.5 parent: 2 - - uid: 9265 + - uid: 9341 components: - type: Transform - pos: 66.5,44.5 - parent: 2 - - uid: 9266 - components: - - type: Transform - pos: 66.5,45.5 - parent: 2 - - uid: 9296 - components: - - type: Transform - pos: 55.5,39.5 - parent: 2 - - uid: 9333 - components: - - type: Transform - pos: 39.5,24.5 - parent: 2 - - uid: 9457 - components: - - type: Transform - pos: 33.5,32.5 - parent: 2 - - uid: 9474 - components: - - type: Transform - pos: 24.5,44.5 + pos: 38.5,30.5 parent: 2 - uid: 9475 components: @@ -29905,11 +31358,6 @@ entities: - type: Transform pos: 52.5,-8.5 parent: 2 - - uid: 9745 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 2 - uid: 9746 components: - type: Transform @@ -29920,21 +31368,6 @@ entities: - type: Transform pos: 16.5,-12.5 parent: 2 - - uid: 9748 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - - uid: 9749 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 9750 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - uid: 9751 components: - type: Transform @@ -29980,11 +31413,6 @@ entities: - type: Transform pos: 11.5,-15.5 parent: 2 - - uid: 9760 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - uid: 9761 components: - type: Transform @@ -30058,7 +31486,7 @@ entities: - uid: 9776 components: - type: Transform - pos: 23.5,3.5 + pos: 21.5,12.5 parent: 2 - uid: 9777 components: @@ -30095,11 +31523,6 @@ entities: - type: Transform pos: 38.5,-15.5 parent: 2 - - uid: 9835 - components: - - type: Transform - pos: 39.5,-15.5 - parent: 2 - uid: 9836 components: - type: Transform @@ -30315,11 +31738,6 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 9884 - components: - - type: Transform - pos: 43.5,23.5 - parent: 2 - uid: 9891 components: - type: Transform @@ -30330,66 +31748,131 @@ entities: - type: Transform pos: 36.5,-22.5 parent: 2 - - uid: 9928 - components: - - type: Transform - pos: 55.5,35.5 - parent: 2 - uid: 10036 components: - type: Transform pos: 24.5,-33.5 parent: 2 - - uid: 10044 + - uid: 10051 components: - type: Transform - pos: 56.5,34.5 + pos: 63.5,14.5 + parent: 2 + - uid: 10087 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + pos: 55.5,24.5 parent: 2 - uid: 10130 components: - type: Transform pos: 63.5,-7.5 parent: 2 - - uid: 10136 + - uid: 10320 components: - type: Transform - pos: 31.5,29.5 + pos: 33.5,27.5 parent: 2 - - uid: 10318 + - uid: 10352 components: - type: Transform - pos: 36.5,33.5 + pos: 49.5,47.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 10354 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 + - uid: 10363 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + pos: 56.5,24.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + pos: 18.5,-17.5 parent: 2 - uid: 10445 components: - type: Transform - pos: 33.5,17.5 + pos: 57.5,29.5 parent: 2 - - uid: 10672 + - uid: 10452 components: - type: Transform - pos: 64.5,11.5 + pos: 69.5,43.5 parent: 2 - - uid: 10673 + - uid: 10521 components: - type: Transform - pos: 63.5,11.5 + pos: 49.5,28.5 parent: 2 - - uid: 10674 + - uid: 10569 components: - type: Transform - pos: 62.5,11.5 + pos: 58.5,29.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 10571 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 10589 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + pos: 60.5,31.5 parent: 2 - uid: 10675 components: - type: Transform pos: 62.5,12.5 parent: 2 - - uid: 10676 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 - uid: 10677 components: - type: Transform @@ -30405,31 +31888,6 @@ entities: - type: Transform pos: 62.5,13.5 parent: 2 - - uid: 10680 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 10681 - components: - - type: Transform - pos: 62.5,15.5 - parent: 2 - - uid: 10682 - components: - - type: Transform - pos: 63.5,15.5 - parent: 2 - - uid: 10683 - components: - - type: Transform - pos: 64.5,15.5 - parent: 2 - - uid: 10684 - components: - - type: Transform - pos: 65.5,15.5 - parent: 2 - uid: 10685 components: - type: Transform @@ -30485,11 +31943,6 @@ entities: - type: Transform pos: 57.5,11.5 parent: 2 - - uid: 10696 - components: - - type: Transform - pos: 56.5,11.5 - parent: 2 - uid: 10697 components: - type: Transform @@ -30535,6 +31988,26 @@ entities: - type: Transform pos: 48.5,14.5 parent: 2 + - uid: 10726 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + pos: 60.5,34.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 - uid: 10752 components: - type: Transform @@ -30560,11 +32033,6 @@ entities: - type: Transform pos: 43.5,14.5 parent: 2 - - uid: 10765 - components: - - type: Transform - pos: 37.5,26.5 - parent: 2 - uid: 10777 components: - type: Transform @@ -30600,75 +32068,15 @@ entities: - type: Transform pos: 47.5,19.5 parent: 2 - - uid: 10805 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - uid: 10806 components: - type: Transform pos: 47.5,21.5 parent: 2 - - uid: 10852 + - uid: 10840 components: - type: Transform - pos: 33.5,31.5 - parent: 2 - - uid: 10854 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - - uid: 10855 - components: - - type: Transform - pos: 47.5,23.5 - parent: 2 - - uid: 10857 - components: - - type: Transform - pos: 47.5,24.5 - parent: 2 - - uid: 10858 - components: - - type: Transform - pos: 47.5,25.5 - parent: 2 - - uid: 10859 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 10860 - components: - - type: Transform - pos: 47.5,27.5 - parent: 2 - - uid: 10861 - components: - - type: Transform - pos: 48.5,27.5 - parent: 2 - - uid: 10862 - components: - - type: Transform - pos: 49.5,27.5 - parent: 2 - - uid: 10865 - components: - - type: Transform - pos: 50.5,27.5 - parent: 2 - - uid: 10866 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - - uid: 10867 - components: - - type: Transform - pos: 51.5,20.5 + pos: 67.5,42.5 parent: 2 - uid: 10868 components: @@ -30678,12 +32086,7 @@ entities: - uid: 10869 components: - type: Transform - pos: 53.5,20.5 - parent: 2 - - uid: 10870 - components: - - type: Transform - pos: 53.5,21.5 + pos: 52.5,21.5 parent: 2 - uid: 10871 components: @@ -30720,81 +32123,6 @@ entities: - type: Transform pos: 59.5,19.5 parent: 2 - - uid: 10881 - components: - - type: Transform - pos: 60.5,19.5 - parent: 2 - - uid: 10882 - components: - - type: Transform - pos: 60.5,18.5 - parent: 2 - - uid: 10883 - components: - - type: Transform - pos: 61.5,18.5 - parent: 2 - - uid: 10884 - components: - - type: Transform - pos: 60.5,17.5 - parent: 2 - - uid: 10885 - components: - - type: Transform - pos: 60.5,16.5 - parent: 2 - - uid: 10886 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - - uid: 10887 - components: - - type: Transform - pos: 60.5,20.5 - parent: 2 - - uid: 10888 - components: - - type: Transform - pos: 60.5,21.5 - parent: 2 - - uid: 10889 - components: - - type: Transform - pos: 60.5,22.5 - parent: 2 - - uid: 10890 - components: - - type: Transform - pos: 60.5,23.5 - parent: 2 - - uid: 10891 - components: - - type: Transform - pos: 61.5,23.5 - parent: 2 - - uid: 10892 - components: - - type: Transform - pos: 62.5,23.5 - parent: 2 - - uid: 10893 - components: - - type: Transform - pos: 63.5,23.5 - parent: 2 - - uid: 10894 - components: - - type: Transform - pos: 64.5,23.5 - parent: 2 - - uid: 10895 - components: - - type: Transform - pos: 65.5,23.5 - parent: 2 - uid: 10913 components: - type: Transform @@ -30815,11 +32143,6 @@ entities: - type: Transform pos: 41.5,3.5 parent: 2 - - uid: 10917 - components: - - type: Transform - pos: 42.5,3.5 - parent: 2 - uid: 10918 components: - type: Transform @@ -30850,6 +32173,36 @@ entities: - type: Transform pos: 43.5,6.5 parent: 2 + - uid: 10959 + components: + - type: Transform + pos: 64.5,15.5 + parent: 2 + - uid: 10988 + components: + - type: Transform + pos: 64.5,17.5 + parent: 2 + - uid: 10993 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 10994 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 10999 + components: + - type: Transform + pos: 64.5,18.5 + parent: 2 + - uid: 11109 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 - uid: 11148 components: - type: Transform @@ -30995,11 +32348,6 @@ entities: - type: Transform pos: 65.5,-5.5 parent: 2 - - uid: 11192 - components: - - type: Transform - pos: 33.5,16.5 - parent: 2 - uid: 11197 components: - type: Transform @@ -31190,10 +32538,10 @@ entities: - type: Transform pos: 65.5,0.5 parent: 2 - - uid: 11283 + - uid: 11385 components: - type: Transform - pos: 66.5,41.5 + pos: 32.5,24.5 parent: 2 - uid: 11425 components: @@ -31205,11 +32553,6 @@ entities: - type: Transform pos: 49.5,-14.5 parent: 2 - - uid: 11472 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - uid: 11692 components: - type: Transform @@ -31220,20 +32563,35 @@ entities: - type: Transform pos: 9.5,16.5 parent: 2 + - uid: 11880 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 - uid: 11882 components: - type: Transform pos: 66.5,40.5 parent: 2 + - uid: 11939 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + pos: 66.5,6.5 + parent: 2 - uid: 11985 components: - type: Transform pos: 10.5,16.5 parent: 2 - - uid: 12091 + - uid: 12045 components: - type: Transform - pos: 41.5,22.5 + pos: 49.5,46.5 parent: 2 - uid: 12139 components: @@ -31370,16 +32728,6 @@ entities: - type: Transform pos: 66.5,8.5 parent: 2 - - uid: 12198 - components: - - type: Transform - pos: 65.5,8.5 - parent: 2 - - uid: 12199 - components: - - type: Transform - pos: 65.5,7.5 - parent: 2 - uid: 12200 components: - type: Transform @@ -31445,6 +32793,21 @@ entities: - type: Transform pos: 57.5,10.5 parent: 2 + - uid: 12365 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + pos: 30.5,36.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 - uid: 12648 components: - type: Transform @@ -31465,6 +32828,41 @@ entities: - type: Transform pos: 110.5,-14.5 parent: 2 + - uid: 12826 + components: + - type: Transform + pos: 56.5,29.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + pos: 56.5,30.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 56.5,31.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + pos: 55.5,32.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 - uid: 12942 components: - type: Transform @@ -31500,21 +32898,61 @@ entities: - type: Transform pos: 37.5,-41.5 parent: 2 + - uid: 13091 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 - uid: 13151 components: - type: Transform pos: 21.5,-41.5 parent: 2 - - uid: 13154 - components: - - type: Transform - pos: 47.5,29.5 - parent: 2 - uid: 13170 components: - type: Transform pos: 18.5,21.5 parent: 2 + - uid: 13282 + components: + - type: Transform + pos: 41.5,31.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + pos: 56.5,33.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + pos: 56.5,34.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + pos: 56.5,35.5 + parent: 2 - uid: 13313 components: - type: Transform @@ -31730,130 +33168,230 @@ entities: - type: Transform pos: 25.5,-58.5 parent: 2 - - uid: 13499 + - uid: 13485 components: - type: Transform - pos: 56.5,39.5 + pos: 18.5,-18.5 parent: 2 - - uid: 13500 + - uid: 13498 components: - type: Transform - pos: 56.5,32.5 - parent: 2 - - uid: 13501 - components: - - type: Transform - pos: 56.5,37.5 - parent: 2 - - uid: 13502 - components: - - type: Transform - pos: 56.5,33.5 - parent: 2 - - uid: 13503 - components: - - type: Transform - pos: 56.5,31.5 - parent: 2 - - uid: 13504 - components: - - type: Transform - pos: 55.5,30.5 + pos: 51.5,31.5 parent: 2 - uid: 13505 components: - type: Transform - pos: 56.5,38.5 + pos: 55.5,35.5 parent: 2 - uid: 13506 components: - type: Transform pos: 54.5,35.5 parent: 2 + - uid: 13507 + components: + - type: Transform + pos: 54.5,36.5 + parent: 2 - uid: 13508 components: - type: Transform - pos: 56.5,35.5 + pos: 53.5,36.5 parent: 2 - - uid: 13526 + - uid: 13509 components: - type: Transform - pos: 52.5,35.5 + pos: 52.5,36.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + pos: 41.5,39.5 + parent: 2 + - uid: 13524 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 13525 + components: + - type: Transform + pos: 42.5,44.5 parent: 2 - uid: 13527 components: - type: Transform - pos: 56.5,41.5 + pos: 35.5,31.5 parent: 2 - - uid: 13529 + - uid: 13528 components: - type: Transform - pos: 52.5,39.5 - parent: 2 - - uid: 13530 - components: - - type: Transform - pos: 54.5,39.5 + pos: 36.5,31.5 parent: 2 - uid: 13531 components: - type: Transform - pos: 56.5,40.5 - parent: 2 - - uid: 13532 - components: - - type: Transform - pos: 52.5,38.5 + pos: 38.5,29.5 parent: 2 - uid: 13533 components: - type: Transform - pos: 55.5,42.5 + pos: 38.5,26.5 parent: 2 - uid: 13534 components: - type: Transform - pos: 53.5,39.5 + pos: 41.5,25.5 parent: 2 - uid: 13535 components: - type: Transform - pos: 56.5,42.5 + pos: 43.5,39.5 parent: 2 - uid: 13536 components: - type: Transform - pos: 57.5,42.5 - parent: 2 - - uid: 13537 - components: - - type: Transform - pos: 59.5,36.5 + pos: 42.5,26.5 parent: 2 - uid: 13538 components: - type: Transform - pos: 60.5,36.5 + pos: 39.5,25.5 parent: 2 - uid: 13539 components: - type: Transform - pos: 57.5,30.5 + pos: 38.5,28.5 parent: 2 - uid: 13543 components: - type: Transform - pos: 56.5,36.5 + pos: 40.5,34.5 parent: 2 - uid: 13544 components: - type: Transform - pos: 57.5,36.5 + pos: 40.5,33.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + pos: 40.5,32.5 parent: 2 - uid: 13546 components: - type: Transform - pos: 58.5,36.5 + pos: 40.5,31.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + pos: 37.5,31.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 13552 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 13554 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: 49.5,31.5 + parent: 2 + - uid: 13557 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 13558 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + pos: 44.5,39.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + pos: 44.5,36.5 + parent: 2 + - uid: 13595 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 13596 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 13598 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 13608 + components: + - type: Transform + pos: 42.5,39.5 + parent: 2 + - uid: 13655 + components: + - type: Transform + pos: 32.5,16.5 parent: 2 - uid: 13679 components: @@ -31873,7 +33411,7 @@ entities: - uid: 13695 components: - type: Transform - pos: 15.5,-14.5 + pos: 18.5,-19.5 parent: 2 - uid: 13701 components: @@ -31940,6 +33478,66 @@ entities: - type: Transform pos: -23.5,-19.5 parent: 2 + - uid: 13738 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 13744 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 - uid: 13762 components: - type: Transform @@ -32140,6 +33738,36 @@ entities: - type: Transform pos: 1.5,-13.5 parent: 2 + - uid: 13915 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 14089 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 14090 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 - uid: 14094 components: - type: Transform @@ -32150,11 +33778,6 @@ entities: - type: Transform pos: 72.5,21.5 parent: 2 - - uid: 14097 - components: - - type: Transform - pos: 66.5,35.5 - parent: 2 - uid: 14098 components: - type: Transform @@ -32310,6 +33933,16 @@ entities: - type: Transform pos: 75.5,22.5 parent: 2 + - uid: 14240 + components: + - type: Transform + pos: 53.5,24.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + pos: 45.5,39.5 + parent: 2 - uid: 14399 components: - type: Transform @@ -32375,16 +34008,6 @@ entities: - type: Transform pos: 88.5,30.5 parent: 2 - - uid: 14442 - components: - - type: Transform - pos: 88.5,29.5 - parent: 2 - - uid: 14443 - components: - - type: Transform - pos: 88.5,28.5 - parent: 2 - uid: 14532 components: - type: Transform @@ -32563,222 +34186,57 @@ entities: - uid: 14731 components: - type: Transform - pos: 9.5,18.5 + pos: 30.5,20.5 + parent: 2 + - uid: 14763 + components: + - type: Transform + pos: 31.5,20.5 parent: 2 - uid: 14784 components: - type: Transform pos: 28.5,-35.5 parent: 2 - - uid: 14856 + - uid: 14833 components: - type: Transform - pos: 66.5,46.5 + pos: 47.5,39.5 parent: 2 - - uid: 14857 + - uid: 14835 components: - type: Transform - pos: 65.5,46.5 + pos: 61.5,34.5 parent: 2 - - uid: 14858 + - uid: 14840 components: - type: Transform - pos: 64.5,46.5 - parent: 2 - - uid: 14859 - components: - - type: Transform - pos: 64.5,45.5 - parent: 2 - - uid: 14860 - components: - - type: Transform - pos: 64.5,44.5 - parent: 2 - - uid: 14861 - components: - - type: Transform - pos: 64.5,43.5 - parent: 2 - - uid: 14862 - components: - - type: Transform - pos: 64.5,42.5 + pos: 47.5,38.5 parent: 2 - uid: 14863 components: - type: Transform - pos: 63.5,42.5 + pos: 30.5,21.5 parent: 2 - uid: 14864 components: - type: Transform - pos: 62.5,42.5 + pos: 34.5,23.5 parent: 2 - uid: 14865 components: - type: Transform - pos: 62.5,41.5 + pos: 28.5,21.5 parent: 2 - uid: 14866 components: - type: Transform - pos: 62.5,40.5 - parent: 2 - - uid: 14867 - components: - - type: Transform - pos: 62.5,39.5 + pos: 28.5,20.5 parent: 2 - uid: 14868 components: - type: Transform - pos: 62.5,37.5 - parent: 2 - - uid: 14869 - components: - - type: Transform - pos: 62.5,36.5 - parent: 2 - - uid: 14870 - components: - - type: Transform - pos: 62.5,35.5 - parent: 2 - - uid: 14871 - components: - - type: Transform - pos: 62.5,34.5 - parent: 2 - - uid: 14872 - components: - - type: Transform - pos: 62.5,33.5 - parent: 2 - - uid: 14873 - components: - - type: Transform - pos: 62.5,32.5 - parent: 2 - - uid: 14874 - components: - - type: Transform - pos: 62.5,38.5 - parent: 2 - - uid: 14875 - components: - - type: Transform - pos: 61.5,42.5 - parent: 2 - - uid: 14876 - components: - - type: Transform - pos: 60.5,42.5 - parent: 2 - - uid: 14877 - components: - - type: Transform - pos: 60.5,43.5 - parent: 2 - - uid: 14878 - components: - - type: Transform - pos: 60.5,44.5 - parent: 2 - - uid: 14879 - components: - - type: Transform - pos: 59.5,44.5 - parent: 2 - - uid: 14880 - components: - - type: Transform - pos: 58.5,44.5 - parent: 2 - - uid: 14881 - components: - - type: Transform - pos: 57.5,44.5 - parent: 2 - - uid: 14882 - components: - - type: Transform - pos: 56.5,44.5 - parent: 2 - - uid: 14883 - components: - - type: Transform - pos: 54.5,44.5 - parent: 2 - - uid: 14884 - components: - - type: Transform - pos: 53.5,44.5 - parent: 2 - - uid: 14885 - components: - - type: Transform - pos: 55.5,44.5 - parent: 2 - - uid: 14886 - components: - - type: Transform - pos: 52.5,43.5 - parent: 2 - - uid: 14887 - components: - - type: Transform - pos: 51.5,43.5 - parent: 2 - - uid: 14888 - components: - - type: Transform - pos: 52.5,44.5 - parent: 2 - - uid: 14889 - components: - - type: Transform - pos: 50.5,43.5 - parent: 2 - - uid: 14890 - components: - - type: Transform - pos: 50.5,42.5 - parent: 2 - - uid: 14891 - components: - - type: Transform - pos: 50.5,40.5 - parent: 2 - - uid: 14892 - components: - - type: Transform - pos: 50.5,39.5 - parent: 2 - - uid: 14893 - components: - - type: Transform - pos: 50.5,41.5 - parent: 2 - - uid: 14894 - components: - - type: Transform - pos: 50.5,38.5 - parent: 2 - - uid: 14895 - components: - - type: Transform - pos: 62.5,31.5 - parent: 2 - - uid: 14927 - components: - - type: Transform - pos: 36.5,34.5 - parent: 2 - - uid: 14928 - components: - - type: Transform - pos: 37.5,34.5 + pos: 34.5,17.5 parent: 2 - uid: 14933 components: @@ -32790,11 +34248,6 @@ entities: - type: Transform pos: 26.5,35.5 parent: 2 - - uid: 14935 - components: - - type: Transform - pos: 33.5,36.5 - parent: 2 - uid: 14944 components: - type: Transform @@ -32825,6 +34278,11 @@ entities: - type: Transform pos: 17.5,-39.5 parent: 2 + - uid: 14980 + components: + - type: Transform + pos: 44.5,46.5 + parent: 2 - uid: 14981 components: - type: Transform @@ -32855,6 +34313,11 @@ entities: - type: Transform pos: 38.5,-12.5 parent: 2 + - uid: 15106 + components: + - type: Transform + pos: 43.5,46.5 + parent: 2 - uid: 15315 components: - type: Transform @@ -32885,16 +34348,6 @@ entities: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 15385 - components: - - type: Transform - pos: 39.5,27.5 - parent: 2 - - uid: 15386 - components: - - type: Transform - pos: 38.5,27.5 - parent: 2 - uid: 15389 components: - type: Transform @@ -33020,15 +34473,295 @@ entities: - type: Transform pos: 35.5,-25.5 parent: 2 - - uid: 15472 + - uid: 15555 components: - type: Transform - pos: 43.5,22.5 + pos: 52.5,27.5 parent: 2 - - uid: 15473 + - uid: 15556 components: - type: Transform - pos: 43.5,21.5 + pos: 53.5,27.5 + parent: 2 + - uid: 15557 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 15558 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 15559 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 15561 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 15563 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 15572 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 15573 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 15577 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 15587 + components: + - type: Transform + pos: 61.5,24.5 + parent: 2 + - uid: 15588 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 + - uid: 15589 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + pos: 62.5,44.5 + parent: 2 + - uid: 15709 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 15824 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 15825 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 15826 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 15845 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 15846 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 15847 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 15849 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 15851 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 15855 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 15860 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 15862 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 15865 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 15868 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 15869 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 15885 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 15886 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + pos: 33.5,8.5 parent: 2 - proto: CableMVStack entities: @@ -33090,12 +34823,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-15.5 parent: 2 - - uid: 7741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,33.5 - parent: 2 - uid: 8272 components: - type: Transform @@ -33133,19 +34860,13 @@ entities: - type: Transform pos: 54.503376,-4.6494684 parent: 2 -- proto: CannabisSeeds - entities: - - uid: 8395 - components: - - type: Transform - pos: 59.5,38.5 - parent: 2 - proto: CaptainIDCard entities: - - uid: 1255 + - uid: 5385 components: - type: Transform - pos: 33.48514,41.714756 + rot: -1.5707963267948966 rad + pos: 33.659546,41.622776 parent: 2 - proto: CarbonDioxideCanister entities: @@ -33159,10 +34880,10 @@ entities: - type: Transform pos: 45.5,-37.5 parent: 2 - - uid: 7846 + - uid: 10668 components: - type: Transform - pos: 58.5,10.5 + pos: 58.5,8.5 parent: 2 - proto: CargoMailTeleporter entities: @@ -33173,11 +34894,6 @@ entities: parent: 2 - proto: Carpet entities: - - uid: 3 - components: - - type: Transform - pos: 43.5,22.5 - parent: 2 - uid: 266 components: - type: Transform @@ -33318,26 +35034,6 @@ entities: - type: Transform pos: 34.5,7.5 parent: 2 - - uid: 2611 - components: - - type: Transform - pos: 37.5,41.5 - parent: 2 - - uid: 2612 - components: - - type: Transform - pos: 36.5,41.5 - parent: 2 - - uid: 2613 - components: - - type: Transform - pos: 36.5,40.5 - parent: 2 - - uid: 2614 - components: - - type: Transform - pos: 37.5,40.5 - parent: 2 - uid: 2698 components: - type: Transform @@ -33453,40 +35149,25 @@ entities: - type: Transform pos: 22.5,43.5 parent: 2 - - uid: 5453 + - uid: 3113 components: - type: Transform - pos: 67.5,35.5 + pos: 59.5,38.5 parent: 2 - - uid: 6529 + - uid: 3392 components: - type: Transform - pos: 43.5,20.5 + pos: 58.5,38.5 parent: 2 - - uid: 6530 + - uid: 6321 components: - type: Transform - pos: 42.5,20.5 + pos: 59.5,39.5 parent: 2 - - uid: 6531 + - uid: 6326 components: - type: Transform - pos: 42.5,19.5 - parent: 2 - - uid: 6532 - components: - - type: Transform - pos: 43.5,19.5 - parent: 2 - - uid: 6533 - components: - - type: Transform - pos: 43.5,18.5 - parent: 2 - - uid: 6534 - components: - - type: Transform - pos: 42.5,18.5 + pos: 58.5,39.5 parent: 2 - uid: 10807 components: @@ -33518,31 +35199,6 @@ entities: - type: Transform pos: 28.5,48.5 parent: 2 - - uid: 11940 - components: - - type: Transform - pos: 44.5,22.5 - parent: 2 - - uid: 11941 - components: - - type: Transform - pos: 45.5,22.5 - parent: 2 - - uid: 11942 - components: - - type: Transform - pos: 45.5,23.5 - parent: 2 - - uid: 11943 - components: - - type: Transform - pos: 45.5,24.5 - parent: 2 - - uid: 11944 - components: - - type: Transform - pos: 44.5,23.5 - parent: 2 - uid: 12263 components: - type: Transform @@ -33573,6 +35229,11 @@ entities: - type: Transform pos: 14.5,15.5 parent: 2 + - uid: 15452 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 - proto: CarpetBlack entities: - uid: 430 @@ -33585,10 +35246,20 @@ entities: - type: Transform pos: 5.5,15.5 parent: 2 - - uid: 5459 + - uid: 2215 components: - type: Transform - pos: 67.5,41.5 + pos: 43.5,43.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 44.5,42.5 parent: 2 - uid: 7586 components: @@ -33605,63 +35276,58 @@ entities: - type: Transform pos: 5.5,16.5 parent: 2 + - uid: 8386 + components: + - type: Transform + pos: 43.5,42.5 + parent: 2 - proto: CarpetBlue entities: - - uid: 71 - components: - - type: Transform - pos: 32.5,42.5 - parent: 2 - - uid: 73 - components: - - type: Transform - pos: 34.5,40.5 - parent: 2 - - uid: 76 - components: - - type: Transform - pos: 32.5,41.5 - parent: 2 - - uid: 82 - components: - - type: Transform - pos: 32.5,40.5 - parent: 2 - - uid: 247 - components: - - type: Transform - pos: 34.5,42.5 - parent: 2 - - uid: 248 - components: - - type: Transform - pos: 34.5,41.5 - parent: 2 - - uid: 249 - components: - - type: Transform - pos: 33.5,42.5 - parent: 2 - - uid: 5455 - components: - - type: Transform - pos: 67.5,38.5 - parent: 2 - - uid: 5456 - components: - - type: Transform - pos: 67.5,37.5 - parent: 2 - - uid: 9565 + - uid: 8387 components: - type: Transform pos: 33.5,41.5 parent: 2 - - uid: 9574 + - uid: 8391 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: 32.5,41.5 + parent: 2 + - uid: 8441 components: - type: Transform pos: 33.5,40.5 parent: 2 + - uid: 8456 + components: + - type: Transform + pos: 33.5,39.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: 31.5,40.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 - proto: CarpetChapel entities: - uid: 8377 @@ -33781,33 +35447,30 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,4.5 parent: 2 +- proto: CarpetCyan + entities: + - uid: 3246 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: 62.5,40.5 + parent: 2 - proto: CarpetGreen entities: - - uid: 2276 - components: - - type: Transform - pos: 67.5,27.5 - parent: 2 - - uid: 5463 - components: - - type: Transform - pos: 69.5,36.5 - parent: 2 - - uid: 5514 - components: - - type: Transform - pos: 67.5,31.5 - parent: 2 - - uid: 5515 - components: - - type: Transform - pos: 67.5,32.5 - parent: 2 - - uid: 5516 - components: - - type: Transform - pos: 67.5,33.5 - parent: 2 - uid: 12679 components: - type: Transform @@ -33838,16 +35501,6 @@ entities: - type: Transform pos: 107.5,-12.5 parent: 2 - - uid: 14089 - components: - - type: Transform - pos: 67.5,29.5 - parent: 2 - - uid: 14090 - components: - - type: Transform - pos: 67.5,28.5 - parent: 2 - proto: CarpetOrange entities: - uid: 97 @@ -33865,41 +35518,6 @@ entities: - type: Transform pos: 10.5,-41.5 parent: 2 - - uid: 3431 - components: - - type: Transform - pos: 70.5,28.5 - parent: 2 - - uid: 5495 - components: - - type: Transform - pos: 70.5,34.5 - parent: 2 - - uid: 5496 - components: - - type: Transform - pos: 70.5,33.5 - parent: 2 - - uid: 5497 - components: - - type: Transform - pos: 70.5,32.5 - parent: 2 - - uid: 5513 - components: - - type: Transform - pos: 69.5,28.5 - parent: 2 - - uid: 8357 - components: - - type: Transform - pos: 70.5,27.5 - parent: 2 - - uid: 8817 - components: - - type: Transform - pos: 70.5,29.5 - parent: 2 - proto: CarpetPink entities: - uid: 1240 @@ -33912,16 +35530,65 @@ entities: - type: Transform pos: 5.5,-12.5 parent: 2 - - uid: 5457 + - uid: 2213 components: - type: Transform - pos: 67.5,39.5 + rot: 3.141592653589793 rad + pos: 48.5,42.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,40.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,42.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,41.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,41.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,37.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,36.5 parent: 2 - uid: 5682 components: - type: Transform pos: 6.5,-13.5 parent: 2 + - uid: 9248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,38.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,38.5 + parent: 2 - uid: 13066 components: - type: Transform @@ -33947,24 +35614,60 @@ entities: - type: Transform pos: 4.5,-12.5 parent: 2 -- proto: CarpetPurple - entities: - - uid: 5454 + - uid: 13520 components: - type: Transform - pos: 67.5,36.5 + rot: 3.141592653589793 rad + pos: 49.5,40.5 + parent: 2 + - uid: 14837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,37.5 parent: 2 - proto: CarpetSBlue entities: - - uid: 5458 + - uid: 2570 components: - type: Transform - pos: 67.5,40.5 + pos: 70.5,40.5 parent: 2 - - uid: 5462 + - uid: 4134 components: - type: Transform - pos: 69.5,39.5 + pos: 35.5,41.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + pos: 70.5,39.5 + parent: 2 + - uid: 8714 + components: + - type: Transform + pos: 71.5,40.5 + parent: 2 + - uid: 8791 + components: + - type: Transform + pos: 71.5,39.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + pos: 36.5,42.5 parent: 2 - uid: 10284 components: @@ -33996,6 +35699,11 @@ entities: - type: Transform pos: 20.5,-2.5 parent: 2 + - uid: 13577 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 - proto: Catwalk entities: - uid: 8 @@ -34004,6 +35712,16 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-16.5 parent: 2 + - uid: 71 + components: + - type: Transform + pos: 40.5,45.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 - uid: 197 components: - type: Transform @@ -34053,10 +35771,11 @@ entities: - type: Transform pos: 4.5,-32.5 parent: 2 - - uid: 1014 + - uid: 651 components: - type: Transform - pos: 47.5,21.5 + rot: 1.5707963267948966 rad + pos: 16.5,-12.5 parent: 2 - uid: 1166 components: @@ -34351,29 +36070,106 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-30.5 parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 45.5,46.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 48.5,46.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 35.5,38.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 47.5,46.5 + parent: 2 - uid: 2264 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-47.5 parent: 2 + - uid: 2273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,38.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 43.5,46.5 + parent: 2 - uid: 2275 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-49.5 parent: 2 + - uid: 2276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,47.5 + parent: 2 - uid: 2280 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-49.5 parent: 2 - - uid: 2567 + - uid: 2282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,44.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,27.5 + parent: 2 + - uid: 2597 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,34.5 + pos: 31.5,34.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,35.5 parent: 2 - uid: 2834 components: @@ -34387,45 +36183,60 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-30.5 parent: 2 - - uid: 3172 + - uid: 3076 components: - type: Transform - pos: 34.5,34.5 + rot: 1.5707963267948966 rad + pos: 46.5,22.5 parent: 2 - - uid: 3174 + - uid: 3083 components: - type: Transform - pos: 34.5,35.5 + pos: 42.5,46.5 parent: 2 - - uid: 3188 + - uid: 3125 components: - type: Transform - pos: 45.5,33.5 + pos: 39.5,41.5 parent: 2 - - uid: 3189 + - uid: 3161 components: - type: Transform - pos: 45.5,34.5 + rot: 3.141592653589793 rad + pos: 40.5,43.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: 44.5,46.5 parent: 2 - uid: 3190 components: - type: Transform - pos: 45.5,35.5 + pos: 46.5,46.5 parent: 2 - - uid: 3191 + - uid: 3266 components: - type: Transform - pos: 45.5,36.5 + rot: 1.5707963267948966 rad + pos: 39.5,38.5 parent: 2 - - uid: 3254 + - uid: 3269 components: - type: Transform - pos: 47.5,25.5 + rot: 1.5707963267948966 rad + pos: 61.5,47.5 parent: 2 - - uid: 3255 + - uid: 3358 components: - type: Transform - pos: 47.5,23.5 + rot: 1.5707963267948966 rad + pos: 62.5,47.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: 39.5,40.5 parent: 2 - uid: 3446 components: @@ -34438,11 +36249,6 @@ entities: - type: Transform pos: 79.5,-9.5 parent: 2 - - uid: 3851 - components: - - type: Transform - pos: 74.5,-18.5 - parent: 2 - uid: 3904 components: - type: Transform @@ -34648,6 +36454,21 @@ entities: - type: Transform pos: 89.5,45.5 parent: 2 + - uid: 4071 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 62.5,34.5 + parent: 2 - uid: 4272 components: - type: Transform @@ -34672,6 +36493,11 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,29.5 parent: 2 + - uid: 4346 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 - uid: 4440 components: - type: Transform @@ -34682,22 +36508,18 @@ entities: - type: Transform pos: 5.5,-30.5 parent: 2 - - uid: 4453 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 2 - - uid: 4454 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 2 - uid: 4504 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,32.5 parent: 2 + - uid: 4506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,38.5 + parent: 2 - uid: 4519 components: - type: Transform @@ -34750,12 +36572,6 @@ entities: - type: Transform pos: 21.5,-39.5 parent: 2 - - uid: 4784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 2 - uid: 4788 components: - type: Transform @@ -34808,12 +36624,24 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-30.5 parent: 2 + - uid: 5484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,25.5 + parent: 2 - uid: 5499 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,18.5 parent: 2 + - uid: 5505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,36.5 + parent: 2 - uid: 5606 components: - type: Transform @@ -34948,6 +36776,44 @@ entities: rot: 3.141592653589793 rad pos: 52.5,-19.5 parent: 2 + - uid: 6197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,26.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: 40.5,46.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: 40.5,42.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,24.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,39.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: 86.5,50.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: 53.5,47.5 + parent: 2 - uid: 6775 components: - type: Transform @@ -34972,10 +36838,10 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-21.5 parent: 2 - - uid: 6866 + - uid: 6922 components: - type: Transform - pos: 47.5,24.5 + pos: 53.5,48.5 parent: 2 - uid: 7007 components: @@ -35056,23 +36922,11 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,24.5 parent: 2 - - uid: 7856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,24.5 - parent: 2 - uid: 7860 components: - type: Transform pos: 46.5,-30.5 parent: 2 - - uid: 8029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 2 - uid: 8063 components: - type: Transform @@ -35100,6 +36954,11 @@ entities: - type: Transform pos: 13.5,-44.5 parent: 2 + - uid: 8287 + components: + - type: Transform + pos: 78.5,40.5 + parent: 2 - uid: 8302 components: - type: Transform @@ -35120,10 +36979,48 @@ entities: - type: Transform pos: 45.5,6.5 parent: 2 - - uid: 8391 + - uid: 8347 components: - type: Transform - pos: 45.5,27.5 + pos: 59.5,48.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,26.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,34.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 63.5,34.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,47.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: 66.5,26.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: 78.5,50.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: 86.5,40.5 parent: 2 - uid: 8750 components: @@ -35237,47 +37134,37 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-19.5 parent: 2 + - uid: 9274 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: 49.5,47.5 + parent: 2 - uid: 9706 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,6.5 parent: 2 + - uid: 9883 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 - uid: 10441 components: - type: Transform pos: 39.5,-38.5 parent: 2 - - uid: 10711 - components: - - type: Transform - pos: 63.5,48.5 - parent: 2 - - uid: 10712 - components: - - type: Transform - pos: 62.5,48.5 - parent: 2 - - uid: 10713 - components: - - type: Transform - pos: 61.5,48.5 - parent: 2 - - uid: 10714 - components: - - type: Transform - pos: 60.5,48.5 - parent: 2 - - uid: 10715 - components: - - type: Transform - pos: 59.5,48.5 - parent: 2 - - uid: 10716 - components: - - type: Transform - pos: 58.5,48.5 - parent: 2 - uid: 10717 components: - type: Transform @@ -35293,56 +37180,11 @@ entities: - type: Transform pos: 54.5,48.5 parent: 2 - - uid: 10720 - components: - - type: Transform - pos: 53.5,48.5 - parent: 2 - - uid: 10721 - components: - - type: Transform - pos: 52.5,48.5 - parent: 2 - - uid: 10722 - components: - - type: Transform - pos: 51.5,48.5 - parent: 2 - - uid: 10723 - components: - - type: Transform - pos: 50.5,48.5 - parent: 2 - - uid: 10724 - components: - - type: Transform - pos: 49.5,48.5 - parent: 2 - uid: 10725 components: - type: Transform pos: 55.5,48.5 parent: 2 - - uid: 10726 - components: - - type: Transform - pos: 43.5,41.5 - parent: 2 - - uid: 10727 - components: - - type: Transform - pos: 42.5,41.5 - parent: 2 - - uid: 10728 - components: - - type: Transform - pos: 41.5,41.5 - parent: 2 - - uid: 10729 - components: - - type: Transform - pos: 40.5,41.5 - parent: 2 - uid: 10730 components: - type: Transform @@ -35458,31 +37300,6 @@ entities: - type: Transform pos: 69.5,-18.5 parent: 2 - - uid: 10769 - components: - - type: Transform - pos: 67.5,46.5 - parent: 2 - - uid: 10770 - components: - - type: Transform - pos: 49.5,47.5 - parent: 2 - - uid: 10771 - components: - - type: Transform - pos: 63.5,47.5 - parent: 2 - - uid: 10772 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - - uid: 10773 - components: - - type: Transform - pos: 30.5,32.5 - parent: 2 - uid: 10774 components: - type: Transform @@ -35558,6 +37375,16 @@ entities: - type: Transform pos: 81.5,6.5 parent: 2 + - uid: 10870 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 10890 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 - uid: 10960 components: - type: Transform @@ -35614,16 +37441,147 @@ entities: - type: Transform pos: 26.5,-52.5 parent: 2 + - uid: 11672 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 11696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,47.5 + parent: 2 + - uid: 11733 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 11734 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 11735 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 - uid: 11755 components: - type: Transform pos: 46.5,-28.5 parent: 2 + - uid: 11827 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 - uid: 11883 components: - type: Transform pos: 74.5,20.5 parent: 2 + - uid: 11884 + components: + - type: Transform + pos: 60.5,30.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + pos: 60.5,32.5 + parent: 2 + - uid: 11941 + components: + - type: Transform + pos: 60.5,31.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + pos: 60.5,33.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + pos: 66.5,37.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: 66.5,39.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + pos: 66.5,40.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + pos: 66.5,41.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + pos: 66.5,28.5 + parent: 2 + - uid: 12144 + components: + - type: Transform + pos: 66.5,43.5 + parent: 2 + - uid: 12179 + components: + - type: Transform + pos: 62.5,45.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + pos: 62.5,46.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + pos: 65.5,44.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + pos: 64.5,44.5 + parent: 2 - uid: 12308 components: - type: Transform @@ -35684,21 +37642,6 @@ entities: - type: Transform pos: 17.5,-8.5 parent: 2 - - uid: 12329 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - - uid: 12330 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 12331 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - uid: 12332 components: - type: Transform @@ -35779,6 +37722,11 @@ entities: - type: Transform pos: 1.5,-3.5 parent: 2 + - uid: 12373 + components: + - type: Transform + pos: 66.5,27.5 + parent: 2 - uid: 12397 components: - type: Transform @@ -35814,10 +37762,15 @@ entities: - type: Transform pos: 42.5,-18.5 parent: 2 - - uid: 12741 + - uid: 12431 components: - type: Transform - pos: 47.5,26.5 + pos: 66.5,33.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + pos: 66.5,32.5 parent: 2 - uid: 12844 components: @@ -36040,11 +37993,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 2 - - uid: 13284 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - uid: 13324 components: - type: Transform @@ -36057,30 +38005,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - - uid: 13326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-1.5 - parent: 2 - - uid: 13327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,0.5 - parent: 2 - - uid: 13328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-22.5 - parent: 2 - - uid: 13329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-20.5 - parent: 2 - uid: 13436 components: - type: Transform @@ -36111,35 +38035,10 @@ entities: - type: Transform pos: 46.5,-31.5 parent: 2 - - uid: 13599 + - uid: 13513 components: - type: Transform - pos: 45.5,28.5 - parent: 2 - - uid: 13600 - components: - - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 13601 - components: - - type: Transform - pos: 45.5,31.5 - parent: 2 - - uid: 13602 - components: - - type: Transform - pos: 45.5,32.5 - parent: 2 - - uid: 13603 - components: - - type: Transform - pos: 45.5,30.5 - parent: 2 - - uid: 13728 - components: - - type: Transform - pos: 86.5,4.5 + pos: 59.5,47.5 parent: 2 - uid: 13749 components: @@ -36351,11 +38250,6 @@ entities: - type: Transform pos: 74.5,30.5 parent: 2 - - uid: 14256 - components: - - type: Transform - pos: 73.5,30.5 - parent: 2 - uid: 14257 components: - type: Transform @@ -36376,38 +38270,16 @@ entities: - type: Transform pos: 81.5,25.5 parent: 2 - - uid: 14329 - components: - - type: Transform - pos: 73.5,34.5 - parent: 2 - - uid: 14335 - components: - - type: Transform - pos: 73.5,26.5 - parent: 2 - uid: 14407 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,33.5 parent: 2 - - uid: 14599 + - uid: 14676 components: - type: Transform - pos: 64.5,44.5 - parent: 2 - - uid: 14646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,50.5 - parent: 2 - - uid: 14647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,50.5 + pos: 63.5,44.5 parent: 2 - uid: 14724 components: @@ -36415,50 +38287,15 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,38.5 parent: 2 - - uid: 14896 + - uid: 14741 components: - type: Transform - pos: 60.5,43.5 + pos: 50.5,10.5 parent: 2 - - uid: 14897 + - uid: 14838 components: - type: Transform - pos: 51.5,43.5 - parent: 2 - - uid: 14898 - components: - - type: Transform - pos: 52.5,43.5 - parent: 2 - - uid: 14899 - components: - - type: Transform - pos: 60.5,42.5 - parent: 2 - - uid: 14900 - components: - - type: Transform - pos: 61.5,42.5 - parent: 2 - - uid: 14901 - components: - - type: Transform - pos: 62.5,42.5 - parent: 2 - - uid: 14902 - components: - - type: Transform - pos: 63.5,42.5 - parent: 2 - - uid: 14903 - components: - - type: Transform - pos: 64.5,42.5 - parent: 2 - - uid: 14904 - components: - - type: Transform - pos: 61.5,36.5 + pos: 41.5,46.5 parent: 2 - uid: 14916 components: @@ -36802,18 +38639,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 - - uid: 15156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-14.5 - parent: 2 - - uid: 15157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-14.5 - parent: 2 - uid: 15158 components: - type: Transform @@ -36961,15 +38786,52 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-39.5 parent: 2 + - uid: 15414 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 - uid: 15447 components: - type: Transform pos: 32.5,-22.5 parent: 2 - - uid: 15455 + - uid: 15469 components: - type: Transform - pos: 40.5,44.5 + rot: -1.5707963267948966 rad + pos: 49.5,46.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 15630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,47.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 2 + - uid: 15759 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 + - uid: 15760 + components: + - type: Transform + pos: -12.5,-40.5 parent: 2 - proto: Cautery entities: @@ -37117,21 +38979,27 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 2 - - uid: 2328 + - uid: 2237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,22.5 + rot: 1.5707963267948966 rad + pos: 50.5,30.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 57.5,33.5 parent: 2 - uid: 2566 components: - type: Transform pos: 29.5,-2.5 parent: 2 - - uid: 3234 + - uid: 3359 components: - type: Transform - pos: 40.5,36.5 + rot: -1.5707963267948966 rad + pos: 62.5,50.5 parent: 2 - uid: 5089 components: @@ -37164,6 +39032,18 @@ entities: - type: Transform pos: 55.5,-9.5 parent: 2 + - uid: 5327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,11.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 - uid: 5406 components: - type: Transform @@ -37181,6 +39061,12 @@ entities: rot: 1.5707963267948966 rad pos: 89.5,1.5 parent: 2 + - uid: 5765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,31.5 + parent: 2 - uid: 5848 components: - type: Transform @@ -37193,6 +39079,29 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,17.5 parent: 2 + - uid: 6312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,44.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,50.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,50.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 - uid: 7535 components: - type: Transform @@ -37288,31 +39197,54 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,5.5 parent: 2 + - uid: 8533 + components: + - type: Transform + pos: 62.5,39.5 + parent: 2 - uid: 9361 components: - type: Transform pos: 25.5,7.5 parent: 2 + - uid: 9435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,46.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,44.5 + parent: 2 - uid: 9642 components: - type: Transform pos: 78.5,5.5 parent: 2 + - uid: 10398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,16.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 - uid: 10637 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,7.5 parent: 2 - - uid: 10829 + - uid: 10888 components: - type: Transform - pos: 71.5,11.5 - parent: 2 - - uid: 10830 - components: - - type: Transform - pos: 69.5,11.5 + pos: 53.5,15.5 parent: 2 - uid: 10896 components: @@ -37326,59 +39258,11 @@ entities: rot: 3.141592653589793 rad pos: 63.5,13.5 parent: 2 - - uid: 12144 + - uid: 12082 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,34.5 - parent: 2 - - uid: 12177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,9.5 - parent: 2 - - uid: 12178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,9.5 - parent: 2 - - uid: 12179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,8.5 - parent: 2 - - uid: 12180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,8.5 - parent: 2 - - uid: 12181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,5.5 - parent: 2 - - uid: 12182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,5.5 - parent: 2 - - uid: 12183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 2 - - uid: 12184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,6.5 + pos: 37.5,21.5 parent: 2 - uid: 12427 components: @@ -37398,30 +39282,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 - - uid: 13285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,47.5 - parent: 2 - - uid: 13286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,47.5 - parent: 2 - - uid: 13287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,47.5 - parent: 2 - - uid: 13288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,47.5 - parent: 2 - uid: 14076 components: - type: Transform @@ -37434,17 +39294,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,0.5 parent: 2 - - uid: 14587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 2 - - uid: 14633 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - uid: 14679 components: - type: Transform @@ -37464,6 +39313,16 @@ entities: - type: Transform pos: 34.514446,-20.35144 parent: 2 + - uid: 3412 + components: + - type: Transform + pos: 55.60609,28.7576 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: 53.074486,44.676968 + parent: 2 - proto: ChairMeat entities: - uid: 13071 @@ -37473,6 +39332,11 @@ entities: parent: 2 - proto: ChairOfficeDark entities: + - uid: 76 + components: + - type: Transform + pos: 55.011047,38.559963 + parent: 2 - uid: 190 components: - type: Transform @@ -37518,28 +39382,28 @@ entities: rot: 1.5707963267948966 rad pos: 22.517172,-24.347618 parent: 2 + - uid: 1153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.367496,26.101822 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: 49.02176,42.545933 + parent: 2 - uid: 1852 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,22.5 parent: 2 - - uid: 2318 + - uid: 2242 components: - type: Transform - pos: 37.5,18.5 - parent: 2 - - uid: 2480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,19.5 - parent: 2 - - uid: 2489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,27.5 + rot: -1.5707963267948966 rad + pos: 29.477934,30.77342 parent: 2 - uid: 2632 components: @@ -37547,11 +39411,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,11.5 parent: 2 - - uid: 2678 - components: - - type: Transform - pos: 62.5,9.5 - parent: 2 - uid: 2724 components: - type: Transform @@ -37606,11 +39465,10 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-11.5 parent: 2 - - uid: 5321 + - uid: 5332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 + pos: 38.50812,25.570572 parent: 2 - uid: 5389 components: @@ -37618,6 +39476,12 @@ entities: rot: 3.141592653589793 rad pos: 50.5,10.5 parent: 2 + - uid: 5465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.586388,25.604963 + parent: 2 - uid: 5742 components: - type: Transform @@ -37642,11 +39506,17 @@ entities: rot: 3.141592653589793 rad pos: 18.517927,23.649218 parent: 2 - - uid: 8608 + - uid: 8521 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.500034,25.750826 + pos: 54.979797,36.88809 + parent: 2 + - uid: 8580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.037384,40.639683 parent: 2 - uid: 8658 components: @@ -37659,6 +39529,18 @@ entities: rot: 3.141592653589793 rad pos: 7.5,18.5 parent: 2 + - uid: 10306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.36085,38.162395 + parent: 2 + - uid: 10835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.791836,18.125435 + parent: 2 - uid: 10912 components: - type: Transform @@ -37687,12 +39569,41 @@ entities: rot: 3.141592653589793 rad pos: 89.5,31.5 parent: 2 + - uid: 14642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.3234,32.735664 + parent: 2 + - uid: 14647 + components: + - type: Transform + pos: 70.52653,31.579414 + parent: 2 - uid: 15448 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-23.5 parent: 2 + - uid: 15615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.487736,11.401679 + parent: 2 + - uid: 15621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.50836,10.678778 + parent: 2 + - uid: 15649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.62344,50.569798 + parent: 2 - proto: ChairOfficeLight entities: - uid: 940 @@ -37719,6 +39630,12 @@ entities: rot: 1.5707963267948966 rad pos: 81.5,-6.5 parent: 2 + - uid: 7008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.517727,24.605852 + parent: 2 - uid: 7075 components: - type: Transform @@ -37729,12 +39646,6 @@ entities: - type: Transform pos: 71.5,-19.495005 parent: 2 - - uid: 8664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,24.5 - parent: 2 - uid: 10901 components: - type: Transform @@ -37746,6 +39657,17 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,-11.5 parent: 2 + - uid: 11685 + components: + - type: Transform + pos: 33.03796,42.691933 + parent: 2 + - uid: 13585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.00671,40.63985 + parent: 2 - proto: ChairPilotSeat entities: - uid: 4971 @@ -37804,12 +39726,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,29.5 parent: 2 - - uid: 3418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,27.5 - parent: 2 - uid: 5365 components: - type: Transform @@ -37822,23 +39738,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,32.5 parent: 2 - - uid: 5502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.50498,33.5 - parent: 2 - - uid: 5503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.49502,33.5 - parent: 2 - - uid: 5504 - components: - - type: Transform - pos: 70.5,34.495007 - parent: 2 - uid: 6477 components: - type: Transform @@ -37863,12 +39762,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-41.5 parent: 2 - - uid: 8440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,29.5 - parent: 2 - uid: 8644 components: - type: Transform @@ -37896,11 +39789,23 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,33.5 parent: 2 - - uid: 14091 + - uid: 15454 components: - type: Transform rot: -1.5707963267948966 rad - pos: 71.5,27.5 + pos: 24.406488,32.46587 + parent: 2 + - uid: 15455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.406488,33.450245 + parent: 2 + - uid: 15456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.375238,30.481497 parent: 2 - proto: CheapLighter entities: @@ -37909,10 +39814,11 @@ entities: - type: Transform pos: 37.66267,-3.4032297 parent: 2 - - uid: 7717 + - uid: 15678 components: - type: Transform - pos: 43.77102,20.318724 + rot: 1.5707963267948966 rad + pos: 58.62216,47.50274 parent: 2 - proto: CheapRollerBed entities: @@ -38100,13 +40006,26 @@ entities: - type: Transform pos: 38.63205,-29.435232 parent: 2 -- proto: CigarGold +- proto: CigaretteSpent entities: - - uid: 7936 + - uid: 1763 components: - type: Transform - pos: 43.474144,20.053099 + rot: -1.5707963267948966 rad + pos: 62.517895,19.508009 parent: 2 + - uid: 6915 + components: + - type: Transform + pos: 62.13248,19.185093 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: 62.340813,19.362177 + parent: 2 +- proto: CigarGold + entities: - uid: 12104 components: - type: Transform @@ -38146,20 +40065,29 @@ entities: - uid: 9307 components: - type: Transform - pos: 69.531136,11.469878 + rot: 6.283185307179586 rad + pos: 70.68867,11.580943 + parent: 2 +- proto: CigPackRed + entities: + - uid: 15656 + components: + - type: Transform + pos: 58.35046,47.80946 parent: 2 - proto: CircuitImprinter entities: - - uid: 12155 + - uid: 15566 components: - type: Transform - pos: 53.5,17.5 + pos: 53.5,20.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Gold + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: CleanerDispenser entities: - uid: 6875 @@ -38170,18 +40098,33 @@ entities: parent: 2 - proto: ClosetBombFilled entities: - - uid: 2261 + - uid: 15521 components: - type: Transform - pos: 36.5,21.5 + pos: 62.5,22.5 parent: 2 - - uid: 12854 + - uid: 15530 components: - type: Transform - pos: 55.5,25.5 + pos: 47.5,36.5 parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 8431 + components: + - type: Transform + anchored: True + pos: 32.5,17.5 + parent: 2 + - type: Physics + bodyType: Static - proto: ClosetEmergencyFilledRandom entities: + - uid: 829 + components: + - type: Transform + pos: 88.5,5.5 + parent: 2 - uid: 1480 components: - type: Transform @@ -38192,6 +40135,11 @@ entities: - type: Transform pos: 72.5,-10.5 parent: 2 + - uid: 3136 + components: + - type: Transform + pos: 65.5,47.5 + parent: 2 - uid: 3328 components: - type: Transform @@ -38202,11 +40150,6 @@ entities: - type: Transform pos: 52.5,-20.5 parent: 2 - - uid: 5261 - components: - - type: Transform - pos: 49.5,13.5 - parent: 2 - uid: 5438 components: - type: Transform @@ -38232,31 +40175,21 @@ entities: - type: Transform pos: 3.5,5.5 parent: 2 - - uid: 8983 + - uid: 12198 components: - type: Transform - pos: 67.5,29.5 - parent: 2 - - uid: 10837 - components: - - type: Transform - pos: 66.5,6.5 - parent: 2 - - uid: 10839 - components: - - type: Transform - pos: 43.5,46.5 - parent: 2 - - uid: 12478 - components: - - type: Transform - pos: 56.5,47.5 + pos: 68.5,11.5 parent: 2 - uid: 13145 components: - type: Transform pos: -13.5,0.5 parent: 2 + - uid: 13518 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 - uid: 13708 components: - type: Transform @@ -38267,17 +40200,17 @@ entities: - type: Transform pos: 71.5,21.5 parent: 2 + - uid: 14942 + components: + - type: Transform + pos: 75.5,-19.5 + parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 2173 + - uid: 2066 components: - type: Transform - pos: 47.5,28.5 - parent: 2 - - uid: 2195 - components: - - type: Transform - pos: 66.5,11.5 + pos: 75.5,-18.5 parent: 2 - uid: 2681 components: @@ -38294,11 +40227,31 @@ entities: - type: Transform pos: -9.5,0.5 parent: 2 + - uid: 8233 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 9242 + components: + - type: Transform + pos: 65.5,46.5 + parent: 2 - uid: 12382 components: - type: Transform pos: 5.5,-31.5 parent: 2 + - uid: 12726 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 15790 + components: + - type: Transform + pos: 87.5,5.5 + parent: 2 - proto: ClosetFireFilled entities: - uid: 99 @@ -38306,11 +40259,6 @@ entities: - type: Transform pos: -7.5,-14.5 parent: 2 - - uid: 5260 - components: - - type: Transform - pos: 50.5,13.5 - parent: 2 - uid: 5902 components: - type: Transform @@ -38321,26 +40269,36 @@ entities: - type: Transform pos: 3.5,9.5 parent: 2 - - uid: 10841 + - uid: 9623 components: - type: Transform - pos: 39.5,42.5 + pos: 59.5,32.5 parent: 2 - uid: 12803 components: - type: Transform pos: -5.5,0.5 parent: 2 - - uid: 12858 - components: - - type: Transform - pos: 64.5,20.5 - parent: 2 - uid: 15441 components: - type: Transform pos: 35.5,-20.5 parent: 2 + - uid: 15515 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 15698 + components: + - type: Transform + pos: 45.5,45.5 + parent: 2 - proto: ClosetJanitorFilled entities: - uid: 166 @@ -38355,6 +40313,40 @@ entities: - type: Transform pos: 3.5,-4.5 parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 3043 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 13729 + components: + - type: Transform + pos: 67.5,28.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: 60.5,22.5 + parent: 2 +- proto: ClosetL3SecurityFilled + entities: + - uid: 10724 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 - proto: ClosetL3VirologyFilled entities: - uid: 5213 @@ -38379,13 +40371,6 @@ entities: - type: Transform pos: 17.5,29.5 parent: 2 -- proto: ClosetMaintenance - entities: - - uid: 10835 - components: - - type: Transform - pos: 65.5,10.5 - parent: 2 - proto: ClosetMaintenanceFilledRandom entities: - uid: 1477 @@ -38393,11 +40378,34 @@ entities: - type: Transform pos: 36.5,-20.5 parent: 2 - - uid: 3501 + - uid: 2269 components: - type: Transform - pos: 37.5,36.5 + pos: 61.5,45.5 parent: 2 + - uid: 3444 + components: + - type: Transform + pos: 49.5,26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 3854 components: - type: Transform @@ -38408,136 +40416,119 @@ entities: - type: Transform pos: 9.5,-19.5 parent: 2 + - uid: 5485 + components: + - type: Transform + pos: 64.5,41.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: 69.5,40.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 - uid: 8342 components: - type: Transform pos: 23.5,6.5 parent: 2 - - uid: 10836 + - uid: 8461 components: - type: Transform - pos: 65.5,9.5 + pos: 64.5,8.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: 59.5,33.5 + parent: 2 + - uid: 12432 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + pos: 67.5,31.5 parent: 2 - uid: 13969 components: - type: Transform pos: -11.5,-23.5 parent: 2 - - uid: 14650 + - uid: 15683 components: - type: Transform - pos: 67.5,31.5 + pos: 35.5,39.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + pos: 44.5,45.5 parent: 2 - proto: ClosetRadiationSuitFilled entities: - - uid: 3687 - components: - - type: Transform - pos: 51.5,13.5 - parent: 2 - uid: 4310 components: - type: Transform pos: 19.5,-34.5 parent: 2 + - uid: 9144 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 - uid: 10906 components: - type: Transform pos: 20.5,-34.5 parent: 2 - - uid: 12853 + - uid: 11658 components: - type: Transform - pos: 54.5,25.5 + pos: 51.5,13.5 parent: 2 -- proto: ClosetSteelBase - entities: - - uid: 5460 + - uid: 15501 components: - type: Transform - pos: 69.5,40.5 + pos: 61.5,22.5 parent: 2 - - uid: 5461 + - uid: 15567 components: - type: Transform - pos: 69.5,37.5 + pos: 49.5,13.5 parent: 2 - proto: ClosetToolFilled entities: - - uid: 5649 + - uid: 8593 components: - type: Transform - pos: 49.5,46.5 + pos: 64.5,36.5 parent: 2 - uid: 14734 components: - type: Transform pos: 9.5,15.5 parent: 2 -- proto: ClosetWallOrange +- proto: ClosetWallEmergencyFilledRandom entities: - - uid: 13620 + - uid: 6118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,37.5 + pos: 59.5,28.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 13621 - - uid: 13753 +- proto: ClosetWallEmergencyN2FilledRandom + entities: + - uid: 10396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,35.5 + pos: 60.5,28.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14550 - proto: ClothingBackpackClown entities: - uid: 9611 @@ -38592,7 +40583,7 @@ entities: - uid: 6421 components: - type: Transform - pos: 56.63094,-14.915291 + pos: 54.47244,-15.513644 parent: 2 - uid: 12219 components: @@ -38606,16 +40597,6 @@ entities: - type: Transform pos: 45.51781,-19.598537 parent: 2 - - uid: 6793 - components: - - type: Transform - pos: 53.3757,25.459305 - parent: 2 - - uid: 10291 - components: - - type: Transform - pos: 53.3757,25.646805 - parent: 2 - uid: 12167 components: - type: Transform @@ -38645,13 +40626,6 @@ entities: - type: Transform pos: 81.516914,11.673225 parent: 2 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 5522 - components: - - type: Transform - pos: 86.49675,1.6024053 - parent: 2 - proto: ClothingEyesGlassesThermal entities: - uid: 12673 @@ -38666,6 +40640,16 @@ entities: - type: Transform pos: 17.140316,-23.554987 parent: 2 + - uid: 12579 + components: + - type: Transform + pos: 48.401104,11.708703 + parent: 2 + - uid: 14681 + components: + - type: Transform + pos: 48.57298,11.521203 + parent: 2 - proto: ClothingEyesHudMedical entities: - uid: 11422 @@ -38706,19 +40690,33 @@ entities: - type: Transform pos: 50.47578,-20.56524 parent: 2 -- proto: ClothingHeadHatAnimalCat +- proto: ClothingHeadHatBeret entities: - - uid: 12652 + - uid: 15895 components: - type: Transform - pos: 69.48217,34.466385 + pos: 45.45172,7.652416 parent: 2 -- proto: ClothingHeadHatAnimalCatBrown +- proto: ClothingHeadHatBeretHoS entities: - - uid: 8933 + - uid: 13530 components: - type: Transform - pos: 62.47656,19.694616 + pos: 49.516834,41.650898 + parent: 2 +- proto: ClothingHeadHatBeretRND + entities: + - uid: 8266 + components: + - type: Transform + pos: 51.615715,26.772182 + parent: 2 +- proto: ClothingHeadHatBeretWarden + entities: + - uid: 15817 + components: + - type: Transform + pos: 40.178272,27.519924 parent: 2 - proto: ClothingHeadHatBunny entities: @@ -38727,6 +40725,20 @@ entities: - type: Transform pos: 58.54981,-24.623142 parent: 2 +- proto: ClothingHeadHatChef + entities: + - uid: 5386 + components: + - type: Transform + pos: 52.389153,40.87982 + parent: 2 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 8392 + components: + - type: Transform + pos: 69.3921,38.27177 + parent: 2 - proto: ClothingHeadHatFedoraGrey entities: - uid: 7557 @@ -38756,6 +40768,25 @@ entities: - type: Transform pos: 80.534454,-16.347055 parent: 2 + - uid: 11032 + components: + - type: Transform + pos: 62.767895,19.108147 + parent: 2 + - type: HandheldLight + toggleActionEntity: 11094 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 11094 + - type: ActionsContainer - proto: ClothingHeadHatHardhatRed entities: - uid: 5719 @@ -38790,13 +40821,6 @@ entities: - type: Transform pos: 7.4825606,-11.600726 parent: 2 -- proto: ClothingHeadHatSquid - entities: - - uid: 12671 - components: - - type: Transform - pos: 65.725685,11.307603 - parent: 2 - proto: ClothingHeadHatTophat entities: - uid: 2920 @@ -38823,13 +40847,6 @@ entities: - type: Transform pos: 74.46565,-6.1472054 parent: 2 -- proto: ClothingHeadHatWelding - entities: - - uid: 5377 - components: - - type: Transform - pos: 52.381424,11.673619 - parent: 2 - proto: ClothingHeadHatWitch1 entities: - uid: 6827 @@ -38837,18 +40854,52 @@ entities: - type: Transform pos: 83.46587,-12.720913 parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 9835 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9885 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13483 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13634 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadHelmetRiot entities: - - uid: 6197 + - uid: 15480 components: - type: Transform - pos: 38.899494,28.859161 - parent: 2 - - uid: 8427 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15574 components: - type: Transform - pos: 38.88387,28.616974 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadNurseHat entities: - uid: 12672 @@ -38856,13 +40907,6 @@ entities: - type: Transform pos: 59.51385,-3.3579187 parent: 2 -- proto: ClothingHeadsetMining - entities: - - uid: 2134 - components: - - type: Transform - pos: 5.5,31.5 - parent: 2 - proto: ClothingMaskBear entities: - uid: 8828 @@ -38903,11 +40947,6 @@ entities: - type: Transform pos: 27.626308,-29.560211 parent: 2 - - uid: 5343 - components: - - type: Transform - pos: 53.65695,25.740555 - parent: 2 - uid: 10799 components: - type: Transform @@ -38979,6 +41018,11 @@ entities: parent: 2 - proto: ClothingNeckStethoscope entities: + - uid: 3447 + components: + - type: Transform + pos: 66.53242,6.502817 + parent: 2 - uid: 5193 components: - type: Transform @@ -39008,76 +41052,54 @@ entities: - type: Transform pos: 17.68529,8.556451 parent: 2 -- proto: ClothingOuterArmorBasic - entities: - - uid: 8415 - components: - - type: Transform - pos: 39.219807,28.632599 - parent: 2 - - uid: 12089 - components: - - type: Transform - pos: 39.243244,28.859161 - parent: 2 - - uid: 13560 - components: - - type: Transform - pos: 39.22762,28.741974 - parent: 2 - proto: ClothingOuterArmorBulletproof entities: - - uid: 8421 + - uid: 15442 components: - type: Transform - pos: 38.305744,28.874786 - parent: 2 - - uid: 15460 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15459 components: - type: Transform - pos: 38.282307,28.593536 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorReflective + entities: + - uid: 15799 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15800 + components: + - type: Transform + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterArmorRiot entities: - - uid: 8414 + - uid: 15575 components: - type: Transform - pos: 38.57137,28.679474 - parent: 2 - - uid: 8424 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15634 components: - type: Transform - pos: 38.618244,28.835724 - parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterCoatJensen entities: - uid: 7560 @@ -39099,13 +41121,51 @@ entities: - type: Transform pos: 89.47711,-12.560792 parent: 2 -- proto: ClothingOuterCoatRobo +- proto: ClothingOuterHardsuitSecurity entities: - - uid: 1847 + - uid: 12294 components: - type: Transform - pos: 52.52299,8.566419 - parent: 2 + parent: 3183 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: This decreases your speed by [color=yellow]25%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]20%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]30%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]60%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12765 + components: + - type: Transform + parent: 12746 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterHospitalGown entities: - uid: 12499 @@ -39113,13 +41173,6 @@ entities: - type: Transform pos: 60.452034,-9.3230715 parent: 2 -- proto: ClothingOuterPonchoClassic - entities: - - uid: 14092 - components: - - type: Transform - pos: 70.51337,28.554468 - parent: 2 - proto: ClothingOuterSkub entities: - uid: 13075 @@ -39134,6 +41187,13 @@ entities: - type: Transform pos: 73.5,-12.5 parent: 2 +- proto: ClothingOuterVest + entities: + - uid: 15905 + components: + - type: Transform + pos: 36.3627,39.687344 + parent: 2 - proto: ClothingOuterVestHazard entities: - uid: 880 @@ -39146,24 +41206,36 @@ entities: - type: Transform pos: 11.523725,20.510695 parent: 2 -- proto: ClothingShoesBootsJack +- proto: ClothingOuterWinterRobo entities: - - uid: 3615 + - uid: 15896 components: - type: Transform - pos: 18.604328,5.443143 + pos: 45.671143,7.4380913 parent: 2 -- proto: ClothingShoesBootsMag +- proto: ClothingOuterWinterSci entities: - - uid: 10306 + - uid: 152 components: - type: Transform - pos: 8.40589,-8.309399 + pos: 51.50634,26.522182 parent: 2 - - uid: 10307 +- proto: ClothingShoesBootsMagSci + entities: + - uid: 3441 components: - type: Transform - pos: 8.56214,-8.481274 + pos: 8.394775,-8.212509 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: 8.582275,-8.415634 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: 8.37915,-8.650009 parent: 2 - proto: ClothingShoesFlippers entities: @@ -39185,24 +41257,13 @@ entities: - type: Transform pos: 74.43015,-5.8248997 parent: 2 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 5405 - components: - - type: Transform - pos: 62.48992,19.519245 - parent: 2 - proto: ClothingShoesSlippers entities: - uid: 5470 components: - type: Transform - pos: 70.5,40.5 - parent: 2 - - uid: 5471 - components: - - type: Transform - pos: 70.5,37.5 + rot: 6.283185307179586 rad + pos: 70.94915,39.768127 parent: 2 - proto: ClothingUnderSocksBee entities: @@ -39252,6 +41313,13 @@ entities: - type: Transform pos: 76.476616,-13.28976 parent: 2 +- proto: ClothingUniformJumpsuitColorRed + entities: + - uid: 15906 + components: + - type: Transform + pos: 36.753326,39.531094 + parent: 2 - proto: ClothingUniformJumpsuitCossack entities: - uid: 8826 @@ -39346,11 +41414,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,3.5 parent: 2 - - uid: 2408 - components: - - type: Transform - pos: 44.5,24.5 - parent: 2 - uid: 2527 components: - type: Transform @@ -39393,23 +41456,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,39.5 parent: 2 - - uid: 5423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,42.5 - parent: 2 - - uid: 5424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,40.5 - parent: 2 - - uid: 5425 - components: - - type: Transform - pos: 33.5,43.5 - parent: 2 - uid: 10273 components: - type: Transform @@ -39434,12 +41480,18 @@ entities: rot: -1.5707963267948966 rad pos: 107.5,-13.5 parent: 2 + - uid: 15811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-10.5 + parent: 2 - proto: CommandmentCircuitBoard entities: - uid: 14286 components: - type: Transform - pos: 86.43288,28.403772 + pos: 84.51508,32.740486 parent: 2 - proto: CommsComputerCircuitboard entities: @@ -39469,14 +41521,16 @@ entities: parent: 2 - proto: ComputerAnalysisConsole entities: - - uid: 152 + - uid: 5410 components: - type: Transform - pos: 64.5,25.5 + pos: 62.5,25.5 parent: 2 + - type: AnalysisConsole + analyzerEntity: 5444 - type: DeviceLinkSource linkedPorts: - 8666: + 5444: - - ArtifactAnalyzerSender - ArtifactAnalyzerReceiver - proto: ComputerAtmosMonitoring @@ -39500,17 +41554,24 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-11.5 parent: 2 + - uid: 10473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,8.5 + parent: 2 - uid: 11401 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-11.5 parent: 2 - - uid: 12110 +- proto: ComputerBroken + entities: + - uid: 9455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,8.5 + pos: 72.5,33.5 parent: 2 - proto: ComputerCargoBounty entities: @@ -39521,23 +41582,23 @@ entities: parent: 2 - proto: ComputerCargoOrders entities: + - uid: 4319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 - uid: 5285 components: - type: Transform pos: 20.5,23.5 parent: 2 - - uid: 7471 - components: - - type: Transform - pos: 7.5,19.5 - parent: 2 - proto: ComputerCargoOrdersEngineering entities: - - uid: 15480 + - uid: 2050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-36.5 + pos: 20.5,-23.5 parent: 2 - proto: ComputerCargoOrdersMedical entities: @@ -39556,10 +41617,11 @@ entities: parent: 2 - proto: ComputerCargoOrdersSecurity entities: - - uid: 10290 + - uid: 5528 components: - type: Transform - pos: 35.5,28.5 + rot: 3.141592653589793 rad + pos: 39.5,24.5 parent: 2 - proto: ComputerCargoOrdersService entities: @@ -39584,17 +41646,17 @@ entities: parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 2468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,17.5 - parent: 2 - uid: 7925 components: - type: Transform pos: 31.5,48.5 parent: 2 + - uid: 8475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,25.5 + parent: 2 - uid: 9617 components: - type: Transform @@ -39625,28 +41687,30 @@ entities: parent: 2 - proto: ComputerCriminalRecords entities: + - uid: 2222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,24.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,39.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,23.5 + parent: 2 - uid: 7981 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 2 - - uid: 8431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,17.5 - parent: 2 - - uid: 12083 - components: - - type: Transform - pos: 29.5,26.5 - parent: 2 - - uid: 12090 - components: - - type: Transform - pos: 45.5,25.5 - parent: 2 - proto: ComputerFundingAllocation entities: - uid: 10270 @@ -39656,17 +41720,17 @@ entities: parent: 2 - proto: ComputerId entities: - - uid: 401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,39.5 - parent: 2 - uid: 4988 components: - type: Transform pos: 26.5,48.5 parent: 2 + - uid: 7678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,39.5 + parent: 2 - uid: 10275 components: - type: Transform @@ -39712,11 +41776,11 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,45.5 parent: 2 - - uid: 6898 + - uid: 12232 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-13.5 + pos: 15.5,-12.5 parent: 2 - uid: 13433 components: @@ -39738,79 +41802,96 @@ entities: parent: 2 - proto: ComputerResearchAndDevelopment entities: - - uid: 5304 + - uid: 5375 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 5376 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,17.5 + pos: 49.5,8.5 parent: 2 - - uid: 5390 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 6474 - components: - - type: Transform - pos: 50.5,25.5 - parent: 2 - - uid: 10666 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 10387 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,8.5 + pos: 51.5,23.5 parent: 2 + - uid: 15620 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ComputerRoboticsControl entities: - - uid: 5652 + - uid: 5330 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,8.5 + rot: 1.5707963267948966 rad + pos: 60.5,11.5 parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 705 + - uid: 7885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,30.5 + rot: 1.5707963267948966 rad + pos: 5.5,31.5 parent: 2 - proto: ComputerSalvageJobBoard entities: - - uid: 6796 + - uid: 7471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,30.5 + rot: 1.5707963267948966 rad + pos: 5.5,32.5 parent: 2 - proto: ComputerShuttleCargo entities: + - uid: 3560 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 - uid: 7879 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,25.5 parent: 2 - - uid: 14770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 2 - proto: ComputerSolarControl entities: + - uid: 2126 + components: + - type: Transform + pos: 71.5,46.5 + parent: 2 - uid: 4305 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-36.5 parent: 2 - - uid: 5639 - components: - - type: Transform - pos: 70.5,46.5 - parent: 2 - uid: 11749 components: - type: Transform @@ -39818,11 +41899,11 @@ entities: parent: 2 - proto: ComputerStationRecords entities: - - uid: 2145 + - uid: 5966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,17.5 + rot: 3.141592653589793 rad + pos: 37.5,24.5 parent: 2 - uid: 8315 components: @@ -39843,29 +41924,29 @@ entities: parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 2469 + - uid: 183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,17.5 + rot: 1.5707963267948966 rad + pos: 36.5,26.5 parent: 2 - uid: 8346 components: - type: Transform pos: 24.5,48.5 parent: 2 - - uid: 12082 + - uid: 15803 components: - type: Transform - pos: 30.5,26.5 + rot: 3.141592653589793 rad + pos: -0.5,-5.5 parent: 2 - proto: ComputerTelevision entities: - - uid: 8498 + - uid: 3276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,18.5 + pos: 52.5,33.5 parent: 2 - proto: ContainmentFieldGenerator entities: @@ -39920,86 +42001,75 @@ entities: parent: 2 - proto: ConveyorBelt entities: + - uid: 258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,27.5 + parent: 2 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 2 - uid: 450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,35.5 + rot: -1.5707963267948966 rad + pos: 3.5,27.5 parent: 2 - uid: 944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,38.5 + pos: 7.5,36.5 parent: 2 - uid: 967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,34.5 + pos: 7.5,37.5 parent: 2 - uid: 999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,36.5 + pos: 7.5,38.5 parent: 2 - - uid: 2037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,27.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 2040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,23.5 - parent: 2 - - uid: 2041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,27.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - uid: 2042 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,27.5 + pos: 8.5,34.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - uid: 2051 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,23.5 + pos: 6.5,27.5 parent: 2 - uid: 2064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,27.5 + pos: 7.5,23.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 2066 + - uid: 4321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 2 - - uid: 2067 - components: - - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 6.5,23.5 parent: 2 + - uid: 5467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,23.5 + parent: 2 - uid: 5842 components: - type: Transform @@ -40063,38 +42133,59 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 - - uid: 8239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 - parent: 2 - - uid: 12384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,34.5 - parent: 2 - - uid: 13731 + - uid: 7972 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,27.5 + pos: 5.5,23.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 14660 + - uid: 8239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,37.5 + rot: 1.5707963267948966 rad + pos: 3.5,23.5 parent: 2 + - uid: 8327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,34.5 + parent: 2 + - uid: 9342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,38.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11473 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,34.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 15156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,38.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: CorporateCircuitBoard entities: - uid: 14278 components: - type: Transform - pos: 84.53704,28.653946 + pos: 84.49589,28.755344 parent: 2 - proto: CowToolboxFilled entities: @@ -40105,10 +42196,10 @@ entities: parent: 2 - proto: CrateArtifactContainer entities: - - uid: 10439 + - uid: 5638 components: - type: Transform - pos: 62.5,22.5 + pos: 60.5,25.5 parent: 2 - proto: CrateCoffin entities: @@ -40117,6 +42208,16 @@ entities: - type: Transform pos: 38.5,3.5 parent: 2 +- proto: CrateContrabandStorageSecure + entities: + - uid: 14630 + components: + - type: Transform + anchored: True + pos: 43.5,36.5 + parent: 2 + - type: Physics + bodyType: Static - proto: CrateEmptySpawner entities: - uid: 8167 @@ -40153,33 +42254,46 @@ entities: - type: Transform pos: 28.5,-40.5 parent: 2 - - type: Pullable - prevFixedRotation: True -- proto: CrateEngineeringCableBulk - entities: - - uid: 782 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True - ents: [] - labelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null + ents: + - 15330 + - 15329 + - 15328 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage + - type: Pullable + prevFixedRotation: True +- proto: CrateEngineeringCableBulk + entities: + - uid: 3520 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 - uid: 5526 components: - type: Transform @@ -40205,23 +42319,11 @@ entities: - entity_storage - proto: CrateEngineeringCableLV entities: - - uid: 2223 - components: - - type: Transform - pos: 49.5,28.5 - parent: 2 - uid: 12353 components: - type: Transform pos: 5.5,-8.5 parent: 2 -- proto: CrateEngineeringCableMV - entities: - - uid: 5686 - components: - - type: Transform - pos: 10.5,-31.5 - parent: 2 - proto: CrateEngineeringSecure entities: - uid: 5625 @@ -40262,6 +42364,13 @@ entities: showEnts: False occludes: True ent: null +- proto: CrateEngineeringSolar + entities: + - uid: 8466 + components: + - type: Transform + pos: 69.5,46.5 + parent: 2 - proto: CrateFilledSpawner entities: - uid: 6861 @@ -40289,11 +42398,6 @@ entities: - type: Transform pos: 11.5,30.5 parent: 2 - - uid: 11164 - components: - - type: Transform - pos: 13.5,31.5 - parent: 2 - uid: 14775 components: - type: Transform @@ -40380,17 +42484,10 @@ entities: parent: 2 - proto: CrateLockBoxScience entities: - - uid: 15487 + - uid: 12292 components: - type: Transform - pos: 58.5,8.5 - parent: 2 -- proto: CrateLockBoxSecurity - entities: - - uid: 15488 - components: - - type: Transform - pos: 32.5,19.5 + pos: 58.5,11.5 parent: 2 - proto: CrateLockBoxService entities: @@ -40406,16 +42503,18 @@ entities: parent: 2 - proto: CrateMaterialSteel entities: - - uid: 5687 - components: - - type: Transform - pos: 11.5,-31.5 - parent: 2 - uid: 13043 components: - type: Transform pos: 33.5,-52.5 parent: 2 +- proto: CrateMaterialTextiles + entities: + - uid: 4320 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 - proto: CrateMedicalSurgery entities: - uid: 5086 @@ -40453,16 +42552,21 @@ entities: parent: 2 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 8416 + - uid: 14832 components: - type: Transform anchored: True - pos: 41.5,28.5 + pos: 40.5,36.5 parent: 2 - type: Physics bodyType: Static - proto: CrateTrashCart entities: + - uid: 5514 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 - uid: 13122 components: - type: Transform @@ -40478,6 +42582,13 @@ entities: - type: Transform pos: 19.5,26.5 parent: 2 +- proto: CrateTrashCartFilled + entities: + - uid: 6230 + components: + - type: Transform + pos: 54.539806,50.545746 + parent: 2 - proto: CrateTrashCartJani entities: - uid: 12906 @@ -40502,11 +42613,6 @@ entities: - type: Transform pos: 30.486448,7.511799 parent: 2 - - uid: 13631 - components: - - type: Transform - pos: 55.5,31.5 - parent: 2 - proto: CrayonRainbow entities: - uid: 12700 @@ -40542,14 +42648,11 @@ entities: - 0 - proto: CrewMonitoringServer entities: - - uid: 8231 + - uid: 15498 components: - type: Transform - pos: 51.5,25.5 + pos: 15.5,-17.5 parent: 2 - - type: SingletonDeviceNetServer - active: False - available: False - proto: Crowbar entities: - uid: 686 @@ -40562,21 +42665,11 @@ entities: - type: Transform pos: 32.504723,-30.433409 parent: 2 - - uid: 5326 - components: - - type: Transform - pos: 55.436665,17.567713 - parent: 2 - uid: 5713 components: - type: Transform pos: 77.53034,-13.472758 parent: 2 - - uid: 8688 - components: - - type: Transform - pos: 32.5021,27.416605 - parent: 2 - uid: 11129 components: - type: Transform @@ -40584,30 +42677,37 @@ entities: parent: 2 - proto: CrowbarRed entities: - - uid: 2153 + - uid: 13431 components: - type: Transform - pos: 38.497105,19.578838 - parent: 2 + parent: 13141 + - type: Physics + canCollide: False - proto: CryogenicSleepUnit entities: - - uid: 3187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,32.5 - parent: 2 - uid: 6934 components: - type: Transform pos: 22.5,17.5 parent: 2 + - uid: 12049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 2 - uid: 13171 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,42.5 parent: 2 + - uid: 14869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,18.5 + parent: 2 - proto: CryogenicSleepUnitSpawner entities: - uid: 6935 @@ -40647,6 +42747,18 @@ entities: - type: Transform pos: 61.483326,-0.38000047 parent: 2 +- proto: CurtainsBlue + entities: + - uid: 379 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 - proto: CurtainsOrangeOpen entities: - uid: 6924 @@ -40661,6 +42773,29 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,15.5 parent: 2 +- proto: CurtainsPurpleOpen + entities: + - uid: 10849 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 +- proto: CurtainsRedOpen + entities: + - uid: 3206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,43.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: 59.5,39.5 + parent: 2 + - type: Door + secondsUntilStateChange: -7927.499 + state: Closing - proto: d6Dice entities: - uid: 316 @@ -40669,22 +42804,6 @@ entities: rot: 3.141592653589793 rad pos: 11.493689,4.5440345 parent: 2 - - uid: 5505 - components: - - type: Transform - pos: 70.363464,33.795147 - parent: 2 - - uid: 5506 - components: - - type: Transform - pos: 70.69159,33.810772 - parent: 2 - - uid: 5517 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.50039,33.577915 - parent: 2 - proto: DefaultStationBeaconAICore entities: - uid: 14515 @@ -40701,17 +42820,10 @@ entities: parent: 2 - proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 12378 + - uid: 8139 components: - type: Transform - pos: 68.5,14.5 - parent: 2 -- proto: DefaultStationBeaconArmory - entities: - - uid: 12371 - components: - - type: Transform - pos: 40.5,27.5 + pos: 68.5,15.5 parent: 2 - proto: DefaultStationBeaconArrivals entities: @@ -40722,10 +42834,10 @@ entities: parent: 2 - proto: DefaultStationBeaconArtifactLab entities: - - uid: 12367 + - uid: 4362 components: - type: Transform - pos: 62.5,25.5 + pos: 61.5,25.5 parent: 2 - proto: DefaultStationBeaconAtmospherics entities: @@ -40755,13 +42867,6 @@ entities: - type: Transform pos: 26.5,45.5 parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 12365 - components: - - type: Transform - pos: 32.5,23.5 - parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 12385 @@ -40834,10 +42939,10 @@ entities: parent: 2 - proto: DefaultStationBeaconDetectiveRoom entities: - - uid: 12851 + - uid: 5749 components: - type: Transform - pos: 42.5,18.5 + pos: 55.5,35.5 parent: 2 - proto: DefaultStationBeaconDisposals entities: @@ -40846,22 +42951,26 @@ entities: - type: Transform pos: 0.5,-30.5 parent: 2 -- proto: DefaultStationBeaconEscapePod +- proto: DefaultStationBeaconEscapePodE entities: - - uid: 13729 + - uid: 2949 components: - type: Transform - pos: 86.5,4.5 + pos: 88.5,4.5 parent: 2 - - uid: 14796 +- proto: DefaultStationBeaconEscapePodNE + entities: + - uid: 5391 components: - type: Transform - pos: 74.5,-18.5 + pos: 66.5,47.5 parent: 2 - - uid: 15454 +- proto: DefaultStationBeaconEscapePodSE + entities: + - uid: 3868 components: - type: Transform - pos: 40.5,44.5 + pos: 74.5,-19.5 parent: 2 - proto: DefaultStationBeaconEvac entities: @@ -40884,13 +42993,6 @@ entities: - type: Transform pos: 17.5,-4.5 parent: 2 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 13132 - components: - - type: Transform - pos: 43.5,22.5 - parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - uid: 13133 @@ -40926,13 +43028,6 @@ entities: - type: Transform pos: 70.5,-3.5 parent: 2 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 13518 - components: - - type: Transform - pos: 56.5,36.5 - parent: 2 - proto: DefaultStationBeaconPowerBank entities: - uid: 13139 @@ -40949,10 +43044,10 @@ entities: parent: 2 - proto: DefaultStationBeaconRDRoom entities: - - uid: 13141 + - uid: 15625 components: - type: Transform - pos: 60.5,9.5 + pos: 62.5,11.5 parent: 2 - proto: DefaultStationBeaconRND entities: @@ -40963,10 +43058,10 @@ entities: parent: 2 - proto: DefaultStationBeaconRobotics entities: - - uid: 13169 + - uid: 3486 components: - type: Transform - pos: 51.5,10.5 + pos: 49.5,9.5 parent: 2 - proto: DefaultStationBeaconSalvage entities: @@ -40977,11 +43072,6 @@ entities: parent: 2 - proto: DefaultStationBeaconServerRoom entities: - - uid: 2288 - components: - - type: Transform - pos: 31.5,36.5 - parent: 2 - uid: 13172 components: - type: Transform @@ -40994,14 +43084,16 @@ entities: - type: Transform pos: 21.5,-38.5 parent: 2 -- proto: DefaultStationBeaconSolars +- proto: DefaultStationBeaconSolarsNE entities: - - uid: 13178 + - uid: 9624 components: - type: Transform pos: 70.5,45.5 parent: 2 - - uid: 13179 +- proto: DefaultStationBeaconSolarsSW + entities: + - uid: 12825 components: - type: Transform pos: 3.5,-35.5 @@ -41022,10 +43114,10 @@ entities: parent: 2 - proto: DefaultStationBeaconTelecoms entities: - - uid: 13173 + - uid: 5827 components: - type: Transform - pos: 15.5,-17.5 + pos: 15.5,-16.5 parent: 2 - proto: DefaultStationBeaconToolRoom entities: @@ -41041,13 +43133,6 @@ entities: - type: Transform pos: 18.5,41.5 parent: 2 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 13177 - components: - - type: Transform - pos: 38.5,22.5 - parent: 2 - proto: Defibrillator entities: - uid: 11416 @@ -41057,6 +43142,12 @@ entities: parent: 2 - proto: DefibrillatorCabinetFilled entities: + - uid: 2283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,28.5 + parent: 2 - uid: 9627 components: - type: Transform @@ -41080,15 +43171,20 @@ entities: parent: 2 - proto: DeployableBarrier entities: - - uid: 8519 + - uid: 2208 components: - type: Transform - pos: 36.5,24.5 + pos: 32.5,31.5 parent: 2 - - uid: 9602 + - uid: 2223 components: - type: Transform - pos: 36.5,23.5 + pos: 33.5,31.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + pos: 34.5,31.5 parent: 2 - proto: DeskBell entities: @@ -41114,20 +43210,20 @@ entities: - type: Transform pos: 82.5,-7.5 parent: 2 -- proto: DiseaseSwab - entities: - - uid: 13754 - components: - - type: Transform - pos: 56.618065,41.538536 - parent: 2 - - uid: 13755 - components: - - type: Transform - pos: 56.451397,41.674046 - parent: 2 - proto: DisposalBend entities: + - uid: 616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-23.5 + parent: 2 - uid: 1228 components: - type: Transform @@ -41139,11 +43235,17 @@ entities: rot: 3.141592653589793 rad pos: 4.5,10.5 parent: 2 - - uid: 3251 + - uid: 3235 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,23.5 + pos: 54.5,11.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,35.5 parent: 2 - uid: 5777 components: @@ -41174,18 +43276,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-28.5 parent: 2 - - uid: 5820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 2 - - uid: 5821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 2 - uid: 5822 components: - type: Transform @@ -41216,6 +43306,12 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-30.5 parent: 2 + - uid: 6473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,18.5 + parent: 2 - uid: 7289 components: - type: Transform @@ -41309,47 +43405,23 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,13.5 parent: 2 + - uid: 8473 + components: + - type: Transform + pos: 28.5,44.5 + parent: 2 - uid: 8927 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-9.5 parent: 2 - - uid: 9401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,42.5 - parent: 2 - - uid: 9402 - components: - - type: Transform - pos: 32.5,45.5 - parent: 2 - - uid: 9403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,45.5 - parent: 2 - uid: 9432 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,35.5 parent: 2 - - uid: 9433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,34.5 - parent: 2 - - uid: 9434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,35.5 - parent: 2 - uid: 10255 components: - type: Transform @@ -41362,28 +43434,11 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-3.5 parent: 2 - - uid: 10586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,11.5 - parent: 2 - - uid: 10598 + - uid: 10543 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,14.5 - parent: 2 - - uid: 10599 - components: - - type: Transform - pos: 58.5,22.5 - parent: 2 - - uid: 10602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,18.5 + pos: 33.5,28.5 parent: 2 - uid: 10622 components: @@ -41391,6 +43446,12 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,14.5 parent: 2 + - uid: 10964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,30.5 + parent: 2 - uid: 11435 components: - type: Transform @@ -41442,23 +43503,30 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,23.5 parent: 2 - - uid: 13583 - components: - - type: Transform - pos: 33.5,31.5 - parent: 2 - uid: 14178 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,23.5 parent: 2 + - uid: 14553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,14.5 + parent: 2 - uid: 15041 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-6.5 parent: 2 + - uid: 15612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 - proto: DisposalJunction entities: - uid: 2422 @@ -41503,22 +43571,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,0.5 parent: 2 - - uid: 9411 - components: - - type: Transform - pos: 28.5,44.5 - parent: 2 - - uid: 9435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,34.5 - parent: 2 - - uid: 10600 - components: - - type: Transform - pos: 58.5,18.5 - parent: 2 - uid: 11456 components: - type: Transform @@ -41533,10 +43585,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-0.5 parent: 2 - - uid: 5141 + - uid: 3669 components: - type: Transform - pos: 26.5,23.5 + rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: 28.5,37.5 parent: 2 - uid: 5142 components: @@ -41544,6 +43602,23 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,0.5 parent: 2 + - uid: 5473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,30.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,13.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 - uid: 7290 components: - type: Transform @@ -41567,12 +43642,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-0.5 parent: 2 - - uid: 10601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,14.5 - parent: 2 - uid: 11436 components: - type: Transform @@ -41592,6 +43661,12 @@ entities: rot: 3.141592653589793 rad pos: 26.5,16.5 parent: 2 + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,15.5 + parent: 2 - uid: 256 components: - type: Transform @@ -41610,24 +43685,29 @@ entities: rot: 3.141592653589793 rad pos: 26.5,18.5 parent: 2 + - uid: 533 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 - uid: 584 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-24.5 parent: 2 + - uid: 1173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 2 - uid: 2118 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,13.5 parent: 2 - - uid: 2133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,23.5 - parent: 2 - uid: 2314 components: - type: Transform @@ -41640,6 +43720,41 @@ entities: rot: 3.141592653589793 rad pos: 4.5,12.5 parent: 2 + - uid: 3410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,14.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,28.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 - uid: 5534 components: - type: Transform @@ -41870,18 +43985,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-23.5 parent: 2 - - uid: 5826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-23.5 - parent: 2 - - uid: 5827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-22.5 - parent: 2 - uid: 5830 components: - type: Transform @@ -41942,23 +44045,71 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-29.5 parent: 2 - - uid: 6848 + - uid: 6006 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,23.5 + pos: 53.5,11.5 parent: 2 - - uid: 6849 + - uid: 6128 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,23.5 + pos: 55.5,14.5 parent: 2 - - uid: 6850 + - uid: 6139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,17.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,16.5 + parent: 2 + - uid: 6328 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,23.5 + pos: 58.5,14.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,14.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,14.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,14.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,28.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,14.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,28.5 parent: 2 - uid: 6877 components: @@ -41999,6 +44150,12 @@ entities: - type: Transform pos: 14.5,20.5 parent: 2 + - uid: 6991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 - uid: 7291 components: - type: Transform @@ -42463,24 +44620,12 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-0.5 parent: 2 - - uid: 7457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - uid: 7458 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,19.5 parent: 2 - - uid: 7459 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,23.5 - parent: 2 - uid: 7473 components: - type: Transform @@ -42594,10 +44739,11 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-0.5 parent: 2 - - uid: 7946 + - uid: 7718 components: - type: Transform - pos: 33.5,29.5 + rot: -1.5707963267948966 rad + pos: 35.5,30.5 parent: 2 - uid: 8270 components: @@ -42644,11 +44790,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 - - uid: 8496 - components: - - type: Transform - pos: 33.5,30.5 - parent: 2 - uid: 8928 components: - type: Transform @@ -42703,39 +44844,11 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-8.5 parent: 2 - - uid: 9405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,42.5 - parent: 2 - - uid: 9406 - components: - - type: Transform - pos: 32.5,43.5 - parent: 2 - - uid: 9407 - components: - - type: Transform - pos: 32.5,44.5 - parent: 2 - - uid: 9408 + - uid: 9145 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,45.5 - parent: 2 - - uid: 9409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,45.5 - parent: 2 - - uid: 9410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,45.5 + pos: 34.5,30.5 parent: 2 - uid: 9412 components: @@ -42767,11 +44880,6 @@ entities: - type: Transform pos: 28.5,38.5 parent: 2 - - uid: 9418 - components: - - type: Transform - pos: 28.5,37.5 - parent: 2 - uid: 9419 components: - type: Transform @@ -42797,11 +44905,6 @@ entities: - type: Transform pos: 26.5,27.5 parent: 2 - - uid: 9425 - components: - - type: Transform - pos: 26.5,28.5 - parent: 2 - uid: 9426 components: - type: Transform @@ -42890,143 +44993,22 @@ entities: - type: Transform pos: 12.5,-0.5 parent: 2 - - uid: 10587 + - uid: 10358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,28.5 + parent: 2 + - uid: 10448 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,12.5 parent: 2 - - uid: 10588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,13.5 - parent: 2 - - uid: 10589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,21.5 - parent: 2 - uid: 10590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,20.5 - parent: 2 - - uid: 10591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,19.5 - parent: 2 - - uid: 10592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,17.5 - parent: 2 - - uid: 10593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,16.5 - parent: 2 - - uid: 10594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,15.5 - parent: 2 - - uid: 10595 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - - uid: 10596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,14.5 - parent: 2 - - uid: 10597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,14.5 - parent: 2 - - uid: 10603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,18.5 - parent: 2 - - uid: 10604 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,18.5 - parent: 2 - - uid: 10605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,18.5 - parent: 2 - - uid: 10606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,18.5 - parent: 2 - - uid: 10607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - - uid: 10608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,18.5 - parent: 2 - - uid: 10609 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,18.5 - parent: 2 - - uid: 10610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,14.5 - parent: 2 - - uid: 10611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,14.5 - parent: 2 - - uid: 10612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,14.5 - parent: 2 - - uid: 10613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,14.5 - parent: 2 - - uid: 10614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,14.5 + pos: 38.5,30.5 parent: 2 - uid: 10615 components: @@ -43130,6 +45112,12 @@ entities: - type: Transform pos: 41.5,2.5 parent: 2 + - uid: 10895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,30.5 + parent: 2 - uid: 11441 components: - type: Transform @@ -43483,6 +45471,18 @@ entities: - type: Transform pos: 27.5,1.5 parent: 2 + - uid: 12557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 2 + - uid: 12671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,30.5 + parent: 2 - uid: 12837 components: - type: Transform @@ -43493,30 +45493,11 @@ entities: - type: Transform pos: 26.5,-26.5 parent: 2 - - uid: 13586 + - uid: 13114 components: - type: Transform - pos: 33.5,28.5 - parent: 2 - - uid: 13587 - components: - - type: Transform - pos: 33.5,27.5 - parent: 2 - - uid: 13588 - components: - - type: Transform - pos: 33.5,26.5 - parent: 2 - - uid: 13589 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 13590 - components: - - type: Transform - pos: 33.5,24.5 + rot: -1.5707963267948966 rad + pos: 27.5,28.5 parent: 2 - uid: 14130 components: @@ -43602,20 +45583,113 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-5.5 parent: 2 -- proto: DisposalTrunk - entities: - - uid: 183 + - uid: 15596 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,22.5 + pos: 40.5,30.5 parent: 2 - - uid: 184 + - uid: 15597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - uid: 15598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,30.5 + parent: 2 + - uid: 15599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,30.5 + parent: 2 + - uid: 15600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,30.5 + parent: 2 + - uid: 15601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,30.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,30.5 + parent: 2 + - uid: 15603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,30.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 + - uid: 15605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,30.5 + parent: 2 + - uid: 15606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,30.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,30.5 + parent: 2 + - uid: 15608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 + - uid: 15609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 15870 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,17.5 + pos: 37.5,29.5 parent: 2 +- proto: DisposalTrunk + entities: - uid: 358 components: - type: Transform @@ -43627,6 +45701,12 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-10.5 parent: 2 + - uid: 2279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,37.5 + parent: 2 - uid: 2320 components: - type: Transform @@ -43664,12 +45744,6 @@ entities: - type: Transform pos: 22.5,15.5 parent: 2 - - uid: 6008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,42.5 - parent: 2 - uid: 7288 components: - type: Transform @@ -43694,6 +45768,12 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-2.5 parent: 2 + - uid: 7688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,18.5 + parent: 2 - uid: 8849 components: - type: Transform @@ -43706,22 +45786,16 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,44.5 parent: 2 - - uid: 9420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,34.5 - parent: 2 - uid: 10254 components: - type: Transform pos: 20.5,-2.5 parent: 2 - - uid: 10585 + - uid: 10586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,11.5 + rot: 1.5707963267948966 rad + pos: 53.5,13.5 parent: 2 - uid: 11434 components: @@ -43746,16 +45820,21 @@ entities: rot: -1.5707963267948966 rad pos: 81.5,1.5 parent: 2 + - uid: 11660 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 - uid: 12479 components: - type: Transform pos: 27.5,3.5 parent: 2 - - uid: 13581 + - uid: 12911 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,31.5 + pos: 52.5,11.5 parent: 2 - uid: 14126 components: @@ -43774,6 +45853,12 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-6.5 parent: 2 + - uid: 15883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,28.5 + parent: 2 - proto: DisposalUnit entities: - uid: 374 @@ -43801,6 +45886,11 @@ entities: - type: Transform pos: 34.5,-10.5 parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 - uid: 1321 components: - type: Transform @@ -43846,21 +45936,6 @@ entities: - type: Transform pos: 82.5,-3.5 parent: 2 - - uid: 5341 - components: - - type: Transform - pos: 57.5,22.5 - parent: 2 - - uid: 5392 - components: - - type: Transform - pos: 55.5,11.5 - parent: 2 - - uid: 5411 - components: - - type: Transform - pos: 30.5,42.5 - parent: 2 - uid: 6427 components: - type: Transform @@ -43876,15 +45951,20 @@ entities: - type: Transform pos: 41.5,-1.5 parent: 2 + - uid: 7595 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 - uid: 8361 components: - type: Transform pos: 27.5,-25.5 parent: 2 - - uid: 8435 + - uid: 8480 components: - type: Transform - pos: 32.5,31.5 + pos: 60.5,18.5 parent: 2 - uid: 8848 components: @@ -43896,26 +45976,31 @@ entities: - type: Transform pos: 100.5,-10.5 parent: 2 - - uid: 9431 + - uid: 9268 components: - type: Transform - pos: 28.5,34.5 + pos: 29.5,37.5 parent: 2 - uid: 10069 components: - type: Transform pos: 54.5,-9.5 parent: 2 - - uid: 10118 - components: - - type: Transform - pos: 50.5,17.5 - parent: 2 - uid: 10253 components: - type: Transform pos: 20.5,-2.5 parent: 2 + - uid: 10406 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 10475 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 - uid: 11433 components: - type: Transform @@ -43984,10 +46069,10 @@ entities: parent: 2 - proto: DogBed entities: - - uid: 8393 + - uid: 1748 components: - type: Transform - pos: 36.5,19.5 + pos: 40.5,27.5 parent: 2 - uid: 9716 components: @@ -44009,6 +46094,16 @@ entities: - type: Transform pos: 5.5,15.5 parent: 2 + - uid: 15373 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 - proto: DonkpocketBoxSpawner entities: - uid: 11431 @@ -44033,19 +46128,12 @@ entities: - type: Transform pos: 9.474669,-14.422774 parent: 2 -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 5530 - components: - - type: Transform - pos: 74.515,18.613554 - parent: 2 - proto: DresserCaptainFilled entities: - - uid: 10279 + - uid: 13583 components: - type: Transform - pos: 37.5,40.5 + pos: 35.5,41.5 parent: 2 - proto: DresserChiefEngineerFilled entities: @@ -44094,10 +46182,10 @@ entities: - 544 - proto: DresserHeadOfSecurityFilled entities: - - uid: 386 + - uid: 8427 components: - type: Transform - pos: 45.5,22.5 + pos: 42.5,43.5 parent: 2 - proto: DresserQuarterMasterFilled entities: @@ -44108,29 +46196,40 @@ entities: parent: 2 - proto: DresserResearchDirectorFilled entities: - - uid: 565 + - uid: 15624 components: - type: Transform - pos: 60.5,11.5 + pos: 61.5,8.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 3672 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 +- proto: DrinkBottleBeer + entities: + - uid: 1287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.534847,-13.435519 + parent: 2 +- proto: DrinkBottleVodka + entities: + - uid: 10450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.11051,49.81447 parent: 2 - - type: Storage - storedItems: - 4300: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 4300 - proto: DrinkFlask entities: - - uid: 9223 + - uid: 9410 components: - type: Transform - pos: 37.68926,43.584465 + pos: 35.652603,43.65095 parent: 2 - proto: DrinkFlaskBar entities: @@ -44139,6 +46238,13 @@ entities: - type: Transform pos: 63.594597,-16.258825 parent: 2 +- proto: DrinkGinBottleFull + entities: + - uid: 8797 + components: + - type: Transform + pos: 48.41424,42.191265 + parent: 2 - proto: DrinkGlass entities: - uid: 8129 @@ -44165,24 +46271,17 @@ entities: parent: 2 - proto: DrinkHotCoco entities: - - uid: 5451 + - uid: 8452 components: - type: Transform - pos: 71.508354,37.570084 + pos: 69.67335,38.49052 parent: 2 -- proto: DrinkHotCoffee +- proto: DrinkMopwataBottleRandom entities: - - uid: 15374 + - uid: 15667 components: - type: Transform - pos: 34.080093,17.48581 - parent: 2 -- proto: DrinkLemonadeGlass - entities: - - uid: 5452 - components: - - type: Transform - pos: 71.477104,40.663834 + pos: 63.602173,38.82123 parent: 2 - proto: DrinkMugBlack entities: @@ -44205,21 +46304,28 @@ entities: parent: 2 - proto: DrinkMugMetal entities: - - uid: 14600 + - uid: 2463 components: - type: Transform - pos: 55.15004,41.505497 + pos: 35.44559,18.47621 parent: 2 - - uid: 14663 + - uid: 8442 components: - type: Transform - pos: 5.063261,40.729393 + pos: 35.66434,18.710585 parent: 2 - uid: 15303 components: - type: Transform pos: 38.59038,-29.278873 parent: 2 +- proto: DrinkMugMoebius + entities: + - uid: 11893 + components: + - type: Transform + pos: 71.55619,33.63624 + parent: 2 - proto: DrinkMugOne entities: - uid: 12405 @@ -44227,6 +46333,11 @@ entities: - type: Transform pos: 78.602234,4.557168 parent: 2 + - uid: 13501 + components: + - type: Transform + pos: 32.628296,41.841526 + parent: 2 - uid: 14567 components: - type: Transform @@ -44251,6 +46362,43 @@ entities: - type: Transform pos: 67.47043,-15.094364 parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 2221 + components: + - type: Transform + pos: 48.53924,41.628765 + parent: 2 + - uid: 3084 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 58.69356,39.47997 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 48.75799,41.816265 + parent: 2 + - uid: 10684 + components: + - type: Transform + pos: 58.66231,39.714344 + parent: 2 +- proto: DrinkVodkaBottleFull + entities: + - uid: 3216 + components: + - type: Transform + pos: 49.20426,50.03322 + parent: 2 +- proto: DrinkVodkaGlass + entities: + - uid: 7584 + components: + - type: Transform + pos: 48.675804,44.565666 + parent: 2 - proto: DrinkWaterCup entities: - uid: 5644 @@ -44290,6 +46438,12 @@ entities: parent: 2 - proto: DrinkWhiskeyBottleFull entities: + - uid: 2458 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 58.302937,39.745594 + parent: 2 - uid: 5680 components: - type: Transform @@ -44300,15 +46454,18 @@ entities: - type: Transform pos: 57.63163,-13.7188425 parent: 2 -- proto: ElectricGuitarInstrument +- proto: Dropper entities: - - uid: 14550 + - uid: 10885 components: - type: Transform - parent: 13753 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 63.395325,25.383368 + parent: 2 + - uid: 13541 + components: + - type: Transform + pos: 71.575096,30.73986 + parent: 2 - proto: EmergencyLight entities: - uid: 323 @@ -44323,6 +46480,12 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-14.5 parent: 2 + - uid: 2294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,47.5 + parent: 2 - uid: 3215 components: - type: Transform @@ -44335,19 +46498,56 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-36.5 parent: 2 + - uid: 5334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,21.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,32.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 - uid: 8408 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,8.5 parent: 2 - - uid: 11333 + - uid: 8478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,33.5 + rot: 3.141592653589793 rad + pos: 50.5,30.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,35.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + pos: 80.5,31.5 + parent: 2 + - uid: 10600 + components: + - type: Transform + pos: 39.5,31.5 parent: 2 - - type: ActiveEmergencyLight - uid: 12375 components: - type: Transform @@ -44367,13 +46567,6 @@ entities: pos: 16.5,-33.5 parent: 2 - type: ActiveEmergencyLight - - uid: 12379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,25.5 - parent: 2 - - type: ActiveEmergencyLight - uid: 12380 components: - type: Transform @@ -44381,24 +46574,12 @@ entities: pos: 25.5,44.5 parent: 2 - type: ActiveEmergencyLight - - uid: 12383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,18.5 - parent: 2 - - type: ActiveEmergencyLight - uid: 14641 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,22.5 parent: 2 - - uid: 14642 - components: - - type: Transform - pos: 79.5,31.5 - parent: 2 - uid: 14644 components: - type: Transform @@ -44416,12 +46597,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,30.5 parent: 2 - - uid: 14974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,36.5 - parent: 2 - uid: 15131 components: - type: Transform @@ -44467,27 +46642,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-5.5 parent: 2 - - uid: 15140 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 15141 - components: - - type: Transform - pos: 55.5,20.5 - parent: 2 - - uid: 15142 - components: - - type: Transform - pos: 67.5,16.5 - parent: 2 - - uid: 15143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,17.5 - parent: 2 - uid: 15144 components: - type: Transform @@ -44573,6 +46727,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,13.5 parent: 2 + - uid: 15534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,19.5 + parent: 2 - proto: EmergencyNitrogenTankFilled entities: - uid: 4959 @@ -44596,16 +46756,6 @@ entities: parent: 2 - proto: Emitter entities: - - uid: 748 - components: - - type: Transform - anchored: False - pos: 9.5,-29.5 - parent: 2 - - type: Physics - bodyType: Dynamic - - type: PowerConsumer - drawRate: 1 - uid: 749 components: - type: Transform @@ -44616,6 +46766,11 @@ entities: bodyType: Dynamic - type: PowerConsumer drawRate: 1 + - uid: 2628 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 - uid: 10875 components: - type: Transform @@ -44659,84 +46814,49 @@ entities: - type: Transform pos: 25.530586,-38.32224 parent: 2 -- proto: EncryptionKeyCargo +- proto: EvidenceMarkerFour entities: - - uid: 412 + - uid: 11089 components: - type: Transform - parent: 5183 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand + pos: 54.801388,44.239468 + parent: 2 +- proto: EvidenceMarkerOne entities: - - uid: 413 + - uid: 11191 components: - type: Transform - parent: 10443 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon + rot: 6.283185307179586 rad + pos: 54.967278,45.75482 + parent: 2 +- proto: EvidenceMarkerThree entities: - - uid: 414 + - uid: 15706 components: - type: Transform - parent: 12111 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering + pos: 51.6788,42.82845 + parent: 2 +- proto: EvidenceMarkerTwo entities: - - uid: 535 + - uid: 5393 components: - type: Transform - parent: 533 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 421 - components: - - type: Transform - parent: 12112 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 422 - components: - - type: Transform - parent: 12232 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 423 - components: - - type: Transform - parent: 12233 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 424 - components: - - type: Transform - parent: 12395 - - type: Physics - canCollide: False + rot: 6.283185307179586 rad + pos: 53.951653,42.645718 + parent: 2 - proto: ExosuitFabricator entities: - - uid: 12579 + - uid: 10384 components: - type: Transform - pos: 51.5,11.5 - parent: 2 -- proto: ExplosivesSignMed - entities: - - uid: 10438 - components: - - type: Transform - pos: 61.5,28.5 + pos: 50.5,8.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ExtinguisherCabinetFilled entities: - uid: 315 @@ -44771,26 +46891,6 @@ entities: - type: Transform pos: 52.5,12.5 parent: 2 - - uid: 5336 - components: - - type: Transform - pos: 53.5,22.5 - parent: 2 - - uid: 5337 - components: - - type: Transform - pos: 50.5,22.5 - parent: 2 - - uid: 5347 - components: - - type: Transform - pos: 62.5,21.5 - parent: 2 - - uid: 5348 - components: - - type: Transform - pos: 68.5,12.5 - parent: 2 - uid: 5658 components: - type: Transform @@ -44816,11 +46916,6 @@ entities: - type: Transform pos: 40.5,-5.5 parent: 2 - - uid: 8985 - components: - - type: Transform - pos: 36.5,16.5 - parent: 2 - uid: 9399 components: - type: Transform @@ -44836,21 +46931,8 @@ entities: - type: Transform pos: 14.5,11.5 parent: 2 - - uid: 14569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,29.5 - parent: 2 - proto: FaxMachineBase entities: - - uid: 1622 - components: - - type: Transform - pos: 63.5,10.5 - parent: 2 - - type: FaxMachine - name: RD Office - uid: 1649 components: - type: Transform @@ -44858,6 +46940,13 @@ entities: parent: 2 - type: FaxMachine name: Library + - uid: 2220 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - type: FaxMachine + name: Brig - uid: 2394 components: - type: Transform @@ -44865,13 +46954,30 @@ entities: parent: 2 - type: FaxMachine name: CE Office - - uid: 7566 + - uid: 3109 components: - type: Transform - pos: 45.5,24.5 + pos: 59.5,36.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: 36.5,24.5 parent: 2 - type: FaxMachine - name: HoS Office + name: Security + - uid: 5361 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - type: FaxMachine + name: Science + - uid: 6351 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 - uid: 7668 components: - type: Transform @@ -44886,6 +46992,13 @@ entities: parent: 2 - type: FaxMachine name: Law Office + - uid: 7946 + components: + - type: Transform + pos: 46.5,42.5 + parent: 2 + - type: FaxMachine + name: Head of Security - uid: 8080 components: - type: Transform @@ -44893,13 +47006,6 @@ entities: parent: 2 - type: FaxMachine name: Quartermaster - - uid: 8320 - components: - - type: Transform - pos: 36.5,25.5 - parent: 2 - - type: FaxMachine - name: Security - uid: 9006 components: - type: Transform @@ -44949,19 +47055,19 @@ entities: parent: 2 - type: FaxMachine name: Medical - - uid: 14997 - components: - - type: Transform - pos: 57.5,20.5 - parent: 2 - - type: FaxMachine - name: Science - proto: FaxMachineCaptain entities: - - uid: 1465 + - uid: 5329 components: - type: Transform - pos: 30.5,41.5 + pos: 30.5,42.5 + parent: 2 +- proto: filingCabinetDrawer + entities: + - uid: 14574 + components: + - type: Transform + pos: 58.5,20.5 parent: 2 - proto: filingCabinetDrawerRandom entities: @@ -44975,7 +47081,7 @@ entities: - type: Transform pos: 19.5,29.5 parent: 2 - - uid: 10659 + - uid: 10546 components: - type: Transform pos: 63.5,11.5 @@ -44997,10 +47103,10 @@ entities: - type: Transform pos: 15.5,-5.5 parent: 2 - - uid: 7834 + - uid: 12768 components: - type: Transform - pos: 41.5,19.5 + pos: 55.5,38.5 parent: 2 - uid: 15479 components: @@ -45072,6 +47178,21 @@ entities: - 1515 - 1513 - 12834 + - uid: 2045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 5390 + - 15554 + - 12518 + - 15552 + - 14330 + - 5395 + - 15368 - uid: 2123 components: - type: Transform @@ -45084,18 +47205,29 @@ entities: - 241 - 14065 - 14064 - - uid: 2474 + - uid: 2248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,22.5 + rot: 3.141592653589793 rad + pos: 47.5,29.5 parent: 2 - type: DeviceList devices: - - 12559 - - 10413 - - 10414 - - 10415 + - 15375 + - 15368 + - uid: 2296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 12989 + - 10662 + - 12485 + - 5392 + - 13435 - uid: 4049 components: - type: Transform @@ -45214,6 +47346,32 @@ entities: - 14066 - 192 - 1317 + - uid: 7720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 2334 + - 10527 + - 15368 + - 9589 + - 1103 + - 1104 + - 11250 + - 11249 + - 11248 + - 11322 + - 11323 + - 11324 + - 12516 + - 10613 + - 10612 + - 5390 + - 15554 + - 12518 - uid: 8005 components: - type: Transform @@ -45317,6 +47475,21 @@ entities: - 7011 - 6620 - 5144 + - uid: 8570 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 10418 + - 8460 + - 10416 + - 15492 + - 15898 + - 10662 + - 5478 + - 12485 - uid: 8920 components: - type: Transform @@ -45335,20 +47508,24 @@ entities: - 10206 - 10205 - 5093 - - uid: 9588 + - uid: 10078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,30.5 + pos: 59.5,21.5 parent: 2 - type: DeviceList devices: - - 9586 - - 9585 - - 9584 - - 9589 - - 9236 - - 13510 + - 10418 + - 8460 + - 10416 + - 15492 + - 15898 + - 5651 + - 10671 + - 15476 + - 12087 + - 7267 + - 12485 - uid: 10208 components: - type: Transform @@ -45367,27 +47544,6 @@ entities: - type: DeviceList devices: - 8659 - - uid: 10964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 - parent: 2 - - type: DeviceList - devices: - - 1103 - - 1104 - - 11250 - - 11249 - - 11248 - - 11322 - - 11323 - - 11324 - - 12516 - - 12085 - - 9586 - - 9585 - - 9584 - uid: 11507 components: - type: Transform @@ -45502,7 +47658,6 @@ entities: - 3459 - 9352 - 9353 - - 9351 - 2690 - uid: 12483 components: @@ -45539,10 +47694,14 @@ entities: - 11251 - 11252 - 11253 - - 9351 - 9353 - 9352 - 12087 + - 3224 + - 7267 + - 15492 + - 5478 + - 15898 - uid: 12489 components: - type: Transform @@ -45564,50 +47723,13 @@ entities: - type: DeviceList devices: - 11250 - - 11249 - - 11248 - 11322 - 11323 - 11324 - 12518 - - uid: 12549 - components: - - type: Transform - pos: 49.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 12550 - - 12087 - - uid: 12556 - components: - - type: Transform - pos: 61.5,16.5 - parent: 2 - - type: DeviceList - devices: - - 10416 - - 10417 - - 10418 - - 12554 - - 1252 - - 1162 - - 6473 - - uid: 12557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,19.5 - parent: 2 - - type: DeviceList - devices: - - 10416 - - 10417 - - 10418 - - 185 - - 10413 - - 10414 - - 10415 + - 11249 + - 11248 + - 12516 - uid: 14041 components: - type: Transform @@ -45641,6 +47763,50 @@ entities: - 29 - 8238 - 371 + - uid: 15172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 73 + - 248 + - 15375 + - 11683 + - 2334 + - 10527 + - 15368 + - 9589 + - 5395 + - 15554 + - uid: 15585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 5651 + - 10671 + - 15476 + - 15492 + - uid: 15897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 10585 + - 10336 + - 2421 + - 15882 + - 15898 + - 5392 - proto: FireAxeCabinetFilled entities: - uid: 1571 @@ -45671,6 +47837,50 @@ entities: - type: Transform pos: 81.454414,9.641975 parent: 2 +- proto: Firelock + entities: + - uid: 8376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,46.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,46.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,35.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,28.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,34.5 + parent: 2 + - uid: 9443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,46.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,27.5 + parent: 2 - proto: FirelockEdge entities: - uid: 36 @@ -45775,12 +47985,20 @@ entities: rot: 3.141592653589793 rad pos: 25.5,15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 1104 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 1317 components: - type: Transform @@ -46152,10 +48370,9 @@ entities: rot: 3.141592653589793 rad pos: 26.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 9587 - - 9588 + - type: Door + secondsUntilStateChange: -55221.285 + state: Closing - uid: 9362 components: - type: Transform @@ -46171,24 +48388,6 @@ entities: - type: Transform pos: 42.5,13.5 parent: 2 - - uid: 9584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,28.5 - parent: 2 - - uid: 9585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,28.5 - parent: 2 - - uid: 9586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,28.5 - parent: 2 - uid: 9858 components: - type: Transform @@ -46226,18 +48425,34 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12517 + - 7720 + - 15466 + - 11165 - uid: 11249 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12517 + - 7720 + - 15466 + - 11165 - uid: 11250 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 11251 components: - type: Transform @@ -46316,18 +48531,30 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 11323 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 11324 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 7720 + - 15466 - uid: 11325 components: - type: Transform @@ -46388,43 +48615,12 @@ entities: - type: DeviceNetwork deviceLists: - 1657 - - uid: 13507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - uid: 13510 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 9587 - - 9588 - - uid: 13514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - - uid: 13523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - uid: 13894 components: - type: Transform @@ -46542,42 +48738,6 @@ entities: deviceLists: - 14041 - 13984 - - uid: 14551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14247 - - uid: 14552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14247 - - uid: 14553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14247 - - uid: 14622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14615 - uid: 14992 components: - type: Transform @@ -46616,6 +48776,15 @@ entities: - 14737 - 5 - 14754 + - uid: 73 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - 15172 - uid: 169 components: - type: Transform @@ -46624,6 +48793,15 @@ entities: - type: DeviceNetwork deviceLists: - 1017 + - uid: 248 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - 15172 - uid: 554 components: - type: Transform @@ -46661,16 +48839,6 @@ entities: - type: DeviceNetwork deviceLists: - 1017 - - uid: 1162 - components: - - type: Transform - pos: 53.5,14.5 - parent: 2 - - uid: 1252 - components: - - type: Transform - pos: 53.5,13.5 - parent: 2 - uid: 1510 components: - type: Transform @@ -46696,10 +48864,41 @@ entities: - type: Transform pos: 35.5,-8.5 parent: 2 - - uid: 3175 + - uid: 2334 components: - type: Transform - pos: 38.5,38.5 + pos: 31.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - 15172 + - uid: 2421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15578 + - 15897 + - uid: 3224 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12487 + - 12486 + - 12476 + - uid: 4843 + components: + - type: Transform + pos: 39.5,40.5 parent: 2 - uid: 4919 components: @@ -46711,6 +48910,68 @@ entities: - type: Transform pos: 39.5,1.5 parent: 2 + - uid: 5390 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 15466 + - 7720 + - 2045 + - uid: 5392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2296 + - 5101 + - 15578 + - 15897 + - uid: 5395 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - 2045 + - 8571 + - 15172 + - uid: 5478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12487 + - 12486 + - 8570 + - 10469 + - uid: 5490 + components: + - type: Transform + pos: 38.5,40.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15585 + - 10419 + - 10078 + - 10576 - uid: 5657 components: - type: Transform @@ -46719,11 +48980,6 @@ entities: - type: DeviceNetwork deviceLists: - 1017 - - uid: 6473 - components: - - type: Transform - pos: 53.5,15.5 - parent: 2 - uid: 6509 components: - type: Transform @@ -46749,6 +49005,18 @@ entities: - type: Transform pos: 39.5,-0.5 parent: 2 + - uid: 7267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12487 + - 10078 + - 12486 + - 10576 - uid: 7740 components: - type: Transform @@ -46775,16 +49043,23 @@ entities: - 5 - 7013 - 14754 + - uid: 8460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10469 + - 8570 + - 10576 - uid: 8823 components: - type: Transform pos: 49.5,-19.5 parent: 2 - - uid: 9351 - components: - - type: Transform - pos: 38.5,13.5 - parent: 2 - uid: 9352 components: - type: Transform @@ -46825,36 +49100,91 @@ entities: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 10413 + - uid: 10336 components: - type: Transform - pos: 58.5,21.5 - parent: 2 - - uid: 10414 - components: - - type: Transform - pos: 59.5,21.5 - parent: 2 - - uid: 10415 - components: - - type: Transform - pos: 60.5,21.5 + rot: 3.141592653589793 rad + pos: 57.5,12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15578 + - 15897 - uid: 10416 components: - type: Transform pos: 58.5,16.5 parent: 2 - - uid: 10417 - components: - - type: Transform - pos: 59.5,16.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10469 + - 8570 + - 10576 - uid: 10418 components: - type: Transform pos: 60.5,16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10469 + - 8570 + - 10576 + - uid: 10527 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - 15172 + - uid: 10585 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15578 + - 15897 + - uid: 10612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - uid: 10613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 + - 7720 + - 8571 + - uid: 10671 + components: + - type: Transform + pos: 58.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15585 + - 10419 + - 10078 + - 10576 - uid: 10735 components: - type: Transform @@ -46900,31 +49230,6 @@ entities: - type: Transform pos: 47.5,-17.5 parent: 2 - - uid: 11273 - components: - - type: Transform - pos: 43.5,43.5 - parent: 2 - - uid: 11274 - components: - - type: Transform - pos: 44.5,43.5 - parent: 2 - - uid: 11284 - components: - - type: Transform - pos: 45.5,40.5 - parent: 2 - - uid: 11285 - components: - - type: Transform - pos: 50.5,48.5 - parent: 2 - - uid: 11286 - components: - - type: Transform - pos: 62.5,48.5 - parent: 2 - uid: 11287 components: - type: Transform @@ -47015,16 +49320,6 @@ entities: - type: Transform pos: 72.5,10.5 parent: 2 - - uid: 11384 - components: - - type: Transform - pos: 65.5,7.5 - parent: 2 - - uid: 11385 - components: - - type: Transform - pos: 66.5,7.5 - parent: 2 - uid: 11386 components: - type: Transform @@ -47085,11 +49380,6 @@ entities: - type: Transform pos: 48.5,-7.5 parent: 2 - - uid: 12085 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - uid: 12086 components: - type: Transform @@ -47104,6 +49394,10 @@ entities: - type: Transform pos: 48.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10078 + - 10576 - uid: 12394 components: - type: Transform @@ -47118,6 +49412,16 @@ entities: deviceLists: - 5101 - 12486 + - 2296 + - uid: 13435 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5101 + - 2296 - uid: 13442 components: - type: Transform @@ -47153,13 +49457,13 @@ entities: - type: Transform pos: 71.5,-11.5 parent: 2 -- proto: Fireplace - entities: - - uid: 380 + - uid: 15528 components: - type: Transform - pos: 36.5,43.5 + pos: 76.5,11.5 parent: 2 +- proto: Fireplace + entities: - uid: 2008 components: - type: Transform @@ -47170,6 +49474,11 @@ entities: - type: Transform pos: 9.5,-40.5 parent: 2 + - uid: 8605 + components: + - type: Transform + pos: 36.5,43.5 + parent: 2 - proto: Flash entities: - uid: 4987 @@ -47187,8 +49496,23 @@ entities: - uid: 10814 components: - type: Transform - pos: 81.401146,12.491636 + rot: 6.283185307179586 rad + pos: 86.53047,10.639359 parent: 2 + - type: HandheldLight + toggleActionEntity: 6399 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6399 + - type: ActionsContainer - proto: Floodlight entities: - uid: 4500 @@ -47212,6 +49536,20 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 3176 + components: + - type: Transform + pos: 78.5,9.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 3177 + components: + - type: Transform + pos: 77.5,9.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 5254 components: - type: Transform @@ -47219,6 +49557,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 8501 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 8960 components: - type: Transform @@ -47226,28 +49571,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 9003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,8.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 10447 - components: - - type: Transform - pos: 51.5,15.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11900 - components: - - type: Transform - pos: 78.5,10.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 12288 components: - type: Transform @@ -47262,21 +49585,36 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 13606 - components: - - type: Transform - pos: 59.5,36.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 15199 + - uid: 14625 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,10.5 + pos: 53.5,8.5 parent: 2 - type: Fixtures fixtures: {} + - uid: 15187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemSteel + entities: + - uid: 15899 + components: + - type: Transform + pos: 46.126938,19.027557 + parent: 2 +- proto: FloorTileItemSteelCheckerDark + entities: + - uid: 14824 + components: + - type: Transform + pos: 52.93832,41.69648 + parent: 2 - proto: FoodBanana entities: - uid: 9595 @@ -47304,13 +49642,6 @@ entities: - type: Transform pos: 27.618341,6.6818295 parent: 2 -- proto: FoodBowlBig - entities: - - uid: 5507 - components: - - type: Transform - pos: 70.488464,33.529522 - parent: 2 - proto: FoodBowlBigTrash entities: - uid: 5881 @@ -47318,6 +49649,11 @@ entities: - type: Transform pos: -0.3447714,-23.649889 parent: 2 + - uid: 15703 + components: + - type: Transform + pos: 51.59836,50.601345 + parent: 2 - proto: FoodBoxDonkpocket entities: - uid: 8862 @@ -47351,11 +49687,6 @@ entities: - type: Transform pos: 37.49929,-7.4188547 parent: 2 - - uid: 15373 - components: - - type: Transform - pos: 33.517593,17.70471 - parent: 2 - proto: FoodBreadBananaSlice entities: - uid: 8651 @@ -47364,6 +49695,13 @@ entities: rot: 4.008621544926427E-05 rad pos: 83.58996,8.734995 parent: 2 +- proto: FoodBurgerSoy + entities: + - uid: 5027 + components: + - type: Transform + pos: 52.57802,45.583874 + parent: 2 - proto: FoodCakeChocolateSlice entities: - uid: 10832 @@ -47374,23 +49712,23 @@ entities: parent: 2 - proto: FoodCartCold entities: - - uid: 1551 + - uid: 15801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-9.5 + rot: 1.5707963267948966 rad + pos: 29.5,-12.5 parent: 2 - proto: FoodCondimentBottleEnzyme entities: - uid: 296 components: - type: Transform - pos: 36.20302,-12.346379 + pos: 35.982536,-10.342439 parent: 2 - uid: 363 components: - type: Transform - pos: 36.093643,-12.174504 + pos: 35.77941,-10.201814 parent: 2 - proto: FoodFrozenPopsicleTrash entities: @@ -47418,6 +49756,16 @@ entities: parent: 2 - proto: FoodFrozenSnowconeTrash entities: + - uid: 2361 + components: + - type: Transform + pos: 46.984425,47.16262 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: 47.7188,45.85012 + parent: 2 - uid: 5884 components: - type: Transform @@ -47552,12 +49900,24 @@ entities: - type: Transform pos: 0.8896036,-25.587389 parent: 2 -- proto: FoodTinPeachesMaint - entities: - - uid: 5476 + - uid: 6172 components: - type: Transform - pos: 67.5,38.5 + pos: 62.99293,47.87387 + parent: 2 +- proto: FoodTinPeachesMaint + entities: + - uid: 15690 + components: + - type: Transform + pos: 71.43562,40.749683 + parent: 2 +- proto: Fork + entities: + - uid: 9241 + components: + - type: Transform + pos: 52.21605,45.55166 parent: 2 - proto: ForkPlastic entities: @@ -47571,7 +49931,15 @@ entities: - uid: 14279 components: - type: Transform - pos: 84.42593,28.556656 + pos: 84.54633,32.495792 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 15691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,41.5 parent: 2 - proto: GasFilterFlipped entities: @@ -47631,6 +49999,16 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-39.5 parent: 2 + - uid: 10047 + components: + - type: MetaData + name: gas filter (Waste Filter) + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11767 components: - type: Transform @@ -47751,6 +50129,15 @@ entities: color: '#947507FF' - proto: GasPassiveVent entities: + - uid: 2424 + components: + - type: Transform + pos: 64.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: AtmosPipeLayers + pipeLayer: Secondary - uid: 3951 components: - type: Transform @@ -47807,30 +50194,36 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-9.5 parent: 2 - - uid: 10426 + - uid: 8614 components: - type: Transform - pos: 63.5,28.5 + pos: 62.5,27.5 parent: 2 - - uid: 10427 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12582 components: - type: Transform - pos: 64.5,28.5 + pos: 63.5,27.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 14345 components: - type: Transform pos: 82.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14621 components: - type: Transform pos: 71.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15275 components: - type: Transform @@ -47839,6 +50232,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 15841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' - proto: GasPipeBend entities: - uid: 34 @@ -47881,6 +50282,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 652 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 746 components: - type: Transform @@ -47943,6 +50383,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 1275 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1306 components: - type: Transform @@ -48068,14 +50515,6 @@ entities: rot: 3.141592653589793 rad pos: 42.5,-25.5 parent: 2 - - uid: 2290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2383 components: - type: Transform @@ -48103,6 +50542,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3518 components: - type: Transform @@ -48205,14 +50652,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4219 components: - type: Transform @@ -48220,11 +50659,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4362 + - uid: 4366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,25.5 + pos: 48.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -48259,6 +50705,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4977 + components: + - type: Transform + pos: 47.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5010 components: - type: Transform @@ -48281,14 +50734,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5208 components: - type: Transform @@ -48342,14 +50787,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6569 components: - type: Transform @@ -48366,6 +50803,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7217 components: - type: Transform @@ -48404,50 +50849,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8599 + - uid: 8488 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,22.5 + pos: 64.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8662 - components: - - type: Transform - pos: 47.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8663 + color: '#947507FF' + - uid: 8546 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,30.5 + pos: 46.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -48490,6 +50920,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10169 components: - type: Transform @@ -48506,51 +50952,33 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10364 + - uid: 10357 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,19.5 + pos: 55.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10381 + components: + - type: Transform + pos: 58.5,19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 10382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,13.5 + pos: 66.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10384 + color: '#0055CCFF' + - uid: 10520 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,9.5 + pos: 64.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -48605,6 +51033,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' + - uid: 11650 + components: + - type: Transform + pos: 41.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11707 components: - type: Transform @@ -48753,37 +51188,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 13520 + - uid: 13529 components: - type: Transform - pos: 56.5,34.5 + pos: 64.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 13521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#947507FF' - uid: 13993 components: - type: Transform @@ -48854,7 +51265,7 @@ entities: pos: 90.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14422 components: - type: Transform @@ -48862,7 +51273,7 @@ entities: pos: 89.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14425 components: - type: Transform @@ -48877,7 +51288,7 @@ entities: pos: 92.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14586 components: - type: Transform @@ -48924,7 +51335,30 @@ entities: pos: 71.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 14893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14898 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14958 components: - type: Transform @@ -48996,6 +51430,94 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 15387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15551 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' +- proto: GasPipeBendAlt2 + entities: + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14788 + components: + - type: Transform + pos: 64.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 62 @@ -49047,13 +51569,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5200 - components: - - type: Transform - pos: 42.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5240 components: - type: Transform @@ -49075,34 +51590,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8581 + - uid: 10049 components: - type: Transform - pos: 39.5,24.5 + pos: 60.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8589 - components: - - type: Transform - pos: 40.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10054 - components: - - type: Transform - pos: 59.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10374 - components: - - type: Transform - pos: 58.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11732 components: - type: Transform @@ -49117,6 +51611,40 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14851 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15872 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeHalf + entities: + - uid: 15875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' +- proto: GasPipeManifold + entities: + - uid: 8695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeSensor entities: - uid: 11796 @@ -49202,6 +51730,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 68 components: - type: Transform @@ -49296,6 +51832,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 234 components: - type: Transform @@ -49320,14 +51864,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 352 components: - type: Transform @@ -49474,14 +52010,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 617 components: - type: Transform @@ -49490,6 +52018,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 666 components: - type: Transform @@ -49521,13 +52065,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 671 - components: - - type: Transform - pos: 46.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 672 components: - type: Transform @@ -49552,6 +52089,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' + - uid: 748 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 755 components: - type: Transform @@ -49952,13 +52496,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 1223 - components: - - type: Transform - pos: 46.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1224 components: - type: Transform @@ -50007,6 +52544,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' + - uid: 1274 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1300 components: - type: Transform @@ -50116,14 +52660,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1528 components: - type: Transform @@ -50533,20 +53069,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1749 - components: - - type: Transform - pos: 25.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1762 - components: - - type: Transform - pos: 25.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1764 components: - type: Transform @@ -50582,13 +53104,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1774 - components: - - type: Transform - pos: 25.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1800 components: - type: Transform @@ -50776,6 +53291,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1848 components: - type: Transform @@ -51369,6 +53892,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2021 components: - type: Transform @@ -51488,29 +54019,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2216 + - uid: 2235 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,31.5 + pos: 48.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2302 - components: - - type: Transform - pos: 40.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 2304 components: - type: Transform @@ -51519,13 +54035,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2305 - components: - - type: Transform - pos: 40.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2316 components: - type: Transform @@ -51547,14 +54056,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2381 components: - type: Transform @@ -51808,6 +54309,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2604 + components: + - type: Transform + pos: 48.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2667 components: - type: Transform @@ -51828,6 +54344,14 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-28.5 parent: 2 + - uid: 2716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2718 components: - type: Transform @@ -51882,6 +54406,22 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-30.5 parent: 2 + - uid: 3036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3134 components: - type: Transform @@ -51890,45 +54430,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3216 + - uid: 3149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3252 - components: - - type: Transform - pos: 46.5,29.5 + rot: 1.5707963267948966 rad + pos: 69.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3257 + - uid: 3150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,35.5 + rot: 1.5707963267948966 rad + pos: 67.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 3289 components: - type: Transform @@ -51971,6 +54488,14 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-33.5 parent: 2 + - uid: 3374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3522 components: - type: Transform @@ -52145,14 +54670,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3970 components: - type: Transform @@ -52501,22 +55018,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4125 components: - type: Transform @@ -52525,22 +55026,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4155 components: - type: Transform @@ -52573,14 +55058,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4163 components: - type: Transform @@ -53014,13 +55491,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4291 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4352 components: - type: Transform @@ -53059,14 +55529,14 @@ entities: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 4413 + - uid: 4405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,34.5 + rot: -1.5707963267948966 rad + pos: 48.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 4420 components: - type: Transform @@ -53151,6 +55621,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4461 components: - type: Transform @@ -53238,6 +55716,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5023 components: - type: Transform @@ -53320,11 +55806,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5102 + - uid: 5109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,35.5 + rot: 3.141592653589793 rad + pos: 47.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -53356,6 +55842,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5258 components: - type: Transform @@ -53366,6 +55860,29 @@ entities: - type: Transform pos: 79.5,-7.5 parent: 2 + - uid: 5260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5264 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5268 components: - type: Transform @@ -53382,6 +55899,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5302 components: - type: Transform @@ -53396,6 +55921,36 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5384 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5402 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5429 components: - type: Transform @@ -53411,6 +55966,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5580 components: - type: Transform @@ -53473,27 +56068,51 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 6337 + - uid: 5931 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,34.5 + pos: 13.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6338 + color: '#03FCD3FF' + - uid: 6244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6288 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,26.5 + pos: 54.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6339 + color: '#0055CCFF' + - uid: 6325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,23.5 + rot: -1.5707963267948966 rad + pos: 61.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -53579,14 +56198,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6550 components: - type: Transform @@ -53760,6 +56371,8 @@ entities: - type: Transform pos: 30.5,-11.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6594 components: - type: Transform @@ -53888,14 +56501,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 6672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6818 components: - type: Transform @@ -53927,14 +56532,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 6865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6909 components: - type: Transform @@ -54057,6 +56654,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7410 components: - type: Transform @@ -54233,6 +56838,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 7528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7578 components: - type: Transform @@ -54264,14 +56877,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7819 components: - type: Transform @@ -54280,6 +56885,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' + - uid: 7829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7830 components: - type: Transform @@ -54563,6 +57176,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 8231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8295 components: - type: Transform @@ -54639,470 +57260,115 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8384 + - uid: 8368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,34.5 + rot: -1.5707963267948966 rad + pos: 57.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 8399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,35.5 + pos: 54.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8400 + - uid: 8445 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,34.5 + pos: 49.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8401 + color: '#990000FF' + - uid: 8450 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,24.5 + pos: 49.5,29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8402 + - uid: 8492 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,31.5 + pos: 46.5,42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8403 + - uid: 8494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,35.5 + pos: 45.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8409 + - uid: 8511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,35.5 + rot: -1.5707963267948966 rad + pos: 56.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8549 + - uid: 8527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,23.5 + rot: -1.5707963267948966 rad + pos: 22.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 8551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,23.5 + rot: -1.5707963267948966 rad + pos: 50.5,19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8552 + - uid: 8561 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,23.5 + pos: 48.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8553 + color: '#0055CCFF' + - uid: 8567 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,23.5 + pos: 54.5,13.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8600 + - uid: 8602 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,24.5 + pos: 60.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8608 + components: + - type: Transform + pos: 25.5,30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8611 - components: - - type: Transform - pos: 33.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8613 - components: - - type: Transform - pos: 33.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8614 - components: - - type: Transform - pos: 35.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8615 - components: - - type: Transform - pos: 35.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8616 - components: - - type: Transform - pos: 35.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8617 - components: - - type: Transform - pos: 35.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8618 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8619 - components: - - type: Transform - pos: 35.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,19.5 + pos: 25.5,29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8638 components: - type: Transform @@ -55110,86 +57376,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 8654 + - uid: 8662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,30.5 + pos: 27.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8672 + - uid: 8686 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,19.5 + pos: 46.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8673 + - uid: 8731 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,34.5 + pos: 50.5,33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8713 + - uid: 8817 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,35.5 + pos: 51.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 8924 components: - type: Transform @@ -55201,6 +57418,51 @@ entities: - type: Transform pos: 42.5,-24.5 parent: 2 + - uid: 9035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9264 + components: + - type: Transform + pos: 54.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9267 + components: + - type: Transform + pos: 54.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9305 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9309 components: - type: Transform @@ -55209,6 +57471,53 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9316 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 9425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9534 components: - type: Transform @@ -55429,6 +57738,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9629 components: - type: Transform @@ -55482,6 +57799,22 @@ entities: - type: Transform pos: 42.5,-23.5 parent: 2 + - uid: 9750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10045 components: - type: Transform @@ -55498,99 +57831,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10049 + - uid: 10054 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,17.5 + pos: 60.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10056 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,16.5 + rot: -1.5707963267948966 rad + pos: 47.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10058 + color: '#990000FF' + - uid: 10057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,14.5 + rot: -1.5707963267948966 rad + pos: 49.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,14.5 + pos: 62.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10062 + components: + - type: Transform + pos: 60.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,14.5 + rot: -1.5707963267948966 rad + pos: 62.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -55646,14 +57929,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10115 + - uid: 10086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,24.5 + pos: 62.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10117 components: - type: Transform @@ -56077,20 +58359,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10323 components: - type: Transform - pos: 54.5,13.5 + pos: 58.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10324 - components: - - type: Transform - pos: 54.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10325 components: - type: Transform @@ -56154,104 +58437,71 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10334 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10337 - components: - - type: Transform - pos: 62.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10338 - components: - - type: Transform - pos: 62.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10339 - components: - - type: Transform - pos: 62.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10340 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,14.5 + pos: 28.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,14.5 + pos: 60.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 + rot: 1.5707963267948966 rad + pos: 59.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10348 + - uid: 10346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,18.5 + pos: 56.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,18.5 + rot: 1.5707963267948966 rad + pos: 26.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,18.5 + rot: 1.5707963267948966 rad + pos: 57.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10353 + color: '#990000FF' + - uid: 10351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,24.5 + pos: 60.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -56262,30 +58512,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10367 + - uid: 10360 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,19.5 + pos: 65.5,14.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10368 components: - type: Transform @@ -56313,8 +58571,8 @@ entities: - uid: 10371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,19.5 + rot: -1.5707963267948966 rad + pos: 48.5,19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -56366,59 +58624,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10385 + - uid: 10383 components: - type: Transform - pos: 63.5,14.5 + pos: 60.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10386 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10387 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 10388 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,15.5 + pos: 38.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 10392 components: - type: Transform @@ -56451,120 +58671,57 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,11.5 + pos: 58.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10405 - components: - - type: Transform - pos: 58.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10406 - components: - - type: Transform - pos: 58.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10407 - components: - - type: Transform - pos: 58.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10408 + - uid: 10402 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,23.5 + pos: 47.5,42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10409 + - uid: 10413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,23.5 + pos: 50.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10428 - components: - - type: Transform - pos: 63.5,24.5 - parent: 2 - - uid: 10429 - components: - - type: Transform - pos: 63.5,25.5 - parent: 2 - - uid: 10430 - components: - - type: Transform - pos: 63.5,26.5 - parent: 2 - - uid: 10431 - components: - - type: Transform - pos: 63.5,27.5 - parent: 2 - - uid: 10432 - components: - - type: Transform - pos: 64.5,27.5 - parent: 2 - - uid: 10433 - components: - - type: Transform - pos: 64.5,26.5 - parent: 2 - - uid: 10434 - components: - - type: Transform - pos: 64.5,25.5 - parent: 2 - - uid: 10435 - components: - - type: Transform - pos: 64.5,24.5 - parent: 2 - - uid: 10453 + color: '#0055CCFF' + - uid: 10522 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,29.5 + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -56645,14 +58802,6 @@ entities: - type: Transform pos: 43.5,-23.5 parent: 2 - - uid: 10840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11101 components: - type: Transform @@ -57029,6 +59178,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11699 components: - type: Transform @@ -57249,6 +59414,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 11879 + components: + - type: Transform + pos: 41.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11925 components: - type: Transform @@ -57358,6 +59530,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12301 components: - type: Transform @@ -57366,6 +59570,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' + - uid: 12530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12729 components: - type: Transform @@ -57450,6 +59670,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13326 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13448 components: - type: Transform @@ -57458,97 +59685,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 13498 + - uid: 13641 components: - type: Transform - pos: 46.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 13555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13575 - components: - - type: Transform - pos: 46.5,33.5 + pos: 55.5,20.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -58008,14 +60148,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14172 components: - type: Transform @@ -58023,7 +60155,7 @@ entities: pos: 82.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14328 components: - type: Transform @@ -58032,6 +60164,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14370 components: - type: Transform @@ -58039,7 +60187,7 @@ entities: pos: 82.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14371 components: - type: Transform @@ -58047,7 +60195,7 @@ entities: pos: 82.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14375 components: - type: Transform @@ -58055,7 +60203,7 @@ entities: pos: 83.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14378 components: - type: Transform @@ -58109,7 +60257,7 @@ entities: pos: 85.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14414 components: - type: Transform @@ -58117,7 +60265,7 @@ entities: pos: 86.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14415 components: - type: Transform @@ -58125,7 +60273,7 @@ entities: pos: 87.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14416 components: - type: Transform @@ -58172,7 +60320,7 @@ entities: pos: 88.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14428 components: - type: Transform @@ -58180,7 +60328,7 @@ entities: pos: 89.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14430 components: - type: Transform @@ -58188,7 +60336,7 @@ entities: pos: 91.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14584 components: - type: Transform @@ -58290,7 +60438,7 @@ entities: pos: 71.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14619 components: - type: Transform @@ -58298,7 +60446,7 @@ entities: pos: 71.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14620 components: - type: Transform @@ -58306,7 +60454,15 @@ entities: pos: 71.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 14643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14665 components: - type: Transform @@ -58328,6 +60484,259 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14846 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14875 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14876 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14877 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14878 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14889 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14891 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14894 + components: + - type: Transform + pos: 35.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14899 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14900 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14901 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14902 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14903 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14904 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14924 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14927 + components: + - type: Transform + pos: 33.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14928 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14929 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14930 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14957 components: - type: Transform @@ -58344,12 +60753,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 14962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,17.5 - parent: 2 - uid: 14964 components: - type: Transform @@ -58357,6 +60760,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 14974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15087 components: - type: Transform @@ -58389,6 +60816,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 15127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15143 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15162 components: - type: Transform @@ -58500,6 +60966,349 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15468 + components: + - type: Transform + pos: 53.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15470 + components: + - type: Transform + pos: 53.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15503 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15504 + components: + - type: Transform + pos: 46.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15505 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15506 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15507 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15508 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15509 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15525 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15628 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 8629 + components: + - type: Transform + pos: 64.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 8705 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 4360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 14 @@ -58518,6 +61327,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 224 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 347 components: - type: Transform @@ -58539,6 +61355,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 426 components: - type: Transform @@ -58629,6 +61453,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1304 components: - type: Transform @@ -58778,6 +61610,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2278 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2529 components: - type: Transform @@ -58799,6 +61638,13 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,-26.5 parent: 2 + - uid: 3067 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3124 components: - type: Transform @@ -58807,14 +61653,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3351 components: - type: Transform @@ -58831,6 +61669,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3521 components: - type: Transform @@ -58839,14 +61685,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3691 components: - type: Transform @@ -58962,22 +61800,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4199 components: - type: Transform @@ -58993,11 +61815,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4361 + - uid: 4365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,18.5 + pos: 63.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4368 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -59232,22 +62068,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5241 components: - type: Transform @@ -59256,13 +62076,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5242 - components: - - type: Transform - pos: 26.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5284 components: - type: Transform @@ -59271,21 +62084,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5509 + - uid: 5290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 5323 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,14.5 + pos: 62.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6336 - components: - - type: Transform - pos: 48.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 6423 components: - type: Transform @@ -59346,6 +62160,8 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-10.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6601 components: - type: Transform @@ -59370,6 +62186,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6850 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7169 components: - type: Transform @@ -59441,11 +62264,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7802 + - uid: 7741 components: - type: Transform - pos: 50.5,24.5 + rot: 1.5707963267948966 rad + pos: 48.5,40.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7881 components: - type: Transform @@ -59509,33 +62335,39 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8555 + - uid: 8664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 + pos: 37.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8561 + - uid: 8678 components: - type: Transform - pos: 33.5,23.5 + rot: 1.5707963267948966 rad + pos: 25.5,31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8563 + - uid: 8798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,24.5 + pos: 56.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8594 + - uid: 9034 components: - type: Transform - pos: 35.5,24.5 + pos: 49.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9039 + components: + - type: Transform + pos: 50.5,32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -59547,6 +62379,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 9408 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9533 components: - type: Transform @@ -59586,44 +62425,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10047 + - uid: 9894 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,24.5 + pos: 55.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10048 - components: - - type: Transform - pos: 59.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10057 + color: '#990000FF' + - uid: 10052 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,14.5 + pos: 64.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10062 + - uid: 10059 components: - type: Transform - pos: 54.5,14.5 + rot: 3.141592653589793 rad + pos: 55.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 10141 components: - type: Transform @@ -59679,76 +62504,68 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10336 + - uid: 10331 components: - type: Transform - pos: 62.5,14.5 + rot: -1.5707963267948966 rad + pos: 18.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10357 + color: '#03FCD3FF' + - uid: 10342 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,10.5 + pos: 35.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10360 + - uid: 10356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10375 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,29.5 + pos: 25.5,22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10363 + - uid: 10385 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10404 - components: - - type: Transform - pos: 58.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,30.5 + pos: 54.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10603 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10889 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 10907 components: - type: Transform @@ -59902,11 +62719,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 13577 + - uid: 13120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,31.5 + rot: 3.141592653589793 rad + pos: 41.5,31.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -59948,14 +62765,14 @@ entities: pos: 82.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14376 components: - type: Transform pos: 84.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14380 components: - type: Transform @@ -59985,7 +62802,76 @@ entities: pos: 90.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 14843 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15380 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15529 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPort entities: - uid: 1945 @@ -60075,12 +62961,6 @@ entities: rot: 3.141592653589793 rad pos: 63.5,22.5 parent: 2 - - uid: 10425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,22.5 - parent: 2 - uid: 12871 components: - type: Transform @@ -60109,6 +62989,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' + - uid: 13581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,22.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Secondary - uid: 14391 components: - type: Transform @@ -60118,6 +63006,18 @@ entities: color: '#0335FCFF' - proto: GasPressurePump entities: + - uid: 2355 + components: + - type: MetaData + name: gas pump (Distro In) + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,24.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2437 components: - type: Transform @@ -60184,6 +63084,8 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-23.5 parent: 2 + - type: GasPressurePump + targetPressure: 4500 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5037 @@ -60203,6 +63105,26 @@ entities: targetPressure: 4500 - type: AtmosPipeColor color: '#947507FF' + - uid: 5497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6334 + components: + - type: MetaData + name: gas pump (Gas In) + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: AtmosPipeLayers + pipeLayer: Secondary - uid: 6583 components: - type: Transform @@ -60211,14 +63133,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7883 components: - type: Transform @@ -60226,17 +63140,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#9F2B68FF' - - uid: 10423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,23.5 - parent: 2 - - uid: 10424 - components: - - type: Transform - pos: 64.5,23.5 - parent: 2 - uid: 11577 components: - type: Transform @@ -60251,6 +63154,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14374 components: - type: Transform @@ -60258,7 +63169,7 @@ entities: pos: 82.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14390 components: - type: Transform @@ -60268,6 +63179,14 @@ entities: color: '#0335FCFF' - proto: GasThermoMachineFreezer entities: + - uid: 631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 3966 components: - type: Transform @@ -60286,12 +63205,16 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-40.5 parent: 2 - - uid: 7984 + - uid: 5320 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,23.5 parent: 2 + - type: GasThermoMachine + targetTemperature: 270 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11775 components: - type: Transform @@ -60306,6 +63229,8 @@ entities: - type: Transform pos: 30.5,-9.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - type: GasThermoMachine targetTemperature: 0 - proto: GasThermoMachineHeater @@ -60412,14 +63337,6 @@ entities: - 14067 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1560 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1625 components: - type: Transform @@ -60431,17 +63348,6 @@ entities: - 1017 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10988 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2393 components: - type: Transform @@ -60456,14 +63362,23 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3152 + - uid: 3064 components: - type: Transform - pos: 56.5,37.5 + rot: 1.5707963267948966 rad + pos: 46.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13512 + - 5101 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3692 @@ -60490,6 +63405,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5242 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4460 components: - type: Transform @@ -60543,6 +63469,16 @@ entities: - 6126 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5426 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 10135 - uid: 5533 components: - type: Transform @@ -60573,6 +63509,17 @@ entities: - 10930 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 14653 - uid: 5964 components: - type: Transform @@ -60595,6 +63542,8 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-12.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6593 components: - type: Transform @@ -60634,16 +63583,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6774 - components: - - type: Transform - pos: 39.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10988 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6778 components: - type: Transform @@ -60659,6 +63598,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: DeviceNetwork + deviceLists: + - 1520 - uid: 6908 components: - type: Transform @@ -60702,6 +63652,8 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,24.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7838 components: - type: Transform @@ -60743,6 +63695,9 @@ entities: - type: Transform pos: 26.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8242 @@ -60750,6 +63705,9 @@ entities: - type: Transform pos: 22.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8296 @@ -60776,76 +63734,47 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8575 - components: - - type: Transform - pos: 34.5,25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5859 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8596 + - uid: 8485 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,24.5 + pos: 58.5,36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 14171 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10576 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - type: DeviceNetwork deviceLists: - 8571 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15476 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8607 - components: - - type: Transform - pos: 39.5,27.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12530 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8629 - components: - - type: Transform - pos: 38.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12528 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8684 - components: - - type: Transform - pos: 42.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9358 components: - type: Transform @@ -60866,6 +63795,9 @@ entities: - type: Transform pos: 26.5,36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#0055CCFF' - uid: 9581 @@ -60890,6 +63822,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10409 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10163 components: - type: Transform @@ -60954,78 +63897,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10331 - components: - - type: Transform - pos: 48.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10346 + - uid: 10340 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 + pos: 63.5,14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 5859 + - 10469 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10643 @@ -61120,6 +64011,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13980 components: - type: Transform @@ -61171,7 +64081,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14385 @@ -61182,7 +64092,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14420 @@ -61193,7 +64103,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14433 @@ -61204,7 +64114,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14613 @@ -61237,6 +64147,27 @@ entities: - 5 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14521 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14941 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15296 components: - type: Transform @@ -61248,8 +64179,52 @@ entities: - 15297 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5398 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10419 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 15578 - proto: GasVentScrubber entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10409 + - type: AtmosPipeColor + color: '#990000FF' - uid: 865 components: - type: Transform @@ -61260,6 +64235,16 @@ entities: - 1017 - type: AtmosPipeColor color: '#990000FF' + - uid: 1231 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1232 components: - type: Transform @@ -61293,28 +64278,6 @@ entities: - 14067 - type: AtmosPipeColor color: '#990000FF' - - uid: 2263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5859 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 5859 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3475 components: - type: Transform @@ -61347,11 +64310,9 @@ entities: - uid: 4414 components: - type: Transform - pos: 50.5,35.5 + rot: -1.5707963267948966 rad + pos: 49.5,40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - type: AtmosPipeColor color: '#990000FF' - uid: 4447 @@ -61378,6 +64339,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5398 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5679 components: - type: Transform @@ -61398,6 +64370,17 @@ entities: - 10930 - type: AtmosPipeColor color: '#990000FF' + - uid: 5821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 14653 - uid: 5968 components: - type: Transform @@ -61512,17 +64495,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 7760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,31.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10988 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7837 components: - type: Transform @@ -61575,64 +64547,31 @@ entities: - type: Transform pos: 23.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#990000FF' - - uid: 8595 + - uid: 8498 + components: + - type: Transform + pos: 53.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14171 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8625 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8571 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15476 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8610 - components: - - type: Transform - pos: 40.5,26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12530 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12528 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8685 - components: - - type: Transform - pos: 41.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8810 - components: - - type: Transform - rot: 3.141592653589793 rad pos: 26.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 11165 + - 15466 - type: AtmosPipeColor color: '#990000FF' - uid: 9359 @@ -61643,6 +64582,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 9406 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9442 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10469 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5242 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9546 components: - type: Transform @@ -61672,6 +64639,9 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,37.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15466 - type: AtmosPipeColor color: '#990000FF' - uid: 9636 @@ -61681,6 +64651,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10576 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10128 components: - type: Transform @@ -61744,6 +64725,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5101 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10365 components: - type: Transform @@ -61752,69 +64744,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10403 - components: - - type: Transform - pos: 57.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 10412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10652 components: - type: Transform @@ -61899,15 +64828,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 13517 + - uid: 12529 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,33.5 + rot: 1.5707963267948966 rad + pos: 44.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13512 - type: AtmosPipeColor color: '#990000FF' - uid: 13985 @@ -61962,9 +64904,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14377 components: - type: Transform @@ -61973,9 +64915,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 11680 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14421 components: - type: Transform @@ -61984,9 +64926,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14432 components: - type: Transform @@ -61994,9 +64936,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 14247 + - 2602 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14616 components: - type: Transform @@ -62007,7 +64949,7 @@ entities: deviceLists: - 14615 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14667 components: - type: Transform @@ -62029,6 +64971,28 @@ entities: - 5 - type: AtmosPipeColor color: '#990000FF' + - uid: 14852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14521 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8571 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14960 components: - type: Transform @@ -62040,6 +65004,39 @@ entities: - 7962 - type: AtmosPipeColor color: '#990000FF' + - uid: 15490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10524 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 15578 - proto: GasVolumePump entities: - uid: 1238 @@ -62127,11 +65124,10 @@ entities: parent: 2 - proto: GlassBoxLaserFilled entities: - - uid: 5106 + - uid: 11681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,39.5 + pos: 31.5,43.5 parent: 2 - proto: GlowstickRed entities: @@ -62149,16 +65145,6 @@ entities: parent: 2 - proto: Grille entities: - - uid: 18 - components: - - type: Transform - pos: 57.5,46.5 - parent: 2 - - uid: 19 - components: - - type: Transform - pos: 55.5,46.5 - parent: 2 - uid: 85 components: - type: Transform @@ -62264,16 +65250,6 @@ entities: - type: Transform pos: -9.5,-15.5 parent: 2 - - uid: 660 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 661 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 2 - uid: 663 components: - type: Transform @@ -62514,16 +65490,6 @@ entities: - type: Transform pos: 34.5,-58.5 parent: 2 - - uid: 1254 - components: - - type: Transform - pos: 38.5,-10.5 - parent: 2 - - uid: 1274 - components: - - type: Transform - pos: 39.5,32.5 - parent: 2 - uid: 1338 components: - type: Transform @@ -62654,16 +65620,6 @@ entities: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 1999 - components: - - type: Transform - pos: 5.5,22.5 - parent: 2 - - uid: 2000 - components: - - type: Transform - pos: 4.5,22.5 - parent: 2 - uid: 2001 components: - type: Transform @@ -62684,16 +65640,6 @@ entities: - type: Transform pos: 4.5,25.5 parent: 2 - - uid: 2009 - components: - - type: Transform - pos: 5.5,28.5 - parent: 2 - - uid: 2010 - components: - - type: Transform - pos: 4.5,28.5 - parent: 2 - uid: 2013 components: - type: Transform @@ -62729,90 +65675,40 @@ entities: - type: Transform pos: 24.5,12.5 parent: 2 - - uid: 2236 + - uid: 2247 components: - type: Transform - pos: 28.5,21.5 + pos: 30.5,29.5 parent: 2 - - uid: 2237 + - uid: 2249 components: - type: Transform - pos: 28.5,20.5 + pos: 62.5,33.5 parent: 2 - - uid: 2238 + - uid: 2250 components: - type: Transform - pos: 28.5,18.5 + pos: 29.5,29.5 parent: 2 - - uid: 2239 + - uid: 2308 components: - type: Transform - pos: 28.5,17.5 + pos: 40.5,29.5 parent: 2 - - uid: 2254 + - uid: 2309 components: - type: Transform - pos: 31.5,21.5 + pos: 39.5,29.5 parent: 2 - - uid: 2255 + - uid: 2311 components: - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 2281 - components: - - type: Transform - pos: 44.5,34.5 - parent: 2 - - uid: 2282 - components: - - type: Transform - pos: 44.5,35.5 - parent: 2 - - uid: 2283 - components: - - type: Transform - pos: 44.5,36.5 - parent: 2 - - uid: 2351 - components: - - type: Transform - pos: 37.5,24.5 - parent: 2 - - uid: 2352 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 2357 - components: - - type: Transform - pos: 41.5,25.5 + pos: 35.5,25.5 parent: 2 - uid: 2358 components: - type: Transform - pos: 37.5,21.5 - parent: 2 - - uid: 2359 - components: - - type: Transform - pos: 38.5,20.5 - parent: 2 - - uid: 2365 - components: - - type: Transform - pos: 38.5,25.5 - parent: 2 - - uid: 2371 - components: - - type: Transform - pos: 42.5,24.5 - parent: 2 - - uid: 2372 - components: - - type: Transform - pos: 42.5,22.5 + pos: 74.5,52.5 parent: 2 - uid: 2392 components: @@ -62829,15 +65725,20 @@ entities: - type: Transform pos: 28.5,-27.5 parent: 2 - - uid: 2456 + - uid: 2448 components: - type: Transform - pos: 43.5,16.5 + pos: 70.5,51.5 parent: 2 - - uid: 2457 + - uid: 2468 components: - type: Transform - pos: 41.5,16.5 + pos: 41.5,39.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 43.5,39.5 parent: 2 - uid: 2512 components: @@ -62859,6 +65760,16 @@ entities: - type: Transform pos: 39.5,5.5 parent: 2 + - uid: 2571 + components: + - type: Transform + pos: 74.5,51.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 69.5,51.5 + parent: 2 - uid: 2618 components: - type: Transform @@ -62914,16 +65825,6 @@ entities: - type: Transform pos: 13.5,42.5 parent: 2 - - uid: 2676 - components: - - type: Transform - pos: 24.5,34.5 - parent: 2 - - uid: 2677 - components: - - type: Transform - pos: 23.5,34.5 - parent: 2 - uid: 2734 components: - type: Transform @@ -63179,230 +66080,46 @@ entities: - type: Transform pos: 64.5,-2.5 parent: 2 - - uid: 3045 + - uid: 3129 components: - type: Transform - pos: 55.5,12.5 + pos: 35.5,28.5 parent: 2 - - uid: 3046 + - uid: 3142 components: - type: Transform - pos: 53.5,12.5 + pos: 71.5,51.5 parent: 2 - - uid: 3067 + - uid: 3261 components: - type: Transform - pos: 42.5,40.5 + pos: 39.5,53.5 parent: 2 - - uid: 3068 + - uid: 3264 components: - type: Transform - pos: 41.5,40.5 + pos: 37.5,53.5 parent: 2 - - uid: 3090 + - uid: 3265 components: - type: Transform - pos: 43.5,47.5 - parent: 2 - - uid: 3091 - components: - - type: Transform - pos: 44.5,47.5 - parent: 2 - - uid: 3092 - components: - - type: Transform - pos: 45.5,47.5 - parent: 2 - - uid: 3093 - components: - - type: Transform - pos: 45.5,48.5 - parent: 2 - - uid: 3094 - components: - - type: Transform - pos: 46.5,48.5 - parent: 2 - - uid: 3095 - components: - - type: Transform - pos: 47.5,48.5 - parent: 2 - - uid: 3096 - components: - - type: Transform - pos: 48.5,48.5 - parent: 2 - - uid: 3097 - components: - - type: Transform - pos: 48.5,49.5 - parent: 2 - - uid: 3106 - components: - - type: Transform - pos: 46.5,45.5 - parent: 2 - - uid: 3107 - components: - - type: Transform - pos: 47.5,45.5 - parent: 2 - - uid: 3108 - components: - - type: Transform - pos: 48.5,45.5 - parent: 2 - - uid: 3109 - components: - - type: Transform - pos: 49.5,45.5 - parent: 2 - - uid: 3114 - components: - - type: Transform - pos: 50.5,46.5 - parent: 2 - - uid: 3115 - components: - - type: Transform - pos: 50.5,47.5 - parent: 2 - - uid: 3116 - components: - - type: Transform - pos: 51.5,47.5 - parent: 2 - - uid: 3117 - components: - - type: Transform - pos: 52.5,47.5 - parent: 2 - - uid: 3126 - components: - - type: Transform - pos: 62.5,47.5 - parent: 2 - - uid: 3136 - components: - - type: Transform - pos: 60.5,47.5 - parent: 2 - - uid: 3137 - components: - - type: Transform - pos: 61.5,47.5 - parent: 2 - - uid: 3139 - components: - - type: Transform - pos: 47.5,39.5 - parent: 2 - - uid: 3140 - components: - - type: Transform - pos: 47.5,38.5 - parent: 2 - - uid: 3141 - components: - - type: Transform - pos: 47.5,37.5 - parent: 2 - - uid: 3161 - components: - - type: Transform - pos: 47.5,30.5 - parent: 2 - - uid: 3166 - components: - - type: Transform - pos: 56.5,26.5 - parent: 2 - - uid: 3213 - components: - - type: Transform - pos: 62.5,46.5 + pos: 38.5,53.5 parent: 2 - uid: 3291 components: - type: Transform pos: 47.5,-31.5 parent: 2 - - uid: 3317 - components: - - type: Transform - pos: 64.5,49.5 - parent: 2 - - uid: 3320 - components: - - type: Transform - pos: 65.5,48.5 - parent: 2 - uid: 3322 components: - type: Transform pos: -21.5,-15.5 parent: 2 - - uid: 3323 - components: - - type: Transform - pos: 50.5,49.5 - parent: 2 - - uid: 3324 - components: - - type: Transform - pos: 51.5,49.5 - parent: 2 - - uid: 3325 - components: - - type: Transform - pos: 52.5,49.5 - parent: 2 - - uid: 3326 - components: - - type: Transform - pos: 53.5,49.5 - parent: 2 - - uid: 3329 - components: - - type: Transform - pos: 59.5,49.5 - parent: 2 - - uid: 3330 - components: - - type: Transform - pos: 60.5,49.5 - parent: 2 - - uid: 3331 - components: - - type: Transform - pos: 61.5,49.5 - parent: 2 - uid: 3332 components: - type: Transform - pos: 62.5,49.5 - parent: 2 - - uid: 3341 - components: - - type: Transform - pos: 66.5,48.5 - parent: 2 - - uid: 3342 - components: - - type: Transform - pos: 64.5,48.5 - parent: 2 - - uid: 3349 - components: - - type: Transform - pos: 67.5,48.5 - parent: 2 - - uid: 3350 - components: - - type: Transform - pos: 67.5,47.5 + rot: 3.141592653589793 rad + pos: 50.5,51.5 parent: 2 - uid: 3364 components: @@ -63434,35 +66151,25 @@ entities: - type: Transform pos: 74.5,44.5 parent: 2 - - uid: 3477 + - uid: 3406 components: - type: Transform - pos: 57.5,26.5 + pos: 44.5,39.5 parent: 2 - - uid: 3478 + - uid: 3476 components: - type: Transform - pos: 58.5,26.5 + pos: 42.5,39.5 parent: 2 - uid: 3489 components: - type: Transform pos: 48.5,19.5 parent: 2 - - uid: 3495 + - uid: 3491 components: - type: Transform - pos: 55.5,26.5 - parent: 2 - - uid: 3496 - components: - - type: Transform - pos: 48.5,17.5 - parent: 2 - - uid: 3497 - components: - - type: Transform - pos: 54.5,26.5 + pos: 41.5,38.5 parent: 2 - uid: 3529 components: @@ -63574,11 +66281,6 @@ entities: - type: Transform pos: 79.5,-8.5 parent: 2 - - uid: 3844 - components: - - type: Transform - pos: 36.5,50.5 - parent: 2 - uid: 3855 components: - type: Transform @@ -63724,16 +66426,6 @@ entities: - type: Transform pos: 24.5,-9.5 parent: 2 - - uid: 4319 - components: - - type: Transform - pos: 7.5,29.5 - parent: 2 - - uid: 4320 - components: - - type: Transform - pos: 6.5,29.5 - parent: 2 - uid: 4338 components: - type: Transform @@ -63809,56 +66501,6 @@ entities: - type: Transform pos: 37.5,-34.5 parent: 2 - - uid: 4400 - components: - - type: Transform - pos: 52.5,38.5 - parent: 2 - - uid: 4401 - components: - - type: Transform - pos: 52.5,39.5 - parent: 2 - - uid: 4402 - components: - - type: Transform - pos: 60.5,36.5 - parent: 2 - - uid: 4404 - components: - - type: Transform - pos: 65.5,37.5 - parent: 2 - - uid: 4405 - components: - - type: Transform - pos: 65.5,36.5 - parent: 2 - - uid: 4408 - components: - - type: Transform - pos: 40.5,29.5 - parent: 2 - - uid: 4409 - components: - - type: Transform - pos: 39.5,29.5 - parent: 2 - - uid: 4410 - components: - - type: Transform - pos: 57.5,30.5 - parent: 2 - - uid: 4411 - components: - - type: Transform - pos: 56.5,30.5 - parent: 2 - - uid: 4412 - components: - - type: Transform - pos: 55.5,30.5 - parent: 2 - uid: 4415 components: - type: Transform @@ -63929,6 +66571,12 @@ entities: - type: Transform pos: 47.5,-37.5 parent: 2 + - uid: 4699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,29.5 + parent: 2 - uid: 5043 components: - type: Transform @@ -63954,56 +66602,53 @@ entities: - type: Transform pos: 10.5,47.5 parent: 2 + - uid: 5413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,37.5 + parent: 2 - uid: 5431 components: - type: Transform pos: 45.5,-33.5 parent: 2 - - uid: 5483 + - uid: 5458 components: - type: Transform - pos: 72.5,33.5 + pos: 37.5,29.5 parent: 2 - - uid: 5484 + - uid: 5491 components: - type: Transform - pos: 72.5,32.5 + rot: -1.5707963267948966 rad + pos: 73.5,32.5 parent: 2 - - uid: 5485 + - uid: 5506 components: - type: Transform - pos: 72.5,31.5 + pos: 63.5,33.5 parent: 2 - - uid: 5486 + - uid: 5512 components: - type: Transform - pos: 72.5,29.5 - parent: 2 - - uid: 5487 - components: - - type: Transform - pos: 72.5,28.5 - parent: 2 - - uid: 5488 - components: - - type: Transform - pos: 72.5,27.5 + pos: 35.5,27.5 parent: 2 - uid: 5581 components: - type: Transform pos: 9.5,47.5 parent: 2 + - uid: 5649 + components: + - type: Transform + pos: 64.5,33.5 + parent: 2 - uid: 5743 components: - type: Transform pos: 4.5,33.5 parent: 2 - - uid: 5751 - components: - - type: Transform - pos: 21.5,53.5 - parent: 2 - uid: 5752 components: - type: Transform @@ -64024,11 +66669,6 @@ entities: - type: Transform pos: 26.5,53.5 parent: 2 - - uid: 5757 - components: - - type: Transform - pos: 27.5,53.5 - parent: 2 - uid: 5758 components: - type: Transform @@ -64059,16 +66699,6 @@ entities: - type: Transform pos: 33.5,53.5 parent: 2 - - uid: 5765 - components: - - type: Transform - pos: 56.5,49.5 - parent: 2 - - uid: 5966 - components: - - type: Transform - pos: 56.5,50.5 - parent: 2 - uid: 6124 components: - type: Transform @@ -64114,10 +66744,10 @@ entities: - type: Transform pos: 99.5,26.5 parent: 2 - - uid: 6493 + - uid: 6338 components: - type: Transform - pos: 27.5,55.5 + pos: 36.5,28.5 parent: 2 - uid: 6501 components: @@ -64194,11 +66824,26 @@ entities: - type: Transform pos: -9.5,1.5 parent: 2 + - uid: 6846 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: 60.5,51.5 + parent: 2 - uid: 6860 components: - type: Transform pos: -20.5,16.5 parent: 2 + - uid: 6868 + components: + - type: Transform + pos: 62.5,51.5 + parent: 2 - uid: 6874 components: - type: Transform @@ -64234,31 +66879,11 @@ entities: - type: Transform pos: -14.5,16.5 parent: 2 - - uid: 6915 - components: - - type: Transform - pos: 30.5,57.5 - parent: 2 - - uid: 6917 - components: - - type: Transform - pos: 25.5,57.5 - parent: 2 - uid: 6921 components: - type: Transform pos: 43.5,1.5 parent: 2 - - uid: 6922 - components: - - type: Transform - pos: 24.5,55.5 - parent: 2 - - uid: 6945 - components: - - type: Transform - pos: 33.5,16.5 - parent: 2 - uid: 7010 components: - type: Transform @@ -64389,11 +67014,6 @@ entities: - type: Transform pos: -20.5,-13.5 parent: 2 - - uid: 7753 - components: - - type: Transform - pos: 65.5,35.5 - parent: 2 - uid: 7764 components: - type: Transform @@ -64404,16 +67024,6 @@ entities: - type: Transform pos: 9.5,45.5 parent: 2 - - uid: 7795 - components: - - type: Transform - pos: 52.5,25.5 - parent: 2 - - uid: 7799 - components: - - type: Transform - pos: 52.5,23.5 - parent: 2 - uid: 7814 components: - type: Transform @@ -64554,15 +67164,163 @@ entities: - type: Transform pos: 17.5,-37.5 parent: 2 - - uid: 8389 + - uid: 8320 components: - type: Transform - pos: 47.5,31.5 + pos: 77.5,52.5 parent: 2 - - uid: 8567 + - uid: 8324 components: - type: Transform - pos: 34.5,16.5 + pos: 79.5,52.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + pos: 78.5,52.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + pos: 80.5,52.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: 82.5,52.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: 81.5,52.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: 84.5,52.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + pos: 83.5,52.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: 85.5,52.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: 89.5,52.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: 87.5,52.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + pos: 89.5,51.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: 89.5,38.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: 89.5,50.5 + parent: 2 + - uid: 8371 + components: + - type: Transform + pos: 89.5,40.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - uid: 8375 + components: + - type: Transform + pos: 89.5,39.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: 89.5,49.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 89.5,41.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,28.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,28.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: 75.5,52.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + pos: 76.5,52.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,31.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + pos: 19.5,53.5 parent: 2 - uid: 8667 components: @@ -64574,10 +67332,20 @@ entities: - type: Transform pos: 63.5,26.5 parent: 2 - - uid: 8703 + - uid: 8679 components: - type: Transform - pos: 55.5,42.5 + pos: 36.5,29.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + pos: 39.5,23.5 parent: 2 - uid: 8719 components: @@ -64989,46 +67757,75 @@ entities: - type: Transform pos: 117.5,-20.5 parent: 2 + - uid: 9132 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - uid: 9261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,26.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + pos: 18.5,53.5 + parent: 2 + - uid: 9331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,51.5 + parent: 2 + - uid: 9335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,53.5 + parent: 2 - uid: 9349 components: - type: Transform pos: -20.5,-15.5 parent: 2 - - uid: 9894 + - uid: 9439 components: - type: Transform - pos: 29.5,57.5 + pos: 72.5,51.5 parent: 2 - - uid: 9895 + - uid: 9440 components: - type: Transform - pos: 27.5,57.5 + pos: 88.5,52.5 parent: 2 - - uid: 9898 + - uid: 9441 components: - type: Transform - pos: 28.5,55.5 - parent: 2 - - uid: 9903 - components: - - type: Transform - pos: 24.5,57.5 - parent: 2 - - uid: 10138 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - - uid: 10343 - components: - - type: Transform - pos: 43.5,40.5 + pos: 86.5,52.5 parent: 2 - uid: 10801 components: - type: Transform pos: 85.5,-14.5 parent: 2 + - uid: 10830 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 10866 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 10867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,23.5 + parent: 2 - uid: 10951 components: - type: Transform @@ -65044,11 +67841,6 @@ entities: - type: Transform pos: 25.5,-59.5 parent: 2 - - uid: 10974 - components: - - type: Transform - pos: 41.5,32.5 - parent: 2 - uid: 10975 components: - type: Transform @@ -65069,6 +67861,16 @@ entities: - type: Transform pos: 4.5,43.5 parent: 2 + - uid: 11159 + components: + - type: Transform + pos: 42.5,48.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 - uid: 11309 components: - type: Transform @@ -65519,11 +68321,6 @@ entities: - type: Transform pos: -16.5,-38.5 parent: 2 - - uid: 11629 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 2 - uid: 11630 components: - type: Transform @@ -65649,135 +68446,11 @@ entities: - type: Transform pos: 89.5,48.5 parent: 2 - - uid: 11658 - components: - - type: Transform - pos: 74.5,51.5 - parent: 2 - - uid: 11659 - components: - - type: Transform - pos: 75.5,51.5 - parent: 2 - - uid: 11660 - components: - - type: Transform - pos: 76.5,51.5 - parent: 2 - - uid: 11661 - components: - - type: Transform - pos: 77.5,51.5 - parent: 2 - - uid: 11662 - components: - - type: Transform - pos: 78.5,51.5 - parent: 2 - - uid: 11663 - components: - - type: Transform - pos: 79.5,51.5 - parent: 2 - - uid: 11664 - components: - - type: Transform - pos: 81.5,51.5 - parent: 2 - - uid: 11665 - components: - - type: Transform - pos: 80.5,51.5 - parent: 2 - - uid: 11667 - components: - - type: Transform - pos: 83.5,51.5 - parent: 2 - - uid: 11668 - components: - - type: Transform - pos: 84.5,51.5 - parent: 2 - - uid: 11669 - components: - - type: Transform - pos: 85.5,51.5 - parent: 2 - - uid: 11670 - components: - - type: Transform - pos: 86.5,51.5 - parent: 2 - - uid: 11671 - components: - - type: Transform - pos: 87.5,51.5 - parent: 2 - - uid: 11672 - components: - - type: Transform - pos: 88.5,51.5 - parent: 2 - - uid: 11673 - components: - - type: Transform - pos: 76.5,38.5 - parent: 2 - - uid: 11674 - components: - - type: Transform - pos: 77.5,38.5 - parent: 2 - - uid: 11675 - components: - - type: Transform - pos: 78.5,38.5 - parent: 2 - - uid: 11677 - components: - - type: Transform - pos: 80.5,38.5 - parent: 2 - - uid: 11678 - components: - - type: Transform - pos: 81.5,38.5 - parent: 2 - uid: 11679 components: - type: Transform - pos: 82.5,38.5 - parent: 2 - - uid: 11680 - components: - - type: Transform - pos: 83.5,38.5 - parent: 2 - - uid: 11681 - components: - - type: Transform - pos: 84.5,38.5 - parent: 2 - - uid: 11682 - components: - - type: Transform - pos: 85.5,38.5 - parent: 2 - - uid: 11683 - components: - - type: Transform - pos: 86.5,38.5 - parent: 2 - - uid: 11684 - components: - - type: Transform - pos: 87.5,38.5 - parent: 2 - - uid: 11685 - components: - - type: Transform - pos: 88.5,38.5 + rot: 1.5707963267948966 rad + pos: 29.5,51.5 parent: 2 - uid: 11686 components: @@ -65802,22 +68475,14 @@ entities: - uid: 11695 components: - type: Transform - pos: 41.5,52.5 - parent: 2 - - uid: 11696 - components: - - type: Transform - pos: 40.5,52.5 + rot: 1.5707963267948966 rad + pos: 30.5,51.5 parent: 2 - uid: 11697 components: - type: Transform - pos: 38.5,52.5 - parent: 2 - - uid: 11698 - components: - - type: Transform - pos: 39.5,52.5 + rot: 1.5707963267948966 rad + pos: 28.5,51.5 parent: 2 - uid: 11757 components: @@ -65874,6 +68539,17 @@ entities: - type: Transform pos: 73.5,3.5 parent: 2 + - uid: 11895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,51.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + pos: 17.5,53.5 + parent: 2 - uid: 11970 components: - type: Transform @@ -65884,6 +68560,23 @@ entities: - type: Transform pos: 45.5,-21.5 parent: 2 + - uid: 11998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,48.5 + parent: 2 + - uid: 12155 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,51.5 + parent: 2 - uid: 12220 components: - type: Transform @@ -65899,6 +68592,12 @@ entities: - type: Transform pos: 45.5,-23.5 parent: 2 + - uid: 12299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,51.5 + parent: 2 - uid: 12370 components: - type: Transform @@ -65919,16 +68618,6 @@ entities: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 12430 - components: - - type: Transform - pos: 56.5,51.5 - parent: 2 - - uid: 12437 - components: - - type: Transform - pos: 54.5,46.5 - parent: 2 - uid: 12441 components: - type: Transform @@ -66004,16 +68693,6 @@ entities: - type: Transform pos: 45.5,-45.5 parent: 2 - - uid: 13114 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 13126 - components: - - type: Transform - pos: 25.5,55.5 - parent: 2 - uid: 13245 components: - type: Transform @@ -66049,11 +68728,6 @@ entities: - type: Transform pos: -9.5,-2.5 parent: 2 - - uid: 13282 - components: - - type: Transform - pos: 58.5,46.5 - parent: 2 - uid: 13290 components: - type: Transform @@ -66319,25 +68993,48 @@ entities: - type: Transform pos: 39.5,-61.5 parent: 2 - - uid: 13432 + - uid: 13522 components: - type: Transform - pos: 26.5,57.5 + rot: 3.141592653589793 rad + pos: 41.5,32.5 parent: 2 - - uid: 13469 + - uid: 13586 components: - type: Transform - pos: 29.5,55.5 + rot: 1.5707963267948966 rad + pos: 23.5,51.5 parent: 2 - - uid: 13545 + - uid: 13590 components: - type: Transform - pos: 56.5,42.5 + rot: 1.5707963267948966 rad + pos: 89.5,36.5 parent: 2 - - uid: 13547 + - uid: 13637 components: - type: Transform - pos: 57.5,42.5 + pos: 32.5,16.5 + parent: 2 + - uid: 13645 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 13646 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 13652 + components: + - type: Transform + pos: 28.5,21.5 parent: 2 - uid: 13654 components: @@ -66609,11 +69306,6 @@ entities: - type: Transform pos: 77.5,20.5 parent: 2 - - uid: 14204 - components: - - type: Transform - pos: 83.5,36.5 - parent: 2 - uid: 14205 components: - type: Transform @@ -66684,11 +69376,6 @@ entities: - type: Transform pos: 80.5,22.5 parent: 2 - - uid: 14330 - components: - - type: Transform - pos: 74.5,26.5 - parent: 2 - uid: 14331 components: - type: Transform @@ -66709,11 +69396,6 @@ entities: - type: Transform pos: 78.5,26.5 parent: 2 - - uid: 14336 - components: - - type: Transform - pos: 74.5,34.5 - parent: 2 - uid: 14337 components: - type: Transform @@ -66729,11 +69411,6 @@ entities: - type: Transform pos: 77.5,34.5 parent: 2 - - uid: 14344 - components: - - type: Transform - pos: 81.5,36.5 - parent: 2 - uid: 14409 components: - type: Transform @@ -66789,11 +69466,28 @@ entities: - type: Transform pos: 99.5,34.5 parent: 2 + - uid: 14622 + components: + - type: Transform + pos: 45.5,48.5 + parent: 2 - uid: 14623 components: - type: Transform pos: 72.5,25.5 parent: 2 + - uid: 14629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,51.5 + parent: 2 - uid: 14762 components: - type: Transform @@ -66814,41 +69508,6 @@ entities: - type: Transform pos: 14.5,45.5 parent: 2 - - uid: 14787 - components: - - type: Transform - pos: 43.5,51.5 - parent: 2 - - uid: 14788 - components: - - type: Transform - pos: 44.5,51.5 - parent: 2 - - uid: 14789 - components: - - type: Transform - pos: 45.5,51.5 - parent: 2 - - uid: 14790 - components: - - type: Transform - pos: 46.5,51.5 - parent: 2 - - uid: 14791 - components: - - type: Transform - pos: 36.5,52.5 - parent: 2 - - uid: 14793 - components: - - type: Transform - pos: 48.5,51.5 - parent: 2 - - uid: 14794 - components: - - type: Transform - pos: 35.5,52.5 - parent: 2 - uid: 14800 components: - type: Transform @@ -66909,106 +69568,6 @@ entities: - type: Transform pos: 97.5,36.5 parent: 2 - - uid: 14824 - components: - - type: Transform - pos: 50.5,39.5 - parent: 2 - - uid: 14825 - components: - - type: Transform - pos: 50.5,40.5 - parent: 2 - - uid: 14826 - components: - - type: Transform - pos: 50.5,41.5 - parent: 2 - - uid: 14827 - components: - - type: Transform - pos: 50.5,42.5 - parent: 2 - - uid: 14829 - components: - - type: Transform - pos: 53.5,44.5 - parent: 2 - - uid: 14830 - components: - - type: Transform - pos: 54.5,44.5 - parent: 2 - - uid: 14831 - components: - - type: Transform - pos: 55.5,44.5 - parent: 2 - - uid: 14832 - components: - - type: Transform - pos: 56.5,44.5 - parent: 2 - - uid: 14833 - components: - - type: Transform - pos: 57.5,44.5 - parent: 2 - - uid: 14834 - components: - - type: Transform - pos: 58.5,44.5 - parent: 2 - - uid: 14836 - components: - - type: Transform - pos: 59.5,44.5 - parent: 2 - - uid: 14839 - components: - - type: Transform - pos: 62.5,32.5 - parent: 2 - - uid: 14840 - components: - - type: Transform - pos: 62.5,33.5 - parent: 2 - - uid: 14841 - components: - - type: Transform - pos: 62.5,34.5 - parent: 2 - - uid: 14842 - components: - - type: Transform - pos: 62.5,36.5 - parent: 2 - - uid: 14843 - components: - - type: Transform - pos: 62.5,37.5 - parent: 2 - - uid: 14844 - components: - - type: Transform - pos: 62.5,38.5 - parent: 2 - - uid: 14845 - components: - - type: Transform - pos: 62.5,39.5 - parent: 2 - - uid: 14846 - components: - - type: Transform - pos: 62.5,40.5 - parent: 2 - - uid: 14847 - components: - - type: Transform - pos: 62.5,35.5 - parent: 2 - uid: 14953 components: - type: Transform @@ -67049,11 +69608,6 @@ entities: - type: Transform pos: 16.5,51.5 parent: 2 - - uid: 15106 - components: - - type: Transform - pos: 17.5,51.5 - parent: 2 - uid: 15107 components: - type: Transform @@ -67079,6 +69633,12 @@ entities: - type: Transform pos: 35.5,3.5 parent: 2 + - uid: 15199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,51.5 + parent: 2 - uid: 15206 components: - type: Transform @@ -67244,45 +69804,183 @@ entities: - type: Transform pos: -24.5,-26.5 parent: 2 - - uid: 15384 + - uid: 15284 components: - type: Transform - pos: 37.5,26.5 + pos: 52.5,53.5 parent: 2 - - uid: 15413 + - uid: 15285 components: - type: Transform - pos: 23.5,55.5 + pos: 51.5,53.5 parent: 2 - - uid: 15414 + - uid: 15286 components: - type: Transform - pos: 30.5,55.5 + pos: 50.5,53.5 parent: 2 - - uid: 15415 + - uid: 15639 components: - type: Transform - pos: 31.5,55.5 + pos: 53.5,53.5 parent: 2 - - uid: 15418 + - uid: 15651 components: - type: Transform - pos: 22.5,57.5 + rot: 3.141592653589793 rad + pos: 61.5,53.5 parent: 2 - - uid: 15419 + - uid: 15652 components: - type: Transform - pos: 21.5,57.5 + rot: 3.141592653589793 rad + pos: 62.5,53.5 parent: 2 - - uid: 15420 + - uid: 15654 components: - type: Transform - pos: 33.5,57.5 + rot: 3.141592653589793 rad + pos: 64.5,53.5 parent: 2 - - uid: 15449 + - uid: 15655 components: - type: Transform - pos: 36.5,48.5 + pos: 48.5,53.5 + parent: 2 + - uid: 15695 + components: + - type: Transform + pos: 34.5,53.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + pos: 32.5,51.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: 34.5,51.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + pos: 20.5,51.5 + parent: 2 + - uid: 15719 + components: + - type: Transform + pos: 21.5,51.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + pos: 17.5,51.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + pos: 41.5,53.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + pos: 42.5,53.5 + parent: 2 + - uid: 15724 + components: + - type: Transform + pos: 43.5,53.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + pos: 44.5,53.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + pos: 46.5,53.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + pos: 47.5,53.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + pos: 49.5,53.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: 47.5,51.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + pos: 46.5,51.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: 45.5,51.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + pos: 43.5,51.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + pos: 41.5,51.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + pos: 40.5,51.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + pos: 39.5,51.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + pos: 38.5,51.5 + parent: 2 + - uid: 15778 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 2 + - uid: 15780 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + pos: 0.5,-38.5 parent: 2 - proto: GrilleBroken entities: @@ -67347,20 +70045,15 @@ entities: - type: Transform pos: 1.5,42.5 parent: 2 - - uid: 4173 - components: - - type: Transform - pos: 36.5,49.5 - parent: 2 - uid: 5289 components: - type: Transform pos: 0.5,16.5 parent: 2 - - uid: 6131 + - uid: 6796 components: - type: Transform - pos: 26.5,55.5 + pos: 27.5,53.5 parent: 2 - uid: 6834 components: @@ -67372,11 +70065,21 @@ entities: - type: Transform pos: -18.5,-37.5 parent: 2 + - uid: 6862 + components: + - type: Transform + pos: 26.5,51.5 + parent: 2 - uid: 6870 components: - type: Transform pos: -10.5,16.5 parent: 2 + - uid: 6876 + components: + - type: Transform + pos: 59.5,53.5 + parent: 2 - uid: 6890 components: - type: Transform @@ -67392,6 +70095,12 @@ entities: - type: Transform pos: 9.5,46.5 parent: 2 + - uid: 7857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,37.5 + parent: 2 - uid: 8105 components: - type: Transform @@ -67402,16 +70111,6 @@ entities: - type: Transform pos: 91.5,43.5 parent: 2 - - uid: 11089 - components: - - type: Transform - pos: 82.5,51.5 - parent: 2 - - uid: 11094 - components: - - type: Transform - pos: 79.5,38.5 - parent: 2 - uid: 13763 components: - type: Transform @@ -67442,21 +70141,6 @@ entities: - type: Transform pos: 13.5,45.5 parent: 2 - - uid: 14786 - components: - - type: Transform - pos: 37.5,52.5 - parent: 2 - - uid: 14792 - components: - - type: Transform - pos: 47.5,51.5 - parent: 2 - - uid: 14798 - components: - - type: Transform - pos: 73.5,51.5 - parent: 2 - uid: 14799 components: - type: Transform @@ -67487,71 +70171,270 @@ entities: - type: Transform pos: 24.5,53.5 parent: 2 - - uid: 15337 + - uid: 15627 components: - type: Transform - pos: 28.5,57.5 + pos: 35.5,53.5 parent: 2 - - uid: 15416 + - uid: 15638 components: - type: Transform - pos: 31.5,57.5 + pos: 36.5,53.5 parent: 2 - - uid: 15417 + - uid: 15713 components: - type: Transform - pos: 23.5,57.5 + pos: 33.5,51.5 parent: 2 + - uid: 15714 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: 22.5,51.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + pos: 20.5,53.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + pos: 45.5,53.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + pos: 40.5,53.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + pos: 42.5,51.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: 63.5,53.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 2 + - uid: 15777 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 2 + - uid: 15779 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 +- proto: GunSafe + entities: + - uid: 6527 + components: + - type: MetaData + name: Armor Safe + - type: Transform + anchored: True + pos: 41.5,36.5 + parent: 2 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9885 + - 15800 + - 15799 + - 15634 + - 15575 + - 15574 + - 15480 + - 15459 + - 15442 + - 15337 + - 15200 + - 13634 + - 13483 + - 12773 + - 11017 + - 10405 + - 9926 + - 9835 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeDisabler + entities: + - uid: 11677 + components: + - type: MetaData + name: disabler safe (5) + - type: Transform + anchored: True + pos: 39.5,35.5 + parent: 2 + - type: Physics + bodyType: Static + - type: Label + currentLabel: 5 + - type: NameModifier + baseName: disabler safe - proto: GunSafeLaserCarbine entities: - - uid: 10849 + - uid: 11126 components: + - type: MetaData + name: laser safe (3) - type: Transform anchored: True - pos: 42.5,27.5 + pos: 45.5,33.5 parent: 2 - type: Physics bodyType: Static + - type: Label + currentLabel: 3 + - type: NameModifier + baseName: laser safe - proto: GunSafePistolMk58 entities: - - uid: 10851 + - uid: 6793 components: + - type: MetaData + name: mk58 safe (4) - type: Transform anchored: True - pos: 42.5,28.5 + pos: 39.5,34.5 parent: 2 - type: Physics bodyType: Static + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: mk58 safe - proto: GunSafeRifleLecter entities: - - uid: 2460 + - uid: 15183 components: + - type: MetaData + name: lecter safe (2) - type: Transform anchored: True - pos: 38.5,26.5 + pos: 45.5,34.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: Physics bodyType: Static + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: lecter safe - proto: GunSafeShotgunKammerer entities: - - uid: 15471 + - uid: 15278 components: + - type: MetaData + name: kammerer safe (2) - type: Transform - anchored: True - pos: 42.5,26.5 + pos: 45.5,35.5 parent: 2 - - type: Physics - bodyType: Static + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: kammerer safe - proto: GunSafeSubMachineGunDrozd entities: - - uid: 2461 + - uid: 10682 components: + - type: MetaData + name: drozd safe (2) - type: Transform - anchored: True - pos: 38.5,27.5 + pos: 45.5,36.5 parent: 2 - - type: Physics - bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: drozd safe - proto: Handcuffs entities: - uid: 9397 @@ -67571,6 +70454,11 @@ entities: - type: Transform pos: 38.482082,-17.438766 parent: 2 + - uid: 12549 + components: + - type: Transform + pos: 44.355003,29.376284 + parent: 2 - proto: HandheldStationMap entities: - uid: 9400 @@ -67580,22 +70468,30 @@ entities: parent: 2 - proto: HandLabeler entities: - - uid: 5319 + - uid: 3103 components: - type: Transform - pos: 49.532963,19.552088 + pos: 65.58373,8.621037 parent: 2 - - uid: 5320 + - uid: 13169 components: - type: Transform - pos: 49.532963,17.552088 + parent: 13141 + - type: Physics + canCollide: False + - uid: 13642 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 70.59308,13.572977 parent: 2 - proto: HarmonicaInstrument entities: - - uid: 13630 + - uid: 8388 components: - type: Transform - pos: 56.5,31.5 + rot: -12.566370614359172 rad + pos: 36.543064,21.591867 parent: 2 - proto: HarpInstrument entities: @@ -67659,6 +70555,13 @@ entities: - type: Transform pos: 67.49741,-3.281434 parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 19 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 - proto: HighSecCommandLocked entities: - uid: 1744 @@ -67711,6 +70614,11 @@ entities: parent: 2 - proto: HolopadCargoSalvageBay entities: + - uid: 11400 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 - uid: 15167 components: - type: Transform @@ -67732,10 +70640,10 @@ entities: parent: 2 - proto: HolopadCommandCaptain entities: - - uid: 15172 + - uid: 9237 components: - type: Transform - pos: 33.5,42.5 + pos: 31.5,41.5 parent: 2 - proto: HolopadCommandCe entities: @@ -67760,10 +70668,10 @@ entities: parent: 2 - proto: HolopadCommandHos entities: - - uid: 15173 + - uid: 8611 components: - type: Transform - pos: 43.5,22.5 + pos: 47.5,40.5 parent: 2 - proto: HolopadCommandMeetingRoom entities: @@ -67781,10 +70689,10 @@ entities: parent: 2 - proto: HolopadCommandRd entities: - - uid: 15178 + - uid: 10577 components: - type: Transform - pos: 61.5,9.5 + pos: 63.5,10.5 parent: 2 - proto: HolopadCommandVault entities: @@ -67921,17 +70829,17 @@ entities: parent: 2 - proto: HolopadScienceAnomaly entities: - - uid: 15190 + - uid: 5748 components: - type: Transform - pos: 69.5,13.5 + pos: 68.5,14.5 parent: 2 - proto: HolopadScienceArtifact entities: - - uid: 15191 + - uid: 9269 components: - type: Transform - pos: 63.5,24.5 + pos: 61.5,24.5 parent: 2 - proto: HolopadScienceRnd entities: @@ -67947,40 +70855,47 @@ entities: - type: Transform pos: 50.5,9.5 parent: 2 -- proto: HolopadSecurityBrig +- proto: HolopadSecurityArmory entities: - - uid: 5247 + - uid: 10417 components: - type: Transform - pos: 34.5,19.5 + pos: 40.5,34.5 + parent: 2 +- proto: HolopadSecurityBrig + entities: + - uid: 3172 + components: + - type: Transform + pos: 35.5,19.5 parent: 2 - proto: HolopadSecurityCourtroom entities: - - uid: 15185 + - uid: 14979 components: - type: Transform - pos: 20.5,31.5 + pos: 19.5,31.5 parent: 2 - proto: HolopadSecurityDetective entities: - - uid: 15184 + - uid: 10836 components: - type: Transform - pos: 42.5,18.5 + pos: 53.5,37.5 parent: 2 - proto: HolopadSecurityFront entities: - - uid: 15180 + - uid: 14097 components: - type: Transform - pos: 29.5,25.5 + pos: 33.5,30.5 parent: 2 - proto: HolopadSecurityInterrogation entities: - - uid: 15182 + - uid: 5405 components: - type: Transform - pos: 41.5,34.5 + pos: 56.5,32.5 parent: 2 - proto: HolopadSecurityLawyer entities: @@ -67989,19 +70904,12 @@ entities: - type: Transform pos: -3.5,-11.5 parent: 2 -- proto: HolopadSecurityPerma - entities: - - uid: 15183 - components: - - type: Transform - pos: 54.5,34.5 - parent: 2 - proto: HolopadSecurityWarden entities: - - uid: 15187 + - uid: 3115 components: - type: Transform - pos: 39.5,18.5 + pos: 38.5,26.5 parent: 2 - proto: HolopadServiceBar entities: @@ -68040,10 +70948,10 @@ entities: parent: 2 - proto: HolopadServiceKitchen entities: - - uid: 15200 + - uid: 15807 components: - type: Transform - pos: 37.5,-10.5 + pos: 35.5,-9.5 parent: 2 - proto: HolopadServiceLibrary entities: @@ -68054,11 +70962,15 @@ entities: parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 3192 + - uid: 3251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,32.5 + pos: 78.5,9.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 77.5,9.5 parent: 2 - uid: 4682 components: @@ -68070,6 +70982,17 @@ entities: - type: Transform pos: 61.5,-8.5 parent: 2 + - uid: 5387 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,22.5 + parent: 2 - uid: 5744 components: - type: Transform @@ -68095,16 +71018,6 @@ entities: - type: Transform pos: 58.5,-5.5 parent: 2 - - uid: 11902 - components: - - type: Transform - pos: 78.5,10.5 - parent: 2 - - uid: 11903 - components: - - type: Transform - pos: 77.5,10.5 - parent: 2 - uid: 12254 components: - type: Transform @@ -68150,18 +71063,49 @@ entities: - type: Transform pos: 14.5,16.5 parent: 2 - - uid: 13639 + - uid: 14828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,40.5 + pos: 30.5,18.5 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 669 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 59.5,43.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 57.5,41.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: 59.5,41.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: 59.5,42.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: 57.5,43.5 parent: 2 - proto: HydroponicsToolClippers entities: - - uid: 3185 + - uid: 10545 components: - type: Transform - pos: 56.15973,41.601078 + pos: 34.293724,17.46456 parent: 2 - proto: HydroponicsToolHatchet entities: @@ -68172,10 +71116,11 @@ entities: parent: 2 - proto: HydroponicsToolMiniHoe entities: - - uid: 3186 + - uid: 3229 components: - type: Transform - pos: 54.460526,36.592915 + rot: -12.566370614359172 rad + pos: 34.949974,17.573935 parent: 2 - uid: 6755 components: @@ -68184,13 +71129,34 @@ entities: parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 13629 + - uid: 11659 components: - type: Transform - pos: 54.56469,36.655457 + rot: -12.566370614359172 rad + pos: 34.99685,17.65206 parent: 2 - proto: hydroponicsTray entities: + - uid: 2194 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 - uid: 6665 components: - type: Transform @@ -68241,26 +71207,6 @@ entities: - type: Transform pos: 41.5,-4.5 parent: 2 - - uid: 13633 - components: - - type: Transform - pos: 53.5,39.5 - parent: 2 - - uid: 13634 - components: - - type: Transform - pos: 54.5,39.5 - parent: 2 - - uid: 13636 - components: - - type: Transform - pos: 53.5,38.5 - parent: 2 - - uid: 13637 - components: - - type: Transform - pos: 54.5,38.5 - parent: 2 - proto: IDComputerCircuitboard entities: - uid: 12659 @@ -68268,6 +71214,23 @@ entities: - type: Transform pos: 41.5,-14.5 parent: 2 +- proto: InflatableDoor + entities: + - uid: 8369 + components: + - type: Transform + pos: 82.5,4.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: 86.5,-7.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + pos: 66.5,36.5 + parent: 2 - proto: InflatableWall entities: - uid: 6524 @@ -68275,33 +71238,56 @@ entities: - type: Transform pos: 87.5,-7.5 parent: 2 - - uid: 6729 - components: - - type: Transform - pos: 86.5,-7.5 - parent: 2 - uid: 6730 components: - type: Transform pos: 82.5,5.5 parent: 2 - - uid: 6731 + - uid: 8401 components: - type: Transform - pos: 82.5,4.5 + pos: 67.5,36.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,51.5 parent: 2 - proto: IngotGold entities: - - uid: 8824 - components: - - type: Transform - pos: 89.45974,-12.337885 - parent: 2 - uid: 12098 components: - type: Transform pos: 19.594189,42.029728 parent: 2 +- proto: IngotGold1 + entities: + - uid: 6493 + components: + - type: Transform + pos: 89.379524,-12.132982 + parent: 2 + - uid: 7865 + components: + - type: Transform + pos: 89.74239,-12.209297 + parent: 2 + - uid: 8061 + components: + - type: Transform + pos: 89.79371,-12.474922 + parent: 2 + - uid: 8358 + components: + - type: Transform + pos: 89.348274,-12.601732 + parent: 2 + - uid: 8420 + components: + - type: Transform + pos: 89.40308,-12.303047 + parent: 2 - proto: IngotSilver entities: - uid: 12100 @@ -68324,27 +71310,28 @@ entities: parent: 2 - proto: IntercomCommand entities: - - uid: 2329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,21.5 - parent: 2 - uid: 4587 components: - type: Transform pos: 12.5,-34.5 parent: 2 + - uid: 8471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,40.5 + parent: 2 - uid: 9436 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,42.5 parent: 2 - - uid: 9437 + - uid: 9460 components: - type: Transform - pos: 33.5,41.5 + rot: -1.5707963267948966 rad + pos: 41.5,26.5 parent: 2 - uid: 11408 components: @@ -68406,17 +71393,11 @@ entities: parent: 2 - proto: IntercomSecurity entities: - - uid: 2565 + - uid: 14552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,34.5 - parent: 2 - - uid: 15375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,26.5 + rot: 3.141592653589793 rad + pos: 36.5,18.5 parent: 2 - proto: IntercomSupply entities: @@ -68439,13 +71420,37 @@ entities: - type: Transform pos: 4.5,-6.5 parent: 2 +- proto: JanitorServiceLight + entities: + - uid: 2363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 - proto: JetpackMiniFilled entities: + - uid: 8627 + components: + - type: Transform + pos: 8.488525,-9.228134 + parent: 2 - uid: 10308 components: - type: Transform - pos: 8.484015,-9.278149 + pos: 8.488525,-9.353134 parent: 2 + - type: GasTank + toggleActionEntity: 6295 + - type: Jetpack + toggleActionEntity: 6125 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6125 + - 6295 - uid: 10309 components: - type: Transform @@ -68453,25 +71458,38 @@ entities: parent: 2 - proto: JetpackSecurityFilled entities: - - uid: 9478 + - uid: 12242 components: - type: Transform - pos: 39.649494,28.741974 - parent: 2 - - uid: 15462 + parent: 3183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12760 components: - type: Transform - pos: 39.63387,28.898224 - parent: 2 + parent: 12746 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: KitchenElectricGrill entities: - - uid: 13167 + - uid: 5502 components: - type: Transform - pos: 36.5,-10.5 + pos: 35.5,-12.5 parent: 2 - proto: KitchenKnife entities: + - uid: 10415 + components: + - type: MetaData + desc: A general purpose Chef's Knife made by Asters Merchant Guild. Guaranteed to stay sharp even after taking out your anger. + name: bloodied kitchen knife + - type: Transform + rot: 3.141592653589793 rad + pos: 55.215134,44.005093 + parent: 2 - uid: 11124 components: - type: Transform @@ -68479,10 +71497,15 @@ entities: parent: 2 - proto: KitchenMicrowave entities: - - uid: 1578 + - uid: 5461 components: - type: Transform - pos: 35.5,-10.5 + pos: 33.5,17.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: 55.5,41.5 parent: 2 - uid: 8860 components: @@ -68494,10 +71517,10 @@ entities: - type: Transform pos: 76.5,5.5 parent: 2 - - uid: 13613 + - uid: 15808 components: - type: Transform - pos: 54.5,41.5 + pos: 37.5,-10.5 parent: 2 - proto: KitchenReagentGrinder entities: @@ -68511,10 +71534,15 @@ entities: - type: Transform pos: 49.5,-6.5 parent: 2 - - uid: 13619 + - uid: 8534 components: - type: Transform - pos: 55.5,41.5 + pos: 55.5,40.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + pos: 35.5,17.5 parent: 2 - proto: KitchenSpike entities: @@ -68571,53 +71599,65 @@ entities: - type: Transform pos: 22.507973,40.51647 parent: 2 - - uid: 4018 + - uid: 6900 components: - type: Transform - pos: 32.49905,41.93212 + pos: 35.35573,44.0572 parent: 2 - - uid: 5474 + - uid: 8437 components: - type: Transform - pos: 67.5,37.5 + rot: 3.141592653589793 rad + pos: 44.741825,26.038797 parent: 2 + - uid: 8468 + components: + - type: Transform + pos: 32.367878,42.14361 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: 69.31397,39.02177 + parent: 2 + - type: HandheldLight + toggleActionEntity: 6731 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 6731 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 11417 components: - type: Transform pos: 54.632915,-10.081582 parent: 2 - - uid: 11465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.568825,20.850296 - parent: 2 - - uid: 12116 - components: - - type: Transform - pos: 37.37405,43.99462 - parent: 2 - uid: 13491 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.328161,-42.06295 parent: 2 + - uid: 14698 + components: + - type: Transform + pos: 54.354797,38.122463 + parent: 2 - proto: LampInterrogator entities: - - uid: 13567 + - uid: 4361 components: - type: Transform - pos: 40.512142,35.84228 - parent: 2 - - type: Physics - canCollide: True -- proto: LargeBeaker - entities: - - uid: 5323 - components: - - type: Transform - pos: 54.42104,17.661463 + pos: 57.60799,32.875443 parent: 2 - proto: LightReplacer entities: @@ -68631,7 +71671,7 @@ entities: - uid: 14280 components: - type: Transform - pos: 84.53704,28.473265 + pos: 85.46464,28.58347 parent: 2 - proto: LockableButtonAtmospherics entities: @@ -68684,49 +71724,6 @@ entities: 12890: - - Pressed - Toggle -- proto: LockableButtonChiefEngineer - entities: - - uid: 6118 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13490: - - - Pressed - - Toggle - 13489: - - - Pressed - - Toggle - 13488: - - - Pressed - - Toggle - - uid: 13470 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13478: - - - Pressed - - Toggle - 13477: - - - Pressed - - Toggle - 13476: - - - Pressed - - Toggle - 13480: - - - Pressed - - Toggle - 13481: - - - Pressed - - Toggle - 13482: - - - Pressed - - Toggle - proto: LockableButtonCommand entities: - uid: 15104 @@ -68843,6 +71840,8 @@ entities: entities: - uid: 1557 components: + - type: MetaData + name: lockable button (Blast Doors) - type: Transform rot: 1.5707963267948966 rad pos: 43.5,11.5 @@ -68855,19 +71854,31 @@ entities: 8248: - - Pressed - Toggle + - type: Label + currentLabel: Blast Doors + - type: NameModifier + baseName: lockable button - proto: LockableButtonSalvage entities: - - uid: 15284 + - uid: 12839 components: + - type: MetaData + name: lockable button (Blast Doors) - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 + pos: 3.5,39.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 895: + 3561: - - Pressed - Toggle + 3562: + - - Pressed + - Toggle + - type: Label + currentLabel: Blast Doors + - type: NameModifier + baseName: lockable button - proto: LockableButtonService entities: - uid: 15276 @@ -68917,10 +71928,10 @@ entities: parent: 2 - proto: LockerCaptainFilledNoLaser entities: - - uid: 4137 + - uid: 388 components: - type: Transform - pos: 37.5,41.5 + pos: 33.5,43.5 parent: 2 - proto: LockerChemistryFilled entities: @@ -68945,10 +71956,10 @@ entities: parent: 2 - proto: LockerDetectiveFilled entities: - - uid: 11476 + - uid: 13519 components: - type: Transform - pos: 43.5,18.5 + pos: 57.5,39.5 parent: 2 - proto: LockerElectricalSuppliesFilled entities: @@ -68986,42 +71997,22 @@ entities: parent: 2 - proto: LockerEvidence entities: - - uid: 2430 - components: - - type: Transform - pos: 32.5,28.5 - parent: 2 - uid: 2680 components: - type: Transform pos: 19.5,33.5 parent: 2 - - uid: 5013 - components: - - type: Transform - pos: 32.5,21.5 - parent: 2 - - uid: 5018 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 - uid: 7980 components: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 15277 - components: - - type: Transform - pos: 41.5,33.5 - parent: 2 - proto: LockerFreezer entities: - - uid: 1646 + - uid: 4800 components: - type: Transform - pos: 29.5,-12.5 + pos: 31.5,-9.5 parent: 2 - proto: LockerFreezerVaultFilled entities: @@ -69037,12 +72028,12 @@ entities: - type: Transform pos: 17.5,-5.5 parent: 2 -- proto: LockerHeadOfSecurityFilledHardsuit +- proto: LockerHeadOfSecurityFilled entities: - - uid: 8426 + - uid: 2365 components: - type: Transform - pos: 44.5,25.5 + pos: 42.5,41.5 parent: 2 - proto: LockerMedical entities: @@ -69107,6 +72098,46 @@ entities: - type: Transform pos: 44.5,4.5 parent: 2 +- proto: LockerPrisoner + entities: + - uid: 10454 + components: + - type: Transform + anchored: True + pos: 29.5,25.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerPrisoner2 + entities: + - uid: 10440 + components: + - type: Transform + anchored: True + pos: 30.5,25.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerPrisoner3 + entities: + - uid: 10461 + components: + - type: Transform + anchored: True + pos: 31.5,25.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerPrisoner4 + entities: + - uid: 10447 + components: + - type: Transform + anchored: True + pos: 32.5,25.5 + parent: 2 + - type: Physics + bodyType: Static - proto: LockerQuarterMasterFilled entities: - uid: 8104 @@ -69116,10 +72147,10 @@ entities: parent: 2 - proto: LockerResearchDirectorFilled entities: - - uid: 10660 + - uid: 14590 components: - type: Transform - pos: 61.5,11.5 + pos: 60.5,8.5 parent: 2 - type: EntityStorage air: @@ -69139,59 +72170,84 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13492 + - 15428 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerSalvageSpecialistFilledHardsuit entities: - uid: 697 components: - type: Transform + anchored: True pos: 9.5,31.5 parent: 2 - - uid: 5046 + - type: Physics + bodyType: Static + - uid: 10991 components: - type: Transform + anchored: True pos: 9.5,30.5 parent: 2 + - type: Physics + bodyType: Static - proto: LockerScienceFilled entities: - - uid: 5338 + - uid: 5448 components: - type: Transform - pos: 55.5,22.5 + pos: 55.5,25.5 parent: 2 - - uid: 5339 + - uid: 6341 components: - type: Transform - pos: 56.5,22.5 + pos: 56.5,25.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + pos: 54.5,25.5 parent: 2 - uid: 12829 components: - type: Transform pos: 57.5,25.5 parent: 2 -- proto: LockerScientist - entities: - - uid: 5322 - components: - - type: Transform - pos: 51.5,21.5 - parent: 2 - proto: LockerSecurityFilled entities: - - uid: 8441 + - uid: 2467 components: - type: Transform - pos: 29.5,30.5 + anchored: True + pos: 37.5,34.5 parent: 2 - - uid: 8443 + - type: Physics + bodyType: Static + - uid: 3384 components: - type: Transform - pos: 30.5,30.5 + anchored: True + pos: 36.5,34.5 parent: 2 - - uid: 13580 + - type: Physics + bodyType: Static + - uid: 10547 components: - type: Transform - pos: 31.5,30.5 + anchored: True + pos: 35.5,34.5 parent: 2 + - type: Physics + bodyType: Static - proto: LockerWallMedicalFilled entities: - uid: 8323 @@ -69201,10 +72257,132 @@ entities: parent: 2 - proto: LockerWardenFilled entities: - - uid: 11210 + - uid: 3171 components: - type: Transform - pos: 37.5,19.5 + anchored: True + pos: 42.5,24.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 3053 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 +- proto: LogicGateXor + entities: + - uid: 553 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 411: + - - Output + - DoorBolt + - uid: 6639 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7610: + - - Output + - DoorBolt + - uid: 8663 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 88: + - - Output + - DoorBolt + - uid: 9402 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13296: + - - Output + - DoorBolt + - uid: 10982 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 428: + - - Output + - DoorBolt + - uid: 13297 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13306: + - - Output + - DoorBolt + - uid: 13328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,53.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9283: + - - Output + - DoorBolt + - uid: 13329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,53.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10771: + - - Output + - DoorBolt +- proto: LootSpawnerSecurityBasic + entities: + - uid: 2335 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: 38.5,43.5 parent: 2 - proto: MachineAnomalyGenerator entities: @@ -69215,36 +72393,36 @@ entities: parent: 2 - proto: MachineAnomalyVessel entities: - - uid: 5380 + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,13.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,13.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 10464 components: - type: Transform pos: 68.5,16.5 parent: 2 - - uid: 10080 + - uid: 10467 components: - type: Transform - pos: 67.5,16.5 - parent: 2 -- proto: MachineAPE - entities: - - uid: 5255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,13.5 - parent: 2 - - uid: 5272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,13.5 + pos: 66.5,16.5 parent: 2 - proto: MachineArtifactAnalyzer entities: - - uid: 8666 + - uid: 5444 components: - type: Transform - pos: 64.5,27.5 + pos: 63.5,28.5 parent: 2 - proto: MachineCentrifuge entities: @@ -69262,17 +72440,17 @@ entities: parent: 2 - proto: MachineFrame entities: - - uid: 5731 + - uid: 10380 components: - type: Transform - pos: 52.5,21.5 + pos: 51.5,17.5 parent: 2 - proto: MachineMaterialSilo entities: - - uid: 5309 + - uid: 10829 components: - type: Transform - pos: 60.5,25.5 + pos: 53.5,17.5 parent: 2 - proto: MachineParticleAcceleratorEmitterForeCircuitboard entities: @@ -69297,18 +72475,38 @@ entities: parent: 2 - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 348 + - uid: 15785 components: - type: Transform - pos: 45.548477,23.915247 + pos: 44.521404,43.346592 parent: 2 - - uid: 7835 + - uid: 15786 components: - type: Transform - pos: 45.548477,23.915247 + pos: 44.53703,43.440342 parent: 2 - proto: MaintenanceFluffSpawner entities: + - uid: 7459 + components: + - type: Transform + pos: 40.5,47.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + pos: 83.5,7.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + pos: 71.5,40.5 + parent: 2 - uid: 12286 components: - type: Transform @@ -69321,23 +72519,53 @@ entities: parent: 2 - proto: MaintenancePlantSpawner entities: + - uid: 3198 + components: + - type: Transform + pos: 61.5,38.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + pos: 89.5,-16.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + pos: 70.5,35.5 + parent: 2 - uid: 12855 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 12857 + - uid: 14204 components: - type: Transform - pos: 71.5,34.5 + pos: 72.5,32.5 parent: 2 - uid: 15450 components: - type: Transform pos: 54.5,-20.5 parent: 2 + - uid: 15663 + components: + - type: Transform + pos: 32.5,37.5 + parent: 2 - proto: MaintenanceToolSpawner entities: + - uid: 247 + components: + - type: Transform + pos: 74.5,18.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: 63.5,38.5 + parent: 2 - uid: 12284 components: - type: Transform @@ -69355,11 +72583,21 @@ entities: parent: 2 - proto: MaintenanceWeaponSpawner entities: + - uid: 10720 + components: + - type: Transform + pos: 59.5,31.5 + parent: 2 - uid: 12285 components: - type: Transform pos: 74.5,-12.5 parent: 2 + - uid: 15788 + components: + - type: Transform + pos: 86.5,1.5 + parent: 2 - proto: MaterialCloth entities: - uid: 10295 @@ -69367,6 +72605,13 @@ entities: - type: Transform pos: 18.45301,-3.204442 parent: 2 +- proto: MaterialCloth10 + entities: + - uid: 8448 + components: + - type: Transform + pos: 59.509983,20.68175 + parent: 2 - proto: MaterialDiamond1 entities: - uid: 15378 @@ -69393,6 +72638,31 @@ entities: - type: Transform pos: 65.43021,-13.629852 parent: 2 + - uid: 15903 + components: + - type: Transform + pos: 47.502304,24.556742 + parent: 2 +- proto: MaterialWoodPlank1 + entities: + - uid: 14853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.37381,44.468517 + parent: 2 +- proto: Mattress + entities: + - uid: 2044 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 - proto: MechEquipmentGrabberSmall entities: - uid: 14752 @@ -69437,6 +72707,11 @@ entities: - type: Transform pos: 62.5,-10.5 parent: 2 + - uid: 14839 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 - proto: MedicalTechFab entities: - uid: 9369 @@ -69453,6 +72728,12 @@ entities: parent: 2 - proto: MedkitBruteFilled entities: + - uid: 10433 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 42.480003,28.626284 + parent: 2 - uid: 11915 components: - type: Transform @@ -69489,6 +72770,11 @@ entities: - type: Transform pos: 18.523928,24.634445 parent: 2 + - uid: 7846 + components: + - type: Transform + pos: 42.37063,29.016909 + parent: 2 - uid: 9625 components: - type: Transform @@ -69511,8 +72797,19 @@ entities: - type: Transform pos: 72.61498,6.0402474 parent: 2 + - uid: 12493 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 42.62063,29.001284 + parent: 2 - proto: MedkitRadiationFilled entities: + - uid: 6865 + components: + - type: Transform + pos: 18.849405,-26.316147 + parent: 2 - uid: 11917 components: - type: Transform @@ -69557,6 +72854,23 @@ entities: - type: Transform pos: 76.5,8.5 parent: 2 +- proto: MonkeyCubeWrapped + entities: + - uid: 5407 + components: + - type: Transform + pos: 63.5672,25.602118 + parent: 2 + - uid: 11682 + components: + - type: Transform + pos: 63.551575,25.773993 + parent: 2 + - uid: 12798 + components: + - type: Transform + pos: 63.801575,25.758368 + parent: 2 - proto: MopBucket entities: - uid: 13116 @@ -69621,6 +72935,18 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-3.5 parent: 2 + - uid: 5369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,27.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,11.5 + parent: 2 - uid: 9727 components: - type: Transform @@ -69680,6 +73006,12 @@ entities: - type: Transform pos: 69.28111,-15.352209 parent: 2 + - uid: 13502 + components: + - type: Transform + parent: 13141 + - type: Physics + canCollide: False - proto: NetworkConfigurator entities: - uid: 909 @@ -69694,16 +73026,31 @@ entities: parent: 2 - proto: NitrogenCanister entities: + - uid: 129 + components: + - type: Transform + pos: 87.5,3.5 + parent: 2 - uid: 1928 components: - type: Transform pos: 50.5,-23.5 parent: 2 + - uid: 1948 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 - uid: 2252 components: - type: Transform pos: 34.5,-45.5 parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 67.5,46.5 + parent: 2 - uid: 4306 components: - type: Transform @@ -69714,6 +73061,11 @@ entities: - type: Transform pos: 43.5,-38.5 parent: 2 + - uid: 4322 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 - uid: 4571 components: - type: Transform @@ -69724,21 +73076,57 @@ entities: - type: Transform pos: 32.5,-46.5 parent: 2 + - uid: 8824 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 - uid: 9094 components: - type: Transform pos: 12.5,16.5 parent: 2 + - uid: 9312 + components: + - type: Transform + pos: 50.5,46.5 + parent: 2 - uid: 9901 components: - type: Transform pos: 46.5,-15.5 parent: 2 + - uid: 10453 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 - uid: 13968 components: - type: Transform pos: -10.5,-23.5 parent: 2 + - uid: 14943 + components: + - type: Transform + pos: 73.5,-18.5 + parent: 2 +- proto: NitrogenTankFilled + entities: + - uid: 12199 + components: + - type: Transform + parent: 3183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12761 + components: + - type: Transform + parent: 12746 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: NitrousOxideCanister entities: - uid: 4334 @@ -69751,7 +73139,7 @@ entities: - uid: 14281 components: - type: Transform - pos: 86.43288,28.772083 + pos: 86.52714,28.39597 parent: 2 - proto: NuclearBomb entities: @@ -69765,7 +73153,7 @@ entities: - uid: 14282 components: - type: Transform - pos: 86.53704,28.660894 + pos: 86.50753,32.76683 parent: 2 - proto: OperatingTable entities: @@ -69784,23 +73172,29 @@ entities: - type: Transform pos: 74.5,-2.5 parent: 2 + - uid: 10837 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 - uid: 11399 components: - type: Transform pos: 66.5,-10.5 parent: 2 - - uid: 12109 - components: - - type: Transform - pos: 55.5,9.5 - parent: 2 - proto: OreProcessor entities: - - uid: 7673 + - uid: 6779 components: - type: Transform - pos: 9.5,29.5 + pos: 6.5,29.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: OxygenCanister entities: - uid: 945 @@ -69818,21 +73212,31 @@ entities: - type: Transform pos: 42.5,-37.5 parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 67.5,47.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: 50.5,45.5 + parent: 2 - uid: 4570 components: - type: Transform pos: 32.5,-28.5 parent: 2 - - uid: 6424 - components: - - type: Transform - pos: 46.5,7.5 - parent: 2 - uid: 7966 components: - type: Transform pos: 31.5,-46.5 parent: 2 + - uid: 9281 + components: + - type: Transform + pos: 73.5,-19.5 + parent: 2 - uid: 9620 components: - type: Transform @@ -69848,10 +73252,20 @@ entities: - type: Transform pos: 8.5,-5.5 parent: 2 - - uid: 11650 + - uid: 10523 components: - type: Transform - pos: 5.5,32.5 + pos: 46.5,28.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: 88.5,3.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + pos: 5.5,40.5 parent: 2 - uid: 12997 components: @@ -69863,11 +73277,6 @@ entities: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 14225 - components: - - type: Transform - pos: 82.5,27.5 - parent: 2 - proto: OxygenTankFilled entities: - uid: 5720 @@ -69880,13 +73289,6 @@ entities: - type: Transform pos: 72.5,-9.5 parent: 2 -- proto: PackPaperRollingFilters - entities: - - uid: 14654 - components: - - type: Transform - pos: 55.52354,31.733475 - parent: 2 - proto: PaintingMonkey entities: - uid: 5783 @@ -69903,10 +73305,10 @@ entities: parent: 2 - proto: PaintingOlympia entities: - - uid: 1195 + - uid: 13178 components: - type: Transform - pos: 35.5,42.5 + pos: 32.5,38.5 parent: 2 - proto: PaintingSadClown entities: @@ -69920,7 +73322,7 @@ entities: - uid: 14283 components: - type: Transform - pos: 86.43288,28.584454 + pos: 86.50753,32.605293 parent: 2 - proto: Paper entities: @@ -69936,25 +73338,237 @@ entities: - type: Transform pos: 8.5,4.5 parent: 2 -- proto: PaperBin5 +- proto: PaperBin20 entities: - - uid: 6913 + - uid: 5378 components: - type: Transform - pos: 43.5,19.5 + pos: 36.5,22.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 13142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,37.5 parent: 2 - proto: PaperOffice entities: + - uid: 3460 + components: + - type: MetaData + desc: A old laminated document, probably left by the last shift. + name: office paper (Brig Defense) + - type: Transform + pos: 44.57122,24.67782 + parent: 2 + - type: Paper + content: >- + I own an Enforcer for Brig Defense, since thats what Central Command intended. + + Four Gorlex Operatives blow a hole through my Perma with C4. + + "What the devil?" I yell as I grab my Warden's Cap and Enforcer shotgun. Blow 4 twelve gauge holes through the Corpsman, he's crit on the spot. + + Draw my Mk58 on the second guy, miss her entirely because a secoff exploded with Tear Gas, it hits the HOP instead. + + I have to resort to the toolbox in my armory, filled to the brim with seized grenades. "GLORY TO NANOTRASEN!!" The resulting explosion instagibbing the Commander and a Operative, setting off all the firelocks on station. + + Draw my Stun Baton on the last terrified Operative, he dies from spacing waiting for the paramedic to arrive becuase I took his suit off immediately after cuffing him. + + + Just as Central Command Intended. + editingDisabled: True + - uid: 5325 + components: + - type: MetaData + desc: a threat made towards the previous chef + - type: Transform + rot: 3.141592653589793 rad + pos: 53.561028,42.489468 + parent: 2 + - type: Paper + content: >2- + + [head=1] YOUR DAYS ARE NUMBERED FRANK, YOU AIN'T EVER SERVING ANOTHER MOTH BURGER + editingDisabled: True + missingComponents: + - FaxableObject + - uid: 5736 + components: + - type: MetaData + desc: A laminiated document, probably left here by the previous shift. + name: office paper (Cryogenic Tube User Manual) + - type: Transform + pos: 61.634254,-0.53476226 + parent: 2 + - type: Paper + content: > + [head=2][bold]Cryogenic Tube User Manual[/bold][/head] + + + [head=3][bold]Operational Theory[/bold][/head] + + Cryogenic chemicals represent a simple, and most importantly, economical means of treating patients. All cryogenic chemicals only work if the patient’s body temperature below a certain value: 213K with a few exceptions. + + The cryogenic tube system is intended to safely lower a patient’s body temperature below this threshold, then treat them with said cryogenic chemicals. + + + [head=3][bold]Setup[/bold][/head] + + 1: Identify the pressure pump. Set its output pressure to 540kpa and switch it on. + + 2: Identify the gas filter. Set its filter to carbon dioxide, output pressure to maximum, and switch it on. + + 3: Identify the freezer. Set its temperature to 74K and switch it on. + + 4: Allow the system time to reach the correct temperature and pressure. You can view this progress by using a gas analyzer on the pressure pump or cryogenic tube. If temperature or pressure remains incorrect, consult your atmospherics department. + + 5: Fill one or more standard 50u beakers with cryogenic medicine. Do not insert the beaker into the tube: once inserted it will be immediately used, wasting it unless a patient of the correct temperature is inside. + + + [head=3][bold]Usage[/bold][/head] + + 1: Ensure the patient has no bleeding wounds, and is not wearing any insulate clothing such as a winter coat, scarf, or fur boots. + + 2: Place the patient inside the cryogenic tube. Ensure that no beaker is in the tube. + + 3: Use the tube’s display (accessible through the context menu) to view the patient’s health and temperature. Wait for their temperature to go below the threshold of your chosen medicine. + + 4: Place a standard 50u beaker of cryogenic medicine into the tube. As soon as it is inserted, it will begin transferring the liquid into the patient’s bloodstream. Continue to monitor their vitals on the display. + + 5: Once the desired effect has been achieved, eject the beaker and remove the patient from the tube. A injection of 5u Leporazine is recommended to quickly raise their body temp back to comfortable levels. + + + [head=3][bold]Supported Chemicals[/bold][/head] + + The following medicine has been approved for use in cryogenic tubes, and may be mixed by your chemists and Chief Medical Officer. All will metabolize at 0.5u/second, but required temperature may vary. + + The following will refer to injury in standard damage units; this system should be familiar to any modern medical professional. + + + [bold]Cryoxadone (Cryox)[/bold] + + The most common cryogenic medicine, and a jack of all trades. As it is easy to mix, your medical department should always have a supply of this on hand. + + Under 213K temp, 1u heals 4 Brute, 6 burn, 6 airloss, and 4 toxin damage. + + + [bold]Doxarubixadone (Doxa)[/bold] + + 4 out of 5 doctors agree this is the most effective treatment for genetic damage. Fairly affordable. + + Under 213K temp, 1u heals 2 genetic damage. + + + [bold]Aloxadone (Alox)[/bold] + + Notably, this chemical works on deceased patients, making it useful for treating massive burn damage. Some ingredients require the assistance of botany. + + Under 213K temp, 1u heals 4 heat, 4 shock, 4 cold, and 1.5 caustic damage. + + + [bold]Necrosol (Necro)[/bold] + + Notably, this chemical works on deceased patients. Necrosol is synthesized with the rare and poorly understood Omnizine, and is the only way to heal patients afflicted by over 200 poison damage. + + Under 213K temp, 1u heals 4 brute, 5 burn, and 2 poison. + + + [bold]Opporozidone (Oppo)[/bold] + + Notably, this chemical works on deceased patients. Oppo is synthesized with the rare Cognizine, and is the only way to reverse the effects of body decomposition. Requires a lower temperature. + + Under 150K temp, 1u reverts 20 seconds of body decomposition. + + + [head=3][bold]How Does It Work?[/bold][/head] + + The gas pump pulls air from the room’s air distribution pipes into the cryogenic tube’s own pipe loop. The pressure of 540kpa is quite spesific: the higher the pressure in the tubes, the faster the patient can be cooled. However, SolGov regulations forbid subjecting unprotected patients to pressures above 550kpa, citing the risk of barotrauma. + + + The lower the temperature on the freezer, the faster the patient will cool. If Leporazine is available to raise body temperature after treatment, the freezer may safely be set to its lowest possible temperature. + + + The gas filter removes unwanted gasses from the pipe loop. This is most commonly carbon dioxide produced by the patient exhaling, but ammonia may also be produced by Vox patients or those experiencing decomposition. The removed gas will be routed directly into the room’s waste pipe, while filtered air will go back into the cryogenic tubes. + editingDisabled: True + - uid: 7936 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 37.63905,22.47862 + parent: 2 + - uid: 8463 + components: + - type: MetaData + desc: Looks like this was left by the previous shift. + name: Old Note + - type: Transform + pos: 28.323992,-40.41831 + parent: 2 + - type: Paper + content: >- + I don't know if you're trained already, so I hope this'll help. + + AME controller needs an HV wire to output to, check the area with a crowbar or t-ray scanner if you aren't sure. + + There should be an empty room next to where you found this, that room's wired for the AME. + + You can put an AME anywhere if you can get the wires to it, though. + + 3x3 grid of AME parts, multitool them to unpack. Be careful not to 'trap' anything. + + AME controller adjacent horizontally or vertically (not diagonally) to any point. + + With only 1 core (what a 3x3 grid will get you), don't turn it up above 2. + + The golden rule is 2 injection for every 1 core. You can go lower to save fuel. + + Higher will burn the engine out and eventually make it explode. Don't. + + Don't forget to refuel it, it tends to stop at the worst possible time. + editingDisabled: True + - uid: 11808 + components: + - type: MetaData + desc: A handwritten laminated note, probably left by the last shift. + name: office paper (Lathe Cooling System) + - type: Transform + pos: 49.32131,19.793486 + parent: 2 + - type: Paper + content: >- + Hey John, wasn't able to finish the hyper-convection lathe cooling system, so I've left instructions on how to finish it. + + + Put passive vents underneath each of the lathes, I think I did one of them already? These should be facing towards the green pipe in the center. Make sure to grab the T-ray scanner I left with this note to see any pipes which are underneath floor tiles. + + + Connect the green pipes to the machine frame across from the lathes. You'll need a machine board to finish the freezer, and probably some spare parts. + + + Once the freezer is finished, hook it up to the green pipes and set it to 173K. Make sure you turn it on this time, we don't want a repeat of the containment field incident. + + + DO NOT upgrade the lathes to hyper-convection until the system is finished, you'll ash me and every other moth in this department. + + + Sorry again about not finishing it, but im sure you can figure it out! + + - Aurora + editingDisabled: True - uid: 15117 components: - type: Transform pos: 89.48129,32.60053 parent: 2 -- proto: ParticleAcceleratorControlBoxUnfinished +- proto: ParticleAcceleratorControlBox entities: - - uid: 4800 + - uid: 251 components: - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,-40.5 parent: 2 - proto: ParticleAcceleratorEmitterForeUnfinished @@ -70021,20 +73635,43 @@ entities: - type: Transform pos: 17.877897,-26.451574 parent: 2 - - uid: 9708 + - uid: 13002 components: - type: Transform - pos: 5.4799275,40.593884 - parent: 2 - - uid: 11126 - components: - - type: Transform - pos: 54.520523,-14.325092 + pos: 6.699466,40.553192 parent: 2 - uid: 14760 components: - type: Transform - pos: 5.5,31.5 + pos: 6.480716,40.693703 + parent: 2 +- proto: PartRodMetal1 + entities: + - uid: 4873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.467148,38.49088 + parent: 2 + - uid: 10716 + components: + - type: Transform + pos: 58.547253,48.6787 + parent: 2 + - uid: 12090 + components: + - type: Transform + pos: 66.52919,38.621952 + parent: 2 + - uid: 15901 + components: + - type: Transform + pos: 58.734753,48.4912 + parent: 2 + - uid: 15902 + components: + - type: Transform + pos: 66.58378,38.434452 parent: 2 - proto: Pen entities: @@ -70048,6 +73685,12 @@ entities: - type: Transform pos: 11.095052,4.613485 parent: 2 + - uid: 4413 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 37.88905,22.650496 + parent: 2 - uid: 6047 components: - type: Transform @@ -70058,11 +73701,6 @@ entities: - type: Transform pos: 23.446625,15.655876 parent: 2 - - uid: 7761 - components: - - type: Transform - pos: 39.66111,17.754585 - parent: 2 - uid: 11973 components: - type: Transform @@ -70088,16 +73726,6 @@ entities: - type: Transform pos: 21.523584,22.514828 parent: 2 - - uid: 11979 - components: - - type: Transform - pos: 44.764744,23.837742 - parent: 2 - - uid: 11980 - components: - - type: Transform - pos: 63.3999,10.027362 - parent: 2 - uid: 14632 components: - type: Transform @@ -70108,8 +73736,20 @@ entities: - type: Transform pos: 51.110676,4.5944533 parent: 2 + - uid: 15613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.71149,11.225653 + parent: 2 - proto: PersonalAI entities: + - uid: 2353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.43356,37.249077 + parent: 2 - uid: 7414 components: - type: Transform @@ -70120,24 +73760,12 @@ entities: - type: Transform pos: 26.514572,47.589886 parent: 2 - - uid: 11217 - components: - - type: Transform - pos: 70.51922,36.549946 - parent: 2 - - uid: 13621 - components: - - type: Transform - parent: 13620 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: PhoneInstrument entities: - - uid: 7008 + - uid: 9407 components: - type: Transform - pos: 34.02968,41.62158 + pos: 32.347046,41.654026 parent: 2 - proto: PianoInstrument entities: @@ -70152,8 +73780,44 @@ entities: - uid: 14759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,31.5 + pos: 7.4248915,29.65233 + parent: 2 +- proto: PillCanisterRandom + entities: + - uid: 15668 + components: + - type: Transform + pos: 61.291603,41.811512 + parent: 2 + - uid: 15669 + components: + - type: Transform + pos: 62.619728,38.764637 + parent: 2 +- proto: PillSpaceDrugs + entities: + - uid: 10139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.604103,41.561512 + parent: 2 + - uid: 10683 + components: + - type: Transform + pos: 62.385353,38.530262 + parent: 2 + - uid: 15672 + components: + - type: Transform + pos: 61.385353,41.436512 + parent: 2 +- proto: PlantBag + entities: + - uid: 2757 + components: + - type: Transform + pos: 37.179035,22.625505 parent: 2 - proto: PlantBGoneSpray entities: @@ -70210,58 +73874,36 @@ entities: - type: Transform pos: 76.5,-5.5 parent: 2 - - uid: 10135 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 9304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,24.5 + pos: 42.5,35.5 parent: 2 - - uid: 12270 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10606: + - - DoorStatus + - Close + - uid: 10606 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,24.5 - parent: 2 - - uid: 15469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,28.5 - parent: 2 -- proto: PlasmaWindoorSecureSecurityLocked - entities: - - uid: 7707 - components: - - type: Transform - pos: 41.5,24.5 - parent: 2 - - uid: 8425 - components: - - type: Transform - pos: 40.5,28.5 - parent: 2 - - uid: 10850 - components: - - type: Transform - pos: 39.5,28.5 - parent: 2 - - uid: 13582 - components: - - type: Transform - pos: 38.5,24.5 - parent: 2 - - uid: 15470 - components: - - type: Transform - pos: 38.5,28.5 + pos: 42.5,35.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9304: + - - DoorStatus + - Close - proto: PlasticFlapsAirtightClear entities: - - uid: 451 - components: - - type: Transform - pos: 7.5,35.5 - parent: 2 - uid: 5576 components: - type: Transform @@ -70287,6 +73929,11 @@ entities: - type: Transform pos: 3.5,23.5 parent: 2 + - uid: 14663 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 - uid: 14767 components: - type: Transform @@ -70311,12 +73958,13 @@ entities: - type: Transform pos: 6.0254927,-3.2604024 parent: 2 -- proto: PlushieNar +- proto: PlushieLizard entities: - - uid: 5400 + - uid: 1705 components: - type: Transform - pos: 62.48992,18.519245 + rot: 6.283185307179586 rad + pos: 53.482903,43.66107 parent: 2 - proto: PlushieSharkGrey entities: @@ -70341,16 +73989,11 @@ entities: parent: 2 - proto: PortableFlasher entities: - - uid: 8412 + - uid: 13649 components: - type: Transform - anchored: False - pos: 31.5,26.5 + pos: 39.5,36.5 parent: 2 - - type: TriggerOnProximity - enabled: False - - type: Physics - bodyType: Dynamic - proto: PortableGeneratorJrPacman entities: - uid: 801 @@ -70358,10 +74001,10 @@ entities: - type: Transform pos: 13.5,-28.5 parent: 2 - - uid: 3176 + - uid: 3233 components: - type: Transform - pos: 35.5,36.5 + pos: 50.5,26.5 parent: 2 - uid: 4181 components: @@ -70373,6 +74016,11 @@ entities: - type: Transform pos: 12.5,17.5 parent: 2 + - uid: 6400 + components: + - type: Transform + pos: 81.5,12.5 + parent: 2 - uid: 7854 components: - type: Transform @@ -70393,11 +74041,6 @@ entities: - type: Transform pos: 9.5,-22.5 parent: 2 - - uid: 12362 - components: - - type: Transform - pos: 67.5,11.5 - parent: 2 - uid: 13153 components: - type: Transform @@ -70408,6 +74051,11 @@ entities: - type: Transform pos: -6.5,-23.5 parent: 2 + - uid: 15623 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 - proto: PortableGeneratorPacman entities: - uid: 4301 @@ -70420,13 +74068,15 @@ entities: - type: Transform pos: 80.5,33.5 parent: 2 -- proto: PortableScrubber +- proto: PortableGeneratorSuperPacman entities: - - uid: 4977 + - uid: 10884 components: - type: Transform - pos: 47.5,7.5 + pos: 10.5,-31.5 parent: 2 +- proto: PortableScrubber + entities: - uid: 6765 components: - type: Transform @@ -70458,12 +74108,6 @@ entities: - type: Transform pos: 58.5,-16.5 parent: 2 - - uid: 14084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,34.5 - parent: 2 - proto: PosterContrabandEAT entities: - uid: 6763 @@ -70471,6 +74115,13 @@ entities: - type: Transform pos: 30.5,-8.5 parent: 2 +- proto: PosterContrabandFunPolice + entities: + - uid: 8525 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 - proto: PosterContrabandGreyTide entities: - uid: 739 @@ -70515,17 +74166,18 @@ entities: parent: 2 - proto: PosterLegit12Gauge entities: - - uid: 8980 + - uid: 4398 components: - type: Transform - pos: 37.5,28.5 + rot: -1.5707963267948966 rad + pos: 43.5,37.5 parent: 2 - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 11289 + - uid: 13087 components: - type: Transform - pos: 56.5,21.5 + pos: 61.5,17.5 parent: 2 - proto: PosterLegitAnatomyPoster entities: @@ -70563,22 +74215,6 @@ entities: - type: Transform pos: 68.5,-14.5 parent: 2 -- proto: PosterLegitDoNotQuestion - entities: - - uid: 14643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,34.5 - parent: 2 -- proto: PosterLegitFoamForceAd - entities: - - uid: 2311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,28.5 - parent: 2 - proto: PosterLegitFruitBowl entities: - uid: 13101 @@ -70586,6 +74222,21 @@ entities: - type: Transform pos: 41.5,-9.5 parent: 2 +- proto: PosterLegitHelpOthers + entities: + - uid: 8464 + components: + - type: Transform + pos: 35.5,35.5 + parent: 2 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 2303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,26.5 + parent: 2 - proto: PosterLegitHighClassMartini entities: - uid: 13099 @@ -70600,6 +74251,13 @@ entities: - type: Transform pos: 17.5,-6.5 parent: 2 +- proto: PosterLegitIonRifle + entities: + - uid: 8483 + components: + - type: Transform + pos: 38.5,36.5 + parent: 2 - proto: PosterLegitLoveIan entities: - uid: 10252 @@ -70623,17 +74281,6 @@ entities: parent: 2 - proto: PosterLegitNanotrasenLogo entities: - - uid: 404 - components: - - type: Transform - pos: 29.5,37.5 - parent: 2 - - uid: 2126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,26.5 - parent: 2 - uid: 7464 components: - type: Transform @@ -70667,6 +74314,14 @@ entities: - type: Transform pos: 13.5,8.5 parent: 2 +- proto: PosterLegitObey + entities: + - uid: 2305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,33.5 + parent: 2 - proto: PosterLegitPeriodicTable entities: - uid: 13093 @@ -70681,30 +74336,30 @@ entities: parent: 2 - proto: PosterLegitRenault entities: - - uid: 13092 + - uid: 249 components: - type: Transform - pos: 35.5,41.5 + pos: 34.5,41.5 parent: 2 - proto: PosterLegitReportCrimes entities: - - uid: 13096 + - uid: 8553 components: - type: Transform - pos: 37.5,16.5 + pos: 50.5,29.5 parent: 2 - proto: PosterLegitSafetyEyeProtection entities: + - uid: 3668 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 - uid: 13083 components: - type: Transform pos: 40.5,-41.5 parent: 2 - - uid: 13087 - components: - - type: Transform - pos: 55.5,16.5 - parent: 2 - proto: PosterLegitSafetyInternals entities: - uid: 13084 @@ -70751,6 +74406,11 @@ entities: parent: 2 - proto: PosterLegitSafetyMothMeth entities: + - uid: 3413 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 - uid: 13086 components: - type: Transform @@ -70777,16 +74437,23 @@ entities: parent: 2 - proto: PosterLegitSecWatch entities: - - uid: 2684 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - uid: 7732 components: - type: Transform pos: -2.5,-6.5 parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 +- proto: PosterLegitSpaceCops + entities: + - uid: 8556 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 - proto: PosterLegitStateLaws entities: - uid: 7731 @@ -70794,6 +74461,13 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 2 +- proto: PosterLegitTheOwl + entities: + - uid: 8579 + components: + - type: Transform + pos: 48.5,43.5 + parent: 2 - proto: PosterLegitUeNo entities: - uid: 11093 @@ -70808,6 +74482,11 @@ entities: - type: Transform pos: 22.5,2.5 parent: 2 + - uid: 15688 + components: + - type: Transform + pos: 48.5,48.5 + parent: 2 - proto: PosterMapPacked entities: - uid: 12314 @@ -70835,6 +74514,13 @@ entities: - type: Transform pos: 30.5,12.5 parent: 2 +- proto: PottedPlant17 + entities: + - uid: 2449 + components: + - type: Transform + pos: 63.5,50.5 + parent: 2 - proto: PottedPlant19 entities: - uid: 2615 @@ -70851,10 +74537,10 @@ entities: parent: 2 - proto: PottedPlant22 entities: - - uid: 12726 + - uid: 10391 components: - type: Transform - pos: 30.5,44.5 + pos: 29.5,44.5 parent: 2 - proto: PottedPlantBioluminscent entities: @@ -70883,6 +74569,11 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 3040 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 - uid: 4698 components: - type: Transform @@ -70899,22 +74590,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 5340 - components: - - type: Transform - pos: 54.5,22.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 5344 - components: - - type: Transform - pos: 59.5,25.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 7298 components: - type: Transform @@ -70941,37 +74616,21 @@ entities: - type: Transform pos: 3.5,13.5 parent: 2 + - uid: 10723 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 - uid: 11003 components: - type: Transform pos: 54.5,1.5 parent: 2 - - uid: 11221 - components: - - type: Transform - pos: 18.5,35.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 11808 - components: - - type: Transform - pos: 45.5,16.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 12165 components: - type: Transform pos: 58.5,-2.5 parent: 2 - - uid: 12754 - components: - - type: Transform - pos: 21.5,35.5 - parent: 2 - uid: 12949 components: - type: Transform @@ -70992,16 +74651,6 @@ entities: - type: Transform pos: 79.5,29.5 parent: 2 - - uid: 14232 - components: - - type: Transform - pos: 79.5,31.5 - parent: 2 - - uid: 14653 - components: - - type: Transform - pos: 57.5,38.5 - parent: 2 - uid: 14956 components: - type: Transform @@ -71017,13 +74666,6 @@ entities: - type: Transform pos: 31.5,-2.5 parent: 2 -- proto: PottedPlantRD - entities: - - uid: 10662 - components: - - type: Transform - pos: 60.5,10.5 - parent: 2 - proto: PowerCellHigh entities: - uid: 5631 @@ -71049,35 +74691,16 @@ entities: - type: Transform pos: 23.5,-23.5 parent: 2 - - uid: 5312 + - uid: 5340 components: - type: Transform - pos: 56.5,20.5 + pos: 42.5,29.5 + parent: 2 + - uid: 5483 + components: + - type: Transform + pos: 54.5,17.5 parent: 2 - - type: ContainerContainer - containers: - PowerCellCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - uid: 6794 components: - type: Transform @@ -71112,6 +74735,11 @@ entities: - type: Transform pos: 17.5,24.5 parent: 2 + - uid: 8632 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 - uid: 9626 components: - type: Transform @@ -71166,28 +74794,69 @@ entities: - type: Transform pos: 63.5,-9.5 parent: 2 - - uid: 15363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,9.5 - parent: 2 -- proto: PowerCellSmall - entities: - - uid: 5313 - components: - - type: Transform - pos: 56.529827,20.631775 - parent: 2 - proto: PowerDrill entities: - - uid: 10671 + - uid: 10894 components: - type: Transform - pos: 63.50305,8.626264 + pos: 65.52399,10.725653 parent: 2 - proto: PoweredDimSmallLight entities: + - uid: 3330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,50.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: 43.5,47.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: 65.5,8.5 + parent: 2 + - uid: 10374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,38.5 + parent: 2 + - uid: 10591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,32.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + pos: 54.5,45.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,27.5 + parent: 2 + - uid: 11661 + components: + - type: Transform + pos: 68.5,42.5 + parent: 2 - uid: 12390 components: - type: Transform @@ -71198,18 +74867,6 @@ entities: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 12875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,47.5 - parent: 2 - - uid: 12879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,11.5 - parent: 2 - uid: 12884 components: - type: Transform @@ -71225,11 +74882,24 @@ entities: - type: Transform pos: 89.5,-18.5 parent: 2 - - uid: 15278 + - uid: 13432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,35.5 + rot: 1.5707963267948966 rad + pos: 62.5,19.5 + parent: 2 + - uid: 15420 + components: + - type: Transform + pos: 75.5,12.5 + parent: 2 +- proto: PoweredLEDSmallLight + entities: + - uid: 10593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,21.5 parent: 2 - proto: Poweredlight entities: @@ -71241,6 +74911,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,36.5 + parent: 2 - uid: 398 components: - type: Transform @@ -71261,6 +74937,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 603 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 - uid: 840 components: - type: Transform @@ -71319,6 +75000,12 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 1831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,23.5 + parent: 2 - uid: 1922 components: - type: Transform @@ -71344,11 +75031,33 @@ entities: - type: Transform pos: 48.5,-23.5 parent: 2 - - uid: 2227 + - uid: 2199 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,26.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 59.5,49.5 + parent: 2 + - uid: 2259 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,35.5 + pos: 53.5,30.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,36.5 parent: 2 - uid: 2741 components: @@ -71380,10 +75089,17 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3277 + - uid: 3145 components: - type: Transform - pos: 38.5,31.5 + rot: 1.5707963267948966 rad + pos: 32.5,29.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,26.5 parent: 2 - uid: 3783 components: @@ -71463,14 +75179,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4700 components: - type: Transform @@ -71546,11 +75254,6 @@ entities: - type: Transform pos: 51.5,-4.5 parent: 2 - - uid: 5062 - components: - - type: Transform - pos: 30.5,30.5 - parent: 2 - uid: 5080 components: - type: Transform @@ -71592,6 +75295,12 @@ entities: - type: Transform pos: 40.5,-42.5 parent: 2 + - uid: 5199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,30.5 + parent: 2 - uid: 5218 components: - type: Transform @@ -71612,14 +75321,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5278 components: - type: Transform @@ -71628,15 +75329,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - uid: 5281 components: - type: Transform @@ -71644,21 +75336,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5282 + - uid: 5348 components: - type: Transform - pos: 68.5,16.5 + rot: -1.5707963267948966 rad + pos: 36.5,42.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5290 + - uid: 5368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,13.5 + rot: -1.5707963267948966 rad + pos: 54.5,9.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5432 components: - type: Transform @@ -71666,14 +75355,24 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5433 + - uid: 5454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,40.5 + rot: 1.5707963267948966 rad + pos: 29.5,25.5 + parent: 2 + - uid: 5460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,33.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,32.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5766 components: - type: Transform @@ -71710,12 +75409,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,29.5 - parent: 2 - uid: 6009 components: - type: Transform @@ -71787,29 +75480,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,24.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6537 - components: - - type: Transform - pos: 56.5,20.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6538 components: - type: Transform @@ -71887,14 +75557,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-36.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7366 components: - type: Transform @@ -71916,15 +75578,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,9.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - uid: 7530 components: - type: Transform @@ -71998,14 +75651,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,13.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7683 components: - type: Transform @@ -72021,21 +75666,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7688 - components: - - type: Transform - pos: 50.5,21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7726 components: - type: Transform @@ -72097,13 +75727,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7857 - components: - - type: Transform - pos: 34.5,43.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7958 components: - type: Transform @@ -72121,6 +75744,12 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 + - uid: 8029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-36.5 + parent: 2 - uid: 8130 components: - type: Transform @@ -72134,14 +75763,6 @@ entities: - type: Transform pos: -14.5,0.5 parent: 2 - - uid: 8266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,22.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8335 components: - type: Transform @@ -72173,6 +75794,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8552 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 - uid: 8568 components: - type: Transform @@ -72181,25 +75807,18 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,26.5 - parent: 2 - - uid: 8573 - components: - - type: Transform - pos: 39.5,19.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8574 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,9.5 parent: 2 + - uid: 8576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,26.5 + parent: 2 - uid: 8642 components: - type: Transform @@ -72207,6 +75826,22 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,35.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + pos: 47.5,42.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 - uid: 9061 components: - type: Transform @@ -72236,23 +75871,17 @@ entities: rot: 3.141592653589793 rad pos: 51.5,-8.5 parent: 2 - - uid: 9883 + - uid: 10597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,28.5 + rot: 3.141592653589793 rad + pos: 43.5,27.5 parent: 2 - - uid: 10450 + - uid: 10611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,27.5 - parent: 2 - - uid: 10451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,22.5 + rot: 3.141592653589793 rad + pos: 39.5,17.5 parent: 2 - uid: 10708 components: @@ -72262,6 +75891,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 + - uid: 10891 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 - uid: 10992 components: - type: Transform @@ -72386,11 +76020,16 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-27.5 parent: 2 - - uid: 13604 + - uid: 13503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,37.5 + rot: 3.141592653589793 rad + pos: 33.5,39.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: 44.5,36.5 parent: 2 - uid: 13683 components: @@ -72433,6 +76072,17 @@ entities: rot: 3.141592653589793 rad pos: 80.5,29.5 parent: 2 + - uid: 14434 + components: + - type: Transform + pos: 40.5,36.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,34.5 + parent: 2 - uid: 14527 components: - type: Transform @@ -72450,23 +76100,42 @@ entities: - type: Transform pos: 91.5,32.5 parent: 2 - - uid: 14594 + - uid: 14652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,26.5 + rot: 3.141592653589793 rad + pos: 63.5,10.5 parent: 2 - - uid: 15368 + - uid: 14655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,20.5 + rot: 3.141592653589793 rad + pos: 55.5,13.5 parent: 2 - uid: 15383 components: - type: Transform pos: 18.5,42.5 parent: 2 + - uid: 15539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,22.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,19.5 + parent: 2 +- proto: PoweredlightEmpty + entities: + - uid: 15671 + components: + - type: Transform + pos: 53.5,49.5 + parent: 2 - proto: PoweredlightExterior entities: - uid: 5664 @@ -72476,12 +76145,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.9375,38.984375 parent: 126 - - uid: 14590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,42.5 - parent: 2 - uid: 14595 components: - type: Transform @@ -72494,14 +76157,31 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,35.5 parent: 2 - - uid: 14627 +- proto: PoweredlightLED + entities: + - uid: 5930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,32.5 + parent: 2 + - uid: 8458 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,42.5 + pos: 64.5,28.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + pos: 68.5,16.5 parent: 2 -- proto: PoweredlightLED - entities: - uid: 10984 components: - type: Transform @@ -72513,12 +76193,6 @@ entities: - type: Transform pos: 85.5,32.5 parent: 2 - - uid: 11109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-17.5 - parent: 2 - proto: PoweredlightSodium entities: - uid: 3197 @@ -72557,6 +76231,11 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 + - uid: 301 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 - uid: 317 components: - type: Transform @@ -72576,6 +76255,18 @@ entities: - type: Transform pos: -8.5,-9.5 parent: 2 + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-19.5 + parent: 2 - uid: 693 components: - type: Transform @@ -72600,36 +76291,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,15.5 parent: 2 - - uid: 2424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2425 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,17.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2482 - components: - - type: Transform - pos: 42.5,20.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2491 components: - type: Transform @@ -72693,66 +76354,29 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,39.5 parent: 2 - - uid: 3147 + - uid: 3586 components: - type: Transform - pos: 59.5,38.5 + rot: 1.5707963267948966 rad + pos: 55.5,53.5 parent: 2 - - uid: 3148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,34.5 - parent: 2 - - uid: 3278 - components: - - type: Transform - pos: 49.5,35.5 - parent: 2 - - uid: 3410 - components: - - type: Transform - pos: 70.5,34.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,30.5 - parent: 2 - - uid: 3447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,27.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4034 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-9.5 parent: 2 - - uid: 4071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-14.5 - parent: 2 - uid: 4149 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-8.5 parent: 2 - - uid: 4403 + - uid: 4399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,27.5 + rot: -1.5707963267948966 rad + pos: 67.5,32.5 parent: 2 - uid: 4438 components: @@ -72905,13 +76529,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-36.5 parent: 2 - - uid: 5264 - components: - - type: Transform - pos: 50.5,15.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5274 components: - type: Transform @@ -72920,47 +76537,11 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5464 - components: - - type: Transform - pos: 70.5,40.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5465 - components: - - type: Transform - pos: 70.5,37.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5611 components: - type: Transform pos: 34.5,-38.5 parent: 2 - - uid: 5674 - components: - - type: Transform - pos: 68.5,42.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,38.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5676 - components: - - type: Transform - pos: 67.5,29.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5723 components: - type: Transform @@ -72968,12 +76549,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,20.5 - parent: 2 - uid: 6492 components: - type: Transform @@ -73067,14 +76642,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,7.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7862 components: - type: Transform @@ -73097,14 +76664,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,5.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7866 components: - type: Transform @@ -73123,16 +76682,11 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,35.5 parent: 2 - - uid: 8376 + - uid: 8424 components: - type: Transform - pos: 58.5,32.5 - parent: 2 - - uid: 8527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-18.5 + rot: 1.5707963267948966 rad + pos: 69.5,45.5 parent: 2 - uid: 8528 components: @@ -73156,37 +76710,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,12.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,8.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,44.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8609 - components: - - type: Transform - pos: 30.5,26.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8639 components: - type: Transform @@ -73236,6 +76759,16 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-41.5 parent: 2 + - uid: 10386 + components: + - type: Transform + pos: 30.5,31.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 - uid: 10707 components: - type: Transform @@ -73277,13 +76810,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11100 - components: - - type: Transform - pos: 44.5,25.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11438 components: - type: Transform @@ -73380,18 +76906,6 @@ entities: - type: Transform pos: -26.5,0.5 parent: 2 - - uid: 13569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,37.5 - parent: 2 - - uid: 13598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,40.5 - parent: 2 - uid: 13716 components: - type: Transform @@ -73415,23 +76929,18 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-23.5 parent: 2 - - uid: 14085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,33.5 - parent: 2 - - uid: 14086 - components: - - type: Transform - pos: 50.5,28.5 - parent: 2 - uid: 14149 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,20.5 parent: 2 + - uid: 14249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,46.5 + parent: 2 - uid: 14530 components: - type: Transform @@ -73444,26 +76953,172 @@ entities: rot: -1.5707963267948966 rad pos: 82.5,33.5 parent: 2 + - uid: 14798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,10.5 + parent: 2 - uid: 15007 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-12.5 parent: 2 -- proto: Protolathe - entities: - - uid: 5305 + - uid: 15569 components: - type: Transform - pos: 53.5,18.5 + rot: 3.141592653589793 rad + pos: 50.5,13.5 parent: 2 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold + - uid: 15674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,36.5 + parent: 2 + - uid: 15685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,33.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,3.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 3323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,24.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,44.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,46.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,53.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,38.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 14225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,27.5 + parent: 2 + - uid: 14344 + components: + - type: Transform + pos: 69.5,35.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,45.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + pos: 70.5,40.5 + parent: 2 +- proto: PoweredWarmSmallLight + entities: + - uid: 3431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,37.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,41.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + pos: 58.5,39.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,40.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,18.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + pos: 62.5,41.5 + parent: 2 + - uid: 11476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,41.5 + parent: 2 + - uid: 13639 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 5238 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ProtolatheMachineCircuitboard entities: - uid: 12658 @@ -73473,15 +77128,10 @@ entities: parent: 2 - proto: Rack entities: - - uid: 251 + - uid: 27 components: - type: Transform - pos: -0.5,-5.5 - parent: 2 - - uid: 553 - components: - - type: Transform - pos: 5.5,31.5 + pos: 65.5,20.5 parent: 2 - uid: 826 components: @@ -73548,25 +77198,32 @@ entities: - type: Transform pos: 33.5,-17.5 parent: 2 - - uid: 2222 + - uid: 2195 components: - type: Transform - pos: 50.5,28.5 + pos: 65.5,8.5 parent: 2 - - uid: 3162 + - uid: 3165 components: - type: Transform - pos: 56.5,25.5 + rot: 3.141592653589793 rad + pos: 40.5,28.5 parent: 2 - - uid: 5342 + - uid: 3168 components: - type: Transform - pos: 53.5,25.5 + rot: 3.141592653589793 rad + pos: 39.5,28.5 parent: 2 - - uid: 5375 + - uid: 3666 components: - type: Transform - pos: 52.5,11.5 + pos: 48.5,28.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: 66.5,6.5 parent: 2 - uid: 5439 components: @@ -73578,6 +77235,12 @@ entities: - type: Transform pos: 73.5,-12.5 parent: 2 + - uid: 5731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,22.5 + parent: 2 - uid: 5732 components: - type: Transform @@ -73599,12 +77262,23 @@ entities: - type: Transform pos: 31.5,-48.5 parent: 2 + - uid: 7780 + components: + - type: Transform + pos: 38.5,43.5 + parent: 2 - uid: 8173 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-42.5 parent: 2 + - uid: 8517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,8.5 + parent: 2 - uid: 9017 components: - type: Transform @@ -73621,17 +77295,6 @@ entities: - type: Transform pos: 27.5,5.5 parent: 2 - - uid: 9640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,40.5 - parent: 2 - - uid: 10039 - components: - - type: Transform - pos: 28.5,-41.5 - parent: 2 - uid: 10303 components: - type: Transform @@ -73667,11 +77330,6 @@ entities: - type: Transform pos: 81.5,9.5 parent: 2 - - uid: 10833 - components: - - type: Transform - pos: 65.5,11.5 - parent: 2 - uid: 11409 components: - type: Transform @@ -73704,12 +77362,51 @@ entities: rot: 3.141592653589793 rad pos: 82.5,34.5 parent: 2 + - uid: 14834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,29.5 + parent: 2 + - uid: 14886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,47.5 + parent: 2 - uid: 15210 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-44.5 parent: 2 + - uid: 15371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,26.5 + parent: 2 + - uid: 15467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,31.5 + parent: 2 + - uid: 15894 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 15900 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 15904 + components: + - type: Transform + pos: 36.5,39.5 + parent: 2 - proto: RadiationCollectorFullTank entities: - uid: 8166 @@ -73744,11 +77441,6 @@ entities: parent: 2 - proto: RadioHandheld entities: - - uid: 1325 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 2 - uid: 2165 components: - type: Transform @@ -73759,36 +77451,6 @@ entities: - type: Transform pos: 15.602974,35.641438 parent: 2 - - uid: 4090 - components: - - type: Transform - pos: 21.304989,-19.377043 - parent: 2 - - uid: 7267 - components: - - type: Transform - pos: 21.664364,-19.377043 - parent: 2 - - uid: 7268 - components: - - type: Transform - pos: 21.492489,-19.283293 - parent: 2 - - uid: 8693 - components: - - type: Transform - pos: 32.390015,26.521107 - parent: 2 - - uid: 8694 - components: - - type: Transform - pos: 32.546265,26.521107 - parent: 2 - - uid: 8695 - components: - - type: Transform - pos: 32.68689,26.505482 - parent: 2 - proto: Railing entities: - uid: 6662 @@ -73821,20 +77483,18 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-9.5 parent: 2 - - uid: 13640 + - uid: 14954 components: - type: Transform - pos: 53.5,36.5 + rot: -1.5707963267948966 rad + pos: 3.5,-28.5 parent: 2 - - uid: 13641 +- proto: RailingCornerSmall + entities: + - uid: 15742 components: - type: Transform - pos: 54.5,36.5 - parent: 2 - - uid: 13642 - components: - - type: Transform - pos: 55.5,36.5 + pos: 3.5,-29.5 parent: 2 - proto: RandomArcade entities: @@ -73845,16 +77505,16 @@ entities: parent: 2 - proto: RandomArtifactSpawner entities: + - uid: 5445 + components: + - type: Transform + pos: 62.5,29.5 + parent: 2 - uid: 10421 components: - type: Transform pos: 64.5,28.5 parent: 2 - - uid: 10422 - components: - - type: Transform - pos: 62.5,28.5 - parent: 2 - proto: RandomBoard entities: - uid: 11863 @@ -73877,6 +77537,158 @@ entities: - type: Transform pos: 37.5,-17.5 parent: 2 +- proto: RandomCableHVSpawner + entities: + - uid: 1815 + components: + - type: Transform + pos: 81.5,45.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 82.5,46.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 82.5,44.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 78.5,44.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: 86.5,46.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: 86.5,44.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: 84.5,45.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 86.5,45.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: 80.5,45.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: 87.5,45.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: 85.5,45.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: 83.5,45.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: 78.5,46.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: 82.5,45.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: 77.5,45.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: 79.5,45.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: 78.5,45.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: 76.5,45.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 2 + - uid: 15762 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 15764 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 15765 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 15769 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 - proto: RandomFoodMeal entities: - uid: 12793 @@ -73893,11 +77705,21 @@ entities: parent: 2 - proto: RandomPainting entities: + - uid: 5532 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 - uid: 12820 components: - type: Transform pos: 8.5,17.5 parent: 2 + - uid: 14845 + components: + - type: Transform + pos: 54.5,39.5 + parent: 2 - proto: RandomPosterAny entities: - uid: 2270 @@ -73905,20 +77727,15 @@ entities: - type: Transform pos: 79.5,9.5 parent: 2 - - uid: 5532 + - uid: 3260 components: - type: Transform - pos: 52.5,32.5 + pos: 68.5,34.5 parent: 2 - - uid: 7827 + - uid: 10118 components: - type: Transform - pos: 68.5,33.5 - parent: 2 - - uid: 8584 - components: - - type: Transform - pos: 58.5,38.5 + pos: 40.5,39.5 parent: 2 - uid: 11520 components: @@ -73930,6 +77747,24 @@ entities: - type: Transform pos: 10.5,31.5 parent: 2 + - uid: 15694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,46.5 + parent: 2 + - uid: 15701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,42.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,51.5 + parent: 2 - proto: RandomPosterContraband entities: - uid: 2271 @@ -73937,21 +77772,16 @@ entities: - type: Transform pos: 69.5,41.5 parent: 2 - - uid: 2274 - components: - - type: Transform - pos: 40.5,39.5 - parent: 2 - - uid: 5528 - components: - - type: Transform - pos: 53.5,41.5 - parent: 2 - uid: 5624 components: - type: Transform pos: 16.5,-9.5 parent: 2 + - uid: 10676 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 - uid: 11176 components: - type: Transform @@ -73964,11 +77794,32 @@ entities: parent: 2 - proto: RandomPosterLegit entities: + - uid: 4130 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,38.5 + parent: 2 - uid: 7573 components: - type: Transform pos: 10.5,2.5 parent: 2 + - uid: 7953 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 - uid: 8117 components: - type: Transform @@ -74031,18 +77882,8 @@ entities: - type: Transform pos: 78.5,7.5 parent: 2 - - uid: 14652 - components: - - type: Transform - pos: 59.5,34.5 - parent: 2 - proto: RandomSpawner entities: - - uid: 3433 - components: - - type: Transform - pos: 70.5,27.5 - parent: 2 - uid: 5688 components: - type: Transform @@ -74053,21 +77894,11 @@ entities: - type: Transform pos: 15.5,-25.5 parent: 2 - - uid: 8932 - components: - - type: Transform - pos: 70.5,29.5 - parent: 2 - uid: 9308 components: - type: Transform pos: 68.5,8.5 parent: 2 - - uid: 11866 - components: - - type: Transform - pos: 57.5,-13.5 - parent: 2 - uid: 11867 components: - type: Transform @@ -74088,31 +77919,6 @@ entities: - type: Transform pos: 20.5,26.5 parent: 2 - - uid: 11879 - components: - - type: Transform - pos: 83.5,7.5 - parent: 2 - - uid: 11880 - components: - - type: Transform - pos: 68.5,11.5 - parent: 2 - - uid: 11884 - components: - - type: Transform - pos: 71.5,37.5 - parent: 2 - - uid: 11893 - components: - - type: Transform - pos: 18.5,36.5 - parent: 2 - - uid: 11895 - components: - - type: Transform - pos: 21.5,37.5 - parent: 2 - uid: 12409 components: - type: Transform @@ -74143,11 +77949,6 @@ entities: - type: Transform pos: 47.5,-1.5 parent: 2 - - uid: 12415 - components: - - type: Transform - pos: 25.5,12.5 - parent: 2 - uid: 12417 components: - type: Transform @@ -74202,10 +78003,10 @@ entities: - type: Transform pos: 25.5,3.5 parent: 2 - - uid: 11032 + - uid: 9898 components: - type: Transform - pos: 20.5,35.5 + pos: 18.5,35.5 parent: 2 - proto: RandomVendingSnacks entities: @@ -74214,20 +78015,27 @@ entities: - type: Transform pos: 5.5,13.5 parent: 2 -- proto: Recycler - entities: - - uid: 829 + - uid: 10721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,34.5 + pos: 19.5,35.5 parent: 2 +- proto: Recycler + entities: - uid: 5855 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-29.5 parent: 2 + - uid: 13115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - proto: ReinforcedPlasmaWindow entities: - uid: 321 @@ -74270,16 +78078,6 @@ entities: - type: Transform pos: 47.5,-33.5 parent: 2 - - uid: 2363 - components: - - type: Transform - pos: 38.5,25.5 - parent: 2 - - uid: 2364 - components: - - type: Transform - pos: 41.5,25.5 - parent: 2 - uid: 2411 components: - type: Transform @@ -74320,26 +78118,28 @@ entities: - type: Transform pos: 36.5,-33.5 parent: 2 - - uid: 8532 + - uid: 8548 components: - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 8534 - components: - - type: Transform - pos: 37.5,26.5 + rot: 1.5707963267948966 rad + pos: 62.5,26.5 parent: 2 - uid: 8665 components: - type: Transform pos: 45.5,-45.5 parent: 2 - - uid: 8699 + - uid: 8689 components: - type: Transform pos: 63.5,26.5 parent: 2 + - uid: 9565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,32.5 + parent: 2 - uid: 10088 components: - type: Transform @@ -74355,21 +78155,17 @@ entities: - type: Transform pos: 45.5,-48.5 parent: 2 - - uid: 12296 - components: - - type: Transform - pos: 40.5,29.5 - parent: 2 - - uid: 12442 - components: - - type: Transform - pos: 39.5,29.5 - parent: 2 - uid: 12986 components: - type: Transform pos: 45.5,-46.5 parent: 2 + - uid: 13517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,32.5 + parent: 2 - proto: ReinforcedWindow entities: - uid: 6 @@ -74392,6 +78188,12 @@ entities: - type: Transform pos: -4.5,-11.5 parent: 2 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,23.5 + parent: 2 - uid: 45 components: - type: Transform @@ -74492,16 +78294,6 @@ entities: - type: Transform pos: 2.5,7.5 parent: 2 - - uid: 418 - components: - - type: Transform - pos: 53.5,12.5 - parent: 2 - - uid: 427 - components: - - type: Transform - pos: 55.5,12.5 - parent: 2 - uid: 445 components: - type: Transform @@ -74542,11 +78334,6 @@ entities: - type: Transform pos: 65.5,14.5 parent: 2 - - uid: 622 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - uid: 674 components: - type: Transform @@ -74612,16 +78399,6 @@ entities: - type: Transform pos: 4.5,32.5 parent: 2 - - uid: 982 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 2 - - uid: 984 - components: - - type: Transform - pos: 22.5,-37.5 - parent: 2 - uid: 986 components: - type: Transform @@ -74712,26 +78489,11 @@ entities: - type: Transform pos: 2.5,12.5 parent: 2 - - uid: 1231 - components: - - type: Transform - pos: 56.5,42.5 - parent: 2 - uid: 1251 components: - type: Transform pos: 33.5,-34.5 parent: 2 - - uid: 1256 - components: - - type: Transform - pos: 52.5,38.5 - parent: 2 - - uid: 1275 - components: - - type: Transform - pos: 55.5,42.5 - parent: 2 - uid: 1308 components: - type: Transform @@ -74872,25 +78634,10 @@ entities: - type: Transform pos: -3.5,0.5 parent: 2 - - uid: 1948 - components: - - type: Transform - pos: 52.5,39.5 - parent: 2 - uid: 2028 components: - type: Transform - pos: 16.5,-37.5 - parent: 2 - - uid: 2053 - components: - - type: Transform - pos: 4.5,28.5 - parent: 2 - - uid: 2055 - components: - - type: Transform - pos: 5.5,28.5 + pos: 42.5,48.5 parent: 2 - uid: 2056 components: @@ -74902,126 +78649,48 @@ entities: - type: Transform pos: 5.5,25.5 parent: 2 - - uid: 2059 - components: - - type: Transform - pos: 4.5,22.5 - parent: 2 - - uid: 2060 - components: - - type: Transform - pos: 5.5,22.5 - parent: 2 - uid: 2167 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 2210 + - uid: 2230 components: - type: Transform - pos: 47.5,30.5 - parent: 2 - - uid: 2213 - components: - - type: Transform - pos: 60.5,36.5 + rot: 3.141592653589793 rad + pos: 35.5,16.5 parent: 2 - uid: 2231 components: - type: Transform pos: 75.5,23.5 parent: 2 - - uid: 2240 + - uid: 2251 components: - type: Transform - pos: 28.5,21.5 + pos: 63.5,33.5 parent: 2 - - uid: 2241 + - uid: 2254 components: - type: Transform - pos: 28.5,20.5 + pos: 62.5,33.5 parent: 2 - - uid: 2242 + - uid: 2289 components: - type: Transform - pos: 28.5,18.5 + pos: 35.5,24.5 parent: 2 - - uid: 2243 + - uid: 2425 components: - type: Transform - pos: 28.5,17.5 - parent: 2 - - uid: 2256 - components: - - type: Transform - pos: 31.5,21.5 - parent: 2 - - uid: 2257 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 2284 - components: - - type: Transform - pos: 44.5,34.5 - parent: 2 - - uid: 2285 - components: - - type: Transform - pos: 44.5,35.5 - parent: 2 - - uid: 2286 - components: - - type: Transform - pos: 44.5,36.5 - parent: 2 - - uid: 2367 - components: - - type: Transform - pos: 37.5,24.5 - parent: 2 - - uid: 2368 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 2369 - components: - - type: Transform - pos: 38.5,20.5 - parent: 2 - - uid: 2370 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2 - - uid: 2373 - components: - - type: Transform - pos: 42.5,24.5 - parent: 2 - - uid: 2374 - components: - - type: Transform - pos: 42.5,22.5 + rot: 3.141592653589793 rad + pos: 34.5,16.5 parent: 2 - uid: 2427 components: - type: Transform pos: 88.5,-6.5 parent: 2 - - uid: 2458 - components: - - type: Transform - pos: 43.5,16.5 - parent: 2 - - uid: 2459 - components: - - type: Transform - pos: 41.5,16.5 - parent: 2 - uid: 2476 components: - type: Transform @@ -75197,16 +78866,6 @@ entities: - type: Transform pos: 59.5,-14.5 parent: 2 - - uid: 3069 - components: - - type: Transform - pos: 42.5,40.5 - parent: 2 - - uid: 3070 - components: - - type: Transform - pos: 41.5,40.5 - parent: 2 - uid: 3086 components: - type: Transform @@ -75227,65 +78886,10 @@ entities: - type: Transform pos: 18.5,44.5 parent: 2 - - uid: 3098 - components: - - type: Transform - pos: 48.5,49.5 - parent: 2 - - uid: 3099 - components: - - type: Transform - pos: 48.5,48.5 - parent: 2 - - uid: 3100 - components: - - type: Transform - pos: 47.5,48.5 - parent: 2 - uid: 3101 components: - type: Transform - pos: 46.5,48.5 - parent: 2 - - uid: 3102 - components: - - type: Transform - pos: 45.5,48.5 - parent: 2 - - uid: 3103 - components: - - type: Transform - pos: 45.5,47.5 - parent: 2 - - uid: 3104 - components: - - type: Transform - pos: 44.5,47.5 - parent: 2 - - uid: 3105 - components: - - type: Transform - pos: 43.5,47.5 - parent: 2 - - uid: 3110 - components: - - type: Transform - pos: 46.5,45.5 - parent: 2 - - uid: 3111 - components: - - type: Transform - pos: 47.5,45.5 - parent: 2 - - uid: 3112 - components: - - type: Transform - pos: 48.5,45.5 - parent: 2 - - uid: 3113 - components: - - type: Transform - pos: 49.5,45.5 + pos: 35.5,28.5 parent: 2 - uid: 3120 components: @@ -75297,60 +78901,42 @@ entities: - type: Transform pos: -25.5,-6.5 parent: 2 - - uid: 3127 + - uid: 3146 components: - type: Transform - pos: 50.5,46.5 + pos: 40.5,29.5 parent: 2 - - uid: 3128 + - uid: 3147 components: - type: Transform - pos: 50.5,47.5 + pos: 39.5,29.5 parent: 2 - - uid: 3129 + - uid: 3157 components: - type: Transform - pos: 51.5,47.5 + rot: 3.141592653589793 rad + pos: 36.5,28.5 parent: 2 - - uid: 3130 + - uid: 3162 components: - type: Transform - pos: 52.5,47.5 + pos: 35.5,27.5 parent: 2 - - uid: 3143 + - uid: 3164 components: - type: Transform - pos: 47.5,39.5 + pos: 35.5,25.5 parent: 2 - - uid: 3144 + - uid: 3174 components: - type: Transform - pos: 47.5,38.5 + rot: 3.141592653589793 rad + pos: 36.5,29.5 parent: 2 - - uid: 3145 + - uid: 3279 components: - type: Transform - pos: 47.5,37.5 - parent: 2 - - uid: 3211 - components: - - type: Transform - pos: 60.5,47.5 - parent: 2 - - uid: 3212 - components: - - type: Transform - pos: 61.5,47.5 - parent: 2 - - uid: 3214 - components: - - type: Transform - pos: 62.5,47.5 - parent: 2 - - uid: 3265 - components: - - type: Transform - pos: 62.5,46.5 + pos: 40.5,23.5 parent: 2 - uid: 3327 components: @@ -75362,25 +78948,11 @@ entities: - type: Transform pos: -7.5,-7.5 parent: 2 - - uid: 3335 - components: - - type: Transform - pos: 50.5,49.5 - parent: 2 - - uid: 3336 - components: - - type: Transform - pos: 51.5,49.5 - parent: 2 - uid: 3337 components: - type: Transform - pos: 52.5,49.5 - parent: 2 - - uid: 3338 - components: - - type: Transform - pos: 53.5,49.5 + rot: 3.141592653589793 rad + pos: 51.5,51.5 parent: 2 - uid: 3340 components: @@ -75392,55 +78964,16 @@ entities: - type: Transform pos: -21.5,-4.5 parent: 2 - - uid: 3345 - components: - - type: Transform - pos: 59.5,49.5 - parent: 2 - - uid: 3346 - components: - - type: Transform - pos: 60.5,49.5 - parent: 2 - uid: 3347 components: - type: Transform - pos: 61.5,49.5 + rot: 3.141592653589793 rad + pos: 52.5,51.5 parent: 2 - - uid: 3348 + - uid: 3350 components: - type: Transform - pos: 62.5,49.5 - parent: 2 - - uid: 3389 - components: - - type: Transform - pos: 64.5,49.5 - parent: 2 - - uid: 3390 - components: - - type: Transform - pos: 64.5,48.5 - parent: 2 - - uid: 3391 - components: - - type: Transform - pos: 65.5,48.5 - parent: 2 - - uid: 3392 - components: - - type: Transform - pos: 66.5,48.5 - parent: 2 - - uid: 3393 - components: - - type: Transform - pos: 67.5,48.5 - parent: 2 - - uid: 3394 - components: - - type: Transform - pos: 67.5,47.5 + pos: 50.5,51.5 parent: 2 - uid: 3397 components: @@ -75477,36 +79010,11 @@ entities: - type: Transform pos: 75.5,22.5 parent: 2 - - uid: 3479 - components: - - type: Transform - pos: 48.5,17.5 - parent: 2 - uid: 3480 components: - type: Transform pos: 48.5,19.5 parent: 2 - - uid: 3499 - components: - - type: Transform - pos: 54.5,26.5 - parent: 2 - - uid: 3500 - components: - - type: Transform - pos: 55.5,26.5 - parent: 2 - - uid: 3503 - components: - - type: Transform - pos: 57.5,26.5 - parent: 2 - - uid: 3504 - components: - - type: Transform - pos: 58.5,26.5 - parent: 2 - uid: 3594 components: - type: Transform @@ -75667,11 +79175,6 @@ entities: - type: Transform pos: 33.5,-35.5 parent: 2 - - uid: 4134 - components: - - type: Transform - pos: 56.5,26.5 - parent: 2 - uid: 4165 components: - type: Transform @@ -75797,11 +79300,6 @@ entities: - type: Transform pos: 47.5,-37.5 parent: 2 - - uid: 4812 - components: - - type: Transform - pos: 56.5,50.5 - parent: 2 - uid: 5004 components: - type: Transform @@ -75882,6 +79380,12 @@ entities: - type: Transform pos: 2.5,3.5 parent: 2 + - uid: 5335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2 - uid: 5357 components: - type: Transform @@ -75892,6 +79396,12 @@ entities: - type: Transform pos: 2.5,4.5 parent: 2 + - uid: 5411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,37.5 + parent: 2 - uid: 5417 components: - type: Transform @@ -75907,36 +79417,6 @@ entities: - type: Transform pos: 39.5,-41.5 parent: 2 - - uid: 5489 - components: - - type: Transform - pos: 72.5,33.5 - parent: 2 - - uid: 5490 - components: - - type: Transform - pos: 72.5,32.5 - parent: 2 - - uid: 5491 - components: - - type: Transform - pos: 72.5,31.5 - parent: 2 - - uid: 5492 - components: - - type: Transform - pos: 72.5,29.5 - parent: 2 - - uid: 5493 - components: - - type: Transform - pos: 72.5,28.5 - parent: 2 - - uid: 5494 - components: - - type: Transform - pos: 72.5,27.5 - parent: 2 - uid: 5728 components: - type: Transform @@ -75977,6 +79457,11 @@ entities: - type: Transform pos: 42.5,-2.5 parent: 2 + - uid: 6536 + components: + - type: Transform + pos: 64.5,33.5 + parent: 2 - uid: 6807 components: - type: Transform @@ -76062,6 +79547,12 @@ entities: - type: Transform pos: -12.5,-2.5 parent: 2 + - uid: 7755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,29.5 + parent: 2 - uid: 7763 components: - type: Transform @@ -76092,11 +79583,6 @@ entities: - type: Transform pos: -25.5,-4.5 parent: 2 - - uid: 7945 - components: - - type: Transform - pos: 34.5,16.5 - parent: 2 - uid: 7957 components: - type: Transform @@ -76112,6 +79598,62 @@ entities: - type: Transform pos: -17.5,-2.5 parent: 2 + - uid: 8398 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,29.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,23.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,51.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,32.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,51.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,29.5 + parent: 2 + - uid: 8694 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 - uid: 8736 components: - type: Transform @@ -76322,20 +79864,41 @@ entities: - type: Transform pos: 116.5,-19.5 parent: 2 - - uid: 9334 + - uid: 9265 components: - type: Transform - pos: 43.5,40.5 + rot: 3.141592653589793 rad + pos: 16.5,-37.5 parent: 2 - - uid: 10086 + - uid: 9284 components: - type: Transform - pos: 52.5,25.5 + rot: 3.141592653589793 rad + pos: 17.5,-37.5 parent: 2 - - uid: 10087 + - uid: 9292 components: - type: Transform - pos: 52.5,23.5 + rot: 3.141592653589793 rad + pos: 73.5,31.5 + parent: 2 + - uid: 9294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-37.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-37.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,28.5 parent: 2 - uid: 10123 components: @@ -76357,11 +79920,28 @@ entities: - type: Transform pos: 52.5,1.5 parent: 2 + - uid: 10539 + components: + - type: Transform + pos: 40.5,48.5 + parent: 2 + - uid: 10587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,12.5 + parent: 2 - uid: 10768 components: - type: Transform pos: 73.5,24.5 parent: 2 + - uid: 11280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,29.5 + parent: 2 - uid: 11609 components: - type: Transform @@ -76377,50 +79957,21 @@ entities: - type: Transform pos: -26.5,-13.5 parent: 2 - - uid: 11737 - components: - - type: Transform - pos: 57.5,30.5 - parent: 2 - - uid: 11860 - components: - - type: Transform - pos: 56.5,30.5 - parent: 2 - - uid: 11861 - components: - - type: Transform - pos: 55.5,30.5 - parent: 2 - uid: 11971 components: - type: Transform pos: 45.5,-31.5 parent: 2 - - uid: 12080 - components: - - type: Transform - pos: 57.5,42.5 - parent: 2 - uid: 12421 components: - type: Transform pos: -9.5,-10.5 parent: 2 - - uid: 12431 + - uid: 12435 components: - type: Transform - pos: 56.5,49.5 - parent: 2 - - uid: 12439 - components: - - type: Transform - pos: 54.5,46.5 - parent: 2 - - uid: 12443 - components: - - type: Transform - pos: 58.5,46.5 + rot: 3.141592653589793 rad + pos: 62.5,51.5 parent: 2 - uid: 12444 components: @@ -76447,21 +79998,6 @@ entities: - type: Transform pos: -7.5,-15.5 parent: 2 - - uid: 12662 - components: - - type: Transform - pos: 55.5,46.5 - parent: 2 - - uid: 12670 - components: - - type: Transform - pos: 57.5,46.5 - parent: 2 - - uid: 12761 - components: - - type: Transform - pos: 47.5,31.5 - parent: 2 - uid: 12804 components: - type: Transform @@ -76532,16 +80068,6 @@ entities: - type: Transform pos: -9.5,1.5 parent: 2 - - uid: 13120 - components: - - type: Transform - pos: 23.5,34.5 - parent: 2 - - uid: 13142 - components: - - type: Transform - pos: 24.5,34.5 - parent: 2 - uid: 13255 components: - type: Transform @@ -76572,21 +80098,16 @@ entities: - type: Transform pos: -13.5,-21.5 parent: 2 - - uid: 13283 + - uid: 13287 components: - type: Transform - pos: 56.5,51.5 + pos: 41.5,48.5 parent: 2 - uid: 13295 components: - type: Transform pos: -25.5,-21.5 parent: 2 - - uid: 13297 - components: - - type: Transform - pos: -26.5,-21.5 - parent: 2 - uid: 13298 components: - type: Transform @@ -76647,20 +80168,10 @@ entities: - type: Transform pos: 8.5,-41.5 parent: 2 - - uid: 13557 + - uid: 13650 components: - type: Transform - pos: 65.5,35.5 - parent: 2 - - uid: 13558 - components: - - type: Transform - pos: 65.5,36.5 - parent: 2 - - uid: 13559 - components: - - type: Transform - pos: 65.5,37.5 + pos: 32.5,16.5 parent: 2 - uid: 13656 components: @@ -76672,11 +80183,6 @@ entities: - type: Transform pos: -25.5,-8.5 parent: 2 - - uid: 13692 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - uid: 13786 components: - type: Transform @@ -76767,6 +80273,17 @@ entities: - type: Transform pos: 82.5,35.5 parent: 2 + - uid: 14232 + components: + - type: Transform + pos: 44.5,48.5 + parent: 2 + - uid: 14238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,23.5 + parent: 2 - uid: 14363 components: - type: Transform @@ -76797,6 +80314,16 @@ entities: - type: Transform pos: 3.5,25.5 parent: 2 + - uid: 14858 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 14859 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 - uid: 14923 components: - type: Transform @@ -76812,10 +80339,21 @@ entities: - type: Transform pos: 12.5,-38.5 parent: 2 - - uid: 15365 + - uid: 15676 components: - type: Transform - pos: 33.5,16.5 + pos: 45.5,48.5 + parent: 2 + - uid: 15677 + components: + - type: Transform + pos: 46.5,48.5 + parent: 2 + - uid: 15877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,12.5 parent: 2 - proto: RemoteSignaller entities: @@ -76824,27 +80362,12 @@ entities: - type: Transform pos: 19.330996,46.803196 parent: 2 - - uid: 15427 - components: - - type: MetaData - name: robotics blast doors - - type: Transform - pos: 46.333313,11.606956 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8248: - - - Pressed - - Toggle - 11022: - - - Pressed - - Toggle - proto: ResearchAndDevelopmentServer entities: - - uid: 8233 + - uid: 5321 components: - type: Transform - pos: 49.5,25.5 + pos: 49.5,23.5 parent: 2 - proto: Retractor entities: @@ -76853,63 +80376,74 @@ entities: - type: Transform pos: 66.55991,-3.281434 parent: 2 +- proto: RevolverCapGun + entities: + - uid: 15182 + components: + - type: Transform + pos: 48.41018,44.784416 + parent: 2 +- proto: RiceSeeds + entities: + - uid: 8730 + components: + - type: Transform + pos: 57.497494,41.422585 + parent: 2 - proto: RiotBulletShield entities: - - uid: 2404 + - uid: 9926 components: - type: Transform - pos: 40.60262,28.679474 - parent: 2 - - uid: 7584 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10405 components: - type: Transform - pos: 40.594807,28.656036 - parent: 2 - - uid: 8351 - components: - - type: Transform - pos: 40.57918,28.913849 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: RiotLaserShield entities: - - uid: 6422 + - uid: 11017 components: - type: Transform - pos: 40.04793,28.648224 - parent: 2 - - uid: 8419 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12773 components: - type: Transform - pos: 40.04012,28.835724 - parent: 2 - - uid: 8422 - components: - - type: Transform - pos: 40.063557,28.726349 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: RiotShield entities: - - uid: 8348 + - uid: 15200 components: - type: Transform - pos: 40.368244,28.741974 - parent: 2 - - uid: 8417 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15337 components: - type: Transform - pos: 40.368244,28.609161 - parent: 2 - - uid: 14664 - components: - - type: Transform - pos: 40.336994,28.882599 - parent: 2 + parent: 6527 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: RobocopCircuitBoard entities: - uid: 14284 components: - type: Transform - pos: 86.54398,28.473265 + pos: 86.50753,32.46467 parent: 2 - proto: RockGuitarInstrument entities: @@ -76947,11 +80481,6 @@ entities: - type: Transform pos: 67.45054,-4.453309 parent: 2 - - uid: 5395 - components: - - type: Transform - pos: 55.53906,10.407994 - parent: 2 - proto: Scalpel entities: - uid: 5137 @@ -76962,7 +80491,7 @@ entities: - uid: 5394 components: - type: Transform - pos: 55.523434,10.407994 + pos: 52.58589,8.339501 parent: 2 - uid: 10073 components: @@ -76971,10 +80500,27 @@ entities: parent: 2 - proto: ScrapCamera entities: - - uid: 6843 + - uid: 10083 components: - type: Transform - pos: 67.493965,34.506084 + pos: 51.39755,42.20345 + parent: 2 + - uid: 13568 + components: + - type: Transform + pos: 69.38568,33.532196 + parent: 2 + - uid: 15705 + components: + - type: Transform + pos: 58.145233,50.61697 + parent: 2 +- proto: ScrapFireExtinguisher + entities: + - uid: 13569 + components: + - type: Transform + pos: 70.49884,30.786736 parent: 2 - proto: Screen entities: @@ -77049,6 +80595,56 @@ entities: rot: 1.5707963267948966 rad pos: 88.5,32.5 parent: 2 + - uid: 15658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,50.5 + parent: 2 +- proto: ScreenTimer + entities: + - uid: 15631 + components: + - type: Transform + pos: 51.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: SignalTimer + maxLength: 1 + delay: 0.7 + - type: DeviceLinkSource + linkedPorts: + 15632: + - - Timer + - Trigger + - type: ActiveSignalTimer + - uid: 15632 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: SignalTimer + maxLength: 1 + delay: 0.7 + - type: DeviceLinkSource + linkedPorts: + 9342: + - - Timer + - Forward + - - Start + - Reverse + 15631: + - - Timer + - Trigger + 15156: + - - Timer + - Forward + - - Start + - Reverse + - type: ActiveSignalTimer - proto: Screwdriver entities: - uid: 11132 @@ -77058,10 +80654,10 @@ entities: parent: 2 - proto: SecurityTechFab entities: - - uid: 12373 + - uid: 8508 components: - type: Transform - pos: 38.5,21.5 + pos: 42.5,35.5 parent: 2 - type: TechnologyDatabase supportedDisciplines: @@ -77071,16 +80667,21 @@ entities: - CivilianServices - proto: SeedExtractor entities: - - uid: 3159 + - uid: 2431 components: - type: Transform - pos: 53.5,36.5 + pos: 59.5,45.5 parent: 2 - uid: 6677 components: - type: Transform pos: 45.5,-4.5 parent: 2 + - uid: 14870 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 - proto: ShardGlass entities: - uid: 10809 @@ -77093,6 +80694,13 @@ entities: - type: Transform pos: 90.27248,-20.82429 parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 10311 + components: + - type: Transform + pos: 71.58744,34.19874 + parent: 2 - proto: SheetGlass entities: - uid: 784 @@ -77107,21 +80715,6 @@ entities: - type: Transform pos: 33.519444,-17.381672 parent: 2 - - uid: 5327 - components: - - type: Transform - pos: 56.186665,17.583338 - parent: 2 - - uid: 5328 - components: - - type: Transform - pos: 56.186665,17.583338 - parent: 2 - - uid: 5329 - components: - - type: Transform - pos: 56.186665,17.583338 - parent: 2 - uid: 5636 components: - type: Transform @@ -77132,10 +80725,16 @@ entities: - type: Transform pos: 16.999237,-26.465462 parent: 2 - - uid: 10311 + - uid: 8429 components: - type: Transform - pos: 8.421515,-6.356274 + pos: 55.510555,17.572374 + parent: 2 + - uid: 14829 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 55.527084,17.569584 parent: 2 - proto: SheetPlasma entities: @@ -77149,7 +80748,8 @@ entities: - uid: 7529 components: - type: Transform - pos: 71.06963,13.620979 + rot: -12.566370614359172 rad + pos: 71.4212,13.651101 parent: 2 - uid: 14581 components: @@ -77170,27 +80770,27 @@ entities: - type: Transform pos: 17.5,-26.5 parent: 2 - - uid: 10312 + - uid: 7756 components: - type: Transform - pos: 8.609015,-6.340649 + pos: 17.522242,-26.53012 parent: 2 - proto: SheetPlastic entities: - - uid: 5333 + - uid: 7827 components: - type: Transform - pos: 56.436665,17.505213 + pos: 18.15394,-26.405436 parent: 2 - - uid: 5334 + - uid: 8421 components: - type: Transform - pos: 56.436665,17.505213 + pos: 56.041805,17.55675 parent: 2 - - uid: 5335 + - uid: 10656 components: - type: Transform - pos: 56.436665,17.505213 + pos: 55.99271,17.57192 parent: 2 - proto: SheetSteel entities: @@ -77206,46 +80806,6 @@ entities: - type: Transform pos: 33.507664,-17.468887 parent: 2 - - uid: 5152 - components: - - type: Transform - pos: 43.528275,-35.489674 - parent: 2 - - uid: 5153 - components: - - type: Transform - pos: 43.528275,-35.489674 - parent: 2 - - uid: 5330 - components: - - type: Transform - pos: 56.63979,17.598963 - parent: 2 - - uid: 5331 - components: - - type: Transform - pos: 56.63979,17.598963 - parent: 2 - - uid: 5332 - components: - - type: Transform - pos: 56.63979,17.598963 - parent: 2 - - uid: 5383 - components: - - type: Transform - pos: 50.524685,8.532994 - parent: 2 - - uid: 5384 - components: - - type: Transform - pos: 50.524685,8.532994 - parent: 2 - - uid: 5385 - components: - - type: Transform - pos: 50.524685,8.532994 - parent: 2 - uid: 5633 components: - type: Transform @@ -77254,7 +80814,7 @@ entities: - uid: 5634 components: - type: Transform - pos: 16.5,-26.5 + pos: 56.604305,17.55675 parent: 2 - uid: 7271 components: @@ -77266,21 +80826,21 @@ entities: - type: Transform pos: 30.5,-30.5 parent: 2 - - uid: 8175 + - uid: 8470 components: - type: Transform - pos: 43.528275,-35.489674 - parent: 2 - - uid: 10313 - components: - - type: Transform - pos: 8.53089,-6.434399 + pos: 36.47758,27.594019 parent: 2 - uid: 12088 components: - type: Transform pos: 16.49948,-26.476994 parent: 2 + - uid: 15581 + components: + - type: Transform + pos: 56.55521,17.556295 + parent: 2 - proto: SheetSteel1 entities: - uid: 4672 @@ -77307,20 +80867,29 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ShotGunCabinetFilled - entities: - - uid: 2221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,18.5 - parent: 2 - proto: Shovel entities: - uid: 1053 components: - type: Transform - pos: 5.5,31.5 + pos: 7.4232864,29.512466 + parent: 2 +- proto: ShuttersNormal + entities: + - uid: 8446 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 + - uid: 9640 + components: + - type: Transform + pos: 12.5,29.5 parent: 2 - proto: ShuttersNormalOpen entities: @@ -77363,10 +80932,31 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-6.5 parent: 2 - - uid: 2090 + - uid: 2065 components: - type: Transform - pos: 11.5,29.5 + pos: 32.5,16.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-38.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + pos: 38.5,23.5 parent: 2 - uid: 6512 components: @@ -77374,39 +80964,35 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 - - uid: 12381 + - uid: 8575 components: - type: Transform - pos: 13.5,29.5 + pos: 37.5,23.5 parent: 2 - - uid: 12824 + - uid: 8592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,17.5 + pos: 40.5,23.5 parent: 2 - - uid: 12825 + - uid: 8621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,20.5 + pos: 36.5,23.5 parent: 2 - - uid: 12826 + - uid: 9038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,18.5 + pos: 33.5,16.5 parent: 2 - - uid: 12839 + - uid: 9266 components: - type: Transform - pos: 12.5,29.5 + pos: 39.5,23.5 parent: 2 - - uid: 13183 + - uid: 11676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,21.5 + pos: 47.5,37.5 parent: 2 - uid: 13476 components: @@ -77459,59 +81045,41 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-33.5 parent: 2 - - uid: 13644 - components: - - type: Transform - pos: 55.5,30.5 - parent: 2 - - uid: 13645 - components: - - type: Transform - pos: 56.5,30.5 - parent: 2 - - uid: 13646 - components: - - type: Transform - pos: 57.5,30.5 - parent: 2 - - uid: 13647 - components: - - type: Transform - pos: 55.5,42.5 - parent: 2 - - uid: 13648 - components: - - type: Transform - pos: 56.5,42.5 - parent: 2 - - uid: 13649 - components: - - type: Transform - pos: 57.5,42.5 - parent: 2 - - uid: 13650 + - uid: 13629 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,38.5 + pos: 35.5,25.5 parent: 2 - - uid: 13651 + - uid: 13630 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,39.5 + pos: 35.5,24.5 parent: 2 - - uid: 13652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,36.5 - parent: 2 - - uid: 13915 + - uid: 14599 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,29.5 + pos: 28.5,30.5 + parent: 2 + - uid: 14600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - uid: 14860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,20.5 + parent: 2 + - uid: 14861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,21.5 parent: 2 - uid: 14910 components: @@ -77531,82 +81099,31 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,16.5 parent: 2 - - uid: 15370 - components: - - type: Transform - pos: 33.5,16.5 - parent: 2 - - uid: 15371 - components: - - type: Transform - pos: 34.5,16.5 - parent: 2 - proto: ShuttersRadiationOpen entities: - - uid: 449 - components: - - type: Transform - pos: 17.5,-37.5 - parent: 2 - - uid: 780 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 2 - - uid: 2044 - components: - - type: Transform - pos: 16.5,-37.5 - parent: 2 - - uid: 3241 - components: - - type: Transform - pos: 22.5,-44.5 - parent: 2 - - uid: 3972 - components: - - type: Transform - pos: 23.5,-44.5 - parent: 2 - - uid: 3992 - components: - - type: Transform - pos: 21.5,-44.5 - parent: 2 - - uid: 4502 + - uid: 8673 components: - type: Transform + rot: 3.141592653589793 rad pos: 22.5,-37.5 parent: 2 - - uid: 4635 + - uid: 8932 components: - type: Transform - pos: 26.5,-43.5 + rot: 3.141592653589793 rad + pos: 16.5,-37.5 parent: 2 - - uid: 4636 + - uid: 9282 components: - type: Transform - pos: 25.5,-43.5 + rot: 3.141592653589793 rad + pos: 17.5,-37.5 parent: 2 - - uid: 7808 + - uid: 9332 components: - type: Transform - pos: 20.5,-44.5 - parent: 2 - - uid: 8031 - components: - - type: Transform - pos: 19.5,-44.5 - parent: 2 - - uid: 10959 - components: - - type: Transform - pos: 16.5,-43.5 - parent: 2 - - uid: 10999 - components: - - type: Transform - pos: 17.5,-43.5 + rot: 3.141592653589793 rad + pos: 20.5,-37.5 parent: 2 - proto: ShuttersWindowOpen entities: @@ -77742,17 +81259,6 @@ entities: parent: 2 - proto: SignalButton entities: - - uid: 128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8103: - - - Pressed - - Toggle - uid: 1471 components: - type: MetaData @@ -77771,50 +81277,57 @@ entities: 270: - - Pressed - Toggle - - uid: 7809 + - uid: 2443 + components: + - type: MetaData + name: signal button (Inner Doors) + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.41377,27.721725 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8414: + - - Pressed + - Open + 8412: + - - Pressed + - Open + - type: Label + currentLabel: Inner Doors + - type: NameModifier + baseName: signal button + - uid: 11020 + components: + - type: MetaData + name: signal button (Outer Doors) + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.41377,27.494875 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 318: + - - Pressed + - Open + 257: + - - Pressed + - Open + - type: Label + currentLabel: Outer Doors + - type: NameModifier + baseName: signal button + - uid: 14932 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,22.5 + pos: 51.5,34.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 8067: + 15632: - - Pressed - - Toggle - - uid: 13002 - components: - - type: Transform - pos: 10.5,29.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2090: - - - Pressed - - Toggle - 12839: - - - Pressed - - Toggle - 12381: - - - Pressed - - Toggle - - uid: 14913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 14912: - - - Pressed - - Toggle - 14910: - - - Pressed - - Toggle - 14911: - - - Pressed - - Toggle + - Trigger - proto: SignalButtonDirectional entities: - uid: 543 @@ -77842,152 +81355,44 @@ entities: 1154: - - Pressed - Toggle - - uid: 3993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-40.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4636: - - - Pressed - - Toggle - 4635: - - - Pressed - - Toggle - 3972: - - - Pressed - - Toggle - 3241: - - - Pressed - - Toggle - 3992: - - - Pressed - - Toggle - 7808: - - - Pressed - - Toggle - 8031: - - - Pressed - - Toggle - 10999: - - - Pressed - - Toggle - 10959: - - - Pressed - - Toggle - - uid: 11001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-37.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 449: - - - Pressed - - Toggle - 2044: - - - Pressed - - Toggle - 780: - - - Pressed - - Toggle - 4502: - - - Pressed - - Toggle - - uid: 11019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 15371: - - - Pressed - - Toggle - 15370: - - - Pressed - - Toggle - - uid: 13655 + - uid: 10538 components: - type: MetaData - name: perma shutters + name: signal button (Inner Doors) - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,33.5 + pos: 31.69,31.78 parent: 2 - type: DeviceLinkSource linkedPorts: - 13650: + 8414: - - Pressed - - Toggle - 13651: + - Open + 8412: - - Pressed - - Toggle - 13652: - - - Pressed - - Toggle - 13644: - - - Pressed - - Toggle - 13645: - - - Pressed - - Toggle - 13646: - - - Pressed - - Toggle - 13647: - - - Pressed - - Toggle - 13648: - - - Pressed - - Toggle - 13649: - - - Pressed - - Toggle - - uid: 14566 - components: - - type: Transform - pos: 61.5,26.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5351: - - - Pressed - - Toggle - 5361: - - - Pressed - - Toggle + - Open + - type: Label + currentLabel: Inner Doors + - type: NameModifier + baseName: signal button - uid: 14742 components: + - type: MetaData + name: signal button (Outer Doors) - type: Transform - pos: 31.77084,21.456566 + pos: 31.31,31.78 parent: 2 - type: DeviceLinkSource linkedPorts: - 12825: + 257: - - Pressed - - Toggle - 13183: + - Open + 318: - - Pressed - - Toggle - - uid: 14924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.777786,17.53082 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12826: - - - Pressed - - Toggle - 12824: - - - Pressed - - Toggle + - Open + - type: Label + currentLabel: Outer Doors + - type: NameModifier + baseName: signal button - uid: 15124 components: - type: Transform @@ -78011,33 +81416,488 @@ entities: 15121: - - Pressed - Toggle - - uid: 15127 + - uid: 15804 components: + - type: MetaData + name: signal button (Front Doors) - type: Transform rot: 3.141592653589793 rad - pos: 30.5,27.5 + pos: 49.5,16.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 13915: + 10449: + - - Pressed + - Open + 3035: - - Pressed - Toggle - - uid: 15286 + - type: Label + currentLabel: Front Doors + - type: NameModifier + baseName: signal button +- proto: SignalSwitch + entities: + - uid: 5331 components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + pos: 31.49404,32.001522 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14600: + - - On + - Open + - - Off + - Close + 14599: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch + - uid: 10605 + components: + - type: MetaData + name: signal switch (Blast Doors) + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 365: + - - On + - Open + - - Off + - Close + 8520: + - - On + - Open + - - Off + - Close + 8557: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Blast Doors + - type: NameModifier + baseName: signal switch +- proto: SignalSwitchDirectional + entities: + - uid: 2053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14912: + - - Off + - Close + - - On + - Open + 14910: + - - On + - Open + - - Off + - Close + 14911: + - - On + - Open + - - Off + - Close + - uid: 2059 + components: + - type: MetaData + name: signal switch (Storage Bay) + - type: Transform + pos: 10.5,29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8541: + - - On + - Open + - - Off + - Close + 9640: + - - Off + - Close + - - On + - Open + 8446: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Storage Bay + - type: NameModifier + baseName: signal switch + - uid: 7856 + components: + - type: MetaData + name: signal switch (Brig Shutters) + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.060936,27.49635 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3494: + - - On + - Open + - - Off + - Close + 2261: + - - On + - Open + - - Off + - Close + 9038: + - - On + - Open + - - Off + - Close + 2065: + - - On + - Open + - - Off + - Close + 14860: + - - On + - Open + - - Off + - Close + 14861: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Brig Shutters + - type: NameModifier + baseName: signal switch + - uid: 10979 + components: + - type: MetaData + name: signal switch (Window Shutters) + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13490: + - - On + - Open + - - Off + - Close + 13489: + - - On + - Open + - - Off + - Close + 13488: + - - On + - Open + - - Off + - Close + 4635: + - - On + - Open + - - Off + - Close + 13478: + - - On + - Open + - - Off + - Close + 13477: + - - On + - Open + - - Off + - Close + 13476: + - - On + - Open + - - Off + - Close + 13481: + - - On + - Open + - - Off + - Close + 13482: + - - On + - Open + - - Off + - Close + 13480: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Window Shutters + - type: NameModifier + baseName: signal switch + - uid: 11164 + components: + - type: MetaData + name: signal switch (Bay Conveyor Belts) - type: Transform pos: 6.5,34.5 parent: 2 - type: DeviceLinkSource linkedPorts: + 967: + - - On + - Forward + - - Off + - Off + 999: + - - On + - Forward + - - Off + - Off + 944: + - - On + - Forward + - - Off + - Off + 11473: + - - On + - Forward + - - Off + - Off 895: - - - Pressed - - Toggle + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Bay Conveyor Belts + - type: NameModifier + baseName: signal switch + - uid: 12384 + components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11676: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch + - uid: 13484 + components: + - type: MetaData + name: signal switch (Radiation Shutters) + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9282: + - - On + - Open + - - Off + - Close + 8932: + - - On + - Open + - - Off + - Close + 9332: + - - On + - Open + - - Off + - Close + 8673: + - - Off + - Close + - - On + - Open + - type: Label + currentLabel: Radiation Shutters + - type: NameModifier + baseName: signal switch + - uid: 13584 + components: + - type: MetaData + name: signal switch (Loading Dock Belts) + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2051: + - - On + - Forward + - - Off + - Off + 5467: + - - On + - Forward + - - Off + - Off + 258: + - - On + - Forward + - - Off + - Off + 320: + - - On + - Forward + - - Off + - Off + 450: + - - On + - Forward + - - Off + - Off + 2064: + - - On + - Forward + - - Off + - Off + 4321: + - - On + - Forward + - - Off + - Off + 7972: + - - On + - Forward + - - Off + - Off + 5518: + - - On + - Forward + - - Off + - Off + 8239: + - - On + - Forward + - - Off + - Off + 2009: + - - Off + - Close + - - On + - Open + 3357: + - - On + - Open + - - Off + - Close + 2000: + - - Off + - Close + - - On + - Open + 15789: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Loading Dock Belts + - type: NameModifier + baseName: signal switch + - uid: 13706 + components: + - type: MetaData + name: signal switch (Control Room Shutters) + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.060936,27.72783 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13629: + - - On + - Open + - - Off + - Close + 13630: + - - On + - Open + - - Off + - Close + 8621: + - - On + - Open + - - Off + - Close + 8575: + - - On + - Open + - - Off + - Close + 5447: + - - On + - Open + - - Off + - Close + 9266: + - - On + - Open + - - Off + - Close + 8592: + - - On + - Open + - - Off + - Close + - type: Label + currentLabel: Control Room Shutters + - type: NameModifier + baseName: signal switch + - uid: 14657 + components: + - type: MetaData + name: signal switch (Janitorial Service) + - type: Transform + pos: 29.5,32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2363: + - - On + - On + - - Off + - Off + - type: Label + currentLabel: Janitorial Service + - type: NameModifier + baseName: signal switch - proto: SignAnomaly entities: - - uid: 5066 + - uid: 15513 components: - type: Transform - pos: 61.5,21.5 + pos: 58.5,22.5 parent: 2 - proto: SignAnomaly2 entities: @@ -78048,11 +81908,10 @@ entities: parent: 2 - proto: SignArmory entities: - - uid: 7678 + - uid: 671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,23.5 + pos: 39.5,32.5 parent: 2 - proto: SignAtmos entities: @@ -78096,6 +81955,14 @@ entities: - type: Transform pos: 41.5,-36.5 parent: 2 +- proto: SignCansScience + entities: + - uid: 11522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,12.5 + parent: 2 - proto: SignCargo entities: - uid: 11211 @@ -78143,11 +82010,31 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: + - uid: 7365 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 - uid: 11804 components: - type: Transform pos: 63.5,-0.5 parent: 2 +- proto: SignDangerMed + entities: + - uid: 15523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,26.5 + parent: 2 +- proto: SignDetective + entities: + - uid: 9252 + components: + - type: Transform + pos: 54.5,34.5 + parent: 2 - proto: SignDirectionalBridge entities: - uid: 7329 @@ -78189,6 +82076,19 @@ entities: - type: Transform pos: 28.5037,2.3089128 parent: 2 +- proto: SignDirectionalEscapePod + entities: + - uid: 10722 + components: + - type: Transform + pos: 60.521824,46.423424 + parent: 2 + - uid: 15684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.52563,35.58913 + parent: 2 - proto: SignDirectionalEvac entities: - uid: 7894 @@ -78321,6 +82221,17 @@ entities: - type: Transform pos: 3.5,-33.5 parent: 2 + - uid: 9903 + components: + - type: Transform + pos: 60.521824,46.62134 + parent: 2 + - uid: 12296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.52563,35.412045 + parent: 2 - uid: 12297 components: - type: Transform @@ -78333,12 +82244,6 @@ entities: rot: 3.141592653589793 rad pos: 68.5,19.5 parent: 2 - - uid: 12299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,45.5 - parent: 2 - proto: SignDirectionalSupply entities: - uid: 5418 @@ -78361,6 +82266,14 @@ entities: rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 2 +- proto: SignDoors + entities: + - uid: 12754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,52.5 + parent: 2 - proto: SignElectricalMed entities: - uid: 12351 @@ -78378,41 +82291,6 @@ entities: - type: Transform pos: 31.5,-49.5 parent: 2 - - uid: 14698 - components: - - type: Transform - pos: 28.5,22.5 - parent: 2 - - uid: 14850 - components: - - type: Transform - pos: 50.5,38.5 - parent: 2 - - uid: 14851 - components: - - type: Transform - pos: 50.5,43.5 - parent: 2 - - uid: 14852 - components: - - type: Transform - pos: 52.5,44.5 - parent: 2 - - uid: 14853 - components: - - type: Transform - pos: 60.5,44.5 - parent: 2 - - uid: 14854 - components: - - type: Transform - pos: 62.5,41.5 - parent: 2 - - uid: 14855 - components: - - type: Transform - pos: 62.5,31.5 - parent: 2 - uid: 14949 components: - type: Transform @@ -78431,12 +82309,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-33.5 parent: 2 - - uid: 15369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,16.5 - parent: 2 - proto: SignEngine entities: - uid: 5157 @@ -78458,15 +82330,17 @@ entities: parent: 2 - proto: SignEscapePods entities: - - uid: 5027 + - uid: 12434 components: - type: Transform - pos: 85.5,3.5 + rot: -1.5707963267948966 rad + pos: 65.5,45.5 parent: 2 - - uid: 15453 + - uid: 14770 components: - type: Transform - pos: 41.5,43.5 + rot: 1.5707963267948966 rad + pos: 86.5,3.5 parent: 2 - uid: 15458 components: @@ -78496,12 +82370,6 @@ entities: parent: 2 - proto: SignFire entities: - - uid: 12280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,26.5 - parent: 2 - uid: 12993 components: - type: Transform @@ -78520,10 +82388,12 @@ entities: - type: Transform pos: 33.5,-31.5 parent: 2 - - uid: 10437 +- proto: SignGenpop + entities: + - uid: 8573 components: - type: Transform - pos: 61.5,27.5 + pos: 32.5,26.5 parent: 2 - proto: SignGravity entities: @@ -78554,10 +82424,10 @@ entities: parent: 2 - proto: SignInterrogation entities: - - uid: 8439 + - uid: 8933 components: - type: Transform - pos: 38.5,32.5 + pos: 55.5,31.5 parent: 2 - proto: SignJanitor entities: @@ -78576,6 +82446,12 @@ entities: parent: 2 - proto: SignLaserMed entities: + - uid: 11001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-37.5 + parent: 2 - uid: 12289 components: - type: Transform @@ -78603,10 +82479,11 @@ entities: parent: 2 - proto: SignMagneticsMed entities: - - uid: 6846 + - uid: 12178 components: - type: Transform - pos: 3.5,39.5 + rot: 3.141592653589793 rad + pos: 3.5,40.5 parent: 2 - uid: 14680 components: @@ -78645,6 +82522,11 @@ entities: - type: Transform pos: 65.5,-7.5 parent: 2 + - uid: 12182 + components: + - type: Transform + pos: 51.5,46.5 + parent: 2 - proto: SignNTMine entities: - uid: 10969 @@ -78665,13 +82547,6 @@ entities: - type: Transform pos: 16.5,40.5 parent: 2 -- proto: SignPrison - entities: - - uid: 13138 - components: - - type: Transform - pos: 47.5,33.5 - parent: 2 - proto: SignRadiationMed entities: - uid: 747 @@ -78679,10 +82554,10 @@ entities: - type: Transform pos: 18.5,-40.5 parent: 2 - - uid: 4012 + - uid: 15635 components: - type: Transform - pos: 24.5,-37.5 + pos: 19.5,-37.5 parent: 2 - proto: SignRND entities: @@ -78699,25 +82574,24 @@ entities: parent: 2 - proto: SignRobo entities: + - uid: 5277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,12.5 + parent: 2 - uid: 8612 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,12.5 parent: 2 - - uid: 12292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,12.5 - parent: 2 - proto: SignSalvage entities: - - uid: 6779 + - uid: 14914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,29.5 + pos: 9.5,29.5 parent: 2 - proto: SignScience entities: @@ -78727,13 +82601,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,15.5 parent: 2 -- proto: SignSecurearea - entities: - - uid: 11939 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - proto: SignSecureMed entities: - uid: 1518 @@ -78790,22 +82657,12 @@ entities: - type: Transform pos: 87.5,32.5 parent: 2 - - uid: 14574 - components: - - type: Transform - pos: 82.5,32.5 - parent: 2 - uid: 14592 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,24.5 parent: 2 - - uid: 14849 - components: - - type: Transform - pos: 47.5,36.5 - parent: 2 - uid: 14951 components: - type: Transform @@ -78842,13 +82699,27 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-29.5 parent: 2 -- proto: SignSecurity +- proto: SignSecureMedRed entities: - - uid: 12294 + - uid: 221 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,27.5 + pos: 39.5,-15.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 9015 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 +- proto: SignServer + entities: + - uid: 5201 + components: + - type: Transform + pos: 52.5,25.5 parent: 2 - proto: SignShipDock entities: @@ -78862,19 +82733,13 @@ entities: - type: Transform pos: -11.5,1.5 parent: 2 -- proto: SignShock - entities: - - uid: 11017 - components: - - type: Transform - pos: 42.5,-13.5 - parent: 2 - proto: SignSmoking entities: - - uid: 5466 + - uid: 3432 components: - type: Transform - pos: 68.5,38.5 + rot: 3.141592653589793 rad + pos: 68.5,40.5 parent: 2 - uid: 9721 components: @@ -78898,11 +82763,6 @@ entities: - type: Transform pos: 5.529085,-16.484226 parent: 2 - - uid: 10083 - components: - - type: Transform - pos: 62.5,29.5 - parent: 2 - uid: 12823 components: - type: Transform @@ -78944,11 +82804,6 @@ entities: parent: 2 - proto: SignToolStorage entities: - - uid: 5704 - components: - - type: Transform - pos: 68.5,40.5 - parent: 2 - uid: 11200 components: - type: Transform @@ -78960,14 +82815,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-13.5 parent: 2 -- proto: SignToxins - entities: - - uid: 12304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,12.5 - parent: 2 - proto: SignVault entities: - uid: 10444 @@ -78982,6 +82829,13 @@ entities: - type: Transform pos: 78.5,0.5 parent: 2 +- proto: SignXenobio + entities: + - uid: 13126 + components: + - type: Transform + pos: 68.5,28.5 + parent: 2 - proto: SingularityGenerator entities: - uid: 750 @@ -78999,6 +82853,12 @@ entities: - type: Transform pos: 11.5,13.5 parent: 2 + - uid: 2402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 - uid: 5276 components: - type: Transform @@ -79021,11 +82881,6 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,-7.5 parent: 2 - - uid: 10446 - components: - - type: Transform - pos: 51.5,15.5 - parent: 2 - uid: 10853 components: - type: Transform @@ -79049,11 +82904,13 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,6.5 parent: 2 - - uid: 13628 +- proto: SinkStemlessWater + entities: + - uid: 8554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,36.5 + rot: 3.141592653589793 rad + pos: 44.5,21.5 parent: 2 - proto: SinkWide entities: @@ -79076,11 +82933,6 @@ entities: parent: 2 - proto: Skub entities: - - uid: 5403 - components: - - type: Transform - pos: 62.485527,20.60704 - parent: 2 - uid: 13072 components: - type: Transform @@ -79211,19 +83063,12 @@ entities: - type: Transform pos: 79.5,34.5 parent: 2 - - uid: 14741 - components: - - type: MetaData - name: Security SMES - - type: Transform - pos: 37.5,33.5 - parent: 2 - proto: SmokingPipeFilledTobacco entities: - - uid: 11946 + - uid: 6913 components: - type: Transform - pos: 32.982197,41.628204 + pos: 35.496292,41.910683 parent: 2 - proto: SodaDispenser entities: @@ -79465,6 +83310,36 @@ entities: - type: Transform pos: -13.5,-33.5 parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 87.5,40.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 85.5,40.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: 87.5,50.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 79.5,50.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: 77.5,50.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: 85.5,50.5 + parent: 2 - uid: 5535 components: - type: Transform @@ -79665,6 +83540,11 @@ entities: - type: Transform pos: 85.5,47.5 parent: 2 + - uid: 8558 + components: + - type: Transform + pos: 79.5,40.5 + parent: 2 - uid: 8904 components: - type: Transform @@ -79840,6 +83720,51 @@ entities: - type: Transform pos: 117.5,-19.5 parent: 2 + - uid: 9279 + components: + - type: Transform + pos: 77.5,40.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 15746 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 15755 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 - proto: SolarTracker entities: - uid: 1443 @@ -79866,6 +83791,12 @@ entities: parent: 2 - type: SpamEmitSound enabled: False + - uid: 15191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 - proto: SpawnMechRipley entities: - uid: 14751 @@ -79882,10 +83813,10 @@ entities: parent: 2 - proto: SpawnMobBandito entities: - - uid: 12772 + - uid: 4123 components: - type: Transform - pos: 62.5,10.5 + pos: 64.5,10.5 parent: 2 - proto: SpawnMobCatGeneric entities: @@ -79910,24 +83841,25 @@ entities: parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 12231 + - uid: 15496 components: - type: Transform - pos: 31.5,41.5 + pos: 31.5,39.5 parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 2493 + - uid: 15816 components: - type: Transform - pos: 36.5,19.5 + pos: 40.5,27.5 parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 6527 + - uid: 1646 components: - type: Transform - pos: 39.5,-5.5 + rot: 1.5707963267948966 rad + pos: 38.5,-10.5 parent: 2 - proto: SpawnMobMouse entities: @@ -79941,16 +83873,6 @@ entities: - type: Transform pos: 73.5,-15.5 parent: 2 - - uid: 12797 - components: - - type: Transform - pos: 43.5,44.5 - parent: 2 - - uid: 12798 - components: - - type: Transform - pos: 67.5,39.5 - parent: 2 - uid: 12799 components: - type: Transform @@ -79968,7 +83890,7 @@ entities: parent: 2 - proto: SpawnMobPollyParrot entities: - - uid: 2409 + - uid: 9259 components: - type: Transform pos: 11.5,-33.5 @@ -79989,10 +83911,10 @@ entities: parent: 2 - proto: SpawnMobShiva entities: - - uid: 8444 + - uid: 1195 components: - type: Transform - pos: 44.5,22.5 + pos: 43.5,41.5 parent: 2 - proto: SpawnMobSlothPaperwork entities: @@ -80036,15 +83958,15 @@ entities: parent: 2 - proto: SpawnPointBorg entities: - - uid: 14628 + - uid: 3034 components: - type: Transform - pos: 49.5,9.5 + pos: 51.5,10.5 parent: 2 - - uid: 14629 + - uid: 3667 components: - type: Transform - pos: 51.5,9.5 + pos: 49.5,10.5 parent: 2 - proto: SpawnPointBotanist entities: @@ -80060,10 +83982,10 @@ entities: parent: 2 - proto: SpawnPointCaptain entities: - - uid: 8682 + - uid: 15473 components: - type: Transform - pos: 33.5,40.5 + pos: 36.5,42.5 parent: 2 - proto: SpawnPointCargoTechnician entities: @@ -80131,10 +84053,10 @@ entities: parent: 2 - proto: SpawnPointDetective entities: - - uid: 8679 + - uid: 10425 components: - type: Transform - pos: 42.5,19.5 + pos: 58.5,38.5 parent: 2 - proto: SpawnPointHeadOfPersonnel entities: @@ -80145,10 +84067,10 @@ entities: parent: 2 - proto: SpawnPointHeadOfSecurity entities: - - uid: 8438 + - uid: 8696 components: - type: Transform - pos: 44.5,24.5 + pos: 48.5,42.5 parent: 2 - proto: SpawnPointJanitor entities: @@ -80289,87 +84211,92 @@ entities: parent: 2 - proto: SpawnPointQuartermaster entities: - - uid: 14990 + - uid: 11900 components: - type: Transform - pos: 7.5,18.5 + pos: 6.5,15.5 parent: 2 - proto: SpawnPointResearchAssistant entities: - - uid: 10657 + - uid: 15842 components: - type: Transform - pos: 57.5,23.5 + pos: 49.5,17.5 parent: 2 - - uid: 10658 + - uid: 15871 components: - type: Transform - pos: 56.5,23.5 + pos: 53.5,18.5 parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 12770 + - uid: 10594 components: - type: Transform - pos: 61.5,9.5 + pos: 62.5,9.5 parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 14764 + - uid: 6912 components: - type: Transform - pos: 7.5,31.5 + pos: 8.5,31.5 parent: 2 - - uid: 14765 + - uid: 7809 components: - type: Transform - pos: 8.5,32.5 + pos: 8.5,30.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 10654 - components: - - type: Transform - pos: 57.5,24.5 - parent: 2 - - uid: 10655 - components: - - type: Transform - pos: 56.5,24.5 - parent: 2 - - uid: 10656 + - uid: 5676 components: - type: Transform pos: 55.5,24.5 parent: 2 + - uid: 11670 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 15576 + components: + - type: Transform + pos: 56.5,24.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 8437 + - uid: 15797 components: - type: Transform - pos: 34.5,27.5 + pos: 38.5,25.5 parent: 2 - - uid: 8696 + - uid: 15798 components: - type: Transform - pos: 34.5,26.5 + pos: 37.5,26.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 8159 + - uid: 6291 components: - type: Transform - pos: 31.5,29.5 + pos: 37.5,33.5 parent: 2 - - uid: 13584 + - uid: 9147 components: - type: Transform - pos: 30.5,29.5 + pos: 35.5,33.5 parent: 2 - - uid: 13585 + - uid: 9148 components: - type: Transform - pos: 29.5,29.5 + pos: 36.5,33.5 parent: 2 - proto: SpawnPointServiceWorker entities: @@ -80429,23 +84356,17 @@ entities: parent: 2 - proto: SpawnPointWarden entities: - - uid: 8375 + - uid: 8467 components: - type: Transform - pos: 38.5,18.5 + pos: 43.5,25.5 parent: 2 - proto: SprayBottle entities: - - uid: 5393 + - uid: 11736 components: - type: Transform - rot: 3.589668631320819E-05 rad - pos: 55.735016,10.470499 - parent: 2 - - uid: 7793 - components: - - type: Transform - pos: 55.34302,10.727416 + pos: 70.321815,33.64177 parent: 2 - proto: SprayBottleSpaceCleaner entities: @@ -80454,6 +84375,11 @@ entities: - type: Transform pos: 82.67393,-4.422255 parent: 2 + - uid: 12047 + components: + - type: Transform + pos: 52.414017,8.823876 + parent: 2 - proto: SprayBottleWater entities: - uid: 6812 @@ -80495,7 +84421,7 @@ entities: - uid: 14285 components: - type: Transform - pos: 84.42593,28.382923 + pos: 84.52714,28.474094 parent: 2 - proto: StationMap entities: @@ -80517,16 +84443,16 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 2 - - uid: 2291 - components: - - type: Transform - pos: 36.5,32.5 - parent: 2 - uid: 8116 components: - type: Transform pos: 9.5,2.5 parent: 2 + - uid: 8230 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 - uid: 11292 components: - type: Transform @@ -80538,18 +84464,11 @@ entities: rot: 3.141592653589793 rad pos: 34.5,12.5 parent: 2 - - uid: 15380 + - uid: 15681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,35.5 - parent: 2 -- proto: Stimpack - entities: - - uid: 12493 - components: - - type: Transform - pos: 11.490012,-11.457567 + rot: 1.5707963267948966 rad + pos: 24.5,34.5 parent: 2 - proto: Stool entities: @@ -80570,34 +84489,11 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-7.5 parent: 2 - - uid: 3406 - components: - - type: Transform - pos: 71.5,46.5 - parent: 2 - - uid: 4304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-41.5 - parent: 2 - - uid: 4406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,28.5 - parent: 2 - uid: 5067 components: - type: Transform pos: 51.5,-6.5 parent: 2 - - uid: 5512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,40.5 - parent: 2 - uid: 5879 components: - type: Transform @@ -80621,20 +84517,11 @@ entities: - type: Transform pos: 27.5,7.5 parent: 2 - - uid: 13626 + - uid: 11903 components: - type: Transform - pos: 55.5,32.5 - parent: 2 - - uid: 13627 - components: - - type: Transform - pos: 56.5,32.5 - parent: 2 - - uid: 13752 - components: - - type: Transform - pos: 54.5,37.5 + rot: 3.141592653589793 rad + pos: 20.492794,-41.282494 parent: 2 - proto: StoolBar entities: @@ -80683,6 +84570,21 @@ entities: - type: Transform pos: 60.5,-16.5 parent: 2 + - uid: 5508 + components: + - type: Transform + pos: 53.5,43.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 54.5,43.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: 55.5,43.5 + parent: 2 - uid: 12695 components: - type: Transform @@ -80716,11 +84618,19 @@ entities: - type: Transform pos: 36.5,-26.5 parent: 2 - - uid: 10440 + - uid: 10335 components: - type: Transform - pos: 58.5,9.5 + pos: 56.5,8.5 parent: 2 + - uid: 10763 + components: + - type: Transform + anchored: True + pos: 63.5,22.5 + parent: 2 + - type: Physics + bodyType: Static - proto: SubstationBasic entities: - uid: 54 @@ -80739,6 +84649,11 @@ entities: parent: 2 - type: PowerNetworkBattery supplyRampPosition: 2.3437593 + - uid: 679 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 - uid: 2039 components: - type: MetaData @@ -80769,6 +84684,13 @@ entities: parent: 2 - type: PowerNetworkBattery supplyRampPosition: 2.3437593 + - uid: 4173 + components: + - type: MetaData + name: substation (Sci) + - type: Transform + pos: 62.5,20.5 + parent: 2 - uid: 4431 components: - type: MetaData @@ -80801,15 +84723,6 @@ entities: - type: Transform pos: 69.5,-13.5 parent: 2 - - uid: 6379 - components: - - type: MetaData - name: Science Substation - - type: Transform - pos: 50.5,27.5 - parent: 2 - - type: PowerNetworkBattery - supplyRampPosition: 2.3437593 - uid: 7576 components: - type: MetaData @@ -80833,17 +84746,12 @@ entities: loadingNetworkDemand: 60.000237 currentReceiving: 60.000237 currentSupply: 60.000237 - - uid: 9041 + - uid: 10341 components: - type: MetaData - name: Security Substation + name: substation (Sec) - type: Transform - pos: 37.5,34.5 - parent: 2 - - uid: 9885 - components: - - type: Transform - pos: 15.5,-14.5 + pos: 62.5,36.5 parent: 2 - uid: 13688 components: @@ -80892,6 +84800,11 @@ entities: parent: 2 - proto: SuitStorageEVA entities: + - uid: 7947 + components: + - type: Transform + pos: 82.5,27.5 + parent: 2 - uid: 10300 components: - type: Transform @@ -80926,48 +84839,121 @@ entities: parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 3460 + - uid: 5106 components: - type: Transform - pos: 48.5,33.5 + pos: 34.5,24.5 parent: 2 - - uid: 3493 + - uid: 5146 components: - type: Transform - pos: 49.5,33.5 + pos: 34.5,23.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 14456 + components: + - type: Transform + pos: 46.5,38.5 parent: 2 - proto: SuitStorageNTSRA entities: - - uid: 12168 + - uid: 128 components: - type: Transform pos: 49.5,-15.5 parent: 2 - proto: SuitStorageRD entities: - - uid: 10661 + - uid: 3143 components: - type: Transform - pos: 60.5,8.5 + pos: 60.5,10.5 parent: 2 - proto: SuitStorageSec entities: - - uid: 11209 + - uid: 3183 components: + - type: MetaData + name: suit storage unit (2) - type: Transform - pos: 38.5,24.5 + pos: 39.5,33.5 parent: 2 - - uid: 11735 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12242 + - 12294 + - 12199 + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: suit storage unit + - uid: 12746 components: + - type: MetaData + name: suit storage unit (2) - type: Transform - pos: 41.5,24.5 + pos: 41.5,33.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12760 + - 12761 + - 12765 + - type: Label + currentLabel: 2 + - type: NameModifier + baseName: suit storage unit - proto: SuitStorageWarden entities: - - uid: 7780 + - uid: 4400 components: - type: Transform - pos: 39.5,19.5 + pos: 40.5,24.5 parent: 2 - proto: SurveillanceCameraCommand entities: @@ -81075,14 +85061,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Secure Storage Boards - - uid: 13761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,36.5 - parent: 2 - - type: SurveillanceCamera - id: Camera Routers - uid: 14168 components: - type: Transform @@ -81169,14 +85147,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Captain's Office - - uid: 14676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,42.5 - parent: 2 - - type: SurveillanceCamera - id: Captain's Bedroom - uid: 14677 components: - type: Transform @@ -81194,17 +85164,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Singulo South - - uid: 5877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Solars Northwest ' - uid: 7462 components: - type: Transform @@ -81224,6 +85183,11 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Anchor Room + - uid: 8685 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 2 - uid: 10986 components: - type: Transform @@ -81232,14 +85196,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Singulo West - - uid: 10989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-16.5 - parent: 2 - - type: SurveillanceCamera - id: Telecomms - uid: 10995 components: - type: Transform @@ -81460,28 +85416,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Tanks South - - uid: 13738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-14.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Airlock - - uid: 13748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Solars Northwest Door - uid: 14678 components: - type: Transform @@ -81490,8 +85424,30 @@ entities: parent: 2 - type: SurveillanceCamera id: Singulo Power + - uid: 14793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-32.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 - proto: SurveillanceCameraGeneral entities: + - uid: 8684 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Hall 1 - uid: 12665 components: - type: Transform @@ -81611,28 +85567,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Central Hall - - uid: 12738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall North - - uid: 12739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Central Hall East - uid: 12740 components: - type: Transform @@ -81687,28 +85621,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Bar - - uid: 13744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Security South - - uid: 13745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Security/Cargo - uid: 13747 components: - type: Transform @@ -81758,6 +85670,17 @@ entities: parent: 2 - type: SurveillanceCamera id: Arrivals Starboard + - uid: 14650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Hall 1 - proto: SurveillanceCameraMedical entities: - uid: 1712 @@ -81923,62 +85846,97 @@ entities: id: Virology Quarantine 1 - proto: SurveillanceCameraRouterCommand entities: - - uid: 2300 + - uid: 10014 components: - type: Transform - pos: 32.5,35.5 + pos: 17.5,-15.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 8404 + - uid: 10026 components: - type: Transform - pos: 30.5,35.5 + pos: 15.5,-15.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 8230 + - uid: 12378 components: - type: Transform - pos: 49.5,23.5 + pos: 13.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 10316 + - uid: 15494 components: - type: Transform - pos: 32.5,37.5 - parent: 2 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 10317 - components: - - type: Transform - pos: 31.5,37.5 + pos: 14.5,-17.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 3160 + - uid: 4644 components: - type: Transform - pos: 31.5,35.5 + pos: 15.5,-19.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: 17.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 8139 + - uid: 15493 components: - type: Transform - pos: 51.5,23.5 + pos: 17.5,-17.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 10315 + - uid: 9748 components: - type: Transform - pos: 30.5,37.5 + pos: 13.5,-15.5 parent: 2 - proto: SurveillanceCameraScience entities: + - uid: 3495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,15.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - Research & Development + - uid: 8654 + components: + - type: Transform + pos: 70.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - Anomaly + - uid: 12548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - South Hall - uid: 12763 components: - type: Transform @@ -81990,61 +85948,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Science Front - - uid: 12764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RND - - uid: 12765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Server Room - - uid: 12768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Anomaly Lab - - uid: 12769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RD Office - - uid: 12773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Science Entrance - uid: 12774 components: - type: Transform @@ -82055,7 +85958,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: Robotics + id: Science - Robotics - uid: 13740 components: - type: Transform @@ -82066,7 +85969,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: Artifact Chamber + id: Science - Xenoarcheology - uid: 13746 components: - type: Transform @@ -82078,23 +85981,96 @@ entities: - SurveillanceCameraScience nameSet: True id: Science Entrance + - uid: 14562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - RD Office + - uid: 15568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,21.5 + parent: 2 + - uid: 15618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Science - Lockers - proto: SurveillanceCameraSecurity entities: - - uid: 3204 + - uid: 1647 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,35.5 parent: 2 - type: SurveillanceCamera - id: Interrogation - - uid: 7722 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Armory Blue + - uid: 2291 components: - type: Transform - pos: 31.5,28.5 + rot: -1.5707963267948966 rad + pos: 46.5,39.5 parent: 2 - type: SurveillanceCamera - id: Security Locker Room + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Office HOS + - uid: 3078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Front + - uid: 3488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Detective Office + - uid: 10892 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - West Hall - uid: 12732 components: - type: Transform @@ -82117,94 +86093,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Evac Checkpoint - - uid: 12744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,27.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - - uid: 12745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Room - - uid: 12746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,24.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: HoS Room - - uid: 12747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Detective Office - - uid: 12748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Locker Room - - uid: 12749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 2 - - uid: 12750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,21.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 1 - - uid: 12751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Entrance - uid: 12752 components: - type: Transform @@ -82216,29 +86104,50 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Court House - - uid: 13757 + - uid: 14594 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - East Hall + - uid: 15277 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,36.5 + pos: 42.5,18.5 parent: 2 - - type: SurveillanceCamera - id: Perma Brig - - uid: 13758 + - uid: 15370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,35.5 + rot: -1.5707963267948966 rad + pos: 34.5,33.5 parent: 2 - - type: SurveillanceCamera - id: Perma Entrance - - uid: 13759 + - uid: 15614 components: - type: Transform - pos: 38.5,30.5 + rot: 1.5707963267948966 rad + pos: 40.5,27.5 parent: 2 - type: SurveillanceCamera - id: Security Hallway + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Warden + - uid: 15813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Security - Armory Red - proto: SurveillanceCameraService entities: - uid: 12711 @@ -82320,6 +86229,27 @@ entities: id: Janitor's Office - proto: SurveillanceCameraSupply entities: + - uid: 2055 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Bay + - uid: 8103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Dock - uid: 9297 components: - type: Transform @@ -82327,14 +86257,10 @@ entities: pos: 6.5,30.5 parent: 2 - type: SurveillanceCamera - id: Salvage - - uid: 10979 - components: - - type: Transform - pos: 3.5,37.5 - parent: 2 - - type: SurveillanceCamera - id: Salvage Platform + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Lockers - uid: 12724 components: - type: Transform @@ -82387,13 +86313,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Cargo Storage - - uid: 14954 - components: - - type: Transform - pos: 4.5,26.5 - parent: 2 - - type: SurveillanceCamera - id: Cargo Dock - proto: SynthesizerInstrument entities: - uid: 9740 @@ -82408,6 +86327,16 @@ entities: parent: 2 - proto: Syringe entities: + - uid: 3503 + components: + - type: Transform + pos: 63.957825,25.617743 + parent: 2 + - uid: 10610 + components: + - type: Transform + pos: 63.025978,38.577137 + parent: 2 - uid: 10709 components: - type: Transform @@ -82445,10 +86374,10 @@ entities: - type: Transform pos: 33.5,-4.5 parent: 2 - - uid: 679 + - uid: 622 components: - type: Transform - pos: 21.5,-19.5 + pos: 69.5,37.5 parent: 2 - uid: 778 components: @@ -82595,10 +86524,16 @@ entities: - type: Transform pos: 15.5,35.5 parent: 2 - - uid: 2486 + - uid: 2444 components: - type: Transform - pos: 36.5,25.5 + rot: -1.5707963267948966 rad + pos: 61.5,50.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: 55.5,41.5 parent: 2 - uid: 2906 components: @@ -82615,15 +86550,42 @@ entities: - type: Transform pos: 51.5,-7.5 parent: 2 + - uid: 3042 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: 71.5,30.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 - uid: 3200 components: - type: Transform pos: 79.5,-7.5 parent: 2 - - uid: 3240 + - uid: 3204 components: - type: Transform - pos: 36.5,26.5 + rot: 3.141592653589793 rad + pos: 52.5,45.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + pos: 52.5,33.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,40.5 parent: 2 - uid: 3430 components: @@ -82635,6 +86597,11 @@ entities: - type: Transform pos: 78.5,-7.5 parent: 2 + - uid: 3499 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 - uid: 3569 components: - type: Transform @@ -82670,11 +86637,6 @@ entities: - type: Transform pos: 38.5,-9.5 parent: 2 - - uid: 4280 - components: - - type: Transform - pos: 57.5,20.5 - parent: 2 - uid: 4302 components: - type: Transform @@ -82730,6 +86692,12 @@ entities: - type: Transform pos: 74.5,-0.5 parent: 2 + - uid: 5200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 - uid: 5203 components: - type: Transform @@ -82770,61 +86738,16 @@ entities: - type: Transform pos: 54.5,17.5 parent: 2 - - uid: 5310 + - uid: 5339 components: - type: Transform - pos: 55.5,20.5 - parent: 2 - - uid: 5311 - components: - - type: Transform - pos: 56.5,20.5 - parent: 2 - - uid: 5317 - components: - - type: Transform - pos: 49.5,19.5 - parent: 2 - - uid: 5318 - components: - - type: Transform - pos: 49.5,17.5 - parent: 2 - - uid: 5368 - components: - - type: Transform - pos: 55.5,10.5 - parent: 2 - - uid: 5369 - components: - - type: Transform - pos: 50.5,8.5 - parent: 2 - - uid: 5370 - components: - - type: Transform - pos: 52.5,8.5 + pos: 57.5,44.5 parent: 2 - uid: 5449 components: - type: Transform pos: 71.5,40.5 parent: 2 - - uid: 5450 - components: - - type: Transform - pos: 71.5,37.5 - parent: 2 - - uid: 5473 - components: - - type: Transform - pos: 67.5,37.5 - parent: 2 - - uid: 5475 - components: - - type: Transform - pos: 67.5,38.5 - parent: 2 - uid: 5521 components: - type: Transform @@ -82835,6 +86758,17 @@ entities: - type: Transform pos: 77.5,-13.5 parent: 2 + - uid: 6286 + components: + - type: Transform + pos: 48.5,44.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,50.5 + parent: 2 - uid: 6756 components: - type: Transform @@ -82875,20 +86809,31 @@ entities: - type: Transform pos: 53.5,-5.5 parent: 2 + - uid: 7965 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 - uid: 7978 components: - type: Transform pos: -1.5,-3.5 parent: 2 - - uid: 8383 + - uid: 8410 components: - type: Transform - pos: 54.5,36.5 + rot: 3.141592653589793 rad + pos: 63.5,25.5 parent: 2 - - uid: 8538 + - uid: 8503 components: - type: Transform - pos: 34.5,17.5 + pos: 62.5,38.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: 51.5,30.5 parent: 2 - uid: 8858 components: @@ -82900,6 +86845,27 @@ entities: - type: Transform pos: 107.5,-11.5 parent: 2 + - uid: 9257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,38.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + pos: 57.5,32.5 + parent: 2 + - uid: 9337 + components: + - type: Transform + pos: 63.5,38.5 + parent: 2 + - uid: 9344 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 - uid: 9354 components: - type: Transform @@ -82910,6 +86876,11 @@ entities: - type: Transform pos: 27.5,6.5 parent: 2 + - uid: 9431 + components: + - type: Transform + pos: 52.5,40.5 + parent: 2 - uid: 9621 components: - type: Transform @@ -82920,10 +86891,10 @@ entities: - type: Transform pos: 78.5,4.5 parent: 2 - - uid: 9956 + - uid: 10050 components: - type: Transform - pos: 5.5,40.5 + pos: 59.5,20.5 parent: 2 - uid: 10072 components: @@ -82935,11 +86906,6 @@ entities: - type: Transform pos: 78.5,-6.5 parent: 2 - - uid: 10137 - components: - - type: Transform - pos: 36.5,27.5 - parent: 2 - uid: 10268 components: - type: Transform @@ -82955,25 +86921,33 @@ entities: - type: Transform pos: 16.5,-5.5 parent: 2 - - uid: 10664 + - uid: 10404 components: - type: Transform - pos: 63.5,9.5 + rot: 3.141592653589793 rad + pos: 65.5,11.5 parent: 2 - - uid: 10665 + - uid: 10431 components: - type: Transform - pos: 63.5,10.5 + rot: 1.5707963267948966 rad + pos: 42.5,29.5 parent: 2 - - uid: 10668 + - uid: 10574 components: - type: Transform - pos: 63.5,8.5 + rot: 3.141592653589793 rad + pos: 65.5,10.5 parent: 2 - - uid: 10763 + - uid: 10614 components: - type: Transform - pos: 4.5,40.5 + pos: 71.5,33.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + pos: 70.5,33.5 parent: 2 - uid: 10803 components: @@ -82985,6 +86959,17 @@ entities: - type: Transform pos: 70.5,11.5 parent: 2 + - uid: 10861 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 10886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,25.5 + parent: 2 - uid: 11119 components: - type: Transform @@ -83010,11 +86995,6 @@ entities: - type: Transform pos: 57.5,-14.5 parent: 2 - - uid: 11191 - components: - - type: Transform - pos: 46.5,11.5 - parent: 2 - uid: 11302 components: - type: Transform @@ -83055,15 +87035,11 @@ entities: - type: Transform pos: 51.5,4.5 parent: 2 - - uid: 11522 + - uid: 11472 components: - type: Transform - pos: 46.5,9.5 - parent: 2 - - uid: 11736 - components: - - type: Transform - pos: 36.5,28.5 + rot: 3.141592653589793 rad + pos: 60.5,20.5 parent: 2 - uid: 11830 components: @@ -83110,82 +87086,125 @@ entities: - type: Transform pos: 78.5,7.5 parent: 2 - - uid: 12582 + - uid: 12442 components: - type: Transform - pos: 20.5,-19.5 + pos: 60.5,19.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 12745 + components: + - type: Transform + pos: 45.5,9.5 parent: 2 - uid: 13105 components: - type: Transform pos: 15.5,24.5 parent: 2 + - uid: 13469 + components: + - type: Transform + pos: 70.5,30.5 + parent: 2 + - uid: 13516 + components: + - type: Transform + pos: 39.5,47.5 + parent: 2 - uid: 13564 components: - type: Transform pos: 50.5,4.5 parent: 2 - - uid: 13609 - components: - - type: Transform - pos: 54.5,41.5 - parent: 2 - - uid: 13610 - components: - - type: Transform - pos: 55.5,41.5 - parent: 2 - - uid: 13611 - components: - - type: Transform - pos: 56.5,41.5 - parent: 2 - - uid: 13624 - components: - - type: Transform - pos: 56.5,31.5 - parent: 2 - - uid: 13625 - components: - - type: Transform - pos: 55.5,31.5 - parent: 2 - uid: 14068 components: - type: Transform pos: -17.5,0.5 parent: 2 + - uid: 14235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,40.5 + parent: 2 + - uid: 14830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,28.5 + parent: 2 - uid: 15302 components: - type: Transform pos: 38.5,-29.5 parent: 2 - - uid: 15372 + - uid: 15657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,47.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 2373 + components: + - type: Transform + pos: 55.5,42.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 37.5,22.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: 54.5,42.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 6281 components: - type: Transform pos: 33.5,17.5 parent: 2 -- proto: TableCarpet - entities: - - uid: 2266 + - uid: 6333 components: - type: Transform - pos: 70.5,28.5 + pos: 34.5,17.5 parent: 2 - - uid: 3429 + - uid: 8359 components: - type: Transform - pos: 70.5,29.5 + pos: 53.5,42.5 parent: 2 - - uid: 5501 + - uid: 8425 components: - type: Transform - pos: 70.5,33.5 + pos: 36.5,21.5 parent: 2 - - uid: 6007 + - uid: 9239 components: - type: Transform - pos: 70.5,27.5 + pos: 35.5,17.5 parent: 2 - proto: TableCounterWood entities: @@ -83209,6 +87228,58 @@ entities: - type: Transform pos: 19.5,-9.5 parent: 2 +- proto: TableFancyBlue + entities: + - uid: 15461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 +- proto: TableFancyRed + entities: + - uid: 2295 + components: + - type: Transform + pos: 44.5,43.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,41.5 + parent: 2 + - uid: 8779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,41.5 + parent: 2 + - uid: 12764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,29.5 + parent: 2 + - uid: 15460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 15700 + components: + - type: Transform + pos: 54.5,47.5 + parent: 2 - proto: TableGlass entities: - uid: 12696 @@ -83350,21 +87421,6 @@ entities: - type: Transform pos: 17.5,40.5 parent: 2 - - uid: 2420 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 2431 - components: - - type: Transform - pos: 32.5,27.5 - parent: 2 - - uid: 2432 - components: - - type: Transform - pos: 32.5,26.5 - parent: 2 - uid: 2991 components: - type: Transform @@ -83375,11 +87431,23 @@ entities: - type: Transform pos: 51.5,1.5 parent: 2 + - uid: 3063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 - uid: 3512 components: - type: Transform pos: 48.5,18.5 parent: 2 + - uid: 3528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,17.5 + parent: 2 - uid: 4146 components: - type: Transform @@ -83465,16 +87533,39 @@ entities: - type: Transform pos: 54.5,-4.5 parent: 2 + - uid: 5400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.5,32.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,32.5 + parent: 2 - uid: 5813 components: - type: Transform pos: 34.5,-8.5 parent: 2 + - uid: 6534 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 - uid: 7545 components: - type: Transform pos: 55.5,-10.5 parent: 2 + - uid: 7566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 - uid: 7611 components: - type: Transform @@ -83485,11 +87576,6 @@ entities: - type: Transform pos: 54.5,-10.5 parent: 2 - - uid: 7679 - components: - - type: Transform - pos: 38.5,19.5 - parent: 2 - uid: 7739 components: - type: Transform @@ -83500,25 +87586,17 @@ entities: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 8433 + - uid: 8563 components: - type: Transform - pos: 39.5,21.5 + rot: -1.5707963267948966 rad + pos: 36.5,27.5 parent: 2 - - uid: 8445 + - uid: 9133 components: - type: Transform - pos: 39.5,28.5 - parent: 2 - - uid: 8518 - components: - - type: Transform - pos: 40.5,28.5 - parent: 2 - - uid: 8675 - components: - - type: Transform - pos: 40.5,35.5 + rot: 1.5707963267948966 rad + pos: 36.5,24.5 parent: 2 - uid: 10310 components: @@ -83530,11 +87608,6 @@ entities: - type: Transform pos: 17.5,42.5 parent: 2 - - uid: 11475 - components: - - type: Transform - pos: 39.5,17.5 - parent: 2 - uid: 11800 components: - type: Transform @@ -83545,16 +87618,17 @@ entities: - type: Transform pos: 12.5,-34.5 parent: 2 + - uid: 11944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,31.5 + parent: 2 - uid: 12423 components: - type: Transform pos: 49.5,1.5 parent: 2 - - uid: 13103 - components: - - type: Transform - pos: 38.5,28.5 - parent: 2 - uid: 14245 components: - type: Transform @@ -83570,6 +87644,11 @@ entities: - type: Transform pos: 86.5,28.5 parent: 2 + - uid: 14525 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 - uid: 14554 components: - type: Transform @@ -83590,6 +87669,11 @@ entities: - type: Transform pos: 89.5,32.5 parent: 2 + - uid: 14656 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 - uid: 14661 components: - type: Transform @@ -83649,49 +87733,11 @@ entities: - type: Transform pos: 8.5,3.5 parent: 2 - - uid: 2405 - components: - - type: Transform - pos: 44.5,23.5 - parent: 2 - - uid: 2406 - components: - - type: Transform - pos: 45.5,23.5 - parent: 2 - - uid: 2407 - components: - - type: Transform - pos: 45.5,24.5 - parent: 2 - - uid: 2478 - components: - - type: Transform - pos: 43.5,19.5 - parent: 2 - - uid: 2713 + - uid: 2272 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,33.5 - parent: 2 - - uid: 2714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,32.5 - parent: 2 - - uid: 2715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,30.5 - parent: 2 - - uid: 2716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,29.5 + pos: 30.5,41.5 parent: 2 - uid: 2719 components: @@ -83722,10 +87768,15 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,39.5 parent: 2 - - uid: 5407 + - uid: 3091 components: - type: Transform - pos: 34.5,41.5 + pos: 59.5,36.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: 32.5,41.5 parent: 2 - uid: 5408 components: @@ -83735,17 +87786,12 @@ entities: - uid: 5409 components: - type: Transform - pos: 32.5,41.5 + pos: 30.5,42.5 parent: 2 - - uid: 5410 + - uid: 6339 components: - type: Transform - pos: 30.5,41.5 - parent: 2 - - uid: 5413 - components: - - type: Transform - pos: 37.5,43.5 + pos: 44.5,24.5 parent: 2 - uid: 7262 components: @@ -83757,6 +87803,11 @@ entities: - type: Transform pos: 30.5,6.5 parent: 2 + - uid: 7753 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 - uid: 8646 components: - type: Transform @@ -83782,21 +87833,37 @@ entities: - type: Transform pos: 83.5,7.5 parent: 2 + - uid: 8707 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 - uid: 9004 components: - type: Transform pos: 18.5,29.5 parent: 2 + - uid: 9310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,39.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + pos: 35.5,43.5 + parent: 2 - uid: 10635 components: - type: Transform pos: 30.5,7.5 parent: 2 - - uid: 11477 - components: - - type: Transform - pos: 43.5,20.5 - parent: 2 - uid: 12727 components: - type: Transform @@ -83809,6 +87876,12 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-42.5 parent: 2 + - uid: 14847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,42.5 + parent: 2 - proto: TargetClown entities: - uid: 9607 @@ -83816,6 +87889,14 @@ entities: - type: Transform pos: 27.5,8.5 parent: 2 +- proto: TargetSyndicate + entities: + - uid: 2203 + components: + - type: Transform + pos: 50.5,38.5 + parent: 2 + - type: Conveyed - proto: TegCenter entities: - uid: 13127 @@ -83841,168 +87922,62 @@ entities: parent: 2 - type: PointLight color: '#FF3300FF' -- proto: TelecomServer +- proto: TelecomServerFilledCargo entities: - - uid: 533 + - uid: 15809 components: - type: Transform - pos: 16.5,-16.5 + pos: 12.5,-15.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 535 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 5183 +- proto: TelecomServerFilledCommand + entities: + - uid: 10001 components: - type: Transform - pos: 13.5,-16.5 + pos: 16.5,-15.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 412 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 10443 +- proto: TelecomServerFilledCommon + entities: + - uid: 15810 components: - type: Transform - pos: 14.5,-16.5 + pos: 12.5,-19.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 413 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12111 +- proto: TelecomServerFilledEngineering + entities: + - uid: 9760 components: - type: Transform - pos: 15.5,-16.5 + pos: 14.5,-15.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 414 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12112 +- proto: TelecomServerFilledMedical + entities: + - uid: 12362 components: - type: Transform - pos: 13.5,-18.5 + pos: 13.5,-17.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 421 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12232 +- proto: TelecomServerFilledScience + entities: + - uid: 4454 components: - type: Transform - pos: 14.5,-18.5 + pos: 14.5,-19.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 422 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12233 +- proto: TelecomServerFilledSecurity + entities: + - uid: 6898 components: - type: Transform - pos: 15.5,-18.5 + pos: 16.5,-19.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 423 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 12395 +- proto: TelecomServerFilledService + entities: + - uid: 12383 components: - type: Transform - pos: 16.5,-18.5 + pos: 16.5,-17.5 parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 424 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - proto: TeslaCoil entities: - uid: 2038 @@ -84076,11 +88051,6 @@ entities: parent: 2 - proto: TintedWindow entities: - - uid: 171 - components: - - type: Transform - pos: 41.5,32.5 - parent: 2 - uid: 1165 components: - type: Transform @@ -84106,25 +88076,17 @@ entities: - type: Transform pos: 62.5,-8.5 parent: 2 - - uid: 10993 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 10994 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 2 - uid: 11195 components: - type: Transform pos: 60.5,-8.5 parent: 2 - - uid: 14525 +- proto: ToiletDirtyWater + entities: + - uid: 8395 components: - type: Transform - pos: 39.5,32.5 + pos: 43.5,22.5 parent: 2 - proto: ToiletEmpty entities: @@ -84139,12 +88101,6 @@ entities: rot: 3.141592653589793 rad pos: 8.5,12.5 parent: 2 - - uid: 3253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,34.5 - parent: 2 - uid: 5701 components: - type: Transform @@ -84156,11 +88112,6 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-13.5 parent: 2 - - uid: 8702 - components: - - type: Transform - pos: 59.5,38.5 - parent: 2 - uid: 9019 components: - type: Transform @@ -84182,11 +88133,6 @@ entities: parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 5378 - components: - - type: Transform - pos: 52.6158,11.657994 - parent: 2 - uid: 5626 components: - type: Transform @@ -84197,6 +88143,40 @@ entities: - type: Transform pos: 36.482082,-14.3137665 parent: 2 +- proto: ToolboxEmergency + entities: + - uid: 13141 + components: + - type: MetaData + desc: A bright red toolbox, stocked with everything a warden needs to maintain their brig. + name: warden's toolbox + - type: Transform + pos: 44.461845,24.599695 + parent: 2 + - type: Storage + storedItems: + 13169: + position: 3,0 + _rotation: North + 13431: + position: 0,0 + _rotation: South + 13499: + position: 1,0 + _rotation: South + 13502: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 13431 + - 13499 + - 13502 + - 13169 - proto: ToolboxEmergencyFilled entities: - uid: 4997 @@ -84219,26 +88199,21 @@ entities: parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 2949 - components: - - type: Transform - pos: 6.500301,40.636074 - parent: 2 - uid: 4998 components: - type: Transform pos: 35.491802,46.459015 parent: 2 + - uid: 5244 + components: + - type: Transform + pos: 44.514893,9.766216 + parent: 2 - uid: 7357 components: - type: Transform pos: 18.414553,24.540695 parent: 2 - - uid: 11020 - components: - - type: Transform - pos: 46.489563,11.711195 - parent: 2 - uid: 11410 components: - type: Transform @@ -84249,6 +88224,32 @@ entities: - type: Transform pos: 36.482082,-14.5012665 parent: 2 +- proto: Tourniquet + entities: + - uid: 8619 + components: + - type: Transform + pos: 36.49021,32.681957 + parent: 2 + - uid: 12438 + components: + - type: Transform + pos: 36.693336,32.541332 + parent: 2 +- proto: TowelColorOrange + entities: + - uid: 13167 + components: + - type: Transform + pos: 39.307285,22.41729 + parent: 2 +- proto: TowercapSeeds + entities: + - uid: 2601 + components: + - type: Transform + pos: 59.45062,42.28196 + parent: 2 - proto: ToyAi entities: - uid: 14649 @@ -84263,11 +88264,6 @@ entities: - type: Transform pos: 12.5,12.5 parent: 2 - - uid: 13632 - components: - - type: Transform - pos: 56.426826,31.732376 - parent: 2 - proto: ToySpawner entities: - uid: 8652 @@ -84277,6 +88273,11 @@ entities: parent: 2 - proto: TrashBag entities: + - uid: 8394 + components: + - type: Transform + pos: 39.281395,22.796711 + parent: 2 - uid: 10811 components: - type: Transform @@ -84295,6 +88296,18 @@ entities: - type: Transform pos: 26.493341,6.2912045 parent: 2 +- proto: trayScanner + entities: + - uid: 10338 + components: + - type: Transform + pos: 49.60256,19.49661 + parent: 2 + - uid: 10893 + components: + - type: Transform + pos: 64.6922,25.570868 + parent: 2 - proto: TrumpetInstrument entities: - uid: 5030 @@ -84302,64 +88315,29 @@ entities: - type: Transform pos: 84.55714,10.563628 parent: 2 -- proto: TwoWayLever +- proto: TurnstileGenpopEnter entities: - - uid: 607 + - uid: 2312 components: - type: Transform - pos: 9.5,33.5 + pos: 33.5,22.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 829: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 967: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 944: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 450: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 999: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 14660: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 12384: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off +- proto: TurnstileGenpopLeave + entities: + - uid: 3179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,22.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2 +- proto: TwoWayLever + entities: - uid: 5856 components: - type: Transform @@ -84465,90 +88443,48 @@ entities: - Open - - Middle - Close - - uid: 8101 + - uid: 12180 components: + - type: MetaData + name: two way lever (Recycler) - type: Transform - pos: 6.5,28.5 + rot: 3.141592653589793 rad + pos: 9.5,33.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 2037: + 13728: - - Left - - Forward - - - Right - Reverse - - - Middle - - Off - 2041: - - - Left - - Forward - - Right - - Reverse + - Forward - - Middle - Off 2042: - - Left - - Forward - - - Right - Reverse + - - Right + - Forward - - Middle - Off - 2064: + 13115: - - Left - Forward - - Right - Reverse - - Middle - Off - 13731: + 8327: - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - - uid: 8446 - components: - - type: Transform - pos: 6.5,22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2040: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 2067: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 2051: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 2066: - - - Left - - Forward - - - Right - - Reverse - - - Middle - - Off - 8239: - - - Left - - Forward - - - Right - Reverse + - - Right + - Forward - - Middle - Off + - type: Label + currentLabel: Recycler + - type: NameModifier + baseName: two way lever - proto: UniformPrinter entities: - uid: 10283 @@ -84653,6 +88589,16 @@ entities: - type: Transform pos: 24.5,42.5 parent: 2 + - uid: 3184 + components: + - type: Transform + pos: 17.5,35.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 57.5,47.5 + parent: 2 - uid: 5349 components: - type: MetaData @@ -84660,13 +88606,6 @@ entities: - type: Transform pos: 63.5,16.5 parent: 2 - - uid: 5426 - components: - - type: MetaData - name: cigarette machine - - type: Transform - pos: 34.5,43.5 - parent: 2 - uid: 6615 components: - type: Transform @@ -84677,11 +88616,6 @@ entities: - type: Transform pos: -21.5,-14.5 parent: 2 - - uid: 11033 - components: - - type: Transform - pos: 19.5,35.5 - parent: 2 - proto: VendingMachineClothing entities: - uid: 127 @@ -84703,6 +88637,16 @@ entities: - type: Transform pos: 11.5,-3.5 parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 56.5,47.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: 67.5,44.5 + parent: 2 - uid: 5350 components: - type: MetaData @@ -84710,13 +88654,6 @@ entities: - type: Transform pos: 62.5,16.5 parent: 2 - - uid: 5468 - components: - - type: MetaData - name: Hot drinks machine - - type: Transform - pos: 67.5,41.5 - parent: 2 - uid: 7774 components: - type: Transform @@ -84729,13 +88666,6 @@ entities: - type: Transform pos: 107.5,-12.5 parent: 2 - - uid: 11224 - components: - - type: MetaData - name: Hot drinks machine - - type: Transform - pos: 45.5,20.5 - parent: 2 - proto: VendingMachineCondiments entities: - uid: 6757 @@ -84752,10 +88682,10 @@ entities: parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 7711 + - uid: 2493 components: - type: Transform - pos: 41.5,17.5 + pos: 58.5,35.5 parent: 2 - proto: VendingMachineDinnerware entities: @@ -84764,6 +88694,18 @@ entities: - type: Transform pos: 33.5,-12.5 parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 3356 + components: + - type: Transform + pos: 55.5,47.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 - proto: VendingMachineEngiDrobe entities: - uid: 4093 @@ -84785,11 +88727,6 @@ entities: - type: Transform pos: 8.5,5.5 parent: 2 - - uid: 13622 - components: - - type: Transform - pos: 54.5,31.5 - parent: 2 - proto: VendingMachineGeneDrobe entities: - uid: 11912 @@ -84841,14 +88778,14 @@ entities: parent: 2 - proto: VendingMachineRoboDrobe entities: - - uid: 5376 + - uid: 42 components: - type: Transform - pos: 53.5,11.5 + pos: 46.5,9.5 parent: 2 - proto: VendingMachineRobotics entities: - - uid: 10078 + - uid: 10053 components: - type: Transform pos: 50.5,11.5 @@ -84862,24 +88799,24 @@ entities: parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 11953 + - uid: 8409 components: - type: Transform - pos: 58.5,25.5 + pos: 53.5,25.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 8442 + - uid: 11674 components: - type: Transform - pos: 31.5,28.5 + pos: 34.5,34.5 parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 6184 + - uid: 9146 components: - type: Transform - pos: 29.5,28.5 + pos: 34.5,32.5 parent: 2 - proto: VendingMachineSeeds entities: @@ -84888,26 +88825,24 @@ entities: - type: Transform pos: 43.5,-4.5 parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 13605 + - uid: 7681 components: - type: Transform - pos: 55.5,36.5 + pos: 40.5,17.5 parent: 2 - proto: VendingMachineSovietSoda entities: - - uid: 5467 + - uid: 15675 components: - type: Transform - pos: 67.5,35.5 + pos: 49.5,50.5 parent: 2 - proto: VendingMachineSustenance entities: - - uid: 13623 + - uid: 13648 components: - type: Transform - pos: 57.5,31.5 + pos: 34.5,21.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: @@ -84923,11 +88858,6 @@ entities: - type: Transform pos: 22.5,-34.5 parent: 2 - - uid: 3476 - components: - - type: Transform - pos: 50.5,33.5 - parent: 2 - uid: 10305 components: - type: Transform @@ -84992,18 +88922,10 @@ entities: parent: 2 - proto: WallmountTelescreen entities: - - uid: 10831 + - uid: 13575 components: - type: Transform - pos: 31.5,43.5 - parent: 2 -- proto: WallmountTelescreenFrame - entities: - - uid: 14562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,30.5 + pos: 30.5,43.5 parent: 2 - proto: WallReinforced entities: @@ -85012,6 +88934,11 @@ entities: - type: Transform pos: 5.5,14.5 parent: 2 + - uid: 18 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 - uid: 20 components: - type: Transform @@ -85022,11 +88949,22 @@ entities: - type: Transform pos: -9.5,-21.5 parent: 2 + - uid: 63 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 - uid: 67 components: - type: Transform pos: 14.5,-13.5 parent: 2 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,40.5 + parent: 2 - uid: 83 components: - type: Transform @@ -85097,6 +89035,11 @@ entities: - type: Transform pos: 7.5,-10.5 parent: 2 + - uid: 184 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 - uid: 201 components: - type: Transform @@ -85177,11 +89120,6 @@ entities: - type: Transform pos: 8.5,-10.5 parent: 2 - - uid: 319 - components: - - type: Transform - pos: 60.5,32.5 - parent: 2 - uid: 324 components: - type: Transform @@ -85207,6 +89145,23 @@ entities: - type: Transform pos: -25.5,-3.5 parent: 2 + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,28.5 + parent: 2 + - uid: 404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,40.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 - uid: 435 components: - type: Transform @@ -85222,6 +89177,11 @@ entities: - type: Transform pos: -27.5,1.5 parent: 2 + - uid: 466 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 - uid: 470 components: - type: Transform @@ -85387,11 +89347,6 @@ entities: - type: Transform pos: 17.5,-14.5 parent: 2 - - uid: 616 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - uid: 618 components: - type: Transform @@ -85417,11 +89372,6 @@ entities: - type: Transform pos: 11.5,-16.5 parent: 2 - - uid: 625 - components: - - type: Transform - pos: 11.5,-17.5 - parent: 2 - uid: 626 components: - type: Transform @@ -85432,50 +89382,15 @@ entities: - type: Transform pos: 11.5,-19.5 parent: 2 - - uid: 629 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 2 - - uid: 630 - components: - - type: Transform - pos: 12.5,-16.5 - parent: 2 - - uid: 631 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 2 - - uid: 632 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 2 - - uid: 633 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 2 - uid: 634 components: - type: Transform pos: 12.5,-20.5 parent: 2 - - uid: 635 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 2 - - uid: 636 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 2 - uid: 637 components: - type: Transform - pos: 13.5,-15.5 + pos: 15.5,-11.5 parent: 2 - uid: 638 components: @@ -85527,36 +89442,6 @@ entities: - type: Transform pos: 24.5,-20.5 parent: 2 - - uid: 648 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 2 - - uid: 649 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 2 - - uid: 650 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 2 - - uid: 651 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 2 - - uid: 652 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 2 - - uid: 653 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 2 - uid: 654 components: - type: Transform @@ -85587,11 +89472,6 @@ entities: - type: Transform pos: 24.5,-14.5 parent: 2 - - uid: 669 - components: - - type: Transform - pos: 53.5,42.5 - parent: 2 - uid: 687 components: - type: Transform @@ -85942,6 +89822,12 @@ entities: - type: Transform pos: 18.5,-40.5 parent: 2 + - uid: 984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,52.5 + parent: 2 - uid: 993 components: - type: Transform @@ -85982,26 +89868,39 @@ entities: - type: Transform pos: 14.5,-39.5 parent: 2 + - uid: 1109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,24.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,52.5 + parent: 2 - uid: 1218 components: - type: Transform pos: 37.5,-29.5 parent: 2 - - uid: 1219 + - uid: 1223 components: - type: Transform - pos: 16.5,-15.5 - parent: 2 - - uid: 1230 - components: - - type: Transform - pos: 48.5,32.5 + pos: 37.5,41.5 parent: 2 - uid: 1250 components: - type: Transform pos: 30.5,-58.5 parent: 2 + - uid: 1256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,44.5 + parent: 2 - uid: 1264 components: - type: Transform @@ -86197,6 +90096,12 @@ entities: - type: Transform pos: 16.5,39.5 parent: 2 + - uid: 1521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 - uid: 1576 components: - type: Transform @@ -86307,10 +90212,10 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 1763 + - uid: 1762 components: - type: Transform - pos: 37.5,32.5 + pos: 63.5,8.5 parent: 2 - uid: 1828 components: @@ -86367,6 +90272,12 @@ entities: - type: Transform pos: -0.5,-20.5 parent: 2 + - uid: 2040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,37.5 + parent: 2 - uid: 2058 components: - type: Transform @@ -86392,16 +90303,17 @@ entities: - type: Transform pos: 47.5,-24.5 parent: 2 + - uid: 2090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,2.5 + parent: 2 - uid: 2102 components: - type: Transform pos: 24.5,28.5 parent: 2 - - uid: 2117 - components: - - type: Transform - pos: 43.5,25.5 - parent: 2 - uid: 2122 components: - type: Transform @@ -86427,31 +90339,27 @@ entities: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 2190 + - uid: 2153 components: - type: Transform - pos: 28.5,16.5 + rot: 1.5707963267948966 rad + pos: 58.5,27.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 52.5,38.5 parent: 2 - uid: 2191 components: - type: Transform pos: 29.5,16.5 parent: 2 - - uid: 2192 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - uid: 2193 components: - type: Transform pos: 31.5,16.5 parent: 2 - - uid: 2194 - components: - - type: Transform - pos: 32.5,16.5 - parent: 2 - uid: 2196 components: - type: Transform @@ -86462,296 +90370,210 @@ entities: - type: Transform pos: 28.5,22.5 parent: 2 - - uid: 2198 - components: - - type: Transform - pos: 28.5,26.5 - parent: 2 - - uid: 2199 - components: - - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 2200 - components: - - type: Transform - pos: 29.5,27.5 - parent: 2 - uid: 2201 components: - type: Transform - pos: 30.5,27.5 - parent: 2 - - uid: 2202 - components: - - type: Transform - pos: 31.5,27.5 - parent: 2 - - uid: 2203 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 2204 - components: - - type: Transform - pos: 36.5,29.5 + pos: 34.5,35.5 parent: 2 - uid: 2205 components: - type: Transform - pos: 28.5,30.5 + rot: 1.5707963267948966 rad + pos: 61.5,29.5 parent: 2 - - uid: 2206 + - uid: 2210 components: - type: Transform - pos: 28.5,31.5 - parent: 2 - - uid: 2207 - components: - - type: Transform - pos: 29.5,31.5 - parent: 2 - - uid: 2208 - components: - - type: Transform - pos: 30.5,31.5 - parent: 2 - - uid: 2209 - components: - - type: Transform - pos: 31.5,31.5 - parent: 2 - - uid: 2211 - components: - - type: Transform - pos: 51.5,29.5 + rot: 1.5707963267948966 rad + pos: 59.5,40.5 parent: 2 - uid: 2212 components: - type: Transform - pos: 60.5,35.5 + rot: -1.5707963267948966 rad + pos: 35.5,22.5 parent: 2 - uid: 2214 components: - type: Transform - pos: 60.5,37.5 - parent: 2 - - uid: 2215 - components: - - type: Transform - pos: 60.5,38.5 - parent: 2 - - uid: 2217 - components: - - type: Transform - pos: 60.5,34.5 + pos: 38.5,33.5 parent: 2 - uid: 2218 components: - type: Transform - pos: 49.5,29.5 + pos: 57.5,40.5 parent: 2 - - uid: 2219 + - uid: 2227 components: - type: Transform - pos: 43.5,32.5 - parent: 2 - - uid: 2220 - components: - - type: Transform - pos: 50.5,29.5 - parent: 2 - - uid: 2226 - components: - - type: Transform - pos: 63.5,44.5 + rot: 1.5707963267948966 rad + pos: 28.5,18.5 parent: 2 - uid: 2228 components: - type: Transform - pos: 31.5,32.5 + pos: 50.5,29.5 parent: 2 - uid: 2229 components: - type: Transform - pos: 40.5,38.5 + rot: 1.5707963267948966 rad + pos: 58.5,40.5 parent: 2 - - uid: 2230 + - uid: 2240 components: - type: Transform - pos: 34.5,32.5 + pos: 55.5,31.5 parent: 2 - - uid: 2232 + - uid: 2244 components: - type: Transform - pos: 42.5,37.5 + rot: 3.141592653589793 rad + pos: 28.5,26.5 parent: 2 - - uid: 2233 + - uid: 2245 components: - type: Transform - pos: 42.5,36.5 + pos: 52.5,39.5 parent: 2 - - uid: 2234 + - uid: 2257 components: - type: Transform - pos: 42.5,35.5 - parent: 2 - - uid: 2235 - components: - - type: Transform - pos: 42.5,34.5 - parent: 2 - - uid: 2260 - components: - - type: Transform - pos: 35.5,29.5 + rot: 3.141592653589793 rad + pos: 36.5,40.5 parent: 2 - uid: 2262 components: - type: Transform - pos: 37.5,29.5 + rot: 3.141592653589793 rad + pos: 35.5,40.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 55.5,39.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 31.5,29.5 parent: 2 - uid: 2267 components: - type: Transform - pos: 42.5,29.5 + rot: 3.141592653589793 rad + pos: 32.5,22.5 parent: 2 - uid: 2268 components: - type: Transform - pos: 43.5,29.5 + rot: -1.5707963267948966 rad + pos: 51.5,39.5 parent: 2 - - uid: 2269 + - uid: 2281 components: - type: Transform - pos: 44.5,29.5 + pos: 48.5,29.5 parent: 2 - - uid: 2272 + - uid: 2288 components: - type: Transform - pos: 44.5,32.5 + pos: 41.5,16.5 parent: 2 - - uid: 2273 + - uid: 2292 components: - type: Transform - pos: 44.5,33.5 + rot: 3.141592653589793 rad + pos: 35.5,23.5 parent: 2 - - uid: 2277 + - uid: 2293 components: - type: Transform - pos: 44.5,38.5 + pos: 60.5,40.5 parent: 2 - - uid: 2278 + - uid: 2297 components: - type: Transform - pos: 44.5,37.5 + rot: 3.141592653589793 rad + pos: 32.5,26.5 parent: 2 - uid: 2306 components: - type: Transform pos: 12.5,-57.5 parent: 2 - - uid: 2313 + - uid: 2318 components: - type: Transform - pos: 40.5,18.5 + rot: 1.5707963267948966 rad + pos: 40.5,37.5 parent: 2 - - uid: 2327 + - uid: 2328 components: - type: Transform - pos: 37.5,25.5 + rot: -1.5707963267948966 rad + pos: 30.5,36.5 parent: 2 - - uid: 2331 - components: - - type: Transform - pos: 42.5,25.5 - parent: 2 - - uid: 2334 + - uid: 2329 components: - type: Transform + rot: -1.5707963267948966 rad pos: 43.5,26.5 parent: 2 - - uid: 2335 - components: - - type: Transform - pos: 44.5,26.5 - parent: 2 - - uid: 2336 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 2337 - components: - - type: Transform - pos: 46.5,26.5 - parent: 2 - - uid: 2338 - components: - - type: Transform - pos: 46.5,25.5 - parent: 2 - - uid: 2339 - components: - - type: Transform - pos: 46.5,24.5 - parent: 2 - - uid: 2340 - components: - - type: Transform - pos: 46.5,23.5 - parent: 2 - - uid: 2341 - components: - - type: Transform - pos: 46.5,22.5 - parent: 2 - - uid: 2342 - components: - - type: Transform - pos: 46.5,21.5 - parent: 2 - - uid: 2343 + - uid: 2330 components: - type: Transform + rot: 1.5707963267948966 rad pos: 45.5,21.5 parent: 2 - - uid: 2344 + - uid: 2357 components: - type: Transform - pos: 44.5,21.5 + pos: 60.5,37.5 parent: 2 - - uid: 2345 + - uid: 2362 components: - type: Transform - pos: 43.5,21.5 + rot: -1.5707963267948966 rad + pos: 49.5,39.5 parent: 2 - - uid: 2346 + - uid: 2367 components: - type: Transform - pos: 42.5,21.5 + rot: -1.5707963267948966 rad + pos: 49.5,34.5 parent: 2 - - uid: 2348 + - uid: 2372 components: - type: Transform - pos: 40.5,21.5 - parent: 2 - - uid: 2349 - components: - - type: Transform - pos: 40.5,20.5 - parent: 2 - - uid: 2350 - components: - - type: Transform - pos: 40.5,19.5 + rot: -1.5707963267948966 rad + pos: 47.5,43.5 parent: 2 - uid: 2400 components: - type: Transform pos: 51.5,-27.5 parent: 2 + - uid: 2406 + components: + - type: Transform + pos: 50.5,40.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 62.5,37.5 + parent: 2 - uid: 2439 components: - type: Transform @@ -86762,16 +90584,6 @@ entities: - type: Transform pos: 51.5,-23.5 parent: 2 - - uid: 2443 - components: - - type: Transform - pos: 40.5,17.5 - parent: 2 - - uid: 2444 - components: - - type: Transform - pos: 40.5,16.5 - parent: 2 - uid: 2445 components: - type: Transform @@ -86787,55 +90599,39 @@ entities: - type: Transform pos: 37.5,16.5 parent: 2 - - uid: 2448 + - uid: 2459 components: - type: Transform - pos: 36.5,16.5 + rot: -1.5707963267948966 rad + pos: 51.5,46.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,32.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,26.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,26.5 parent: 2 - uid: 2485 components: - type: Transform pos: 3.5,14.5 parent: 2 - - uid: 2563 + - uid: 2562 components: - type: Transform - pos: 29.5,33.5 - parent: 2 - - uid: 2568 - components: - - type: Transform - pos: 33.5,34.5 - parent: 2 - - uid: 2569 - components: - - type: Transform - pos: 29.5,34.5 - parent: 2 - - uid: 2570 - components: - - type: Transform - pos: 29.5,35.5 - parent: 2 - - uid: 2571 - components: - - type: Transform - pos: 29.5,37.5 - parent: 2 - - uid: 2572 - components: - - type: Transform - pos: 33.5,35.5 - parent: 2 - - uid: 2573 - components: - - type: Transform - pos: 33.5,36.5 - parent: 2 - - uid: 2574 - components: - - type: Transform - pos: 33.5,37.5 + pos: 68.5,48.5 parent: 2 - uid: 2575 components: @@ -86895,7 +90691,8 @@ entities: - uid: 2586 components: - type: Transform - pos: 31.5,43.5 + rot: -1.5707963267948966 rad + pos: 40.5,39.5 parent: 2 - uid: 2587 components: @@ -86920,17 +90717,12 @@ entities: - uid: 2591 components: - type: Transform - pos: 35.5,43.5 - parent: 2 - - uid: 2592 - components: - - type: Transform - pos: 35.5,42.5 + pos: 45.5,39.5 parent: 2 - uid: 2593 components: - type: Transform - pos: 35.5,41.5 + pos: 50.5,41.5 parent: 2 - uid: 2594 components: @@ -86947,46 +90739,6 @@ entities: - type: Transform pos: 38.5,44.5 parent: 2 - - uid: 2597 - components: - - type: Transform - pos: 38.5,43.5 - parent: 2 - - uid: 2598 - components: - - type: Transform - pos: 38.5,42.5 - parent: 2 - - uid: 2599 - components: - - type: Transform - pos: 38.5,41.5 - parent: 2 - - uid: 2600 - components: - - type: Transform - pos: 38.5,40.5 - parent: 2 - - uid: 2601 - components: - - type: Transform - pos: 38.5,39.5 - parent: 2 - - uid: 2602 - components: - - type: Transform - pos: 37.5,39.5 - parent: 2 - - uid: 2603 - components: - - type: Transform - pos: 36.5,39.5 - parent: 2 - - uid: 2604 - components: - - type: Transform - pos: 35.5,39.5 - parent: 2 - uid: 2605 components: - type: Transform @@ -87172,11 +90924,6 @@ entities: - type: Transform pos: 14.5,34.5 parent: 2 - - uid: 2685 - components: - - type: Transform - pos: 35.5,16.5 - parent: 2 - uid: 2785 components: - type: Transform @@ -87432,21 +91179,6 @@ entities: - type: Transform pos: 49.5,7.5 parent: 2 - - uid: 3034 - components: - - type: Transform - pos: 50.5,7.5 - parent: 2 - - uid: 3035 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - - uid: 3036 - components: - - type: Transform - pos: 52.5,7.5 - parent: 2 - uid: 3037 components: - type: Transform @@ -87487,100 +91219,74 @@ entities: - type: Transform pos: 48.5,20.5 parent: 2 - - uid: 3063 + - uid: 3069 components: - type: Transform - pos: 40.5,39.5 - parent: 2 - - uid: 3064 - components: - - type: Transform - pos: 40.5,40.5 - parent: 2 - - uid: 3065 - components: - - type: Transform - pos: 44.5,39.5 + pos: 58.5,33.5 parent: 2 - uid: 3071 components: - type: Transform pos: 55.5,-20.5 parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 75.5,-20.5 + parent: 2 - uid: 3073 components: - type: Transform pos: 55.5,-21.5 parent: 2 - - uid: 3074 + - uid: 3095 components: - type: Transform - pos: 42.5,43.5 + rot: -1.5707963267948966 rad + pos: 60.5,35.5 parent: 2 - - uid: 3075 + - uid: 3097 components: - type: Transform - pos: 42.5,44.5 + pos: 63.5,7.5 parent: 2 - - uid: 3076 + - uid: 3102 components: - type: Transform - pos: 42.5,45.5 + rot: -1.5707963267948966 rad + pos: 40.5,40.5 parent: 2 - - uid: 3077 + - uid: 3106 components: - type: Transform - pos: 42.5,46.5 + rot: -1.5707963267948966 rad + pos: 40.5,38.5 parent: 2 - - uid: 3078 + - uid: 3107 components: - type: Transform - pos: 42.5,47.5 + pos: 61.5,33.5 parent: 2 - - uid: 3079 + - uid: 3110 components: - type: Transform - pos: 45.5,45.5 + rot: 3.141592653589793 rad + pos: 41.5,40.5 parent: 2 - - uid: 3080 + - uid: 3117 components: - type: Transform - pos: 45.5,44.5 - parent: 2 - - uid: 3081 - components: - - type: Transform - pos: 45.5,43.5 - parent: 2 - - uid: 3082 - components: - - type: Transform - pos: 46.5,43.5 - parent: 2 - - uid: 3083 - components: - - type: Transform - pos: 46.5,42.5 - parent: 2 - - uid: 3084 - components: - - type: Transform - pos: 46.5,41.5 - parent: 2 - - uid: 3085 - components: - - type: Transform - pos: 46.5,40.5 + pos: 59.5,35.5 parent: 2 - uid: 3119 components: - type: Transform pos: -26.5,-2.5 parent: 2 - - uid: 3125 + - uid: 3127 components: - type: Transform - pos: 50.5,45.5 + pos: 55.5,33.5 parent: 2 - uid: 3133 components: @@ -87592,65 +91298,49 @@ entities: - type: Transform pos: -21.5,-3.5 parent: 2 - - uid: 3142 + - uid: 3148 components: - type: Transform - pos: 37.5,28.5 + pos: 60.5,39.5 parent: 2 - - uid: 3146 + - uid: 3152 components: - type: Transform - pos: 47.5,36.5 - parent: 2 - - uid: 3149 - components: - - type: Transform - pos: 47.5,33.5 - parent: 2 - - uid: 3150 - components: - - type: Transform - pos: 47.5,32.5 + pos: 42.5,36.5 parent: 2 - uid: 3153 components: - type: Transform - pos: 47.5,29.5 + rot: 3.141592653589793 rad + pos: 31.5,26.5 parent: 2 - uid: 3155 components: - type: Transform - pos: 48.5,28.5 + rot: 1.5707963267948966 rad + pos: 28.5,17.5 parent: 2 - - uid: 3158 + - uid: 3156 components: - type: Transform - pos: 51.5,28.5 + rot: 3.141592653589793 rad + pos: 35.5,26.5 parent: 2 - - uid: 3164 + - uid: 3166 components: - type: Transform - pos: 40.5,37.5 + pos: 55.5,30.5 parent: 2 - uid: 3169 components: - type: Transform pos: 35.5,35.5 parent: 2 - - uid: 3170 - components: - - type: Transform - pos: 38.5,37.5 - parent: 2 - uid: 3178 components: - type: Transform - pos: 52.5,33.5 - parent: 2 - - uid: 3179 - components: - - type: Transform - pos: 35.5,34.5 + rot: -1.5707963267948966 rad + pos: 47.5,29.5 parent: 2 - uid: 3180 components: @@ -87667,91 +91357,94 @@ entities: - type: Transform pos: 69.5,-10.5 parent: 2 - - uid: 3194 + - uid: 3186 components: - type: Transform - pos: 38.5,29.5 - parent: 2 - - uid: 3195 - components: - - type: Transform - pos: 43.5,28.5 - parent: 2 - - uid: 3196 - components: - - type: Transform - pos: 43.5,27.5 - parent: 2 - - uid: 3198 - components: - - type: Transform - pos: 61.5,29.5 - parent: 2 - - uid: 3199 - components: - - type: Transform - pos: 61.5,28.5 + rot: -1.5707963267948966 rad + pos: 60.5,36.5 parent: 2 - uid: 3201 components: - type: Transform pos: 65.5,29.5 parent: 2 - - uid: 3203 + - uid: 3208 components: - type: Transform - pos: 41.5,37.5 - parent: 2 - - uid: 3207 - components: - - type: Transform - pos: 32.5,32.5 + rot: 3.141592653589793 rad + pos: 34.5,22.5 parent: 2 - uid: 3210 components: - type: Transform pos: -4.5,-17.5 parent: 2 + - uid: 3230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 - uid: 3236 components: - type: Transform pos: 70.5,-13.5 parent: 2 - - uid: 3256 + - uid: 3237 components: - type: Transform - pos: 48.5,29.5 + rot: -1.5707963267948966 rad + pos: 51.5,45.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,39.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,16.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 30.5,35.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 44.5,20.5 parent: 2 - uid: 3262 components: - type: Transform - pos: 62.5,29.5 - parent: 2 - - uid: 3264 - components: - - type: Transform - pos: 62.5,45.5 - parent: 2 - - uid: 3266 - components: - - type: Transform - pos: 63.5,45.5 + rot: 1.5707963267948966 rad + pos: 49.5,51.5 parent: 2 - uid: 3268 components: - type: Transform pos: 65.5,45.5 parent: 2 - - uid: 3269 - components: - - type: Transform - pos: 65.5,44.5 - parent: 2 - - uid: 3270 - components: - - type: Transform - pos: 65.5,43.5 - parent: 2 - uid: 3271 components: - type: Transform @@ -87772,35 +91465,10 @@ entities: - type: Transform pos: 65.5,33.5 parent: 2 - - uid: 3275 - components: - - type: Transform - pos: 65.5,34.5 - parent: 2 - - uid: 3279 - components: - - type: Transform - pos: 65.5,38.5 - parent: 2 - - uid: 3280 - components: - - type: Transform - pos: 65.5,39.5 - parent: 2 - - uid: 3281 - components: - - type: Transform - pos: 65.5,40.5 - parent: 2 - - uid: 3282 - components: - - type: Transform - pos: 65.5,41.5 - parent: 2 - uid: 3283 components: - type: Transform - pos: 65.5,42.5 + pos: 46.5,32.5 parent: 2 - uid: 3285 components: @@ -87842,21 +91510,23 @@ entities: - type: Transform pos: 47.5,-26.5 parent: 2 - - uid: 3315 - components: - - type: Transform - pos: 49.5,49.5 - parent: 2 - - uid: 3316 - components: - - type: Transform - pos: 63.5,49.5 - parent: 2 - uid: 3318 components: - type: Transform pos: -7.5,-17.5 parent: 2 + - uid: 3331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,51.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,27.5 + parent: 2 - uid: 3352 components: - type: Transform @@ -87902,21 +91572,11 @@ entities: - type: Transform pos: 71.5,43.5 parent: 2 - - uid: 3372 - components: - - type: Transform - pos: 70.5,43.5 - parent: 2 - uid: 3373 components: - type: Transform pos: 72.5,35.5 parent: 2 - - uid: 3374 - components: - - type: Transform - pos: 71.5,35.5 - parent: 2 - uid: 3375 components: - type: Transform @@ -87942,20 +91602,39 @@ entities: - type: Transform pos: 72.5,40.5 parent: 2 + - uid: 3381 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 - uid: 3383 components: - type: Transform - pos: 70.5,35.5 + rot: -1.5707963267948966 rad + pos: 45.5,29.5 parent: 2 - - uid: 3384 + - uid: 3388 components: - type: Transform - pos: 69.5,35.5 + pos: 45.5,20.5 parent: 2 - - uid: 3385 + - uid: 3389 components: - type: Transform - pos: 68.5,35.5 + rot: -1.5707963267948966 rad + pos: 73.5,30.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,34.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,26.5 parent: 2 - uid: 3419 components: @@ -88002,6 +91681,11 @@ entities: - type: Transform pos: 73.5,19.5 parent: 2 + - uid: 3429 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 - uid: 3435 components: - type: Transform @@ -88057,26 +91741,11 @@ entities: - type: Transform pos: 65.5,25.5 parent: 2 - - uid: 3453 - components: - - type: Transform - pos: 61.5,27.5 - parent: 2 - - uid: 3454 - components: - - type: Transform - pos: 61.5,26.5 - parent: 2 - uid: 3456 components: - type: Transform pos: 12.5,34.5 parent: 2 - - uid: 3462 - components: - - type: Transform - pos: 61.5,22.5 - parent: 2 - uid: 3463 components: - type: Transform @@ -88132,50 +91801,15 @@ entities: - type: Transform pos: 61.5,17.5 parent: 2 - - uid: 3481 - components: - - type: Transform - pos: 50.5,26.5 - parent: 2 - uid: 3482 components: - type: Transform pos: 52.5,26.5 parent: 2 - - uid: 3483 + - uid: 3493 components: - type: Transform - pos: 51.5,22.5 - parent: 2 - - uid: 3484 - components: - - type: Transform - pos: 52.5,22.5 - parent: 2 - - uid: 3488 - components: - - type: Transform - pos: 51.5,26.5 - parent: 2 - - uid: 3491 - components: - - type: Transform - pos: 49.5,22.5 - parent: 2 - - uid: 3492 - components: - - type: Transform - pos: 50.5,22.5 - parent: 2 - - uid: 3494 - components: - - type: Transform - pos: 51.5,27.5 - parent: 2 - - uid: 3498 - components: - - type: Transform - pos: 49.5,26.5 + pos: 40.5,16.5 parent: 2 - uid: 3505 components: @@ -88197,11 +91831,6 @@ entities: - type: Transform pos: 48.5,25.5 parent: 2 - - uid: 3509 - components: - - type: Transform - pos: 48.5,26.5 - parent: 2 - uid: 3510 components: - type: Transform @@ -88217,11 +91846,6 @@ entities: - type: Transform pos: 48.5,-26.5 parent: 2 - - uid: 3528 - components: - - type: Transform - pos: 61.5,16.5 - parent: 2 - uid: 3536 components: - type: Transform @@ -88317,21 +91941,6 @@ entities: - type: Transform pos: 86.5,2.5 parent: 2 - - uid: 3560 - components: - - type: Transform - pos: 85.5,2.5 - parent: 2 - - uid: 3561 - components: - - type: Transform - pos: 85.5,3.5 - parent: 2 - - uid: 3562 - components: - - type: Transform - pos: 85.5,5.5 - parent: 2 - uid: 3564 components: - type: Transform @@ -88455,7 +92064,8 @@ entities: - uid: 3634 components: - type: Transform - pos: 69.5,12.5 + rot: 1.5707963267948966 rad + pos: 43.5,48.5 parent: 2 - uid: 3635 components: @@ -88592,16 +92202,6 @@ entities: - type: Transform pos: 59.5,11.5 parent: 2 - - uid: 3668 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - - uid: 3669 - components: - - type: Transform - pos: 64.5,10.5 - parent: 2 - uid: 3670 components: - type: Transform @@ -88610,17 +92210,8 @@ entities: - uid: 3671 components: - type: Transform - pos: 64.5,8.5 - parent: 2 - - uid: 3672 - components: - - type: Transform - pos: 64.5,7.5 - parent: 2 - - uid: 3673 - components: - - type: Transform - pos: 63.5,7.5 + rot: 3.141592653589793 rad + pos: 66.5,9.5 parent: 2 - uid: 3674 components: @@ -88957,16 +92548,6 @@ entities: - type: Transform pos: 84.5,-11.5 parent: 2 - - uid: 3821 - components: - - type: Transform - pos: 59.5,31.5 - parent: 2 - - uid: 3822 - components: - - type: Transform - pos: 50.5,32.5 - parent: 2 - uid: 3829 components: - type: Transform @@ -89032,6 +92613,11 @@ entities: - type: Transform pos: 72.5,-17.5 parent: 2 + - uid: 3851 + components: + - type: Transform + pos: 73.5,-20.5 + parent: 2 - uid: 3865 components: - type: Transform @@ -89047,11 +92633,6 @@ entities: - type: Transform pos: 76.5,-19.5 parent: 2 - - uid: 3868 - components: - - type: Transform - pos: 73.5,-19.5 - parent: 2 - uid: 3879 components: - type: Transform @@ -89177,6 +92758,11 @@ entities: - type: Transform pos: 15.5,-59.5 parent: 2 + - uid: 4018 + components: + - type: Transform + pos: 37.5,42.5 + parent: 2 - uid: 4044 components: - type: Transform @@ -89217,15 +92803,10 @@ entities: - type: Transform pos: 23.5,-37.5 parent: 2 - - uid: 4127 + - uid: 4132 components: - type: Transform - pos: 52.5,40.5 - parent: 2 - - uid: 4128 - components: - - type: Transform - pos: 36.5,32.5 + pos: 28.5,32.5 parent: 2 - uid: 4166 components: @@ -89272,6 +92853,11 @@ entities: - type: Transform pos: 32.5,-21.5 parent: 2 + - uid: 4188 + components: + - type: Transform + pos: 37.5,43.5 + parent: 2 - uid: 4229 components: - type: Transform @@ -89352,36 +92938,21 @@ entities: - type: Transform pos: 33.5,-37.5 parent: 2 - - uid: 4346 - components: - - type: Transform - pos: 59.5,41.5 - parent: 2 - uid: 4347 components: - type: Transform - pos: 60.5,39.5 + pos: 28.5,29.5 parent: 2 - - uid: 4348 + - uid: 4349 components: - type: Transform - pos: 48.5,36.5 + pos: 55.5,29.5 parent: 2 - uid: 4364 components: - type: Transform pos: 12.5,-53.5 parent: 2 - - uid: 4367 - components: - - type: Transform - pos: 59.5,39.5 - parent: 2 - - uid: 4368 - components: - - type: Transform - pos: 50.5,36.5 - parent: 2 - uid: 4369 components: - type: Transform @@ -89447,20 +93018,10 @@ entities: - type: Transform pos: 28.5,-45.5 parent: 2 - - uid: 4397 + - uid: 4404 components: - type: Transform - pos: 51.5,33.5 - parent: 2 - - uid: 4398 - components: - - type: Transform - pos: 38.5,32.5 - parent: 2 - - uid: 4399 - components: - - type: Transform - pos: 47.5,40.5 + pos: 57.5,34.5 parent: 2 - uid: 4417 components: @@ -89527,16 +93088,6 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 4568 - components: - - type: Transform - pos: 59.5,26.5 - parent: 2 - - uid: 4573 - components: - - type: Transform - pos: 60.5,26.5 - parent: 2 - uid: 4633 components: - type: Transform @@ -89557,11 +93108,6 @@ entities: - type: Transform pos: -7.5,1.5 parent: 2 - - uid: 4744 - components: - - type: Transform - pos: 52.5,32.5 - parent: 2 - uid: 4829 components: - type: Transform @@ -89572,15 +93118,11 @@ entities: - type: Transform pos: 4.5,15.5 parent: 2 - - uid: 5194 + - uid: 5183 components: - type: Transform - pos: 38.5,33.5 - parent: 2 - - uid: 5199 - components: - - type: Transform - pos: 59.5,30.5 + rot: 3.141592653589793 rad + pos: 16.5,-14.5 parent: 2 - uid: 5291 components: @@ -89602,6 +93144,41 @@ entities: - type: Transform pos: 45.5,-41.5 parent: 2 + - uid: 5310 + components: + - type: Transform + pos: 60.5,37.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,22.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,25.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,22.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,10.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,26.5 + parent: 2 - uid: 5353 components: - type: Transform @@ -89612,25 +93189,32 @@ entities: - type: Transform pos: 2.5,9.5 parent: 2 - - uid: 5362 - components: - - type: Transform - pos: 52.5,41.5 - parent: 2 - uid: 5388 components: - type: Transform pos: 68.5,47.5 parent: 2 - - uid: 5477 + - uid: 5441 components: - type: Transform - pos: 72.5,34.5 + rot: 3.141592653589793 rad + pos: 48.5,50.5 parent: 2 - - uid: 5478 + - uid: 5442 components: - type: Transform - pos: 72.5,30.5 + pos: 64.5,50.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,37.5 parent: 2 - uid: 5479 components: @@ -89652,25 +93236,67 @@ entities: - type: Transform pos: 69.5,26.5 parent: 2 + - uid: 5489 + components: + - type: Transform + pos: 58.5,34.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,22.5 + parent: 2 - uid: 5498 components: - type: Transform pos: 70.5,21.5 parent: 2 - - uid: 5508 + - uid: 5503 components: - type: Transform - pos: 44.5,40.5 + pos: 73.5,33.5 parent: 2 - uid: 5510 components: - type: Transform pos: 74.5,21.5 parent: 2 + - uid: 5515 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,22.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: 55.5,34.5 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: 64.5,51.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 - uid: 5677 components: - type: Transform - pos: 53.5,46.5 + pos: 53.5,29.5 parent: 2 - uid: 5685 components: @@ -89687,15 +93313,38 @@ entities: - type: Transform pos: 51.5,-11.5 parent: 2 - - uid: 5736 + - uid: 5757 components: - type: Transform - pos: 58.5,35.5 + pos: 5.5,28.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,32.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,22.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-14.5 parent: 2 - uid: 5967 components: - type: Transform - pos: 59.5,46.5 + pos: 43.5,23.5 parent: 2 - uid: 6119 components: @@ -89722,15 +93371,10 @@ entities: - type: Transform pos: 14.5,-40.5 parent: 2 - - uid: 6139 + - uid: 6184 components: - type: Transform - pos: 49.5,32.5 - parent: 2 - - uid: 6196 - components: - - type: Transform - pos: 60.5,41.5 + pos: 63.5,9.5 parent: 2 - uid: 6209 components: @@ -89747,15 +93391,40 @@ entities: - type: Transform pos: 60.5,-20.5 parent: 2 - - uid: 6212 + - uid: 6313 components: - type: Transform - pos: 39.5,43.5 + rot: -1.5707963267948966 rad + pos: 45.5,42.5 parent: 2 - - uid: 6335 + - uid: 6318 components: - type: Transform - pos: 30.5,34.5 + rot: 1.5707963267948966 rad + pos: 38.5,37.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: 56.5,39.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,37.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,11.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,26.5 parent: 2 - uid: 6680 components: @@ -89787,6 +93456,17 @@ entities: - type: Transform pos: 63.5,-20.5 parent: 2 + - uid: 6797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,30.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: 68.5,49.5 + parent: 2 - uid: 6814 components: - type: Transform @@ -89802,26 +93482,36 @@ entities: - type: Transform pos: -4.5,-13.5 parent: 2 + - uid: 6843 + components: + - type: Transform + pos: 68.5,49.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: 68.5,50.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: 68.5,51.5 + parent: 2 - uid: 6867 components: - type: Transform pos: 4.5,14.5 parent: 2 - - uid: 6868 + - uid: 6873 components: - type: Transform - pos: 60.5,33.5 + pos: 41.5,43.5 parent: 2 - uid: 6880 components: - type: Transform pos: 14.5,-12.5 parent: 2 - - uid: 6881 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 2 - uid: 6882 components: - type: Transform @@ -89842,6 +93532,17 @@ entities: - type: Transform pos: 9.5,-39.5 parent: 2 + - uid: 6917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,20.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: 47.5,48.5 + parent: 2 - uid: 7251 components: - type: Transform @@ -89932,25 +93633,43 @@ entities: - type: Transform pos: -8.5,14.5 parent: 2 + - uid: 7711 + components: + - type: Transform + pos: 62.5,35.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 - uid: 7750 components: - type: Transform pos: -8.5,-8.5 parent: 2 - - uid: 7754 + - uid: 7752 components: - type: Transform - pos: 41.5,29.5 + rot: 3.141592653589793 rad + pos: 30.5,26.5 parent: 2 - - uid: 7755 + - uid: 7759 components: - type: Transform - pos: 35.5,32.5 + pos: 56.5,26.5 parent: 2 - - uid: 7756 + - uid: 7761 components: - type: Transform - pos: 63.5,43.5 + rot: 3.141592653589793 rad + pos: 64.5,49.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,48.5 parent: 2 - uid: 7769 components: @@ -89962,6 +93681,23 @@ entities: - type: Transform pos: -19.5,-8.5 parent: 2 + - uid: 7803 + components: + - type: Transform + pos: 72.5,34.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,48.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,48.5 + parent: 2 - uid: 7839 components: - type: Transform @@ -89977,6 +93713,18 @@ entities: - type: Transform pos: -21.5,-17.5 parent: 2 + - uid: 7845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,48.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,48.5 + parent: 2 - uid: 7875 components: - type: Transform @@ -90167,6 +93915,17 @@ entities: - type: Transform pos: 2.5,-27.5 parent: 2 + - uid: 7937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,26.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: 55.5,26.5 + parent: 2 - uid: 8044 components: - type: Transform @@ -90182,6 +93941,12 @@ entities: - type: Transform pos: 5.5,29.5 parent: 2 + - uid: 8101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,3.5 + parent: 2 - uid: 8102 components: - type: Transform @@ -90197,11 +93962,6 @@ entities: - type: Transform pos: 12.5,-56.5 parent: 2 - - uid: 8251 - components: - - type: Transform - pos: 52.5,36.5 - parent: 2 - uid: 8255 components: - type: Transform @@ -90217,26 +93977,11 @@ entities: - type: Transform pos: -5.5,14.5 parent: 2 - - uid: 8304 - components: - - type: Transform - pos: 49.5,36.5 - parent: 2 - - uid: 8324 - components: - - type: Transform - pos: 51.5,36.5 - parent: 2 - uid: 8326 components: - type: Transform pos: 52.5,-9.5 parent: 2 - - uid: 8328 - components: - - type: Transform - pos: 44.5,20.5 - parent: 2 - uid: 8329 components: - type: Transform @@ -90257,50 +94002,235 @@ entities: - type: Transform pos: 44.5,16.5 parent: 2 - - uid: 8405 + - uid: 8370 components: - type: Transform - pos: 58.5,39.5 + pos: 68.5,50.5 parent: 2 - uid: 8411 components: - type: Transform - pos: 60.5,40.5 + rot: 3.141592653589793 rad + pos: 28.5,23.5 parent: 2 - - uid: 8436 + - uid: 8413 components: - type: Transform - pos: 53.5,41.5 + rot: 3.141592653589793 rad + pos: 29.5,26.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,25.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,32.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,22.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,39.5 parent: 2 - uid: 8447 components: - type: Transform pos: 3.5,22.5 parent: 2 - - uid: 8517 + - uid: 8451 components: - type: Transform - pos: 44.5,28.5 + rot: 1.5707963267948966 rad + pos: 45.5,22.5 parent: 2 - - uid: 8674 + - uid: 8474 + components: + - type: Transform + pos: 50.5,43.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + pos: 50.5,42.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,32.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,28.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: 37.5,40.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,33.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,29.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,45.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,32.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + pos: 73.5,27.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 8609 components: - type: Transform pos: 52.5,37.5 parent: 2 - - uid: 8677 + - uid: 8610 components: - type: Transform - pos: 53.5,31.5 + pos: 46.5,36.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,37.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,32.5 + parent: 2 + - uid: 8690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,28.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,27.5 + parent: 2 + - uid: 8693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,22.5 + parent: 2 + - uid: 8698 + components: + - type: Transform + pos: 58.5,30.5 parent: 2 - uid: 8700 components: - type: Transform - pos: 42.5,33.5 + pos: 58.5,32.5 parent: 2 - uid: 8701 components: - type: Transform - pos: 42.5,32.5 + pos: 58.5,31.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,26.5 + parent: 2 + - uid: 8703 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,35.5 parent: 2 - uid: 8720 components: @@ -90427,6 +94357,18 @@ entities: - type: Transform pos: 104.5,-21.5 parent: 2 + - uid: 8795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,26.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,43.5 + parent: 2 - uid: 8811 components: - type: Transform @@ -90532,11 +94474,61 @@ entities: - type: Transform pos: 116.5,-17.5 parent: 2 + - uid: 8983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,51.5 + parent: 2 + - uid: 9037 + components: + - type: Transform + pos: 39.5,32.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,37.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + pos: 60.5,38.5 + parent: 2 - uid: 9175 components: - type: Transform pos: 69.5,-14.5 parent: 2 + - uid: 9176 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 + - uid: 9177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,28.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,37.5 + parent: 2 + - uid: 9212 + components: + - type: Transform + pos: 50.5,39.5 + parent: 2 + - uid: 9214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,40.5 + parent: 2 - uid: 9217 components: - type: Transform @@ -90557,25 +94549,89 @@ entities: - type: Transform pos: 39.5,-17.5 parent: 2 - - uid: 9348 + - uid: 9223 components: - type: Transform - pos: 31.5,34.5 + rot: -1.5707963267948966 rad + pos: 49.5,37.5 parent: 2 - - uid: 9455 + - uid: 9247 components: - type: Transform - pos: 32.5,34.5 + pos: 41.5,44.5 parent: 2 - - uid: 9726 + - uid: 9276 components: - type: Transform - pos: 58.5,38.5 + rot: 1.5707963267948966 rad + pos: 45.5,37.5 + parent: 2 + - uid: 9277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,26.5 + parent: 2 + - uid: 9278 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 + - uid: 9302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,29.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + pos: 59.5,34.5 + parent: 2 + - uid: 9320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,54.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: 57.5,30.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,37.5 + parent: 2 + - uid: 9433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,9.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,28.5 + parent: 2 + - uid: 9749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 parent: 2 - uid: 9860 components: - type: Transform - pos: 58.5,33.5 + pos: 45.5,25.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + pos: 45.5,23.5 parent: 2 - uid: 9890 components: @@ -90587,10 +94643,26 @@ entities: - type: Transform pos: 8.5,-39.5 parent: 2 + - uid: 9927 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,6.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 - uid: 10085 components: - type: Transform - pos: 58.5,34.5 + pos: 30.5,44.5 parent: 2 - uid: 10089 components: @@ -90712,6 +94784,12 @@ entities: - type: Transform pos: -1.5,-6.5 parent: 2 + - uid: 10115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,22.5 + parent: 2 - uid: 10140 components: - type: Transform @@ -90762,15 +94840,80 @@ entities: - type: Transform pos: 42.5,-20.5 parent: 2 - - uid: 10319 + - uid: 10279 components: - type: Transform - pos: 58.5,37.5 + rot: 1.5707963267948966 rad + pos: 33.5,33.5 parent: 2 - - uid: 10320 + - uid: 10293 components: - type: Transform - pos: 53.5,30.5 + rot: -1.5707963267948966 rad + pos: 56.5,38.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,38.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,40.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,46.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,35.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: 45.5,43.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,36.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + pos: 41.5,42.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - uid: 10588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,25.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,18.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + pos: 40.5,41.5 parent: 2 - uid: 10745 components: @@ -90802,6 +94945,11 @@ entities: - type: Transform pos: 86.5,-21.5 parent: 2 + - uid: 10831 + components: + - type: Transform + pos: 42.5,44.5 + parent: 2 - uid: 10842 components: - type: Transform @@ -90812,21 +94960,17 @@ entities: - type: Transform pos: 38.5,35.5 parent: 2 - - uid: 10844 - components: - - type: Transform - pos: 38.5,34.5 - parent: 2 - - uid: 10845 - components: - - type: Transform - pos: 59.5,33.5 - parent: 2 - uid: 10878 components: - type: Transform pos: 26.5,-59.5 parent: 2 + - uid: 10881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,25.5 + parent: 2 - uid: 10967 components: - type: Transform @@ -90857,35 +95001,56 @@ entities: - type: Transform pos: 11.5,-54.5 parent: 2 + - uid: 11100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,51.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,51.5 + parent: 2 + - uid: 11146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,53.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,53.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,54.5 + parent: 2 - uid: 11223 components: - type: Transform pos: 16.5,43.5 parent: 2 - - uid: 11280 - components: - - type: Transform - pos: 52.5,31.5 - parent: 2 - - uid: 11398 - components: - - type: Transform - pos: 87.5,5.5 - parent: 2 - - uid: 11400 - components: - - type: Transform - pos: 87.5,3.5 - parent: 2 - uid: 11613 components: - type: Transform pos: -20.5,-8.5 parent: 2 - - uid: 11676 + - uid: 11663 components: - type: Transform - pos: 8.5,37.5 + rot: 3.141592653589793 rad + pos: 48.5,48.5 + parent: 2 + - uid: 11678 + components: + - type: Transform + pos: 52.5,34.5 parent: 2 - uid: 11691 components: @@ -90897,16 +95062,6 @@ entities: - type: Transform pos: 7.5,15.5 parent: 2 - - uid: 11733 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - - uid: 11734 - components: - - type: Transform - pos: 39.5,20.5 - parent: 2 - uid: 11769 components: - type: Transform @@ -90967,21 +95122,6 @@ entities: - type: Transform pos: 11.5,-53.5 parent: 2 - - uid: 12102 - components: - - type: Transform - pos: 54.5,42.5 - parent: 2 - - uid: 12142 - components: - - type: Transform - pos: 58.5,42.5 - parent: 2 - - uid: 12143 - components: - - type: Transform - pos: 59.5,42.5 - parent: 2 - uid: 12228 components: - type: Transform @@ -90992,45 +95132,39 @@ entities: - type: Transform pos: 64.5,12.5 parent: 2 + - uid: 12367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,37.5 + parent: 2 + - uid: 12415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,32.5 + parent: 2 - uid: 12424 components: - type: Transform pos: 7.5,39.5 parent: 2 - - uid: 12432 - components: - - type: Transform - pos: 58.5,49.5 - parent: 2 - uid: 12433 components: - type: Transform pos: 58.5,51.5 parent: 2 - - uid: 12434 - components: - - type: Transform - pos: 58.5,50.5 - parent: 2 - - uid: 12435 - components: - - type: Transform - pos: 54.5,50.5 - parent: 2 - uid: 12436 components: - type: Transform - pos: 54.5,49.5 + rot: 3.141592653589793 rad + pos: 48.5,49.5 parent: 2 - - uid: 12438 + - uid: 12443 components: - type: Transform - pos: 59.5,47.5 - parent: 2 - - uid: 12440 - components: - - type: Transform - pos: 53.5,47.5 + rot: 1.5707963267948966 rad + pos: 33.5,34.5 parent: 2 - uid: 12446 components: @@ -91047,26 +95181,26 @@ entities: - type: Transform pos: 27.5,-41.5 parent: 2 + - uid: 12562 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 - uid: 12664 components: - type: Transform pos: 3.5,28.5 parent: 2 - - uid: 12669 + - uid: 12769 components: - type: Transform - pos: 56.5,46.5 + pos: 54.5,34.5 parent: 2 - uid: 12775 components: - type: Transform pos: 20.5,-60.5 parent: 2 - - uid: 12856 - components: - - type: Transform - pos: 39.5,45.5 - parent: 2 - uid: 12888 components: - type: Transform @@ -91202,26 +95336,11 @@ entities: - type: Transform pos: -20.5,1.5 parent: 2 - - uid: 13104 - components: - - type: Transform - pos: 44.5,27.5 - parent: 2 - uid: 13113 components: - type: Transform pos: -24.5,1.5 parent: 2 - - uid: 13117 - components: - - type: Transform - pos: 36.5,20.5 - parent: 2 - - uid: 13125 - components: - - type: Transform - pos: 38.5,45.5 - parent: 2 - uid: 13184 components: - type: Transform @@ -91467,6 +95586,24 @@ entities: - type: Transform pos: 10.5,18.5 parent: 2 + - uid: 13521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,37.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,37.5 + parent: 2 + - uid: 13526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,44.5 + parent: 2 - uid: 13561 components: - type: Transform @@ -91482,25 +95619,10 @@ entities: - type: Transform pos: 70.5,-14.5 parent: 2 - - uid: 13565 - components: - - type: Transform - pos: 51.5,32.5 - parent: 2 - - uid: 13566 - components: - - type: Transform - pos: 60.5,31.5 - parent: 2 - - uid: 13573 - components: - - type: Transform - pos: 54.5,30.5 - parent: 2 - uid: 13574 components: - type: Transform - pos: 58.5,30.5 + pos: 52.5,35.5 parent: 2 - uid: 13614 components: @@ -92182,6 +96304,12 @@ entities: - type: Transform pos: 94.5,25.5 parent: 2 + - uid: 14329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,38.5 + parent: 2 - uid: 14340 components: - type: Transform @@ -92422,6 +96550,23 @@ entities: - type: Transform pos: 94.5,31.5 parent: 2 + - uid: 14550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,38.5 + parent: 2 + - uid: 14583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,38.5 + parent: 2 + - uid: 14628 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 - uid: 14745 components: - type: Transform @@ -92452,6 +96597,12 @@ entities: - type: Transform pos: 4.5,41.5 parent: 2 + - uid: 14787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,38.5 + parent: 2 - uid: 14795 components: - type: Transform @@ -92515,32 +96666,43 @@ entities: - uid: 14823 components: - type: Transform - pos: 50.5,38.5 + rot: 3.141592653589793 rad + pos: 38.5,48.5 parent: 2 - - uid: 14828 + - uid: 14872 components: - type: Transform - pos: 50.5,43.5 + rot: -1.5707963267948966 rad + pos: 49.5,43.5 parent: 2 - - uid: 14835 + - uid: 14874 components: - type: Transform - pos: 52.5,44.5 + rot: -1.5707963267948966 rad + pos: 46.5,43.5 parent: 2 - - uid: 14837 + - uid: 14888 components: - type: Transform - pos: 62.5,41.5 + rot: 3.141592653589793 rad + pos: 38.5,47.5 parent: 2 - - uid: 14838 + - uid: 14890 components: - type: Transform - pos: 62.5,31.5 + pos: 59.5,12.5 parent: 2 - - uid: 14848 + - uid: 14892 components: - type: Transform - pos: 60.5,44.5 + rot: -1.5707963267948966 rad + pos: 63.5,37.5 + parent: 2 + - uid: 14915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,22.5 parent: 2 - uid: 14920 components: @@ -92587,20 +96749,101 @@ entities: - type: Transform pos: 12.5,-54.5 parent: 2 - - uid: 15451 + - uid: 15173 components: - type: Transform - pos: 41.5,43.5 + pos: 72.5,-21.5 parent: 2 - - uid: 15452 + - uid: 15180 components: - type: Transform - pos: 41.5,45.5 + pos: 41.5,41.5 parent: 2 - - uid: 15459 + - uid: 15184 components: - type: Transform - pos: 75.5,-19.5 + rot: 3.141592653589793 rad + pos: 43.5,44.5 + parent: 2 + - uid: 15363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,32.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,54.5 + parent: 2 + - uid: 15372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,40.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,21.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,25.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: 72.5,-22.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: 76.5,-20.5 + parent: 2 + - uid: 15540 + components: + - type: Transform + pos: 76.5,-21.5 + parent: 2 + - uid: 15541 + components: + - type: Transform + pos: 76.5,-22.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 2 + - uid: 15564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,21.5 + parent: 2 + - uid: 15565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,21.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,5.5 parent: 2 - proto: WallReinforcedRust entities: @@ -92691,6 +96934,12 @@ entities: - type: Transform pos: 3.5,-2.5 parent: 2 + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,17.5 + parent: 2 - uid: 186 components: - type: Transform @@ -92836,6 +97085,12 @@ entities: - type: Transform pos: 10.5,32.5 parent: 2 + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,3.5 + parent: 2 - uid: 452 components: - type: Transform @@ -92881,6 +97136,12 @@ entities: - type: Transform pos: 10.5,-12.5 parent: 2 + - uid: 474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,38.5 + parent: 2 - uid: 475 components: - type: Transform @@ -93826,6 +98087,11 @@ entities: - type: Transform pos: 23.5,-33.5 parent: 2 + - uid: 1774 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 - uid: 1775 components: - type: Transform @@ -93891,6 +98157,11 @@ entities: - type: Transform pos: 29.5,-8.5 parent: 2 + - uid: 1902 + components: + - type: Transform + pos: 68.5,32.5 + parent: 2 - uid: 1949 components: - type: Transform @@ -94181,6 +98452,11 @@ entities: - type: Transform pos: 16.5,32.5 parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 56.5,43.5 + parent: 2 - uid: 2169 components: - type: Transform @@ -94216,35 +98492,48 @@ entities: - type: Transform pos: 23.5,17.5 parent: 2 - - uid: 2244 + - uid: 2256 components: - type: Transform - pos: 29.5,22.5 + pos: 64.5,42.5 parent: 2 - - uid: 2245 + - uid: 2299 components: - type: Transform - pos: 30.5,22.5 + pos: 60.5,42.5 parent: 2 - - uid: 2246 + - uid: 2300 components: - type: Transform - pos: 31.5,22.5 + pos: 56.5,42.5 parent: 2 - - uid: 2247 + - uid: 2310 components: - type: Transform - pos: 29.5,19.5 + pos: 60.5,45.5 parent: 2 - - uid: 2248 + - uid: 2354 components: - type: Transform - pos: 30.5,19.5 + rot: 3.141592653589793 rad + pos: 56.5,44.5 parent: 2 - - uid: 2249 + - uid: 2360 components: - type: Transform - pos: 31.5,19.5 + rot: 3.141592653589793 rad + pos: 64.5,46.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,41.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 49.5,16.5 parent: 2 - uid: 2496 components: @@ -94356,11 +98645,6 @@ entities: - type: Transform pos: 34.5,12.5 parent: 2 - - uid: 2562 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - uid: 2668 components: - type: Transform @@ -94731,50 +99015,10 @@ entities: - type: Transform pos: 67.5,6.5 parent: 2 - - uid: 3040 - components: - - type: Transform - pos: 56.5,8.5 - parent: 2 - - uid: 3041 - components: - - type: Transform - pos: 56.5,9.5 - parent: 2 - - uid: 3042 - components: - - type: Transform - pos: 56.5,10.5 - parent: 2 - - uid: 3043 - components: - - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 3044 - components: - - type: Transform - pos: 56.5,12.5 - parent: 2 - - uid: 3051 - components: - - type: Transform - pos: 46.5,20.5 - parent: 2 - - uid: 3053 - components: - - type: Transform - pos: 49.5,16.5 - parent: 2 - uid: 3054 components: - type: Transform - pos: 50.5,16.5 - parent: 2 - - uid: 3055 - components: - - type: Transform - pos: 51.5,16.5 + pos: 54.5,22.5 parent: 2 - uid: 3056 components: @@ -94811,25 +99055,42 @@ entities: - type: Transform pos: 49.5,12.5 parent: 2 - - uid: 3356 + - uid: 3080 components: - type: Transform - pos: 68.5,46.5 + rot: 1.5707963267948966 rad + pos: 64.5,45.5 parent: 2 - - uid: 3357 + - uid: 3092 components: - type: Transform - pos: 68.5,45.5 + pos: 68.5,36.5 parent: 2 - - uid: 3358 + - uid: 3128 components: - type: Transform - pos: 68.5,44.5 + rot: 3.141592653589793 rad + pos: 54.5,46.5 parent: 2 - - uid: 3359 + - uid: 3130 components: - type: Transform - pos: 68.5,43.5 + pos: 42.5,22.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: 56.5,41.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: 65.5,36.5 parent: 2 - uid: 3360 components: @@ -94841,11 +99102,6 @@ entities: - type: Transform pos: 68.5,40.5 parent: 2 - - uid: 3381 - components: - - type: Transform - pos: 68.5,41.5 - parent: 2 - uid: 3382 components: - type: Transform @@ -94856,16 +99112,6 @@ entities: - type: Transform pos: 68.5,37.5 parent: 2 - - uid: 3388 - components: - - type: Transform - pos: 68.5,38.5 - parent: 2 - - uid: 3396 - components: - - type: Transform - pos: 66.5,45.5 - parent: 2 - uid: 3414 components: - type: Transform @@ -94881,31 +99127,21 @@ entities: - type: Transform pos: 67.5,30.5 parent: 2 - - uid: 3441 - components: - - type: Transform - pos: 68.5,27.5 - parent: 2 - uid: 3442 components: - type: Transform pos: 68.5,29.5 parent: 2 - - uid: 3443 - components: - - type: Transform - pos: 68.5,33.5 - parent: 2 - - uid: 3444 - components: - - type: Transform - pos: 68.5,34.5 - parent: 2 - uid: 3461 components: - type: Transform pos: 14.5,29.5 parent: 2 + - uid: 3490 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 - uid: 3523 components: - type: Transform @@ -94951,16 +99187,6 @@ entities: - type: Transform pos: 79.5,9.5 parent: 2 - - uid: 3570 - components: - - type: Transform - pos: 78.5,11.5 - parent: 2 - - uid: 3571 - components: - - type: Transform - pos: 77.5,11.5 - parent: 2 - uid: 3572 components: - type: Transform @@ -95024,12 +99250,7 @@ entities: - uid: 3585 components: - type: Transform - pos: 79.5,11.5 - parent: 2 - - uid: 3586 - components: - - type: Transform - pos: 76.5,11.5 + pos: 59.5,50.5 parent: 2 - uid: 3598 components: @@ -95071,11 +99292,6 @@ entities: - type: Transform pos: 65.5,13.5 parent: 2 - - uid: 3666 - components: - - type: Transform - pos: 59.5,12.5 - parent: 2 - uid: 3680 components: - type: Transform @@ -95376,6 +99592,11 @@ entities: - type: Transform pos: 28.5,-20.5 parent: 2 + - uid: 4397 + components: + - type: Transform + pos: 70.5,28.5 + parent: 2 - uid: 5057 components: - type: Transform @@ -95386,25 +99607,20 @@ entities: - type: Transform pos: 40.5,-11.5 parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 70.5,27.5 + parent: 2 - uid: 5174 components: - type: Transform pos: 76.5,6.5 parent: 2 - - uid: 5401 + - uid: 5309 components: - type: Transform - pos: 63.5,18.5 - parent: 2 - - uid: 5402 - components: - - type: Transform - pos: 63.5,19.5 - parent: 2 - - uid: 5404 - components: - - type: Transform - pos: 63.5,20.5 + pos: 65.5,42.5 parent: 2 - uid: 5420 components: @@ -95416,30 +99632,26 @@ entities: - type: Transform pos: 10.5,33.5 parent: 2 - - uid: 5441 + - uid: 5424 components: - type: Transform - pos: 71.5,38.5 + pos: 23.5,34.5 parent: 2 - - uid: 5442 + - uid: 5433 components: - type: Transform - pos: 70.5,38.5 + pos: 24.5,34.5 parent: 2 - - uid: 5443 + - uid: 5487 components: - type: Transform - pos: 69.5,38.5 + rot: 1.5707963267948966 rad + pos: 47.5,20.5 parent: 2 - - uid: 5748 + - uid: 5496 components: - type: Transform - pos: 56.5,21.5 - parent: 2 - - uid: 5749 - components: - - type: Transform - pos: 57.5,21.5 + pos: 68.5,34.5 parent: 2 - uid: 5785 components: @@ -95456,26 +99668,29 @@ entities: - type: Transform pos: 28.5,-7.5 parent: 2 - - uid: 6117 + - uid: 6198 components: - type: Transform - pos: 55.5,21.5 + rot: 3.141592653589793 rad + pos: 65.5,38.5 parent: 2 - - uid: 6128 + - uid: 6212 components: - type: Transform - pos: 53.5,21.5 - parent: 2 - - uid: 6138 - components: - - type: Transform - pos: 53.5,22.5 + rot: 3.141592653589793 rad + pos: 65.5,37.5 parent: 2 - uid: 6481 components: - type: Transform pos: 41.5,-2.5 parent: 2 + - uid: 6487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,46.5 + parent: 2 - uid: 6494 components: - type: Transform @@ -95506,6 +99721,23 @@ entities: - type: Transform pos: 29.5,3.5 parent: 2 + - uid: 6521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,46.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,40.5 + parent: 2 - uid: 6574 components: - type: Transform @@ -95546,11 +99778,96 @@ entities: - type: Transform pos: 75.5,5.5 parent: 2 + - uid: 7250 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 - uid: 8169 components: - type: Transform pos: 13.5,32.5 parent: 2 + - uid: 8175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,36.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + pos: 60.5,43.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + pos: 63.5,42.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,18.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: 77.5,10.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,45.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: 64.5,37.5 + parent: 2 + - uid: 8506 + components: + - type: Transform + pos: 64.5,42.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,41.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,45.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: 62.5,42.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: 60.5,46.5 + parent: 2 - uid: 8805 components: - type: Transform @@ -95601,10 +99918,71 @@ entities: - type: Transform pos: 39.5,-18.5 parent: 2 - - uid: 10026 + - uid: 9238 components: - type: Transform - pos: 16.5,-10.5 + rot: -1.5707963267948966 rad + pos: 41.5,17.5 + parent: 2 + - uid: 9240 + components: + - type: Transform + pos: 59.5,46.5 + parent: 2 + - uid: 9256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,52.5 + parent: 2 + - uid: 9260 + components: + - type: Transform + pos: 68.5,35.5 + parent: 2 + - uid: 9280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,36.5 + parent: 2 + - uid: 9298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,46.5 + parent: 2 + - uid: 9300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,45.5 + parent: 2 + - uid: 9334 + components: + - type: Transform + pos: 64.5,37.5 + parent: 2 + - uid: 9340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,46.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + pos: 78.5,10.5 + parent: 2 + - uid: 9418 + components: + - type: Transform + pos: 60.5,41.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 70.5,29.5 parent: 2 - uid: 10027 components: @@ -95621,11 +99999,45 @@ entities: - type: Transform pos: 14.5,-8.5 parent: 2 + - uid: 10039 + components: + - type: Transform + pos: 68.5,28.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,36.5 + parent: 2 + - uid: 10313 + components: + - type: Transform + pos: 68.5,33.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,9.5 + parent: 2 - uid: 10812 components: - type: Transform pos: 89.5,-17.5 parent: 2 + - uid: 10839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,44.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,11.5 + parent: 2 - uid: 11311 components: - type: Transform @@ -95636,6 +100048,11 @@ entities: - type: Transform pos: 75.5,4.5 parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 51.5,16.5 + parent: 2 - uid: 11415 components: - type: Transform @@ -95666,16 +100083,64 @@ entities: - type: Transform pos: 76.5,8.5 parent: 2 + - uid: 12550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2 - uid: 13189 components: - type: Transform pos: 11.5,14.5 parent: 2 + - uid: 13591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,12.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,44.5 + parent: 2 + - uid: 13651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,8.5 + parent: 2 - uid: 13684 components: - type: Transform pos: 11.5,19.5 parent: 2 + - uid: 14367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,16.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,46.5 + parent: 2 + - uid: 14582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,46.5 + parent: 2 + - uid: 14587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,45.5 + parent: 2 - uid: 14725 components: - type: Transform @@ -95691,11 +100156,70 @@ entities: - type: Transform pos: 16.5,24.5 parent: 2 + - uid: 14827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 + - uid: 14913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,5.5 + parent: 2 - uid: 15006 components: - type: Transform pos: 50.5,-14.5 parent: 2 + - uid: 15413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,53.5 + parent: 2 + - uid: 15416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,45.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,46.5 + parent: 2 + - uid: 15418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,44.5 + parent: 2 + - uid: 15419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,43.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,47.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,43.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + pos: 53.5,50.5 + parent: 2 - proto: WallSolidRust entities: - uid: 7884 @@ -95710,10 +100234,10 @@ entities: parent: 2 - proto: WallWeaponCapacitorRecharger entities: - - uid: 2909 + - uid: 5675 components: - type: Transform - pos: 36.5,20.5 + pos: 49.5,34.5 parent: 2 - proto: WardrobeBlueFilled entities: @@ -95793,26 +100317,40 @@ entities: - 0 - proto: WardrobePrisonFilled entities: - - uid: 8686 + - uid: 2239 components: - type: Transform - pos: 29.5,21.5 + anchored: True + pos: 34.5,25.5 parent: 2 - - uid: 8687 + - type: Physics + bodyType: Static + - uid: 8397 components: - type: Transform - pos: 29.5,17.5 - parent: 2 - - uid: 13591 - components: - - type: Transform - pos: 58.5,31.5 - parent: 2 - - uid: 13592 - components: - - type: Transform - pos: 58.5,41.5 + anchored: True + pos: 43.5,18.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: Physics + bodyType: Static - proto: WardrobeVirologyFilled entities: - uid: 10910 @@ -95884,21 +100422,31 @@ entities: parent: 2 - proto: WaterCooler entities: - - uid: 2449 - components: - - type: Transform - pos: 24.5,33.5 - parent: 2 - uid: 5643 components: - type: Transform pos: 14.5,-23.5 parent: 2 + - uid: 9143 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + pos: 46.5,44.5 + parent: 2 - uid: 11430 components: - type: Transform pos: 76.5,3.5 parent: 2 + - uid: 14792 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 - proto: WaterTankFull entities: - uid: 606 @@ -95921,30 +100469,25 @@ entities: - type: Transform pos: 29.5,-17.5 parent: 2 - - uid: 10442 + - uid: 7790 components: - type: Transform - pos: 45.5,7.5 + pos: 62.5,43.5 parent: 2 - uid: 10790 components: - type: Transform pos: 57.5,-17.5 parent: 2 - - uid: 10838 - components: - - type: Transform - pos: 66.5,47.5 - parent: 2 - uid: 12407 components: - type: Transform pos: 46.5,-19.5 parent: 2 - - uid: 13608 + - uid: 12797 components: - type: Transform - pos: 53.5,40.5 + pos: 47.5,7.5 parent: 2 - uid: 13875 components: @@ -95963,6 +100506,11 @@ entities: - type: Transform pos: 47.5,-3.5 parent: 2 + - uid: 8559 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 - proto: WaterVaporCanister entities: - uid: 1923 @@ -95970,68 +100518,35 @@ entities: - type: Transform pos: 50.5,-29.5 parent: 2 - - uid: 7845 + - uid: 12083 components: - type: Transform - pos: 58.5,11.5 + pos: 58.5,9.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 2050 - components: - - type: Transform - pos: 34.5,41.5 - parent: 2 - - uid: 3235 - components: - - type: Transform - pos: 36.5,26.5 - parent: 2 - uid: 7979 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 - - uid: 8537 + - uid: 8373 components: - type: Transform - pos: 34.5,17.5 + rot: 1.5707963267948966 rad + pos: 37.5,32.5 parent: 2 - - uid: 8691 + - uid: 10608 components: - type: Transform - pos: 39.5,21.5 + pos: 28.5,31.5 parent: 2 - - uid: 11146 + - uid: 11664 components: - type: Transform - pos: 44.5,23.5 + pos: 48.5,18.5 parent: 2 - - type: ContainerContainer - containers: - WeaponCapacitorCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Physics - canCollide: False - uid: 12172 components: - type: Transform @@ -96044,61 +100559,106 @@ entities: - type: Transform pos: 90.5,28.5 parent: 2 -- proto: WeaponDisabler +- proto: WeaponEnergyTurretAI entities: - - uid: 2287 - components: - - type: Transform - pos: 36.50164,27.085938 - parent: 2 - - uid: 10139 - components: - - type: Transform - pos: 36.48081,27.346535 - parent: 2 -- proto: WeaponSubMachineGunWt550 - entities: - - uid: 7940 - components: - - type: Transform - pos: 45.454727,23.618372 - parent: 2 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 14238 - components: - - type: Transform - pos: 86.5,32.5 - parent: 2 - - uid: 14240 - components: - - type: Transform - pos: 84.5,32.5 - parent: 2 - - uid: 14263 - components: - - type: Transform - pos: 82.5,29.5 - parent: 2 - - uid: 14367 - components: - - type: Transform - pos: 92.5,33.5 - parent: 2 - - uid: 14521 + - uid: 7956 components: - type: Transform + rot: 3.141592653589793 rad pos: 96.5,33.5 parent: 2 - - uid: 14522 + - type: DeviceNetwork + deviceLists: + - 3821 + - uid: 8449 components: - type: Transform pos: 96.5,27.5 parent: 2 - - uid: 14523 + - type: DeviceNetwork + deviceLists: + - 3821 + - uid: 8600 components: - type: Transform - pos: 92.5,27.5 + pos: 85.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9445 + - uid: 9459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 92.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3821 +- proto: WeaponEnergyTurretAIControlPanel + entities: + - uid: 3821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 97.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 8449 + - 9459 + - 7956 + - uid: 9445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 8600 +- proto: WeaponEnergyTurretSecurity + entities: + - uid: 14086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6314 +- proto: WeaponEnergyTurretSecurityControlPanel + entities: + - uid: 6314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 14086 +- proto: WeaponLaserCarbinePractice + entities: + - uid: 2366 + components: + - type: Transform + pos: 50.6435,34.509346 + parent: 2 +- proto: WeaponShotgunEnforcerRubber + entities: + - uid: 5153 + components: + - type: Transform + pos: 44.511932,25.36125 + parent: 2 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 1999 + components: + - type: Transform + pos: 44.47453,43.768467 parent: 2 - proto: WeedSpray entities: @@ -96119,6 +100679,13 @@ entities: - type: Transform pos: 32.547882,-30.463009 parent: 2 +- proto: WelderIndustrialAdvanced + entities: + - uid: 8683 + components: + - type: Transform + pos: 43.46133,-35.475647 + parent: 2 - proto: WeldingFuelTankFull entities: - uid: 800 @@ -96131,20 +100698,10 @@ entities: - type: Transform pos: 17.5,26.5 parent: 2 - - uid: 3502 + - uid: 3139 components: - type: Transform - pos: 36.5,36.5 - parent: 2 - - uid: 5391 - components: - - type: Transform - pos: 47.5,9.5 - parent: 2 - - uid: 5531 - components: - - type: Transform - pos: 65.5,20.5 + pos: 61.5,43.5 parent: 2 - uid: 5705 components: @@ -96156,6 +100713,11 @@ entities: - type: Transform pos: 30.5,-17.5 parent: 2 + - uid: 9602 + components: + - type: Transform + pos: 46.5,7.5 + parent: 2 - uid: 9899 components: - type: Transform @@ -96181,6 +100743,11 @@ entities: - type: Transform pos: -15.5,-24.5 parent: 2 + - uid: 15682 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 - proto: WetFloorSign entities: - uid: 12306 @@ -96193,6 +100760,13 @@ entities: - type: Transform pos: 11.536887,-11.504442 parent: 2 +- proto: WheatSeeds + entities: + - uid: 5475 + components: + - type: Transform + pos: 57.48187,43.34446 + parent: 2 - proto: Windoor entities: - uid: 308 @@ -96225,6 +100799,54 @@ entities: rot: 3.141592653589793 rad pos: 38.5,4.5 parent: 2 + - uid: 3349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2224: + - - DoorStatus + - Close + 8633: + - - DoorStatus + - Close + - uid: 3483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3513: + - - DoorStatus + - Close + 14627: + - - DoorStatus + - Close + - uid: 3484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14627: + - - DoorStatus + - Close + 3513: + - - DoorStatus + - Close - uid: 7775 components: - type: Transform @@ -96237,21 +100859,52 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-1.5 parent: 2 -- proto: WindoorBarKitchenLocked - entities: - - uid: 3520 + - uid: 10315 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-9.5 + pos: 28.5,31.5 parent: 2 -- proto: WindoorCargoLocked - entities: - - uid: 7250 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8633: + - - DoorStatus + - Close + 2224: + - - DoorStatus + - Close + - uid: 14990 components: - type: Transform - pos: 9.5,29.5 + pos: 7.5,29.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11629: + - - DoorStatus + - Close + 15185: + - - DoorStatus + - Close + - uid: 15190 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11629: + - - DoorStatus + - Close + 15185: + - - DoorStatus + - Close - proto: WindoorChapelLocked entities: - uid: 9730 @@ -96303,12 +100956,6 @@ entities: - type: Transform pos: 77.5,-5.5 parent: 2 - - uid: 5876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 2 - uid: 6852 components: - type: Transform @@ -96325,30 +100972,21 @@ entities: rot: -1.5707963267948966 rad pos: 113.5,-19.5 parent: 2 + - uid: 9726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,29.5 + parent: 2 - uid: 10121 components: - type: Transform pos: 80.5,-2.5 parent: 2 - - uid: 13596 + - uid: 10312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,40.5 - parent: 2 - - uid: 13597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,32.5 - parent: 2 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 13091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 + pos: 69.5,34.5 parent: 2 - proto: WindoorSecureAtmosphericsLocked entities: @@ -96364,6 +101002,49 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-23.5 parent: 2 +- proto: WindoorSecureBrigLocked + entities: + - uid: 2224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10315: + - - DoorStatus + - Close + - uid: 8633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10315: + - - DoorStatus + - Close + 3349: + - - DoorStatus + - Close + - uid: 10770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,29.5 + parent: 2 - proto: WindoorSecureCargoLocked entities: - uid: 10119 @@ -96404,6 +101085,18 @@ entities: - type: Transform pos: 14.5,38.5 parent: 2 + - uid: 8538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 86.5,31.5 + parent: 2 + - uid: 8666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,31.5 + parent: 2 - uid: 14210 components: - type: Transform @@ -96456,6 +101149,12 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-23.5 parent: 2 + - uid: 5826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 2 - uid: 5858 components: - type: Transform @@ -96474,6 +101173,12 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 + - uid: 12330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 2 - uid: 15423 components: - type: Transform @@ -96514,12 +101219,38 @@ entities: parent: 2 - proto: WindoorSecureSalvageLocked entities: - - uid: 14738 + - uid: 11629 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,29.5 + pos: 6.5,29.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15190: + - - DoorStatus + - Close + 14990: + - - DoorStatus + - Close + - uid: 15185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14990: + - - DoorStatus + - Close + 15190: + - - DoorStatus + - Close - proto: WindoorSecureScienceLocked entities: - uid: 3513 @@ -96528,22 +101259,37 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,18.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3484: + - - DoorStatus + - Close + 3483: + - - DoorStatus + - Close - uid: 7848 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 8669 + - uid: 14627 components: - type: Transform - pos: 62.5,26.5 - parent: 2 - - uid: 8697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,26.5 + rot: 1.5707963267948966 rad + pos: 48.5,17.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3484: + - - DoorStatus + - Close + 3483: + - - DoorStatus + - Close - proto: WindoorSecureSecurityLawyerLocked entities: - uid: 1077 @@ -96554,29 +101300,10 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 2258 + - uid: 5116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,20.5 - parent: 2 - - uid: 2259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,18.5 - parent: 2 - - uid: 2421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,25.5 - parent: 2 - - uid: 2429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,25.5 + pos: 35.5,32.5 parent: 2 - uid: 7738 components: @@ -96595,19 +101322,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 2 - - uid: 12661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - proto: Window entities: - - uid: 142 - components: - - type: Transform - pos: 38.5,-10.5 - parent: 2 - uid: 289 components: - type: Transform @@ -96723,16 +101439,6 @@ entities: - type: Transform pos: 66.5,-18.5 parent: 2 - - uid: 4321 - components: - - type: Transform - pos: 7.5,29.5 - parent: 2 - - uid: 4322 - components: - - type: Transform - pos: 6.5,29.5 - parent: 2 - uid: 4957 components: - type: Transform @@ -96884,6 +101590,12 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,4.5 parent: 2 + - uid: 5141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 - uid: 7076 components: - type: Transform @@ -96932,14 +101644,14 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,4.5 parent: 2 -- proto: WindowReinforcedDirectional - entities: - - uid: 224 + - uid: 15812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-15.5 + rot: -1.5707963267948966 rad + pos: 38.5,-10.5 parent: 2 +- proto: WindowReinforcedDirectional + entities: - uid: 673 components: - type: Transform @@ -96968,12 +101680,6 @@ entities: - type: Transform pos: 25.5,-30.5 parent: 2 - - uid: 1481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,8.5 - parent: 2 - uid: 2158 components: - type: Transform @@ -96986,17 +101692,16 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,48.5 parent: 2 - - uid: 2410 + - uid: 2428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,17.5 + pos: 37.5,32.5 parent: 2 - - uid: 2679 + - uid: 3385 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,32.5 + pos: 7.5,29.5 parent: 2 - uid: 5034 components: @@ -97010,6 +101715,12 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,32.5 parent: 2 + - uid: 5336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,29.5 + parent: 2 - uid: 5364 components: - type: Transform @@ -97022,6 +101733,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,32.5 parent: 2 + - uid: 5471 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 - uid: 5656 components: - type: Transform @@ -97045,12 +101761,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-32.5 parent: 2 - - uid: 5866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-15.5 - parent: 2 - uid: 5867 components: - type: Transform @@ -97069,44 +101779,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-29.5 parent: 2 - - uid: 6198 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 6327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,28.5 - parent: 2 - - uid: 6328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,30.5 - parent: 2 - - uid: 6329 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 6330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,26.5 - parent: 2 - - uid: 6331 - components: - - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 6332 - components: - - type: Transform - pos: 30.5,25.5 - parent: 2 - uid: 6832 components: - type: Transform @@ -97119,12 +101791,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,0.5 parent: 2 - - uid: 7762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - uid: 7785 components: - type: Transform @@ -97249,6 +101915,22 @@ entities: rot: -1.5707963267948966 rad pos: 113.5,-18.5 parent: 2 + - uid: 9155 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 9458 + components: + - type: Transform + pos: 70.5,34.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,29.5 + parent: 2 - uid: 9613 components: - type: Transform @@ -97279,10 +101961,11 @@ entities: rot: 3.141592653589793 rad pos: 29.5,5.5 parent: 2 - - uid: 12766 + - uid: 10573 components: - type: Transform - pos: 46.5,37.5 + rot: 3.141592653589793 rad + pos: 44.5,29.5 parent: 2 - uid: 12790 components: @@ -97308,29 +101991,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,0.5 parent: 2 - - uid: 13435 - components: - - type: Transform - pos: 58.5,12.5 - parent: 2 - - uid: 13541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,33.5 - parent: 2 - - uid: 13594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,41.5 - parent: 2 - - uid: 13595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,31.5 - parent: 2 - uid: 14199 components: - type: Transform @@ -97355,18 +102015,6 @@ entities: rot: 3.141592653589793 rad pos: 79.5,27.5 parent: 2 - - uid: 14235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,32.5 - parent: 2 - - uid: 14249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,32.5 - parent: 2 - uid: 14357 components: - type: Transform @@ -97396,17 +102044,35 @@ entities: - type: Transform pos: 82.5,36.5 parent: 2 - - uid: 15085 + - uid: 14664 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,30.5 + pos: 24.5,33.5 parent: 2 - - uid: 15086 + - uid: 14825 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,29.5 + pos: 31.5,31.5 + parent: 2 + - uid: 14855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,32.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,29.5 parent: 2 - uid: 15424 components: @@ -97442,6 +102108,56 @@ entities: - type: Transform pos: 34.5,4.5 parent: 2 +- proto: WoodenBench + entities: + - uid: 982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,8.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,5.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + - uid: 15653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 - proto: Wrench entities: - uid: 604 @@ -97449,14 +102165,22 @@ entities: - type: Transform pos: 30.501482,-14.418215 parent: 2 - - uid: 5325 - components: - - type: Transform - pos: 55.374165,17.598963 - parent: 2 - uid: 11127 components: - type: Transform pos: 54.489273,-14.340717 parent: 2 + - uid: 13499 + components: + - type: Transform + parent: 13141 + - type: Physics + canCollide: False +- proto: ZiptiesBroken + entities: + - uid: 9457 + components: + - type: Transform + pos: 71.78979,31.37478 + parent: 2 ... diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index 7ea5fbc9d0..7410ce24c5 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -1,3 +1,4 @@ + - type: gameMap id: Packed mapName: 'Packed' @@ -8,57 +9,57 @@ Packed: stationProto: StandardNanotrasenStation components: - - type: StationNameSetup - mapNameTemplate: '{0} Packed {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'VG' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_crimson.yml - - type: StationJobs - availableJobs: # 46 jobs total w/o latejoins & interns, 57 jobs total w/ latejoins & interns - #command (7) - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - HeadOfSecurity: [ 1, 1 ] - ChiefMedicalOfficer: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - ResearchDirector: [ 1, 1 ] - Quartermaster: [ 1, 1 ] - #service (8 - 10) - Bartender: [ 1, 1 ] - Botanist: [ 1, 2 ] - Chef: [ 1, 1 ] - Janitor: [ 1, 2 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - #engineering (6) - AtmosphericTechnician: [ 2, 2 ] - StationEngineer: [ 4, 4 ] - TechnicalAssistant: [ 3, 3 ] #intern, not counted - #medical (6) - Chemist: [ 2, 2 ] - MedicalDoctor: [ 3, 3 ] - MedicalIntern: [ 2, 2 ] #intern, not counted - Paramedic: [ 1, 1 ] - #science (4) - Scientist: [ 4, 4 ] - ResearchAssistant: [ 2, 2 ] #intern, not counted - #security (6) - Warden: [ 1, 1 ] - SecurityOfficer: [ 3, 3 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 2, 2 ] #intern, not counted - Lawyer: [ 1, 1 ] - #supply (4) - SalvageSpecialist: [ 2, 2 ] - CargoTechnician: [ 2, 2 ] - #civilian (3+) - Passenger: [ -1, -1 ] #infinite, not counted - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] - #silicon (2) - StationAi: [ 1, 1 ] - Borg: [ 1, 1 ] + - type: StationNameSetup + mapNameTemplate: '{0} Packed {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'VG' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_crimson.yml + - type: StationJobs + availableJobs: # 47 jobs total w/o latejoins & interns, 58 jobs total w/ latejoins & interns + #command (7) + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + HeadOfSecurity: [ 1, 1 ] + ChiefMedicalOfficer: [ 1, 1 ] + ChiefEngineer: [ 1, 1 ] + ResearchDirector: [ 1, 1 ] + Quartermaster: [ 1, 1 ] + #service (8 - 10) + Bartender: [ 1, 1 ] + Botanist: [ 1, 2 ] + Chef: [ 1, 1 ] + Janitor: [ 1, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering (6) + AtmosphericTechnician: [ 2, 2 ] + StationEngineer: [ 4, 4 ] + TechnicalAssistant: [ 3, 3 ] #intern, not counted + #medical (6) + Chemist: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + MedicalIntern: [ 2, 2 ] #intern, not counted + Paramedic: [ 1, 1 ] + #science (4) + Scientist: [ 4, 4 ] + ResearchAssistant: [ 2, 2 ] #intern, not counted + #security (6) + Warden: [ 1, 1 ] + SecurityOfficer: [ 3, 3 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 2, 2 ] #intern, not counted + Lawyer: [ 1, 1 ] + #supply (4) + SalvageSpecialist: [ 2, 2 ] + CargoTechnician: [ 2, 2 ] + #civilian (3+) + Passenger: [ -1, -1 ] #infinite, not counted + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + #silicon (3) + StationAi: [ 1, 1 ] + Borg: [ 2, 2 ] From 9f83cc7671a2c16cbca1c90c771bd0171f320af9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 17 Aug 2025 19:01:57 +0000 Subject: [PATCH 030/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 93853d75c7..c399fd3d2a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: kosticia - changes: - - message: Moths can no longer eat rubber toys. - type: Fix - id: 8346 - time: '2025-04-25T07:20:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34543 - author: chromiumboy changes: - message: Gas vent under-pressure lockout releases are now performed using the @@ -3954,3 +3947,14 @@ id: 8858 time: '2025-08-16T23:04:12.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39674 +- author: Nox38, ArtisticRoomba + changes: + - message: On Packed, added Genpop and revamped security. + type: Add + - message: On Packed, revamped the north maints area above security. + type: Tweak + - message: On Packed, revamped Science. + type: Tweak + id: 8859 + time: '2025-08-17T19:00:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38339 From d58ef22d62795c1c4393c1eb09d33c1ff78087c6 Mon Sep 17 00:00:00 2001 From: ruddygreat <53099277+ruddygreat@users.noreply.github.com> Date: Sun, 17 Aug 2025 20:09:15 +0100 Subject: [PATCH 031/194] Make diagonal grilles transparent (#39580) * tiny fix * also fix the window bug --------- Co-authored-by: ruddygreat --- Resources/Prototypes/Entities/Structures/Walls/grille.yml | 4 ++-- .../Prototypes/Entities/Structures/Windows/clockwork.yml | 1 + Resources/Prototypes/Entities/Structures/Windows/mining.yml | 1 + Resources/Prototypes/Entities/Structures/Windows/plasma.yml | 1 + .../Prototypes/Entities/Structures/Windows/plastitanium.yml | 1 + .../Prototypes/Entities/Structures/Windows/reinforced.yml | 1 + Resources/Prototypes/Entities/Structures/Windows/rplasma.yml | 1 + Resources/Prototypes/Entities/Structures/Windows/ruranium.yml | 1 + Resources/Prototypes/Entities/Structures/Windows/shuttle.yml | 1 + Resources/Prototypes/Entities/Structures/Windows/uranium.yml | 1 + 10 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml index d9ced96d0c..55b06f1e60 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml @@ -198,7 +198,7 @@ mask: - FullTileMask layer: - - WallLayer + - GlassLayer - type: Construction graph: GrilleDiagonal node: grilleDiagonal @@ -236,7 +236,7 @@ mask: - FullTileMask layer: - - WallLayer + - GlassLayer - type: Construction graph: GrilleDiagonal node: clockworkGrilleDiagonal diff --git a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml index 8cc6312fdf..876fefd332 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml @@ -125,6 +125,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/mining.yml b/Resources/Prototypes/Entities/Structures/Windows/mining.yml index 9565ee6555..8e276b0bb9 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/mining.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/mining.yml @@ -67,6 +67,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml index 532c18b253..9e73dce7a1 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml @@ -125,6 +125,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml index cf7303b7bb..295e9d59ce 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml @@ -138,6 +138,7 @@ - type: Tag tags: - Diagonal + - Window - type: Icon sprite: Structures/Windows/plastitanium_window_diagonal.rsi state: state0 diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml index 9981d50ab5..b9d4e6fd63 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml @@ -132,6 +132,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index 8b2214b037..520c85c8bb 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -130,6 +130,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml index b1ab547f48..0030517593 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml @@ -127,6 +127,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml index 75f6b1fc83..6250f2d194 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml @@ -70,6 +70,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml index 82905f90a1..7f7ec168c4 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml @@ -120,6 +120,7 @@ - type: Tag tags: - Diagonal + - Window - type: IconSmooth mode: Diagonal key: windows From 5630bf6bde3cb6cc5a2f4817ed463c3e10b54619 Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Mon, 18 Aug 2025 07:15:38 +1200 Subject: [PATCH 032/194] Removes duplicate CE and paramedic jumpsuits (#39520) --- .../Maps/Shuttles/ShuttleEvent/flatline.yml | 2 +- .../Clothing/Uniforms/ship_vs_ship.yml | 22 --------------- .../Roles/Jobs/Fun/visitors_startinggear.yml | 2 +- .../ce_nt.rsi/equipped-INNERCLOTHING.png | Bin 723 -> 0 bytes .../Uniforms/Jumpsuit/ce_nt.rsi/icon.png | Bin 379 -> 0 bytes .../Jumpsuit/ce_nt.rsi/inhand-left.png | Bin 287 -> 0 bytes .../Jumpsuit/ce_nt.rsi/inhand-right.png | Bin 321 -> 0 bytes .../Uniforms/Jumpsuit/ce_nt.rsi/meta.json | 26 ------------------ .../equipped-INNERCLOTHING.png | Bin 694 -> 0 bytes .../Jumpsuit/paramedic_nt.rsi/icon.png | Bin 360 -> 0 bytes .../Jumpsuit/paramedic_nt.rsi/inhand-left.png | Bin 287 -> 0 bytes .../paramedic_nt.rsi/inhand-right.png | Bin 321 -> 0 bytes .../Jumpsuit/paramedic_nt.rsi/meta.json | 26 ------------------ Resources/migration.yml | 4 +++ 14 files changed, 6 insertions(+), 76 deletions(-) delete mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/meta.json delete mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/equipped-INNERCLOTHING.png delete mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/icon.png delete mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-left.png delete mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-right.png delete mode 100644 Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/meta.json diff --git a/Resources/Maps/Shuttles/ShuttleEvent/flatline.yml b/Resources/Maps/Shuttles/ShuttleEvent/flatline.yml index b623ec6813..477d3d6433 100644 --- a/Resources/Maps/Shuttles/ShuttleEvent/flatline.yml +++ b/Resources/Maps/Shuttles/ShuttleEvent/flatline.yml @@ -859,7 +859,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitParamedicNT +- proto: ClothingUniformJumpsuitParamedic entities: - uid: 213 components: diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/ship_vs_ship.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/ship_vs_ship.yml index b19f70881d..c6945b9de2 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/ship_vs_ship.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/ship_vs_ship.yml @@ -49,17 +49,6 @@ sprite: Clothing/Uniforms/Jumpsuit/repairman_syndie.rsi #Paramedic -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitParamedicNT - name: paramedic jumpsuit - description: A basic white & blue jumpsuit made for Nanotrasen paramedics stationed in combat sectors. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi - - type: entity parent: [ ClothingUniformBase, BaseSyndicateContraband ] id: ClothingUniformJumpsuitParamedicSyndie @@ -73,17 +62,6 @@ #HEADS OF STAFF #Chief Engineer -- type: entity - parent: ClothingUniformBase - id: ClothingUniformJumpsuitChiefEngineerNT - name: chief engineer jumpsuit - description: It is often joked that the role of the combat-sector Chief Engineer is where the actual, logistically-minded engineers are promoted to. Good luck. - components: - - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/ce_nt.rsi - - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/ce_nt.rsi - - type: entity parent: [ ClothingUniformBase, BaseSyndicateContraband ] id: ClothingUniformJumpsuitChiefEngineerSyndie diff --git a/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml index b7db27a972..ec9537bb55 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml @@ -738,7 +738,7 @@ - type: startingGear id: VisitorParamedic equipment: - jumpsuit: ClothingUniformJumpsuitParamedicNT + jumpsuit: ClothingUniformJumpsuitParamedic shoes: ClothingShoesSwat gloves: ClothingHandsGlovesLatex head: ClothingHeadHatParamedicsoft diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/equipped-INNERCLOTHING.png deleted file mode 100644 index c450e31b38784051a78d4c2187c71eaa92cc82fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 723 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`0p2l#}zGR)*+IKw=#g5kgdhC>S&82&T-f5%{JVR7KVf#u7WYk5aUP1_wD z9PCm)Q_RTT%E~G$E32WQ;pWYo+S=MyR<>zr8Plgv-@JJ<(7g0so(3Q#SrX(I{2vEk zU^L;{4phWh;1OBOz`%D1gc(IOyns3x-*~z>hD5l(ofbIxmH|(T=uy60raQ5m6aN4A z-YwKNS?IKR@mrtY6ZRUrtob51r`=SyeueA?W|w+Vhq?Po1*dfUPE9P@r@6wr$J~#x zao4`|XZyw}eyQEEr}uyAAIQ8izy3n+gj3$Nd+Qn2{AZbSKAjoJ`zwCn z$G77}UJNR=GfW?Hp0Z(Z({`{*FlAUJ@S&{c|BtU9>uR*WMv2e+`aURYDr?Mqt*=qn zZ@*o(`id6&j{EP;*GMq%>+&|#IWsT#ew`)eX||KY+5hJmHXZyG6n=GkgJjj7E1_R? zA4K0`w079Se669#DI-ht-?~NXUJHC!x{5W@#QcwjrnbY-WN=9exzpF7CNeBCmg zO_42O-bE3{W17MYiCZ!&j8donVEb)$JR4m3eB3x+%YL9Ss};q z(z2j#od)+5>%4`f?3WC0v9Sw;e_MG)`Xpbs(g9b~_K$sk=F8hI6^lI3bH&l3{bE~= zbDi?coJ|o8LQ7n0fm%f0Mr*zr&Zdi>q##tzj%QTfL1}+Tjn6i^YQ)&W=N| ss<-bjtvOu3+P9s(#`(Y02A%yt2ga?oonpTMm>3v5UHx3vIVCg!03!W5;s5{u diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/icon.png deleted file mode 100644 index 6fe32e0e74878e91e4f6a5d4f315e6704a2b00e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 379 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCikF1AIbU8D?@ZoME0mefsLvs}C(;m{`GZ^XAR}?-&^VGuT>K95`@b`SRsj z-q9}QGlPSJ)6z2R?d?NDL$kB98yg!pZ{D1hl?60OQl=M3GKiN1`33*S3K*U_Jc|P= z;VkfoEM{QfI|Ravq8eTeK*2elE{-7<{%_Cn@--{)uqI4MN@G1eEzpZ#&`9{PG)#qS$(Fq8d)rNyMorB4 z;KDX@mqL1pVd;U7EqfOH=CwF0zo(edtCCT$J|ObL!S82)?qu+E^>bP0l+XkKw;r7a diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-left.png deleted file mode 100644 index ae15d262d7a641a5c2a66ab22b2d0e933dfe7330..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8S0JsguWx2%W?^CB=H}+_ z?;jr@pO~1Kl9G~@mDSkT*wob2*VlLA#EIjjGHZaU8B2ovf*Bm1-ADs+7JIrlhIkx* zJ9#5-vw?uCy^xS@kebI#T|KUYlb(A%?K-qrVS=uh$Hcoq44vohTy%OEZhP~7(boo_ zX9_$Hn+3IQ-J34=VRNa*UIU4huf&^QZfBN`*Ap_gD+n$*(p#VCoFnvjOJdBtnFbRq zBKo5X1Mb+p&rYgIkgoRcDXz48b;W3=@ix8B`LWV}qQV2Xrbk`h2O`7S55IHJjLC|9 d9MW3P`0}*rJX?-PBcO8`JYD@<);T3K0RW_9YL);1 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/ce_nt.rsi/inhand-right.png deleted file mode 100644 index 60bea1b51ac8101c3cf535f7e1a4195dea17a941..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8S0JsguWx2%W?^CB=H}+_ z?;jr@pO~1Kl9G~@mDSkT*wob2*VlLA#EIjjGHZaU8B2ovf*Bm1-ADs+j(WN{hIkxL zPLN<--0r~JYnt^2XV<-9Q$yAs+Q962 zWp&osRa!o*9D!o%r>>4MSnD8E8o!gLTmMd&UU`G@M(u`9qpWv#S9U1&tDJiA^wHCf zl?Po$2b(c;U_M$sf{OCaUUrf6z)W;WU&vBFM`i=4Q5AmCKJ4 P=phDAS3j3^P6Px#1ZP1_K>z@;j|==^1poj5Hc(7dMJh{MM0c5yk&)5S(OQv2B=-pPk-ngtRgvcL=9%fWj{TVN07t$&zqwzrKXu zlubzKKd+*M5M`5JIp-LHa5PGtKJE>I^FIOX{wA_Y)`4gM&*8CwY5@DbYr?7tjJ%#c zd*J-CvzQ?OFjp4WqL238uK<{ZDL^#@-0th!@3-}Sv$)p#{X;+R7OUzf(67a{y1oOj zhxm>G@N^Ihd4S$w0>G<)mth9b$sPiF{(lDG0PCTzu3rN12i?y@UtPZhd`TDJ0#FyA z2G|Z^s;cU~v!ZJVTnK1&~DDDv~Zls$B%3`Vn?AC?y22Rf|l$E6fC}Gmx z2(G;c9Q(ZeN${1=19YD3x~n#!2KXUv)Fw0lH_46oSNR)YRNPe@<{6+a{;iq}5BP$9 c8gLwc0EiRr6Q&hieEboH%jf&6_v>|Nozrm9=Wss;FtZgM)+J z-QA<3qmz@98yXr895@gf8Vc0C_VzA&ASGN94nJ@ErnS zMo|r~2B6?fPZ!4!3;(z0z4;C+@UR4M%;ULGBlWKS#;hr=x~iubZ$&C3+Vix0n;_4k z=%=|gBY$sE*3k&!2-{_?!@wQCH7urCEa1c$Edy8X zsQUPK`m(=`JACS<>czV~gTe~DWM4fae|Bh diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-left.png deleted file mode 100644 index ae15d262d7a641a5c2a66ab22b2d0e933dfe7330..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8S0JsguWx2%W?^CB=H}+_ z?;jr@pO~1Kl9G~@mDSkT*wob2*VlLA#EIjjGHZaU8B2ovf*Bm1-ADs+7JIrlhIkx* zJ9#5-vw?uCy^xS@kebI#T|KUYlb(A%?K-qrVS=uh$Hcoq44vohTy%OEZhP~7(boo_ zX9_$Hn+3IQ-J34=VRNa*UIU4huf&^QZfBN`*Ap_gD+n$*(p#VCoFnvjOJdBtnFbRq zBKo5X1Mb+p&rYgIkgoRcDXz48b;W3=@ix8B`LWV}qQV2Xrbk`h2O`7S55IHJjLC|9 d9MW3P`0}*rJX?-PBcO8`JYD@<);T3K0RW_9YL);1 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/paramedic_nt.rsi/inhand-right.png deleted file mode 100644 index 60bea1b51ac8101c3cf535f7e1a4195dea17a941..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|etpJ}8S0JsguWx2%W?^CB=H}+_ z?;jr@pO~1Kl9G~@mDSkT*wob2*VlLA#EIjjGHZaU8B2ovf*Bm1-ADs+j(WN{hIkxL zPLN<--0r~JYnt^2XV<-9Q$yAs+Q962 zWp&osRa!o*9D!o%r>>4MSnD8E8o!gLTmMd&UU`G@M(u`9qpWv#S9U1&tDJiA^wHCf zl?Po$2b(c;U_M$sf{OCaUUrf6z)W;WU&vBFM`i=4Q5AmCKJ4 P=phDAS3j3^P6 Date: Sun, 17 Aug 2025 12:18:16 -0700 Subject: [PATCH 033/194] fix cl (#39706) --- Resources/Changelog/Changelog.yml | 11 ----------- Resources/Changelog/Maps.yml | 11 +++++++++++ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c399fd3d2a..f5e7377439 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -3947,14 +3947,3 @@ id: 8858 time: '2025-08-16T23:04:12.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39674 -- author: Nox38, ArtisticRoomba - changes: - - message: On Packed, added Genpop and revamped security. - type: Add - - message: On Packed, revamped the north maints area above security. - type: Tweak - - message: On Packed, revamped Science. - type: Tweak - id: 8859 - time: '2025-08-17T19:00:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/38339 diff --git a/Resources/Changelog/Maps.yml b/Resources/Changelog/Maps.yml index f6c3b270fe..21654f0760 100644 --- a/Resources/Changelog/Maps.yml +++ b/Resources/Changelog/Maps.yml @@ -517,4 +517,15 @@ id: 64 time: '2025-08-17T18:50:57.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39455 +- author: Nox38, ArtisticRoomba + changes: + - message: On Packed, added Genpop and revamped security. + type: Add + - message: On Packed, revamped the north maints area above security. + type: Tweak + - message: On Packed, revamped Science. + type: Tweak + id: 65 + time: '2025-08-17T19:00:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38339 Order: 1 From 26badb79142fb7227c1ed1897595e40ad6bfd8d9 Mon Sep 17 00:00:00 2001 From: Hannah Giovanna Dawson Date: Sun, 17 Aug 2025 20:24:42 +0100 Subject: [PATCH 034/194] Update OpenTK to latest (#39227) Co-authored-by: PJB3005 --- Directory.Packages.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index b2f8d0d844..643b105b76 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -15,7 +15,7 @@ - + From 3d35435747bb6080a2cdcfe65c6d34afcfdf2be0 Mon Sep 17 00:00:00 2001 From: August Sun <45527070+august-sun@users.noreply.github.com> Date: Sun, 17 Aug 2025 13:25:31 -0600 Subject: [PATCH 035/194] Allows disabler, practice disabler, disabler SMG, and practice laser rifle to be used by pacifists (#37164) Co-authored-by: august-sun <45527070+august.sun@users.noreply.github.com> --- .../Entities/Objects/Weapons/Guns/Battery/battery_guns.yml | 4 ++++ 1 file changed, 4 insertions(+) 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 4b215ec90a..b535c62d11 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -246,6 +246,7 @@ fireCost: 62.5 - type: StaticPrice price: 300 + - type: PacifismAllowedGun - type: entity name: laser carbine @@ -508,6 +509,7 @@ tags: - Taser - Sidearm + - type: PacifismAllowedGun - type: entity name: disabler @@ -536,6 +538,7 @@ guides: - Security - Antagonists + - type: PacifismAllowedGun - type: entity name: disabler SMG @@ -576,6 +579,7 @@ - type: Appearance - type: StaticPrice price: 260 + - type: PacifismAllowedGun - type: entity name: taser From af8295413bbea92f1a72f262392ec149e25bc075 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 17 Aug 2025 19:26:38 +0000 Subject: [PATCH 036/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f5e7377439..c4f42acbea 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -3947,3 +3947,11 @@ id: 8858 time: '2025-08-16T23:04:12.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39674 +- author: august-sun + changes: + - message: Pacifists can now use the practice disabler, practice laser rifle, disabler, + and disabler SMG. + type: Tweak + id: 8859 + time: '2025-08-17T19:25:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37164 From 02f37a8eecaf1ad3fa0ae1b7c968e2754c569f6b Mon Sep 17 00:00:00 2001 From: Velcroboy <107660393+IamVelcroboy@users.noreply.github.com> Date: Sun, 17 Aug 2025 14:30:40 -0500 Subject: [PATCH 037/194] Allow hamster cages to sit on tables (#37953) Co-authored-by: Velcroboy --- .../Structures/Storage/Crates/crates.yml | 8 +++++--- .../Storage/Crates/cage.rsi/base.png | Bin 20212 -> 834 bytes .../Storage/Crates/cage.rsi/closed.png | Bin 20375 -> 453 bytes 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 70d79aa912..a08ba4aacd 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -396,6 +396,8 @@ components: - type: Sprite sprite: Structures/Storage/Crates/cage.rsi + drawdepth: LargeObjects + snapCardinals: true layers: - state: base - state: closed @@ -441,12 +443,12 @@ fix1: shape: !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.29" + bounds: "-0.4,-0.2,0.4,0.29" density: 80 mask: - - CrateMask + - TabletopMachineMask layer: - - LargeMobLayer + - TabletopMachineLayer - type: StaticPrice price: 75 diff --git a/Resources/Textures/Structures/Storage/Crates/cage.rsi/base.png b/Resources/Textures/Structures/Storage/Crates/cage.rsi/base.png index 0abb868d1162958f008cfbd286d0171bfe1e6506..70e12e5d30f2d0a7383cd2bd84837ee102548853 100644 GIT binary patch delta 813 zcmV+|1JeBTodLoIkRyKs2}wjjR9Hvtl}|_%aTLeDGkOq{RrZg%y40!}bkVI-C`gBh zE~Z8VWrU|Fj81jPLx%`L=u#bwE=3?+#E32torFRN!d4<|NmpI}v^y@knRdvX-uunW z&MZ6oM>K@kAI#3qZ+^e`KJWY9?~Q~#9?~BBM-kxvQ=s);iz>1u9k#^-_T5W5Dzk%!)sbGFDA6X+us#I6HK6!*dQCgEBDu?p>^ zLY7n%1aN8S3uTlA)yDIyhcov1F4wEEU<{JG1nxSgSQlT6V@uhBr^SQFlLcE}wv&E; zKr18~9XDSfG#h`>9`wXEH~26%cwS5~7Ek{<8AFr+N?JniziDL> zWzKR0#(PrhoQ~>30FDqq557ev;C9quMF+Up_!Ul9H6DC)qP(gaBmG`n>3j@!T;XtI zJ;9M{qr%~#XM(0tN$=Ly6!e{bh(o?WApn{J4Djsrb)0*|^2@juh~U@8CZ0}Fg_8<{ zU1ez4PsM*`9C%taGZzfQ@~8FVcL>zeX16X=|xD@w5(2xIlcZ^D5#c( zWNfgWgv=sr)KXC6sfVn~o1`dYOKY>JZbBrvRp@`_xL$1z_)?Tk!F&Oyz)R7&r~tDM zBgPy{Y+fmeMJyvs$M91M&$bWL!Y@uhhQ>yRv6aAVN~wK<)BHFn>jaRT&ff<(zb1f| zbS(*dPy5c;OJEBqLrKi(3Ygt6Z!69wvP4N%tv%PWFqI&K){?Qjt$2G`-TCT*zJ@z@ rle;CH|E2xBwu=fB6(}mO=L-AJV;O5m7@>WZ*O)Lf%w%h$vb3Bep@^tc3aL0L zp(L$B>S&`>NafJUl1ljAAxo3yJLiAC|Nnn|*EMrpv)s@9-1qZ5zvq6Q_kP~Fu6M`M zB{maPXQ~1KFwxG|(gpg4iQmeK(5Emov=jPL5!iYP0bu-8@mmf^Iy4;sRGqjq+R~-o zd=X#h%@@GzXf&80fbYfi1py%VNs23n?)pa4r2AQ?g?)6`etW))hBC~>VprI-*m;J! zDw7vS>!v@}aK19d%1S}|W?HoTo;_i^HJptm>{NZE)Tn!8&$gq{J8$>A*l^V6K~eXs zioSCXsm<9PDS1^&CCU>LY%$Kbun8wEW>0y(?MB)47mdbd;i_{4z+~k-wyv;OUk>=V znL=5pSE6(YkPE&)UKuEHOfEsrit3;A*5cqwxv=eWC8AiOy>i$zz$|o+#c{yQS}rW* zz&uwVO#xV2&SEwIOX0xU`CDGy2f|W59^4=Ytk|!sA(s{lz@~!HmVoynAiHYWPAk9z z2~6{{FCzhu-~iIj-OCm@a~>$EoIE}kP@VuFoueZb016v`wKw(kgMsY_foaz5?v(cn zb0#+%LZlAnQVQmftio3)!~K=q-Hm4(RN84RoQ7wNV|1bc?!A8Y%X*_8d1^flIJ1r_w;>jOViimNgZ=!;9-@+$-2l*D$iMQt zfwFv<_qG>RLH+Mcdu`I@0%2Zu`}_f5wdEXR`t3Z^8_ED+nHFw%#$3De%5J@{ca1{mfo61uex=*6zm^(f6_b6)}jQFT~#a2Om*Bscb=xNS+_OUoyl*>*! z%*|G(-6UWfDQczl#n?qR0rb`{kwrGB{o%RJCcjTOM=Ll%n7Q5h$oRW#5h^K0GcEaU zz;826cH`5V?`C;VdJ;pW-9VPSp00!`^FjI((kF?v%bf3(SKufG8t<-Q$Oz3 z6ShyT5^28?Y~js_#+1gZjhII5M&0%mswqq}|6f14zBF*Ty>9W0rpZm%CPnZ7+T87E zlFQQ*>GUbMnB^9y((_$TJ4c3wGKYK~y zUH5zCZ){#CzLxI{nlLd^W7~~rj=_xN=}OZ%GlHg{KHzYC#{FG0ZqShgRLgBQ4L54U-d2rY96v8!+YmuNnRz_(S>|}R4!3f8%*oZRn{uq(Fs=t@g19g3b;9j-djesxYeyQZP&I&3^^MqaRyuFu4*$o1j4 zvUz7K9&ZdZEIiPwQ@G0{^JF@ShFOep&vWV6?`5jgaKQiLA<+_*W`m5xj?FutO?$WC zxY8#xAu+)t%Qnk7%ci9mpVOL=a=h58(6c98&HTpV`77t!aAGQdN@;d| z?D{lAHABxka9!+vYIaU#_? zS^N6ao5hWbMP2@@UWDH3N=eR3E^R$gd%6wZ#%+tLJA4OwctNTsMtJw?P1H&7cWglFhyo@?$9O3vRr zU+#33pSmWZp0-85pWPqYUkzl0&6VTG?+7;!Uoo!dW9UZR%X>`8wcv-`$F1hO(+bQr z%wx8m+S+vGl&<&9KlYx|?QT9$8C%I!i&(n(^@F=gj8}|ZS2s_X9}yMd9%;Hq5bZIu z8kL9(s;;96>n%T9CRjd8=AfKNr{RlnhSW^sb(ANBi`a{%*NweA@6>ptc-Z;c&mtKc z=HPk0m+HT?c0|2Qc{#pegVq7W%~gVs^vcrChz!k>#_C4o1T%-|CB*%Inol-7p}Bi* z`_!PhdsIV8bxJvUh-!Rw^ds6z!`VyPZ4Dhm_x%xDgbSH-4Rg$>sbKs3lY5ICCOSM# zCZ}p91;YH$Cgft&wtcaC{Vg(e9pmyjZ#l2L0?V_(h}^zwyj|xJv*VR+`Q+`*{>c-r zns0IZHGR3kLqnxp4(RT6xnjp{QbJbh!iv^AdADo#5)QpP+~2BRs{UeM{;^1Vceswn ztK#f+q+E)BNUdsv#!m|)mnmjbF6_)V^s8~oYIRS{*<3s?)X^t=^_AOOubh+fX&LXP z+7z*=rS4(tDkl$wXZ<Y6;In!#j5;e9wGN=n~(vITazI?E5|8FO=$_m(3 zUiZA-ym|&tU7?ncnfNMEjW_Y}liw!RFZ->v>w{G-BC*1tws2cMt>EZo%7r2@<5p$G zB2)UW^iKL`I==1R({qf6A9>Yn+8c^KVE?G8T~XBCOTBfe)=kdMvBs+g?6K>~>o(2V zk@@ChLXY37Q%n5(TW`qUlkZj1SId7`@OzEUJrlZ1%!7q3HflG1zSNiUE(ksmKhf=% zL)TyG3oJt#-*l_gch8e!)HIGdd;Vs1LpTumKQz_n%{P+$f;;er&+7{ zW7^ZG8q*bhb&uZFZCO_ml-5yQXVa}1v8}2vwku{5?WdT7G3AjHBU@65R1)c>X+ZCr zFB!BdcGbL8t-d3Dh)@7t1=8K-NnmtLQJ=~gfX zwYqazPwSPSx*(l*N9!j!HEx7$G3fXHbhgX&ZbnbsjJUXd1^ELVUsxD;EdZFm=h8hy z9*z!V7T?d9!R9kT<6u7ll!yWV#WYyJVEKR|7!%}hc_w=A3NP!yxNH+Wcbp^AQ9uK| zxwfGJplj$7IxEzNMPlojQdKFzWXORZC}O~Z{d{>sa`IzXL ziyMS_I4*_J_yHgcXN-rlkaz-&Kr%+*2m~y_2!=+Ya0ny@fkDF27%~<~#-d?gUwTwk z=ock`?L~I6wEo&0B$?=Wi$nr40udAxWE_Ms<_B;PC=!W;K%x<7G#sh{7l!aej9@rV zs6Xgr$d4r`WCd^qA}*f?6Z>T_`Rhd{dV1o9hF@RDcc5!*76SAI{Xm{b2-%^=w1bd3Iu4tT*_@x>n3h73RUkBiuSCYQ6w*Tk zAi@O{^4ABjK&wEgC;DS`UMO+_N8tViS5Wma9SMexGGq5^Sp7qcBCgjDIwIEm&r9U z04}umF?>hW5s!rpHHKv2SU4<-1jiH6L^z6wWx`2B6c$c^#=#(>KopyR9%^C?H{Ug7 z%N0U_7BVUTp)efS-CRNcZ%c<1zTAObO27yZg5pJNqBpdPhqtxiT}x~;uo;jUEb;zE zWr-sjWK$5|l#X<3*z&6x_xtJmYX}DYk23#p8$sS6?*}Vm(91xDAKMH0UZNmI0BFvE zg5$5O*Fmq}nn}8+AjFpfU+(|H90(bK|7->rED{03AQ0g=9G(P6f>6lg7A0)(qWEoQGL-FnpUH@mUnr%s91Kir@p2MhQ~!P90_7giDS|u- z_)seOS2s}!^KX{nSMN~rIFwEPz2t7NbEC}1^3MOKDdb=)W4IYFC59mC^DY@_Zfs~toMnW$HO8oiNbhKL1)Kj|YXtkv2h@~5kE22UNk%7)g z6pykJpMVFW!xg&g1B!_abD8nV4kAzl+O9F^=QHD!89|^4tmjn>$q70XGJ`!3PE(svgMHw#X zd?d6oToOQ}i!xl&`ABGGxFmo`7iGAl^O4ZXa7h4>F3NC8=Odw&;gSF%U6kRH&PPHk z!zBSkx+udXosWc8hD!p7bWw&&Iv)wG43`8D>7opmbUqSV87>JR(nT3A>3k%#GF%cs zq>D0K()mbeWw<1ONEcmEn>AB3+c>lFmm$E5juLM7k)$ zC7q9iR)$Lgh;&gZF4d9eIDkCp;SE91QyNqm>ZPOQ57pgSxNQ2s+?Jc?bvzM#t*q3%`&Qeml+wR#fQnav74{U0?Q&Q3S zA@&m0u5!_=i+8!+6RqQ&Md`JDkq-oil=RXvr)Ud4Rl43j@-lmA%2_&YoLShe6YCUm z0$*C!ypDHO*V}@YbNj`k9P^ME^kE!OIKQs&(uKF8*Lzh=(>|oX5;#R`jkaMZmoL2tH>sbM;t9YizGGW56Q*Mvjy{yRZq{D9J#)#7R#91?=fZd;Ncmx+( z#J*Z}dDireirBoJdWX+f5nkoLcTx=Q^!@z#LUnZWLCTl$Fy_rY?9AD{CoF0Utaw3ut#f|8TU6F&VC-Jfj_@^%kiyUf5129 zmgdz2mLluBeeSIJ967VI7UuUSZxIq#wkI4Cf(|!7xS&=4x?eqTVOpXiW@KkRyKqj7da6R9Hu2WIzMW+pcd$7sJJ81WNqJqnH^e_ZN$Nt(T@R zOc-Pa3II9a;fr?+xD3Y>2U!8K3K`&bn!JP%15plu83)opDFAs0**uaRfG_}?Z$U<5 z7YBud9MA&~U%ZBg64nq1?7Z{?=0YP~*4^kXhVY@m3W{`$h(mvl(f=sU0a^G6s2`SA z$Z`O&QGhGvQ9Z;DOanToi4Z*mkX?-GH#Dapg$BZMY%GL6qCx<#kC}nC{$&KGdw3RO z0&@Q0)`f5q#Kjni5IqF$0pkokV-Xt-DC)4J7px(mld=67%)$^qg|o0YBUI23bQG4% zfz<)}KnK7qLw0`vuIxq7ViX0auE1FkfgEvhhNl#yBt+y}(kw$#jiboG>45C)?Eh1z zPGy7@#l$2jVjYJZm3WI{kRt?5eHdQ+AT*VV8SFW+kX^*%GsPoR{UujoJ@18;$pFS-US`80o?>wENH+3#AY7PC&RRF*_`(~21j*hX!!KM2@5sl{ZZ zPWJ(_h66#B9CiaR4+#X#`02%MASUDeu9a%Qg6+oR)UuKQ#27Ha0SKNA9I2VV(Gl=R z17mq^mngskB!G7H%vC?d<$|HA8!p7qDe{H`309i@n zpwYH>MO5qMS636a6zVNOzPg~%W5Q-PbT`%HifsYlnJl`t+Y(hUIcBy-Oj!5cX>G%U z7wcp#@7%;Yp>KN%$ZC1y*DjW`aon@D=;6br#>NM8F4-?&UH4nv%`ab4>em(eA)5BN z^WCrKpPR*E7sWacfB$RwjSlw%Q);%2SjT?+BGLKtX`P8axw4D=Eygx@jb66J zA#HOz_JGL-`)xBXPrKE_eO_<*Nu6F#0FEuCtF25z9$Lgv|HEyDfxoQuc_#q8Ef$sC zG1pR$310iGCcNj3O_y`lG$4lOx@{Q%EOs!nVqPz>xuOLC4q34l$LtI{$|hQtYD_8n z;c=PH=OE%bd$UXB_6GLa+?XknpqWS3*qg^!9W$~BLfx@7!k2ml$0v*Rtjc}Q=vj;P zKeDtk%gjq+M+~>Ssx^jX{3t<>pLS)F^Ue6Ca-hat8!9M~QUC6?Ey#iJG`ep=hg$i}uIKmLrlmmB&qvjLfZ=d~E&^_2Lch zI5o$^hmVeREFD1{9&V3dO|^6JclV$Bz~vBPiWz>?qYg&A9XP6`(ayvQw?5Gcy zCbF@Z_5LoFruRlCjzJl$Oki9hnT_7Sz|JVzI?VO>e&(&wx14SXy-iyz52xc@CYvT- zd&CVnp-I_piI{aYt}&zWVk556u+jMK0__a8?XvyveV&_pUtcBznKNVI3}=2~^$!`% zJ`a7KWNT-S_pqkE%eTr2IbgV_*dhFaFuN@^^ZeqNOm|WC)5vqpAE&HFbuqibK4!mj z9_g=9Fw#t;Ze;aD+GWBr5zPp7rS5kx#-fY1j03D4tdwW#l8S0+`|djZ?4-Y0P_eMV ztRbu-tYY7Ejp@eI-8^1-w554_6djy-aJKtw_bXL5s`ggh+eJvX#@xp?r#GkHPp>~6 z6c`a`S$L@M4Cs2IG4NnOTVaVXE|3y%z~47;QGrulM&7i0#d*cqqq2+UCeO{yyvM(I z?DxWJg@;d1I@a_+qb|QNtZ+4p&z`_PeL4SPTk^T&)n`}#+-0q)yZ)hGu2G;-wDhE8 zEOkEhX{6lqCFX&vHVlbrYH_7$uIBzvC{{_b2?dXCeZ(&OMYpfH_%8=u}=e*+#r>n zzIwXS^P(toNnAbSC(|BoPgGAWkR3Bkjjz5T)-HCzuut!!RvBN|VneM1|2Xlm)oycE zk=;1E#5H+qn#%HwgRlN$Yo2jub82-`wLmX!Ui8a*H#J!=Seq_JkDL*=KF%-RW{Wt% ze{wA*g%Do*m?5oq_~@|H;b}S_<4HM+oI|jn=U6SJJtCdOpS7v5;sxBe>!0E88tOKM zVr7v}6o#I!|J>TX{&~i8oraYYQc+hIi6i$^mv_Wvk3VcR+LF4{);(b^dHZj61{R0L zZ=UvcO!%}d+L7f(<$M!VEwMJ?0b`-X)VXh6EIgvN{UfP_5NUQ9cfhi#Xx)s%TT9$^ z-JhgWGsmZ`K!jnfspl|jw|W}jp1kzB}s#eczDQF#Q6JJEevxal-%>JH6oAq88H z{1AZDF0?=Rk{M`z-$L^QAN1p0sM>IyvNJbxR#oebg6nl#NxR?t($hM+eDt$zg$Lr@ z{E$ZeFU}oVN;yGW7Fnm=Fz$z0@$)r~(9Ucuv-hV*e8Hs+75n~*Z@rw8VbBbp4?i>_bT^?3Wq z!?~A=xHY_6yp|VFk(mqhcIKqKNYNAOK74diw|@S~)^~q6)}d0W%w{T@Mr@DTr zzUa+a1KG1%jy;>2XP3;bUikKm?CpuVrZIkJ{L+q6mxR5Ny`ps|-}byxyt_Cpzi44d zQCrlxQ!9C$Eryw->L(rNB7Yy>bMI~@#rny)_9#*3<<58YBmofwDAv2rL>yK%sFc92$wmQSoRh z9*gLIOz7H>M3ZoNRBs2T{^p>6S(^mQWMV1`6&@aL6^^qKN%$xXg+f80u_!DS327ju zkwO_O0x6W5_Bk2w;{ZxI5`kDI5D5`-zbv+Bxy;(cMBdQg(?6~-@nAzjX+JxNA}WF< zMq#YbsG*FwoIxA$a!F`!*SH)M7z&1gLYWk@!whK$A@%SWG##?Ju&^O5r837A&1KK}amW=g<100%(AyP3o zDhAW<;0v{{U5K~>UgW=W04ph&b2(I=ND{`9(FI{FK8O+v`7{(N1|XUND`VufiQzyB%6aHBgt%#OD3@KAew|9Xh^}? zHw}481kl;X3RTdNkA(|0hUO4B1U!a#4L#vly72dlYw14c&rVcT5_A-!+^@- z$j>)AN4~N_E)DfXDcr3=%YHM#x6`Q{fvR3@P8DMcJBpi!GMiK}_3K9+C@z91Mqme8k zfy5$Uuw*ihJTSxm#te{|7z!0b?mL_Q?`8mAyPRN_kPmX{sDVKZ6#O?$8i_z=kqB%u z62xQJNEQ!IM6$719FoFDv+)Erk;s7;#b2K^`F((=5=c}u5xNgllh%LQiG(Xa$zM6| zpi`9v1+1V%O6N&LVF;F394g?ja4+_8SMc$_xInp}MDSP6 z6@^}M1~4K1%f|e-Pf`jQ%f|7zWF(QrCL(cMJQfMXBUmJXOvK`$E1e6XSp(ZiwJGJn zL2qpGw?dG=J!#6tlYM*f-#Q)0Pd|#P=ad!55ha&!g6yUE#3(eSamSOTC@#5w4C5B8EaFBC%E& zMK=n1L;4v=ee9rAPM)Di6*@U^3fQywUzQG3KvDD12^tQ{#>gB30ZHWH2?Gfl5rgDX zh-5UG!o_fSP%r;H@a|13l~2Wna@Nf|S;}v&|M&xs=s)fncBpCuW}$?n!leWxSVe^kW}$?n!leWxSVe^k zW}$?n!leWxSVe^kW}$?n!leWxSVe^kW}$?n!leWxSVe^kW}$?n!leWxSVe^kW}$?n z!leWxSVe^kW}$?n!leWxSVe^kW}$?n!leWxSVe^kW}$?n!leWxSVe^kW}$?n!leWx zSVe^kW}$?n!leWxSVe^kW}$?n!leWxSVe^kW}$?n!leWxSVe^kW}$?n!leWxSVe^k zW}$?n!leWxSVe^kW}$?n!leWxSVe^kW}$?n!leWxSVe^kW}$?n!leWxSVe^kW}$@i zr?|A?@AUwM(3g3HL*LpFD?-trZ~Q=TT)aI1AZi)_#HgMl&jp}QtsIHjfKX*J>p&x9r-xt5N6$qT>GCt~4s+s0Z zYs06jf9o(Z8D+6$^WKS1)Vzc7tBu6V&dykiY@hGC;6&pi5ctQ zbI_d?1U;b-qd7QrU1?dC>$=UR=N<8{V!SjrQ-kiP?bDmM90&qhg{V@~Hr*I#0D!CG LT!(!7pf&#lg Date: Sun, 17 Aug 2025 19:31:47 +0000 Subject: [PATCH 038/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c4f42acbea..3f51b6da45 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: chromiumboy - changes: - - message: Gas vent under-pressure lockout releases are now performed using the - right-click menu - a screwdriver is no longer required - type: Tweak - id: 8347 - time: '2025-04-25T07:21:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36910 - author: chromiumboy changes: - message: Ghosts will now follow the AI when it activates a holopad or answers @@ -3955,3 +3947,10 @@ id: 8859 time: '2025-08-17T19:25:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/37164 +- author: Velcroboy + changes: + - message: Changed hamster crates are now able to be placed on top of tables. + type: Tweak + id: 8860 + time: '2025-08-17T19:30:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37953 From 8034cabbaeed60f7f476d1be193c5d476eac8309 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Sun, 17 Aug 2025 15:34:47 -0400 Subject: [PATCH 039/194] Fix error when deleting a toggled `ToggleableClothingComponent` (#39191) --- .../Clothing/EntitySystems/ToggleableClothingSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs index 334f88af6d..a2b7d01641 100644 --- a/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ToggleableClothingSystem.cs @@ -213,7 +213,7 @@ public sealed class ToggleableClothingSystem : EntitySystem if (!TryComp(component.AttachedUid, out ToggleableClothingComponent? toggleComp)) return; - if (toggleComp.LifeStage > ComponentLifeStage.Running) + if (LifeStage(component.AttachedUid) > EntityLifeStage.MapInitialized) return; // As unequipped gets called in the middle of container removal, we cannot call a container-insert without causing issues. From 81aef0fb1c6f3bd232238a2af9844327b27c8a80 Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Sun, 17 Aug 2025 17:13:57 -0400 Subject: [PATCH 040/194] update oasis -- AI rework (#39592) --- Resources/Maps/oasis.yml | 10298 ++++++++++++++++++++++++++----------- 1 file changed, 7210 insertions(+), 3088 deletions(-) diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 573c93ad85..5f55256fc8 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 16:51:18 - entityCount: 30823 + time: 08/17/2025 20:31:53 + entityCount: 31133 maps: - 1 grids: @@ -51,15 +51,18 @@ tilemap: 26: FloorMetalDiamond 3: FloorMowedAstroGrass 7: FloorPlanetGrass + 57: FloorRedCircuit 30: FloorReinforced 48: FloorReinforcedHardened 54: FloorRockVault + 58: FloorShuttleBlue 17: FloorSteel 25: FloorSteelDiagonal 37: FloorSteelOffset 15: FloorTechMaint 21: FloorTechMaint2 43: FloorTechMaint3 + 56: FloorTechMaintDark 31: FloorWhite 34: FloorWhiteMini 38: FloorWhiteOffset @@ -95,119 +98,119 @@ entities: chunks: 0,0: ind: 0,0 - tiles: AAAAAAADAAAAAAAAAgAAAAAAAAMAAQAAAAABAAEAAAAAAAABAAAAAAMAAQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAQABAAAAAAAAAQAAAAACAAEAAAAAAgABAAAAAAAAAQAAAAABAAAAAAAAAgAAAAAAAAMAAAAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAADAAEAAAAAAAABAAAAAAIAAQAAAAADAAEAAAAAAgABAAAAAAEAAQAAAAACAAEAAAAAAQABAAAAAAAAAQAAAAABAAEAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAgABAAAAAAIAAQAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAMABQAAAAAAAAMAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAgABAAAAAAEAAQAAAAAAAAIAAAAAAAAHAAAAAAEABgAAAAACAAYAAAAAAwADAAAAAAAABgAAAAADAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAwADAAAAAAAAAwAAAAAAAAEAAAAAAgABAAAAAAAAAQAAAAAAAAIAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAgAGAAAAAAEABgAAAAACAAYAAAAAAwAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAGAAAAAAIABgAAAAACAAYAAAAAAwAGAAAAAAIABgAAAAAAAAYAAAAAAgAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAQADAAAAAAAABgAAAAADAAYAAAAAAgAGAAAAAAAABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAIAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAMAAQAAAAABAAEAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAEABgAAAAAAAAEAAAAAAwABAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAQABAAAAAAEAAQAAAAABAAUAAAAAAAAFAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAwADAAAAAAAAAQAAAAADAAEAAAAAAQAFAAAAAAIABQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAEAAQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQAGAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAwACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAABAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + tiles: AAAAAAABAAAAAAAAAgAAAAAAAAIAAQAAAAADAAEAAAAAAAABAAAAAAMAAQAAAAAAAAEAAAAAAQABAAAAAAMAAQAAAAADAAEAAAAAAQABAAAAAAMAAQAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAADAAEAAAAAAAABAAAAAAMAAQAAAAACAAEAAAAAAQABAAAAAAAAAQAAAAABAAEAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAADAAMAAAAAAAACAAAAAAAAAQAAAAABAAEAAAAAAgABAAAAAAIAAQAAAAABAAIAAAAAAAAHAAAAAAIABgAAAAADAAYAAAAAAwADAAAAAAAABgAAAAACAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAEAAAAAAgABAAAAAAMAAQAAAAACAAIAAAAAAAAGAAAAAAEABgAAAAADAAYAAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAAAGAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAACAAIAAAAAAAAGAAAAAAIABgAAAAABAAYAAAAAAAAGAAAAAAEABgAAAAABAAYAAAAAAAAGAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAABAAEAAAAAAgADAAAAAAAABgAAAAADAAYAAAAAAwAGAAAAAAAABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAwABAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAMAAQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAAAQAAAAABAAEAAAAAAgAEAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAADAAEAAAAAAgABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAIABgAAAAAAAAYAAAAAAAABAAAAAAIAAQAAAAACAAUAAAAAAwAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQADAAAAAAAAAQAAAAABAAEAAAAAAwAFAAAAAAMABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAQABAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAMAAQAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAADAAEAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== version: 7 -1,0: ind: -1,0 - tiles: AQAAAAAAAAEAAAAAAgABAAAAAAIAAQAAAAABAAEAAAAAAQABAAAAAAMAAQAAAAAAAAEAAAAAAwABAAAAAAEAAQAAAAABAAEAAAAAAwABAAAAAAEAAQAAAAABAAEAAAAAAwAAAAAAAAAAAAAAAAABAAEAAAAAAwABAAAAAAMAAQAAAAACAAEAAAAAAgABAAAAAAEAAQAAAAABAAEAAAAAAAABAAAAAAAAAQAAAAACAAEAAAAAAAABAAAAAAMAAQAAAAAAAAEAAAAAAQABAAAAAAAAAAAAAAABAAAAAAAAAwAIAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAABAAAAAAAAAwAAAAAAAAAACAAAAAABAAgAAAAAAgADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAEAAwAAAAAAAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAAAgAAAAAAAAEAAAAAAQABAAAAAAAAAQAAAAADAAgAAAAAAQAIAAAAAAAACAAAAAACAAMAAAAAAAAFAAAAAAMABQAAAAAAAAUAAAAAAwAGAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAgACAAAAAAAAAQAAAAADAAEAAAAAAAAIAAAAAAEACAAAAAADAAgAAAAAAQAFAAAAAAMABQAAAAAAAAUAAAAAAgAGAAAAAAIABgAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAIABgAAAAACAAIAAAAAAAABAAAAAAAACAAAAAAAAAgAAAAAAwAIAAAAAAIABQAAAAAAAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAAIAAAAAAIACAAAAAACAAgAAAAAAAAIAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAACAAgAAAAAAgAIAAAAAAIACAAAAAADAAUAAAAAAQAFAAAAAAAABQAAAAAAAAQAAAAAAAADAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAIACAAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgAIAAAAAAAACAAAAAACAAgAAAAAAgAGAAAAAAEABQAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAgAAAAAAQAIAAAAAAMACAAAAAABAAgAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAEACAAAAAABAAgAAAAAAwAIAAAAAAAABgAAAAACAAUAAAAAAQAFAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAwACAAAAAAAAAQAAAAABAAgAAAAAAwAIAAAAAAAABgAAAAACAAYAAAAAAwAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAABAAYAAAAAAgAGAAAAAAMABAAAAAAAAAEAAAAAAQAIAAAAAAEABgAAAAAAAAYAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAAGAAAAAAMABgAAAAABAAYAAAAAAgAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAABAAUAAAAAAAAFAAAAAAEABQAAAAACAAUAAAAAAwAFAAAAAAMABQAAAAADAAUAAAAAAAAFAAAAAAIAAQAAAAABAAMAAAAAAAAJAAAAAAIACQAAAAABAAkAAAAAAAAJAAAAAAEAAwAAAAAAAAUAAAAAAQAFAAAAAAEABQAAAAACAAUAAAAAAQAFAAAAAAIABQAAAAAAAAUAAAAAAwAFAAAAAAIABQAAAAAAAAEAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAwAJAAAAAAAACQAAAAABAAMAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAADAAMAAAAAAAABAAAAAAMAAwAAAAAAAAkAAAAAAAAJAAAAAAMACQAAAAACAAkAAAAAAwADAAAAAAAABQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAgACAAAAAAAAAQAAAAACAA== + tiles: AQAAAAADAAEAAAAAAAABAAAAAAMAAQAAAAACAAEAAAAAAgABAAAAAAIAAQAAAAABAAEAAAAAAQABAAAAAAAAAQAAAAABAAEAAAAAAwABAAAAAAMAAQAAAAADAAEAAAAAAgAAAAAAAAMAAAAAAAADAAEAAAAAAAABAAAAAAEAAQAAAAACAAEAAAAAAAABAAAAAAIAAQAAAAABAAEAAAAAAgABAAAAAAEAAQAAAAACAAEAAAAAAQABAAAAAAEAAQAAAAAAAAEAAAAAAwABAAAAAAIAAAAAAAABAAAAAAAAAAAIAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAgADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAIAAQAAAAACAAAAAAAAAgAAAAAAAAIACAAAAAADAAgAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAIAAwAAAAAAAAYAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAEAAgAAAAAAAAEAAAAAAAABAAAAAAMAAQAAAAAAAAgAAAAAAgAIAAAAAAEACAAAAAABAAMAAAAAAAAFAAAAAAEABQAAAAADAAUAAAAAAQAGAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAYAAAAAAwACAAAAAAAAAQAAAAAAAAEAAAAAAgAIAAAAAAIACAAAAAABAAgAAAAAAQAFAAAAAAIABQAAAAADAAUAAAAAAgAGAAAAAAMABgAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAACAAIAAAAAAAABAAAAAAAACAAAAAABAAgAAAAAAAAIAAAAAAMABQAAAAACAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAAIAAAAAAAACAAAAAADAAgAAAAAAwAIAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAgAAAAAAQAIAAAAAAAACAAAAAADAAUAAAAAAgAFAAAAAAAABQAAAAACAAQAAAAAAAADAAAAAAAACAAAAAADAAgAAAAAAgAIAAAAAAEACAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgAIAAAAAAAACAAAAAABAAgAAAAAAwAGAAAAAAIABQAAAAAAAAUAAAAAAgADAAAAAAAAAwAAAAAAAAgAAAAAAQAIAAAAAAEACAAAAAACAAgAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAEACAAAAAABAAgAAAAAAQAIAAAAAAMABgAAAAABAAUAAAAAAAAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAAACAAAAAAAAAQAAAAACAAgAAAAAAgAIAAAAAAMABgAAAAAAAAYAAAAAAgAFAAAAAAIABQAAAAADAAUAAAAAAQAFAAAAAAIAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAQAGAAAAAAEABAAAAAAAAAEAAAAAAQAIAAAAAAAABgAAAAACAAYAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAQAFAAAAAAIABQAAAAAAAAUAAAAAAQAGAAAAAAMABgAAAAABAAYAAAAAAQAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAEABQAAAAADAAUAAAAAAAAFAAAAAAEABQAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAACAAUAAAAAAgAFAAAAAAEAAQAAAAAAAAMAAAAAAAAJAAAAAAMACQAAAAAAAAkAAAAAAgAJAAAAAAIAAwAAAAAAAAUAAAAAAAAFAAAAAAMABQAAAAADAAUAAAAAAwAFAAAAAAMABQAAAAABAAUAAAAAAwAFAAAAAAEABQAAAAACAAEAAAAAAAADAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAADAAMAAAAAAAAFAAAAAAAABQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAMABQAAAAABAAMAAAAAAAABAAAAAAEAAwAAAAAAAAkAAAAAAAAJAAAAAAEACQAAAAAAAAkAAAAAAQADAAAAAAAABQAAAAAAAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAwACAAAAAAAAAQAAAAABAA== version: 7 0,-1: ind: 0,-1 - tiles: AQAAAAABAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAADAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAEAAAAAAQABAAAAAAMAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAwABAAAAAAIAAQAAAAACAAUAAAAAAAAFAAAAAAMABQAAAAAAAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAwAFAAAAAAMAAQAAAAAAAAEAAAAAAQAFAAAAAAMABQAAAAABAAUAAAAAAwAFAAAAAAIABQAAAAAAAAUAAAAAAgAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAgAFAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAIAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAADAAUAAAAAAAAFAAAAAAMABQAAAAAAAAUAAAAAAQAFAAAAAAMABQAAAAACAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAIAAQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAADAAEAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAMABQAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAwABAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAAAAAUAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAMAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAKAAAAAAIACgAAAAACAAoAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAADAAEAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAACgAAAAAAAAoAAAAAAwAKAAAAAAMAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAABAAUAAAAAAQADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAoAAAAAAwAKAAAAAAMACgAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAQAFAAAAAAEAAwAAAAAAAAMAAAAAAAABAAAAAAMAAQAAAAAAAAIAAAAAAAAGAAAAAAEABgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAABAAUAAAAAAAADAAAAAAAAAQAAAAACAAEAAAAAAwABAAAAAAMAAgAAAAAAAAYAAAAAAgAGAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAwAFAAAAAAAAAwAAAAAAAAEAAAAAAwABAAAAAAAAAQAAAAAAAAEAAAAAAgACAAAAAAAABgAAAAAAAAYAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAQAFAAAAAAAABQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAABAAAAAAEAAQAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAQACAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAIAAQAAAAAAAAEAAAAAAAABAAAAAAMAAQAAAAADAAEAAAAAAgABAAAAAAEAAQAAAAABAAEAAAAAAQABAAAAAAIAAQAAAAAAAAEAAAAAAQABAAAAAAEAAQAAAAABAA== + tiles: AQAAAAACAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAACAAQAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAEAAAAAAAABAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAAABAAAAAAEAAQAAAAAAAAUAAAAAAgAFAAAAAAMABQAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAMABQAAAAACAAUAAAAAAQAFAAAAAAMABQAAAAADAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAABAAUAAAAAAwAFAAAAAAEAAwAAAAAAAAEAAAAAAwABAAAAAAIAAwAAAAAAAAMAAAAAAAAFAAAAAAMABQAAAAABAAUAAAAAAwAFAAAAAAMABQAAAAABAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAMABQAAAAADAAUAAAAAAgAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAABAAEAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAQAFAAAAAAIABQAAAAABAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgABAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAKAAAAAAEACgAAAAAAAAoAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAEAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAQABAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAoAAAAAAQAKAAAAAAAACgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAIAAQAAAAADAAIAAAAAAAAGAAAAAAAABgAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAIABQAAAAAAAAUAAAAAAwADAAAAAAAAAQAAAAACAAEAAAAAAwABAAAAAAEAAgAAAAAAAAYAAAAAAwAGAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAACAAUAAAAAAQAFAAAAAAIAAwAAAAAAAAEAAAAAAwABAAAAAAMAAQAAAAAAAAEAAAAAAQACAAAAAAAABgAAAAADAAYAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAIABQAAAAACAAMAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAABAAAAAAMAAQAAAAADAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAMAAQAAAAAAAAEAAAAAAQABAAAAAAIAAQAAAAACAAEAAAAAAwABAAAAAAAAAQAAAAACAAEAAAAAAAABAAAAAAEAAQAAAAACAAEAAAAAAAABAAAAAAAAAQAAAAACAA== version: 7 -1,-1: ind: -1,-1 - tiles: BQAAAAADAAUAAAAAAgAFAAAAAAAABQAAAAABAAUAAAAAAQAFAAAAAAMABQAAAAAAAAUAAAAAAwAFAAAAAAIABQAAAAACAAUAAAAAAgAFAAAAAAMABQAAAAACAAUAAAAAAQAFAAAAAAAAAQAAAAACAAUAAAAAAAAEAAAAAAAACgAAAAAAAAoAAAAAAAAEAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAABgAAAAACAAYAAAAAAgADAAAAAAAAAgAAAAAAAAEAAAAAAQAFAAAAAAIACgAAAAACAAoAAAAAAgAKAAAAAAMAAwAAAAAAAAUAAAAAAwADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAGAAAAAAEAAwAAAAAAAAMAAAAAAAABAAAAAAMABQAAAAABAAoAAAAAAgAKAAAAAAEAAwAAAAAAAAMAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAADAAUAAAAAAQAEAAAAAAAACgAAAAADAAMAAAAAAAAEAAAAAAAABQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAAADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAQABAAAAAAEABQAAAAAAAAYAAAAAAAAGAAAAAAIAAwAAAAAAAAUAAAAAAgADAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAMAAwAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAABAAUAAAAAAQAFAAAAAAMAAQAAAAABAAUAAAAAAgAGAAAAAAMABAAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAYAAAAAAwAGAAAAAAIAAwAAAAAAAAUAAAAAAgAFAAAAAAEABQAAAAABAAUAAAAAAAAFAAAAAAMABQAAAAAAAAEAAAAAAgAFAAAAAAEAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAEABgAAAAABAAUAAAAAAAAFAAAAAAAABQAAAAABAAUAAAAAAAAFAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAMABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAMABQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAACAAUAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAFAAAAAAAAAwAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAFAAAAAAMABQAAAAABAAUAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQAGAAAAAAMABgAAAAADAAIAAAAAAAABAAAAAAIABQAAAAADAAMAAAAAAAAGAAAAAAMABgAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAAAAwAAAAAAAAYAAAAAAQAGAAAAAAAABgAAAAABAAIAAAAAAAABAAAAAAIAAQAAAAAAAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAABAAIAAAAAAAABAAAAAAIAAQAAAAADAAEAAAAAAwAFAAAAAAIAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAwAFAAAAAAMABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAEAAQAAAAABAAAAAAAAAgAAAAAAAAAAAQAAAAACAAEAAAAAAAABAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAADAAEAAAAAAwABAAAAAAIAAQAAAAACAAEAAAAAAgABAAAAAAIAAQAAAAACAAEAAAAAAwAAAAAAAAIAAAAAAAABAA== + tiles: BQAAAAADAAUAAAAAAQAFAAAAAAEABQAAAAAAAAUAAAAAAwAFAAAAAAAABQAAAAACAAUAAAAAAwAFAAAAAAAABQAAAAACAAUAAAAAAAAFAAAAAAEABQAAAAAAAAUAAAAAAAAFAAAAAAIAAQAAAAADAAUAAAAAAwAEAAAAAAAACgAAAAABAAoAAAAAAwAEAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAABAAYAAAAAAQADAAAAAAAAAgAAAAAAAAEAAAAAAwAFAAAAAAIACgAAAAABAAoAAAAAAQAKAAAAAAAAAwAAAAAAAAUAAAAAAgADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAGAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAMABQAAAAABAAoAAAAAAgAKAAAAAAIAAwAAAAAAAAMAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAUAAAAAAAAEAAAAAAAACgAAAAADAAMAAAAAAAAEAAAAAAAABQAAAAAAAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgAFAAAAAAAABQAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAAAAAUAAAAAAQADAAAAAAAABAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAFAAAAAAIABQAAAAADAAUAAAAAAwABAAAAAAEABQAAAAACAAYAAAAAAAAGAAAAAAEAAwAAAAAAAAUAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAIAAwAAAAAAAAUAAAAAAQAFAAAAAAAABQAAAAAAAAUAAAAAAgAFAAAAAAEAAQAAAAAAAAUAAAAAAwAGAAAAAAEABAAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAYAAAAAAgAGAAAAAAEAAwAAAAAAAAUAAAAAAQAFAAAAAAIABQAAAAADAAUAAAAAAgAFAAAAAAIABQAAAAACAAEAAAAAAwAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAIABgAAAAACAAUAAAAAAAAFAAAAAAAABQAAAAACAAUAAAAAAAAFAAAAAAIAAwAAAAAAAAMAAAAAAAABAAAAAAMABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAIABQAAAAAAAAUAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAACAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAMABQAAAAADAAUAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAgAFAAAAAAIAAwAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAFAAAAAAIABQAAAAADAAUAAAAAAgADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAABAAIAAAAAAAABAAAAAAEABQAAAAABAAMAAAAAAAAGAAAAAAEABgAAAAADAAMAAAAAAAAFAAAAAAEABQAAAAACAAUAAAAAAQAFAAAAAAAAAwAAAAAAAAYAAAAAAwAGAAAAAAEABgAAAAACAAIAAAAAAAABAAAAAAEAAQAAAAACAAUAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAgAFAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAACAAIAAAAAAAABAAAAAAMAAQAAAAAAAAEAAAAAAgAFAAAAAAEAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAgAFAAAAAAAABQAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAABAAAAAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAwABAAAAAAIAAQAAAAACAAEAAAAAAAABAAAAAAEAAQAAAAACAAEAAAAAAQABAAAAAAEAAQAAAAABAAEAAAAAAgABAAAAAAIAAQAAAAADAAEAAAAAAwAAAAAAAAEAAAAAAAACAA== version: 7 -1,1: ind: -1,1 - tiles: BQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAQAFAAAAAAIABQAAAAADAAUAAAAAAAADAAAAAAAAAQAAAAADAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAADAAUAAAAAAgAFAAAAAAMABQAAAAAAAAUAAAAAAwAFAAAAAAEABQAAAAABAAUAAAAAAgAFAAAAAAEAAwAAAAAAAAEAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAAgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAEQAAAAADAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAABEAAAAAAgALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAABAAAAAAAQARAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAEQAAAAACAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMADAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAwAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEADAAAAAACAAIAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAQAMAAAAAAAADAAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAA== + tiles: BQAAAAAAAAUAAAAAAQAFAAAAAAIABQAAAAACAAUAAAAAAwAFAAAAAAEABQAAAAABAAUAAAAAAQAFAAAAAAMABQAAAAAAAAUAAAAAAgAFAAAAAAAABQAAAAABAAUAAAAAAAADAAAAAAAAAQAAAAADAAUAAAAAAQAFAAAAAAEABQAAAAABAAUAAAAAAQAFAAAAAAMABQAAAAACAAUAAAAAAgAFAAAAAAMABQAAAAACAAUAAAAAAwAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAIAAwAAAAAAAAEAAAAAAQACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAAgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAEQAAAAADAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAgAAAAAAABEAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAABAAAAAAAgARAAAAAAIACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAADQAAAAAAAA0AAAAAAAACAAAAAAAAEQAAAAABAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEADAAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABAAwAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIADAAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAwACAAAAAAAADAAAAAABAAwAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAgAMAAAAAAEADAAAAAACAAIAAAAAAAARAAAAAAIAEQAAAAACAA== version: 7 -2,-1: ind: -2,-1 - tiles: EgAAAAAAABIAAAAAAAASAAAAAAIAEgAAAAACABIAAAAAAwASAAAAAAIAEgAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAAAABIAAAAAAAASAAAAAAIAEgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABYAAAAAAAAWAAAAAAUABgAAAAABAAMAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAWAAAAAAUAFgAAAAAEAAYAAAAAAgADAAAAAAAAEgAAAAAAAAIAAAAAAAASAAAAAAEAEgAAAAACAAIAAAAAAAASAAAAAAEAEgAAAAAAABIAAAAAAwACAAAAAAAADwAAAAAAAA8AAAAAAAAVAAAAAAAAFgAAAAADABYAAAAAAAAGAAAAAAIAAwAAAAAAABIAAAAAAwACAAAAAAAAEgAAAAAAABIAAAAAAAACAAAAAAAAEgAAAAADABIAAAAAAAASAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABYAAAAAAwAWAAAAAAQABgAAAAABAAMAAAAAAAASAAAAAAIAAgAAAAAAABIAAAAAAwASAAAAAAAAAgAAAAAAABIAAAAAAgASAAAAAAIAEgAAAAACAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABMAAAAAAAARAAAAAAMAEwAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAFQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAMAAAAAAAATAAAAAAAAEQAAAAACABMAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAADAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABMAAAAAAAAUAAAAAAEAEwAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAATAAAAAAAAEQAAAAADABMAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAAADAAAAAABAAIAAAAAAAADAAAAAAAAEwAAAAAAABEAAAAAAQATAAAAAAAAEQAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAACAAwAAAAAAAACAAAAAAAAAwAAAAAAABAAAAAAAQACAAAAAAAAEAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAADAAwAAAAAAQAMAAAAAAEAAgAAAAAAAAMAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQARAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAAQAAAAADAA== + tiles: EgAAAAABABIAAAAAAQASAAAAAAEAEgAAAAAAABIAAAAAAQASAAAAAAMAEgAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAABIAAAAAAwASAAAAAAMAEgAAAAAAABIAAAAAAAASAAAAAAIAEgAAAAADABIAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABYAAAAABQAWAAAAAAIABgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAWAAAAAAIAFgAAAAAEAAYAAAAAAAADAAAAAAAAEgAAAAADAAIAAAAAAAASAAAAAAAAEgAAAAACAAIAAAAAAAASAAAAAAMAEgAAAAABABIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAVAAAAAAAAFgAAAAAAABYAAAAABQAGAAAAAAEAAwAAAAAAABIAAAAAAAACAAAAAAAAEgAAAAADABIAAAAAAwACAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAIAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABYAAAAAAgAWAAAAAAQABgAAAAAAAAMAAAAAAAASAAAAAAEAAgAAAAAAABIAAAAAAgASAAAAAAEAAgAAAAAAABIAAAAAAQASAAAAAAEAEgAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABMAAAAAAAARAAAAAAIAEwAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAFQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAMAAAAAAAATAAAAAAAAEQAAAAADABMAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAADAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAwAAAAAAABMAAAAAAAAUAAAAAAMAEwAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAATAAAAAAAAEQAAAAAAABMAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAIADAAAAAAAAAIAAAAAAAADAAAAAAAAEwAAAAAAABEAAAAAAwATAAAAAAAAEQAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAADAAwAAAAAAQACAAAAAAAAAwAAAAAAABAAAAAAAQACAAAAAAAAEAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAgAMAAAAAAEAAgAAAAAAAAMAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAADAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAIAAQAAAAABAA== version: 7 -2,0: ind: -2,0 - tiles: EQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAAQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACAAEAAAAAAwACAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAMAAgAAAAAAAAIAAAAAAAAIAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAMACAAAAAACAAgAAAAAAQACAAAAAAAACAAAAAADABEAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAIAAAAAAMACAAAAAAAAAgAAAAAAQAIAAAAAAIAFAAAAAABAAgAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAwAIAAAAAAEACAAAAAAAABQAAAAAAgAIAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAwAIAAAAAAAACAAAAAAAAAgAAAAAAwAUAAAAAAMACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAAAAAgAAAAAAwAIAAAAAAIAFAAAAAAAAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAEACAAAAAACABQAAAAAAAAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAACAAgAAAAAAQAUAAAAAAAACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAACAAAAAABAAgAAAAAAQAIAAAAAAAAAgAAAAAAAAgAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAMADAAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAABAAwAAAAAAgACAAAAAAAACAAAAAAAAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAgAMAAAAAAEAAgAAAAAAAAgAAAAAAgAIAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAMADAAAAAADAAIAAAAAAAAIAAAAAAEACAAAAAACAA== + tiles: EQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAAQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAACAAEAAAAAAgACAAAAAAAAAgAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAAIAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAgAAAAAAQAIAAAAAAIACAAAAAABAAgAAAAAAgACAAAAAAAACAAAAAADABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAAAAAgAAAAAAQAIAAAAAAIAFAAAAAADAAgAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAADAAgAAAAAAgAIAAAAAAEACAAAAAACABQAAAAAAwAIAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAABAAgAAAAAAgAUAAAAAAMACAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAAAAAgAAAAAAwAIAAAAAAAAFAAAAAACAAgAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAAAIAAAAAAIACAAAAAADABQAAAAAAQAIAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAgAIAAAAAAAACAAAAAADAAgAAAAAAQAUAAAAAAMACAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIACAAAAAABAAgAAAAAAAAIAAAAAAEAAgAAAAAAAAgAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAMADAAAAAADAAIAAAAAAAAIAAAAAAAACAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAAACAAAAAAAACAAAAAACAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAIAAgAAAAAAAAgAAAAAAAAIAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAADAAIAAAAAAAAIAAAAAAEACAAAAAAAAA== version: 7 -2,1: ind: -2,1 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAAADAAAAAABAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAADAAwAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAADAA== version: 7 0,1: ind: 0,1 - tiles: AQAAAAAAAAEAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAQABAAAAAAIAAwAAAAAAAAYAAAAAAgAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAMABgAAAAACAAYAAAAAAQAGAAAAAAAABgAAAAADAAYAAAAAAgAGAAAAAAMABgAAAAADAAYAAAAAAgARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAIABwAAAAABAAcAAAAAAwAHAAAAAAIAEQAAAAACABEAAAAAAwAUAAAAAAMAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAFAAAAAADABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAABkAAAAAAQAZAAAAAAIAGQAAAAADABkAAAAAAgARAAAAAAEAEQAAAAACABQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABQAAAAAAAAZAAAAAAMAGQAAAAABABkAAAAAAQAZAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAEAGQAAAAADABkAAAAAAQAZAAAAAAMAGQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAABkAAAAAAwAZAAAAAAEAGQAAAAABABkAAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAQARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAwAMAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAADAA== + tiles: AQAAAAACAAEAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAYAAAAAAQAGAAAAAAIABgAAAAAAAAYAAAAAAQAGAAAAAAAABgAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAwABAAAAAAIAAwAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAADAAYAAAAAAQAGAAAAAAEABgAAAAAAAAYAAAAAAAAGAAAAAAIABgAAAAADAAYAAAAAAgAGAAAAAAEABgAAAAAAAAYAAAAAAQARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAIABwAAAAAAAAcAAAAAAgAHAAAAAAAAEQAAAAADABEAAAAAAgAUAAAAAAEAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAFAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAABkAAAAAAgAZAAAAAAAAGQAAAAAAABkAAAAAAAARAAAAAAMAEQAAAAABABQAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABQAAAAAAwAZAAAAAAAAGQAAAAACABkAAAAAAwAZAAAAAAIAEQAAAAABABEAAAAAAQACAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAIAGQAAAAABABkAAAAAAgAZAAAAAAIAGQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAADABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAgAAAAAAABkAAAAAAwAZAAAAAAIAGQAAAAABABkAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAgACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAABAAwAAAAAAgAMAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAIAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAIAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAA== version: 7 1,1: ind: 1,1 - tiles: BgAAAAADAAYAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAADABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAAAAAYAAAAAAgAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABABwAAAAAAwACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAACABQAAAAAAQAUAAAAAAEAFAAAAAACAAIAAAAAAAAcAAAAAAMAHAAAAAABABwAAAAAAAAcAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABAAwAAAAAAAAMAAAAAAMADAAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAABwAAAAAAwAMAAAAAAIADAAAAAABAAwAAAAAAQACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAACAAIAAAAAAAAcAAAAAAMADAAAAAAAAAwAAAAAAgAMAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAEAAAAAAAABAAAAAAAQACAAAAAAAAHAAAAAACABwAAAAAAgAcAAAAAAAAHAAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAEAAgAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGwAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAIAGQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAIAEQAAAAAAAAIAAAAAAAAVAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAwACAAAAAAAAFQAAAAAAAA== + tiles: BgAAAAADAAYAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAAAAAYAAAAAAQAGAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAEAFAAAAAAAABQAAAAAAwAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAADABwAAAAAAgACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAAAFAAAAAACAAIAAAAAAAAcAAAAAAIAHAAAAAADABwAAAAAAwAcAAAAAAIAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAACAAwAAAAAAQAMAAAAAAEADAAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAgAQAAAAAAMAAgAAAAAAABwAAAAAAgAMAAAAAAAADAAAAAAAAAwAAAAAAgACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAAAAAIAAAAAAAAcAAAAAAEADAAAAAACAAwAAAAAAQAMAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAEAAAAAACABAAAAAAAQACAAAAAAAAHAAAAAABABwAAAAAAAAcAAAAAAIAHAAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAABwAAAAAAgAcAAAAAAEAHAAAAAABABwAAAAAAQACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAgAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAGQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAIAAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAAVAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAAACAAAAAAAAFQAAAAAAAA== version: 7 1,0: ind: 1,0 - tiles: AQAAAAADAAEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAAAAAEAAAAAAAABAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAIAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAQADAAAAAAAAAwAAAAAAAAIAAAAAAAAQAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAUAAAAAAMAAgAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAYAAAAAAwACAAAAAAAAEAAAAAAAABsAAAAAAAAUAAAAAAIAGwAAAAAAABsAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAACAAYAAAAAAwAGAAAAAAIAAgAAAAAAABQAAAAAAwAbAAAAAAAAFAAAAAAAABsAAAAAAAAbAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAwAGAAAAAAMABgAAAAACAAIAAAAAAAAQAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAAABgAAAAADAAYAAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAHQAAAAAAAB0AAAAAAAAdAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAABAAYAAAAAAgAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAADAAAAAAAABgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAEAAwAAAAAAAAYAAAAAAQAGAAAAAAMAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAgACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAMAFAAAAAADAAMAAAAAAAAGAAAAAAEABgAAAAABAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAQADAAAAAAAABgAAAAAAAAYAAAAAAwACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAMAFAAAAAACABQAAAAAAwAUAAAAAAMAFAAAAAABABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAgAUAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAIAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAMAFAAAAAACABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAACAA== + tiles: AQAAAAAAAAEAAAAAAwARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAACAAEAAAAAAAABAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAABAAAAAAAwAQAAAAAAAAEAAAAAAAABAAAAAAAQAQAAAAAAEAEAAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAQAAAAAAAAGwAAAAACABsAAAAAAAAbAAAAAAEAGwAAAAAAABsAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgAUAAAAAAEAAgAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAYAAAAAAwACAAAAAAAAEAAAAAACABsAAAAAAQAUAAAAAAMAGwAAAAADABsAAAAAAwAUAAAAAAEAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAACAAYAAAAAAwAGAAAAAAAAAgAAAAAAABQAAAAAAQAbAAAAAAAAFAAAAAABABsAAAAAAAAbAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAABABQAAAAAAQAGAAAAAAAABgAAAAAAAAIAAAAAAAAQAAAAAAMAGwAAAAACABsAAAAAAAAbAAAAAAEAGwAAAAABABsAAAAAAwAdAAAAAAIAHQAAAAABAB0AAAAAAwAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIABgAAAAACAAYAAAAAAwACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAIAEAAAAAAAABAAAAAAAgAQAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAABAAYAAAAAAAAGAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgADAAAAAAAABgAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAMAAwAAAAAAAAYAAAAAAAAGAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAABAAMAAAAAAAAGAAAAAAIABgAAAAABAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAgADAAAAAAAABgAAAAACAAYAAAAAAwACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAAAAwAAAAAAAAYAAAAAAAAGAAAAAAIAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAADAA== version: 7 1,-1: ind: 1,-1 - tiles: BQAAAAADAAUAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAApAAAAAAAAKQAAAAAAAAUAAAAAAQADAAAAAAAACgAAAAABAAIAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAAAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAHQAAAAAAACkAAAAAAAADAAAAAAAAAwAAAAAAAAoAAAAAAQACAAAAAAAAFAAAAAABABQAAAAAAgAUAAAAAAEAFAAAAAADABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAApAAAAAAAAAwAAAAAAAAMAAAAAAAAKAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAMADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAEAAAAAAAAAMAAAAAAAADAAAAAAAACgAAAAADAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAYAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAYAAAAAAgAGAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAGAAAAAAMABgAAAAADAAIAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAAAFAAAAAADABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAABgAAAAADAAYAAAAAAgACAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAMAAAAAAAAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAABgAAAAABAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAMAAgAAAAAAAAIAAAAAAAARAAAAAAAAAQAAAAACAAEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAAAAA== + tiles: BQAAAAABAAUAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAApAAAAAAAAKQAAAAAAAAUAAAAAAwADAAAAAAAACgAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAHQAAAAABACkAAAAAAwADAAAAAAAAAwAAAAAAAAoAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAgApAAAAAAEAAwAAAAAAAAMAAAAAAAAKAAAAAAMAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAAAUAAAAAAEADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAEAEAAAAAABAAMAAAAAAAADAAAAAAAACgAAAAADAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAwADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAEAAwAAAAAAAAYAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAABAAYAAAAAAQAGAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAwAGAAAAAAIABgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMABgAAAAABAAYAAAAAAQACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAADAAMAAAAAAAAGAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAABgAAAAACAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAACAAMAAAAAAAADAAAAAAAAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwADAAAAAAAAAwAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAAQAAAAAAAAEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAAAAA== version: 7 1,-2: ind: 1,-2 - tiles: DAAAAAADAAwAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAgACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABsAAAAAAwAUAAAAAAEAFAAAAAACAAwAAAAAAQAMAAAAAAMAHAAAAAAAAAwAAAAAAQAMAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAwAMAAAAAAEADAAAAAADAAIAAAAAAAAMAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAADAAIAAAAAAAAUAAAAAAAAFAAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAMAFAAAAAACABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAMAFAAAAAAAABQAAAAAAwAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAApAAAAAAAABQAAAAACAAUAAAAAAwAUAAAAAAMAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAABAAIAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAAAKQAAAAAAAA== + tiles: DAAAAAAAAAwAAAAAAQACAAAAAAAADAAAAAAAAAwAAAAAAgACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAACABsAAAAAAgAUAAAAAAAAFAAAAAADAAwAAAAAAQAMAAAAAAIAHAAAAAADAAwAAAAAAAAMAAAAAAEAAgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgACAAAAAAAAFAAAAAABABQAAAAAAwAMAAAAAAAADAAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABAAIAAAAAAAAUAAAAAAAAFAAAAAACAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAgACAAAAAAAAFAAAAAAAABQAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAIAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAwACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAMAFAAAAAABABQAAAAAAgAUAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADAAIAAAAAAAAUAAAAAAAAFAAAAAADABQAAAAAAwAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAIAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAMAFAAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAAApAAAAAAEABQAAAAACAAUAAAAAAwAUAAAAAAMAFAAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAACAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAIAKQAAAAACAA== version: 7 0,-2: ind: 0,-2 - tiles: EQAAAAABABEAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAIADAAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAAA4AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAwARAAAAAAIAEQAAAAABAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAAgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAADABQAAAAAAwAUAAAAAAAAEQAAAAABABEAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAADABEAAAAAAgARAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAADABQAAAAAAwARAAAAAAAAEQAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQACAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAMADAAAAAADAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAAFAAAAAACABQAAAAAAAAUAAAAAAEAAgAAAAAAAAwAAAAAAgAMAAAAAAMADAAAAAABAAwAAAAAAgAcAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAADABEAAAAAAAARAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAQAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAKAAAAAAEACgAAAAADAAoAAAAAAAAKAAAAAAAAAQAAAAABAAEAAAAAAwADAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAEABgAAAAAAAAYAAAAAAwAGAAAAAAAABgAAAAABAAYAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== + tiles: EQAAAAABABEAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAMADAAAAAADABEAAAAAAAARAAAAAAIAAgAAAAAAAA4AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAAAAAwAAAAAAwARAAAAAAMAEQAAAAABAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAAgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAABABQAAAAAAgAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAAAEQAAAAABABEAAAAAAgAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAAAFAAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAQARAAAAAAMAEQAAAAACAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAAADAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAgAUAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAMAAgAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAgAcAAAAAAMAFAAAAAADABQAAAAAAAAUAAAAAAAAFAAAAAAAABEAAAAAAgARAAAAAAMAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAABAAIAAAAAAAAMAAAAAAEADAAAAAAAAAwAAAAAAQAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAKAAAAAAEACgAAAAACAAoAAAAAAAAKAAAAAAMAAQAAAAADAAEAAAAAAwADAAAAAAAAAwAAAAAAAAYAAAAAAwAGAAAAAAEABgAAAAABAAYAAAAAAwAGAAAAAAIABgAAAAACAAYAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAA== version: 7 -1,-2: ind: -1,-2 - tiles: HwAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAABAAIAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAMAAgAAAAAAABEAAAAAAQAfAAAAAAAAHwAAAAACAAIAAAAAAAAfAAAAAAEAHwAAAAACAB8AAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAwARAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAMAFAAAAAACABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAwACAAAAAAAAEQAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAACAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAUAAAAAAMAIgAAAAACACIAAAAAAgAiAAAAAAEAAgAAAAAAABEAAAAAAQAfAAAAAAIAHwAAAAAAAAIAAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAFAAAAAADACIAAAAAAQAiAAAAAAAAIgAAAAABAAIAAAAAAAARAAAAAAEAHwAAAAAAAB8AAAAAAQACAAAAAAAAHwAAAAAAAB8AAAAAAwAfAAAAAAMAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAwACAAAAAAAAEQAAAAAAAB8AAAAAAQAfAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAAAHwAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAQACAAAAAAAAFgAAAAACABYAAAAABQAWAAAAAAEAFgAAAAACAAIAAAAAAAAjAAAAAAAAIwAAAAAJACMAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAEAAgAAAAAAABYAAAAABQAWAAAAAAEAFgAAAAACABYAAAAAAQACAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAABgAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAADAAIAAAAAAAAWAAAAAAEAFgAAAAABABYAAAAAAgAWAAAAAAIAAgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAIAAAAAAAARAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAACAA== + tiles: HwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAAAAB8AAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAAIAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAwAUAAAAAAAAFAAAAAADABQAAAAAAwAUAAAAAAEAAgAAAAAAABEAAAAAAQAfAAAAAAIAHwAAAAABAAIAAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAQACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAEAFAAAAAABABQAAAAAAgAUAAAAAAMAFAAAAAADABQAAAAAAAARAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAQAfAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAAACAAAAAAAAEQAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAABAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAUAAAAAAAAIgAAAAAAACIAAAAAAQAiAAAAAAIAAgAAAAAAABEAAAAAAwAfAAAAAAAAHwAAAAAAAAIAAAAAAAAfAAAAAAAAHwAAAAABAB8AAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAFAAAAAACACIAAAAAAgAiAAAAAAAAIgAAAAABAAIAAAAAAAARAAAAAAMAHwAAAAADAB8AAAAAAgACAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAgACAAAAAAAAEQAAAAAAAB8AAAAAAgAfAAAAAAMAAgAAAAAAAAIAAAAAAAAfAAAAAAIAHwAAAAADAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAAAACAAAAAAAgACAAAAAAAAFgAAAAACABYAAAAABQAWAAAAAAUAFgAAAAADAAIAAAAAAAAjAAAAAAAAIwAAAAAAACMAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAAAgAAAAAAIAAgAAAAAAABYAAAAAAAAWAAAAAAMAFgAAAAAFABYAAAAAAgACAAAAAAAAIwAAAAAAACMAAAAAAAAjAAAAAAAAAgAAAAAAABEAAAAAAQACAAAAAAAABgAAAAAAAAMAAAAAAAAGAAAAAAMABgAAAAACAAIAAAAAAAAWAAAAAAAAFgAAAAACABYAAAAABQAWAAAAAAUAAgAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAAIAAAAAAAARAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAA== version: 7 -2,-2: ind: -2,-2 - tiles: HwAAAAAAAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAABAAIAAAAAAAAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAACAAIAAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAIAAgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAEAJQAAAAAAACUAAAAAAAAlAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAEAHwAAAAABACUAAAAAAAAlAAAAAAAAJQAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAwAfAAAAAAEAHwAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgAlAAAAAAAAJQAAAAAAACUAAAAAAAAfAAAAAAAAAgAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAACAAIAAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAABAAIAAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQACAAAAAAAAHwAAAAACAB8AAAAAAgACAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAIAAgAAAAAAABIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAgAfAAAAAAMAAgAAAAAAAB8AAAAAAQAfAAAAAAEAHwAAAAABAAIAAAAAAAASAAAAAAEAEgAAAAACABIAAAAAAAASAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAAASAAAAAAIAEgAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAASAAAAAAMAEgAAAAACABIAAAAAAQASAAAAAAAAAgAAAAAAABIAAAAAAAASAAAAAAMAEgAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAADABIAAAAAAQASAAAAAAIAEgAAAAADAAIAAAAAAAASAAAAAAEAEgAAAAABABIAAAAAAgAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAYAAAAAAgAGAAAAAAIABgAAAAADABIAAAAAAwASAAAAAAAAEgAAAAAAABIAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAQASAAAAAAAAEgAAAAABABIAAAAAAQASAAAAAAEAAgAAAAAAAAIAAAAAAAASAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAIAAwAAAAAAAAQAAAAAAAAEAAAAAAAAEgAAAAADABIAAAAAAgASAAAAAAMAEgAAAAABABIAAAAAAgASAAAAAAIAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABgAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAA== + tiles: HwAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAADAB8AAAAAAwAfAAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAACAAIAAAAAAAAfAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAwAfAAAAAAMAHwAAAAAAAAIAAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAEAAgAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAAIAAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAwAfAAAAAAIAJQAAAAAAACUAAAAAAAAlAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAABACUAAAAAAAAlAAAAAAAAJQAAAAAAAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAABAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAlAAAAAAAAJQAAAAAAACUAAAAAAAAfAAAAAAEAAgAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAAAAAIAAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAACAAIAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAwACAAAAAAAAHwAAAAADAB8AAAAAAQACAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAMAAgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAMAAgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAAIAAAAAAAASAAAAAAMAEgAAAAAAABIAAAAAAQASAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAgASAAAAAAMAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAASAAAAAAIAEgAAAAADABIAAAAAAQASAAAAAAIAAgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAwASAAAAAAEAEgAAAAABAAIAAAAAAAASAAAAAAEAEgAAAAAAABIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAYAAAAAAwAGAAAAAAIABgAAAAAAABIAAAAAAwASAAAAAAIAEgAAAAABABIAAAAAAAACAAAAAAAAEgAAAAACABIAAAAAAgASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAYAAAAAAgASAAAAAAMAEgAAAAACABIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAIAAwAAAAAAAAQAAAAAAAAEAAAAAAAAEgAAAAABABIAAAAAAgASAAAAAAIAEgAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABgAAAAADAAMAAAAAAAAEAAAAAAAAAwAAAAAAAA== version: 7 -1,-3: ind: -1,-3 - tiles: FAAAAAACAAIAAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAAAAgAAAAAAABAAAAAAAwAlAAAAAAAAEAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABQAAAAAAQACAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAAAHwAAAAABAAIAAAAAAAAQAAAAAAIAJQAAAAAAABAAAAAAAQAbAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAIAGwAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAABACUAAAAAAAAQAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAARAAAAAAMAEAAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAQAQAAAAAAAAGwAAAAAAABAAAAAAAQAlAAAAAAAAEAAAAAACAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAAAEQAAAAACAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAJQAAAAAAABAAAAAAAgARAAAAAAIAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAADABEAAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAgACAAAAAAAAEAAAAAADABAAAAAAAwAQAAAAAAEAAgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAAARAAAAAAMAIgAAAAABACIAAAAAAwAiAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAEAAgAAAAAAABAAAAAAAQAQAAAAAAEAEAAAAAACAAIAAAAAAAAQAAAAAAEAEAAAAAACABAAAAAAAAACAAAAAAAAEQAAAAADACIAAAAAAgAiAAAAAAEAIgAAAAACAB8AAAAAAwAfAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQAiAAAAAAMAIgAAAAAAACIAAAAAAwAfAAAAAAAAHwAAAAADAAIAAAAAAAASAAAAAAAAEgAAAAABABIAAAAAAgASAAAAAAEAEgAAAAADABIAAAAAAgACAAAAAAAAEgAAAAAAABIAAAAAAgARAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAAAAB8AAAAAAAAfAAAAAAMAEgAAAAABABIAAAAAAQASAAAAAAAAEgAAAAAAABIAAAAAAQASAAAAAAEAAgAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAACAB8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAADAAIAAAAAAAASAAAAAAAAEgAAAAABABIAAAAAAwAfAAAAAAMAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAAAABIAAAAAAgASAAAAAAIAEgAAAAACABIAAAAAAAASAAAAAAEAEgAAAAABABIAAAAAAAASAAAAAAEAEgAAAAADABIAAAAAAgASAAAAAAMAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAgASAAAAAAEAEgAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAADABIAAAAAAgASAAAAAAAAEgAAAAADABIAAAAAAwASAAAAAAIAEgAAAAADACYAAAAAAAAmAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAEAAgAAAAAAABIAAAAAAAASAAAAAAEAEgAAAAAAABIAAAAAAQASAAAAAAIAEgAAAAADAAIAAAAAAAASAAAAAAEAEgAAAAADABIAAAAAAwAmAAAAAAAAJgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAADAAIAAAAAAAASAAAAAAMAEgAAAAADABIAAAAAAQASAAAAAAIAEgAAAAADABIAAAAAAwACAAAAAAAAEgAAAAAAABIAAAAAAQASAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAgASAAAAAAEAEgAAAAADABIAAAAAAAASAAAAAAEAEgAAAAAAABIAAAAAAAASAAAAAAIAAgAAAAAAABIAAAAAAgASAAAAAAIAEQAAAAACAA== + tiles: FAAAAAACAAIAAAAAAAAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAEAAgAAAAAAABAAAAAAAQAlAAAAAAAAEAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABQAAAAAAgACAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAAIAAAAAAAAQAAAAAAMAJQAAAAAAABAAAAAAAwAbAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAGwAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAACAAIAAAAAAAARAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAIAGwAAAAADABAAAAAAAAAlAAAAAAAAEAAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAAQAAAAAAEAEQAAAAABAAIAAAAAAAAQAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAMAJQAAAAAAABAAAAAAAgARAAAAAAIAGgAAAAAAABoAAAAAAAAaAAAAAAAAEAAAAAACABEAAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAwACAAAAAAAAEAAAAAADABAAAAAAAwAQAAAAAAAAAgAAAAAAABoAAAAAAAAaAAAAAAAAGgAAAAAAABAAAAAAAQARAAAAAAAAIgAAAAADACIAAAAAAwAiAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAEAAgAAAAAAABAAAAAAAwAQAAAAAAEAEAAAAAACAAIAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAAACAAAAAAAAEQAAAAABACIAAAAAAAAiAAAAAAIAIgAAAAABAB8AAAAAAgAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgAiAAAAAAAAIgAAAAAAACIAAAAAAQAfAAAAAAEAHwAAAAACAAIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAwASAAAAAAMAEgAAAAADABIAAAAAAQACAAAAAAAAEgAAAAADABIAAAAAAAARAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAEAEgAAAAABABIAAAAAAwASAAAAAAEAEgAAAAAAABIAAAAAAgASAAAAAAEAAgAAAAAAABIAAAAAAAASAAAAAAEAEgAAAAADAB8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAgASAAAAAAAAEgAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAABAAIAAAAAAAASAAAAAAIAEgAAAAABABIAAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAAAABIAAAAAAgASAAAAAAEAEgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAACABIAAAAAAQASAAAAAAIAEgAAAAADABIAAAAAAQASAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAACAB8AAAAAAgASAAAAAAIAEgAAAAACABIAAAAAAwASAAAAAAMAEgAAAAABABIAAAAAAAASAAAAAAMAEgAAAAADABIAAAAAAgASAAAAAAEAEgAAAAACACYAAAAAAAAmAAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAIAAgAAAAAAABIAAAAAAQASAAAAAAAAEgAAAAAAABIAAAAAAQASAAAAAAMAEgAAAAADAAIAAAAAAAASAAAAAAAAEgAAAAADABIAAAAAAwAmAAAAAAAAJgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAADAAIAAAAAAAASAAAAAAIAEgAAAAABABIAAAAAAQASAAAAAAAAEgAAAAACABIAAAAAAwACAAAAAAAAEgAAAAADABIAAAAAAAASAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAQASAAAAAAEAEgAAAAABABIAAAAAAwASAAAAAAAAEgAAAAABABIAAAAAAQASAAAAAAMAAgAAAAAAABIAAAAAAgASAAAAAAAAEQAAAAAAAA== version: 7 0,-3: ind: 0,-3 - tiles: EQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAAAZAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAAAGQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAAAdAAAAAAAAHQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAgAdAAAAAAEAHQAAAAABAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAAARAAAAAAIAHQAAAAABAB0AAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAABEAAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAgAdAAAAAAMAEQAAAAADAB0AAAAAAgAdAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwAdAAAAAAMAHQAAAAACABEAAAAAAAARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAHQAAAAADAB0AAAAAAgARAAAAAAMAEQAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAQAdAAAAAAEAEQAAAAACABEAAAAAAQACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAwAdAAAAAAIAHQAAAAACABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAADAAIAAAAAAAARAAAAAAMAHQAAAAADAB0AAAAAAQARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAwAdAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAQAdAAAAAAMAHQAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAACAAIAAAAAAAARAAAAAAIAHQAAAAADAB0AAAAAAgARAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAwACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAgAZAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAGQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAACAAIAAAAAAAARAAAAAAEAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAAAdAAAAAAEAHQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAgACAAAAAAAAEQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAgARAAAAAAMAHQAAAAAAAB0AAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAABEAAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAABAB0AAAAAAwAdAAAAAAMAEQAAAAABAB0AAAAAAAAdAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQAdAAAAAAMAHQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAHQAAAAAAAB0AAAAAAgARAAAAAAIAEQAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAADABEAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAwAdAAAAAAIAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAAdAAAAAAAAHQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAABAAIAAAAAAAARAAAAAAMAHQAAAAADAB0AAAAAAQARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAEQAAAAADAB0AAAAAAgAdAAAAAAEAEQAAAAADABEAAAAAAgACAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAAgAAAAAAABEAAAAAAQAdAAAAAAMAHQAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAAAAAIAAAAAAAARAAAAAAAAHQAAAAADAB0AAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAQACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -2,-3: ind: -2,-3 - tiles: JwAAAAAAACcAAAAAAAAnAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAEAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABAAIAAAAAAAAUAAAAAAIAFAAAAAABACcAAAAAAAAnAAAAAAAAJwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQACAAAAAAAAFAAAAAAAABQAAAAAAQAnAAAAAAAAJwAAAAAAACcAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAwAQAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAIAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAACABAAAAAAAwAQAAAAAAIAEAAAAAAAACcAAAAAAAAnAAAAAAAAJwAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAAB8AAAAAAQAfAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAEAAgAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAABAAwAAAAAAAAMAAAAAAIADAAAAAABAAIAAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAQACAAAAAAAAHwAAAAADAB8AAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAAACAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAIAHwAAAAABAB8AAAAAAgAfAAAAAAEADAAAAAACAAwAAAAAAwAMAAAAAAEAAgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAQAfAAAAAAIAAgAAAAAAAB8AAAAAAAAfAAAAAAEAHwAAAAADAAIAAAAAAAAfAAAAAAMAHwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAADAAwAAAAAAQACAAAAAAAAHwAAAAAAAB8AAAAAAAAQAAAAAAAAHwAAAAABAB8AAAAAAAACAAAAAAAAHwAAAAACAB8AAAAAAwAfAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAIADAAAAAADAAwAAAAAAQAMAAAAAAAAHAAAAAAAAB8AAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAAAAAwAAAAAAAAMAAAAAAEADAAAAAABAAIAAAAAAAAfAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAACACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAACAAAAAAAAEAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAABAB8AAAAAAQAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAHwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAgAfAAAAAAEAHwAAAAADAB8AAAAAAgAfAAAAAAAAHwAAAAABAB8AAAAAAgAfAAAAAAAAHwAAAAAAAA== + tiles: JwAAAAAAACcAAAAAAAAnAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAQAUAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAAUAAAAAAEAFAAAAAACACcAAAAAAAAnAAAAAAAAJwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAwAnAAAAAAAAJwAAAAAAACcAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAgAQAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAJwAAAAAAACcAAAAAAAAnAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAEAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABAAAAAAAgAQAAAAAAAAEAAAAAACACcAAAAAAAAnAAAAAAAAJwAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAADAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAnAAAAAAAAJwAAAAAAACcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAB8AAAAAAgAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAwAfAAAAAAEAHwAAAAACAB8AAAAAAAAfAAAAAAIAAgAAAAAAAAIAAAAAAAAfAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAADAAwAAAAAAwAMAAAAAAAADAAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAAAHwAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAgACAAAAAAAAHwAAAAABAB8AAAAAAgAMAAAAAAEADAAAAAACAAwAAAAAAgACAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAIADAAAAAAAAAwAAAAAAgAMAAAAAAEAAgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAgAfAAAAAAMAAgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAAAAAIAAAAAAAAfAAAAAAEAHwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAQACAAAAAAAAHwAAAAACAB8AAAAAAQAQAAAAAAMAHwAAAAABAB8AAAAAAQACAAAAAAAAHwAAAAABAB8AAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAwAfAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAIAHAAAAAADAB8AAAAAAgAQAAAAAAAAEAAAAAAAABAAAAAAAwAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAMAHwAAAAADAB8AAAAAAAAfAAAAAAMAHwAAAAACAAwAAAAAAAAMAAAAAAEADAAAAAADAAIAAAAAAAAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAIAHwAAAAACAAIAAAAAAAAfAAAAAAAAHwAAAAABACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAACAAAAAAAAEAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAAAAB8AAAAAAgAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAMAHwAAAAACAA== version: 7 1,-3: ind: 1,-3 - tiles: AgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAADAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAdAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAIAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAAB0AAAAAAwARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwAdAAAAAAMAEQAAAAABABEAAAAAAwAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAIgAAAAACACIAAAAAAwAiAAAAAAAAHQAAAAACABEAAAAAAgARAAAAAAEAFQAAAAAAABUAAAAAAAAVAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAMAEQAAAAABACIAAAAAAgAiAAAAAAIAIgAAAAABAB0AAAAAAAARAAAAAAMAEQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAADABEAAAAAAAAiAAAAAAMAIgAAAAABACIAAAAAAAAdAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAHQAAAAAAABEAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAgARAAAAAAEAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAHAAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABsAAAAAAQAUAAAAAAIAFAAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAdAAAAAAIAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAQAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAIAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAADAB0AAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAgAdAAAAAAIAEQAAAAACABEAAAAAAwAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAIgAAAAACACIAAAAAAwAiAAAAAAEAHQAAAAACABEAAAAAAQARAAAAAAMAFQAAAAAAABUAAAAAAAAVAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAEAEQAAAAABACIAAAAAAQAiAAAAAAIAIgAAAAACAB0AAAAAAAARAAAAAAAAEQAAAAACABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAACABEAAAAAAQAiAAAAAAIAIgAAAAABACIAAAAAAgAdAAAAAAEAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAMAHQAAAAADABEAAAAAAQACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAB0AAAAAAgARAAAAAAIAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAgARAAAAAAEAEQAAAAABAAIAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAIAHAAAAAADAAIAAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAADABsAAAAAAgAUAAAAAAMAFAAAAAABAA== version: 7 2,-2: ind: 2,-2 - tiles: FAAAAAADABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAMAFAAAAAADABsAAAAAAwAUAAAAAAIAFAAAAAADABQAAAAAAwAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAgACAAAAAAAAAgAAAAAAABsAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAABsAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAADABQAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAABABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAABABQAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAAAbAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAbAAAAAAIAFAAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGwAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABsAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAApAAAAAAAAAgAAAAAAAAIAAAAAAAAbAAAAAAAAGwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAbAAAAAAAAKQAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAA== + tiles: FAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAQAUAAAAAAAAFAAAAAAAABsAAAAAAQAUAAAAAAMAFAAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAQACAAAAAAAAAgAAAAAAABsAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAADABsAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAEAAgAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAABABQAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAQACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAIAFAAAAAACABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAADAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAMAAgAAAAAAABQAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAgAbAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAEAFAAAAAABAAIAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAwAUAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAbAAAAAAMAFAAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAABABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAMAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGwAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAACABQAAAAAAgAUAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAIAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAABABQAAAAAAQAUAAAAAAMAFAAAAAABABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAgAUAAAAAAEAFAAAAAAAABsAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAQAUAAAAAAEAAgAAAAAAABQAAAAAAAApAAAAAAAAAgAAAAAAAAIAAAAAAAAbAAAAAAIAGwAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAMAFAAAAAAAABQAAAAAAAAbAAAAAAEAKQAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAIAAgAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAAAFAAAAAACAA== version: 7 2,-3: ind: 2,-3 - tiles: AgAAAAAAAA8AAAAAAAAUAAAAAAMAFAAAAAADAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAABQAAAAAAgAPAAAAAAAAFAAAAAADABQAAAAAAwAPAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAAgAAAAAAABQAAAAAAQAUAAAAAAMAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAADABQAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAABABsAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAACAAIAAAAAAAACAAAAAAAAKQAAAAAAAAIAAAAAAAAiAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAABACEAAAAAAAAhAAAAAAAAIQAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAMAIgAAAAADABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAACACIAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABsAAAAAAgACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAACABQAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAAAFAAAAAACABQAAAAAAwAbAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAIAAgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAADAAIAAAAAAAACAAAAAAAAKQAAAAADAAIAAAAAAAAUAAAAAAMAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAgAUAAAAAAIAGwAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAAAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAgAUAAAAAAMAFAAAAAABABQAAAAAAgAUAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: AgAAAAAAAA8AAAAAAAAUAAAAAAIAFAAAAAADAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAABQAAAAAAAAPAAAAAAAAFAAAAAADABQAAAAAAAAPAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAMAAgAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAADABQAAAAAAAAUAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABAAIAAAAAAAAUAAAAAAEAFAAAAAABABsAAAAAAQAUAAAAAAMAFAAAAAABABQAAAAAAAAUAAAAAAMAFAAAAAABAAIAAAAAAAACAAAAAAAAKQAAAAAAAAIAAAAAAAAiAAAAAAMAEQAAAAADABEAAAAAAwACAAAAAAAAFAAAAAABABQAAAAAAwACAAAAAAAAFAAAAAACACEAAAAAAAAhAAAAAAAAIQAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAMAIgAAAAADABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAgAUAAAAAAIAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAADACIAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABsAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAABABQAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAgACAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAABABQAAAAAAwAbAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAgAUAAAAAAIAAgAAAAAAABQAAAAAAQAUAAAAAAIAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAgACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAAKQAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAAAGwAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAMAAgAAAAAAAA8AAAAAAAAPAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAIAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 2,-1: ind: 2,-1 - tiles: KQAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAAB0AAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAACkAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAApAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAACkAAAAAAAAdAAAAAAAAKQAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABAAAAAAAAApAAAAAAAAKQAAAAAAACkAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGwAAAAAAABsAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAAABsAAAAAAAAbAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAAAFAAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAHAAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAACABwAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAAADAAAAAACAAwAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAcAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAMAHAAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAFAAAAAAAABQAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAAAAA== + tiles: KQAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAAB0AAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAEAFAAAAAABACkAAAAAAQACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAwAUAAAAAAIAFAAAAAACABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAApAAAAAAEAAgAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAIAFAAAAAABABQAAAAAAgAUAAAAAAMAKQAAAAAAACkAAAAAAgApAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAACACkAAAAAAQAdAAAAAAIAKQAAAAADABQAAAAAAAAUAAAAAAIAAgAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAgAUAAAAAAIAFAAAAAACABQAAAAAAwAUAAAAAAIAFAAAAAABABAAAAAAAwApAAAAAAEAKQAAAAACACkAAAAAAwAUAAAAAAAAFAAAAAABAAIAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgACAAAAAAAAFAAAAAADAAIAAAAAAAAMAAAAAAMADAAAAAABABQAAAAAAQACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAMAFAAAAAADAAIAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAAAMAAAAAAIAGwAAAAAAABsAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAQAUAAAAAAIAAgAAAAAAABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAQACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAIAHAAAAAAAABsAAAAAAwAbAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAEAFAAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAEAHAAAAAABAAwAAAAAAQAMAAAAAAIADAAAAAACABwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAAADAAAAAABAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAMAFAAAAAABAAIAAAAAAAAcAAAAAAIAHAAAAAACABwAAAAAAwAcAAAAAAIADAAAAAAAAAwAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAgAUAAAAAAMAFAAAAAACABQAAAAAAQAcAAAAAAMADAAAAAAAAAwAAAAAAAAMAAAAAAMAHAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAABAAwAAAAAAwAMAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAAAUAAAAAAIAAgAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAAAABwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwACAAAAAAAAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAABAAIAAAAAAAAMAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAMAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAFAAAAAACABQAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAACAA== version: 7 2,0: ind: 2,0 - tiles: EQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAwACAAAAAAAACwAAAAAAABEAAAAAAQARAAAAAAMACwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAEAAgAAAAAAAAsAAAAAAAARAAAAAAAAEQAAAAABAAsAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAADAAIAAAAAAAALAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAACwAAAAAAABEAAAAAAgALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAgAcAAAAAAAADAAAAAAAAAwAAAAAAgAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAMAHAAAAAAAAAwAAAAAAQAMAAAAAAIAHAAAAAADAAwAAAAAAQAMAAAAAAAADAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAFAAAAAABABwAAAAAAQAMAAAAAAIADAAAAAABABwAAAAAAwAMAAAAAAEADAAAAAAAAAwAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAwACAAAAAAAADAAAAAACAAwAAAAAAAAcAAAAAAIADAAAAAADAAwAAAAAAgAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAACABEAAAAAAwARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAwACAAAAAAAACwAAAAAAABEAAAAAAQARAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAMAAgAAAAAAAAsAAAAAAAARAAAAAAIAEQAAAAABAAsAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABAAIAAAAAAAALAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAAACAAAAAAAACwAAAAAAABEAAAAAAwALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAwACAAAAAAAADAAAAAAAAAwAAAAAAQAcAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAHAAAAAAAAAwAAAAAAQAMAAAAAAMAHAAAAAABAAwAAAAAAAAMAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAFAAAAAAAABwAAAAAAgAMAAAAAAEADAAAAAABABwAAAAAAQAMAAAAAAAADAAAAAADAAwAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAgACAAAAAAAADAAAAAAAAAwAAAAAAwAcAAAAAAMADAAAAAADAAwAAAAAAwAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 2,1: ind: 2,1 - tiles: FAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAQAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAAAHAAAAAABABwAAAAAAgAMAAAAAAMADAAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAgAMAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAADABwAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAgACAAAAAAAAAgAAAAAAACwAAAAAAAAMAAAAAAIADAAAAAACAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAwAcAAAAAAIAAgAAAAAAABIAAAAAAwASAAAAAAEAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAwAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMAHAAAAAABAAIAAAAAAAASAAAAAAIAEgAAAAADAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAAAABwAAAAAAwACAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAABAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAAAcAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAAAAAwAAAAAAQACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFQAAAAAAACsAAAAAAAArAAAAAAMAKwAAAAACABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA== + tiles: FAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAwACAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAEAHAAAAAABABwAAAAAAgAMAAAAAAMADAAAAAACAAIAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAACABwAAAAAAQACAAAAAAAAAgAAAAAAABwAAAAAAAACAAAAAAAAAgAAAAAAACwAAAAABgAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAgAcAAAAAAIAAgAAAAAAABIAAAAAAQASAAAAAAMAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAEAHAAAAAABAAIAAAAAAAASAAAAAAMAEgAAAAAAAAIAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAAAABwAAAAAAwACAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABwAAAAAAwAcAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAAAAAwAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAFQAAAAAAACsAAAAAAQArAAAAAAAAKwAAAAACABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA== version: 7 -3,-3: ind: -3,-3 - tiles: DwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAAgAAAAAAAC8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAACAAAAAAAAAgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAACAAwAAAAAAAAPAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAABwAAAAAAgAMAAAAAAEADAAAAAABAAwAAAAAAwAMAAAAAAIAAgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAEADAAAAAABAAIAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAADAAIAAAAAAAAMAAAAAAMACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAHAAAAAADAAIAAAAAAAACAAAAAAAADAAAAAABAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAADABIAAAAAAQASAAAAAAEAAgAAAAAAAAwAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAASAAAAAAMAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAACAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAAASAAAAAAIAEgAAAAABABIAAAAAAgAfAAAAAAEAHwAAAAAAAA== + tiles: DwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAAgAAAAAAAC8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAACAAAAAAAAAgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAAIAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAEADAAAAAADAAwAAAAAAgAPAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAAuAAAAAAAALgAAAAAAABwAAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAAAMAAAAAAMAAgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAEADAAAAAAAAAIAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAIAAAAAAAAMAAAAAAEACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwACAAAAAAAALgAAAAAAAC4AAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAACAAAAAAAADAAAAAABAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAAgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAACABIAAAAAAAASAAAAAAEAAgAAAAAAAAwAAAAAAQALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAASAAAAAAMAEgAAAAADABIAAAAAAwASAAAAAAAAEgAAAAABAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAgACAAAAAAAAEgAAAAACABIAAAAAAgASAAAAAAIAEgAAAAACABIAAAAAAQAfAAAAAAMAHwAAAAADAA== version: 7 -3,-2: ind: -3,-2 - tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAEgAAAAABABIAAAAAAgASAAAAAAEAEgAAAAABABIAAAAAAAAfAAAAAAAAHwAAAAABABAAAAAAAwAQAAAAAAEAEAAAAAABABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAABIAAAAAAwASAAAAAAEAEgAAAAABABIAAAAAAgASAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAMAEAAAAAABABAAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAADABQAAAAAAgAUAAAAAAMAEQAAAAAAABEAAAAAAwACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAAAUAAAAAAEAFAAAAAADABEAAAAAAQARAAAAAAEAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAEAFAAAAAAAABQAAAAAAwARAAAAAAEAEQAAAAADABQAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAADAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAMAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAADADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAMAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAIAAgAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADAA== + tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAwACAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAMAEgAAAAACABIAAAAAAgAfAAAAAAMAHwAAAAADABAAAAAAAQAQAAAAAAMAEAAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAAgAAAAAAABIAAAAAAgASAAAAAAMAEgAAAAAAABIAAAAAAQASAAAAAAIAAgAAAAAAAAIAAAAAAAAQAAAAAAMAEAAAAAACABAAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAADABQAAAAAAwAUAAAAAAIAEQAAAAADABEAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB8AAAAAAgAUAAAAAAAAFAAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAACAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfAAAAAAAAFAAAAAADABQAAAAAAgARAAAAAAIAEQAAAAABABQAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAADAAIAAAAAAAARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAMAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADAA== version: 7 -3,-1: ind: -3,-1 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAQAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAEAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAEAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAABEAAAAAAgAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAQACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAEACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAADAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEgAAAAADADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABIAAAAAAgAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAASAAAAAAEAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAABEAAAAAAgAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAAAAA== version: 7 -3,0: ind: -3,0 - tiles: EQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAQACAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAABQAAAAAAQAUAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAARAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAIAEQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAQACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAABQAAAAAAwAUAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAwACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -3,1: ind: -3,1 @@ -215,103 +218,103 @@ entities: version: 7 0,-4: ind: 0,-4 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAAIAAAAAAEACAAAAAAAAAIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAACAAAAAADAAgAAAAAAwACAAAAAAAAMgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAgAAAAAAgAIAAAAAAMAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAIAAAAAAMACAAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAARAAAAAAEAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMgAAAAADADIAAAAAAQAyAAAAAAMAMgAAAAAAADIAAAAAAgAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADIAAAAAAAAyAAAAAAAAMgAAAAADADIAAAAAAQAyAAAAAAEADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAAIAAAAAAAACAAAAAACAAIAAAAAAAAyAAAAAAAAMgAAAAAAADIAAAAAAgAyAAAAAAEAMgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAACAAAAAABAAgAAAAAAgACAAAAAAAAMgAAAAADADIAAAAAAgAyAAAAAAEAMgAAAAACADIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAAAgAAAAAAQAIAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAAIAAAAAAMACAAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAABAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -1,-4: ind: -1,-4 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAMAEAAAAAAAABAAAAAAAwAQAAAAAAMAEAAAAAADABAAAAAAAwACAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAQAAAAAAMAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAgAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAADACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEAAAAAAAAAIAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAABAAAAAAAwACAAAAAAAAEQAAAAABABQAAAAAAQACAAAAAAAAHwAAAAADAB8AAAAAAQAfAAAAAAIAHwAAAAAAAAIAAAAAAAAQAAAAAAEAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAwAUAAAAAAIAAgAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAAAAB8AAAAAAAACAAAAAAAAEAAAAAADACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEAAAAAABAAIAAAAAAAARAAAAAAEAFAAAAAACAAIAAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAIAGwAAAAABABAAAAAAAAAQAAAAAAIAEAAAAAABABAAAAAAAwAQAAAAAAIAEAAAAAABABAAAAAAAAACAAAAAAAAEQAAAAABAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAgAQAAAAAAEAEAAAAAACABAAAAAAAgACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAQAAAAAAEAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAgAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAACACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEAAAAAACAAIAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAgAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAABAAAAAAAQACAAAAAAAAEQAAAAADABQAAAAAAQACAAAAAAAAHwAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAAIAAAAAAAAQAAAAAAMAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAQAAAAAAIAAgAAAAAAABEAAAAAAQAUAAAAAAMAAgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAwACAAAAAAAAEAAAAAACACUAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAEAAAAAADAAIAAAAAAAARAAAAAAAAFAAAAAABAAIAAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAAfAAAAAAMAGwAAAAADABAAAAAAAgAQAAAAAAIAEAAAAAAAABAAAAAAAgAQAAAAAAAAEAAAAAAAABAAAAAAAwACAAAAAAAAEQAAAAADAA== version: 7 -2,-4: ind: -2,-4 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAAAEAAAAAAAAAIAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAAAABAAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAEAKgAAAAAFAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAACoAAAAABwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAACACoAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAALgAAAAAAAAIAAAAAAAAuAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAwAuAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAEAFAAAAAACABQAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAgAUAAAAAAIAEAAAAAADABEAAAAAAgARAAAAAAIAEQAAAAADABAAAAAAAwAUAAAAAAAAFAAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAQAAAAAAIAEAAAAAACAAIAAAAAAAAqAAAAAAUADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAEAAAAAACABAAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAIAAgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAwAqAAAAAAAAKgAAAAAAACoAAAAADAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAALgAAAAAAAAIAAAAAAAAuAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAQAuAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACABQAAAAAAAAUAAAAAAIAFAAAAAABABQAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAEAAgAAAAAAABQAAAAAAgAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAAAABQAAAAAAwAUAAAAAAMAEAAAAAACABEAAAAAAQARAAAAAAMAEQAAAAAAABAAAAAAAwAUAAAAAAEAFAAAAAABAA== version: 7 -3,-4: ind: -3,-4 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAACAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAACACoAAAAAAAAqAAAAAAQAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAHACoAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAoAMQAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABgAqAAAAAAAAKgAAAAAAACoAAAAADAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAAHACoAAAAAAAAqAAAAAAAAKgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAKACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAGACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAACAAAAAAAAGgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAC4AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAQAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAoAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAMQAAAAAAACoAAAAACwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAoAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABwAqAAAAAAAAKgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAgAQAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAADAAIAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAACABAAAAAAAQACAAAAAAAAGgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAC4AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAC4AAAAAAAACAAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -4,-2: ind: -4,-2 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAADAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAGQAAAAACABkAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAABkAAAAAAAAZAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAZAAAAAAEAGQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAACQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAEAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAGQAAAAACABkAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAABkAAAAAAwAZAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAEAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAZAAAAAAAAGQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -4,-3: ind: -4,-3 - tiles: KgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAADACoAAAAAAAAqAAAAAAYAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAADAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAGACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAcAAAAAAQAHAAAAAAMABwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACgAqAAAAAAwAKgAAAAAEACoAAAAABwAqAAAAAAAAKgAAAAAGAAIAAAAAAAAHAAAAAAIADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACgACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAQAMAAAAAAMADAAAAAADACwAAAAABAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcAAgAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAQAMAAAAAAEADAAAAAABAAIAAAAAAAACAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAAADAAAAAACAAwAAAAAAwACAAAAAAAAAgAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAQAMAAAAAAEADAAAAAACACwAAAAABgAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAABgAqAAAAAAEAAgAAAAAAAAwAAAAAAwAMAAAAAAEADAAAAAAAAAwAAAAAAwAMAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAIAKgAAAAAAACoAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAAAMAAAAAAEADAAAAAAAAAwAAAAAAQAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAEADAAAAAACAAwAAAAAAgAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: KgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAALACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAgAqAAAAAAUAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAABACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAADACoAAAAABAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAcAAAAAAwAHAAAAAAAABwAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAHAAAAAAIADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAADAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAMAKgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAAAACwAAAAABQACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAMAKgAAAAAKACoAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAEADAAAAAACAAwAAAAAAQAMAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAMADAAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAgACAAAAAAAAAgAAAAAAAA8AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAIACoAAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAgAMAAAAAAIADAAAAAADACwAAAAABQAMAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAFACoAAAAACwAqAAAAAAAAAgAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAABAAwAAAAAAQAMAAAAAAIADAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAAAAAwAAAAAAgAMAAAAAAIADAAAAAADAAwAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAMADAAAAAACAAwAAAAAAAAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 2,2: ind: 2,2 - tiles: FQAAAAAAACsAAAAAAwArAAAAAAMAKwAAAAABABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABUAAAAAAAArAAAAAAIAKwAAAAABACsAAAAAAQAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAACsAAAAAAAArAAAAAAIAKwAAAAABACsAAAAAAwArAAAAAAIAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAwACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAKwAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACsAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAMAEAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAArAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAADABAAAAAAAQACAAAAAAAAMQAAAAAAADEAAAAAAAArAAAAAAEAKwAAAAADACsAAAAAAwArAAAAAAIAKwAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAMAEAAAAAABAAIAAAAAAAAxAAAAAAAAMQAAAAAAABsAAAAAAwAbAAAAAAMAGwAAAAACABsAAAAAAQAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAACABAAAAAAAwACAAAAAAAAMQAAAAAAADEAAAAAAAAbAAAAAAAAGwAAAAACABsAAAAAAgAbAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA== + tiles: FQAAAAAAACsAAAAAAAArAAAAAAEAKwAAAAABABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABUAAAAAAAArAAAAAAAAKwAAAAABACsAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAACsAAAAAAQArAAAAAAIAKwAAAAADACsAAAAAAwArAAAAAAEAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAIAEAAAAAADABAAAAAAAgACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAKwAAAAACAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAIADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACsAAAAAAgACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAgAQAAAAAAIAEAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAArAAAAAAEAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAAAEAAAAAABABAAAAAAAQACAAAAAAAAMQAAAAAAADEAAAAAAAArAAAAAAMAKwAAAAACACsAAAAAAwArAAAAAAAAKwAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAgAQAAAAAAEAAgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABAAAAAAAgAQAAAAAAMAEAAAAAACAAIAAAAAAAAxAAAAAAAAMQAAAAAAABsAAAAAAgAbAAAAAAMAGwAAAAACABsAAAAAAQAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAQAAAAAAEAEAAAAAABABAAAAAAAwACAAAAAAAAMQAAAAAAADEAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAQAbAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA== version: 7 1,2: ind: 1,2 - tiles: HQAAAAAAAB0AAAAAAwARAAAAAAAAEQAAAAABABkAAAAAAQARAAAAAAMAEQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAEQAAAAAAABEAAAAAAwACAAAAAAAAFQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAgAZAAAAAAEAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAAgAAAAAAABkAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAIAAAAAAAAQAAAAAAAAHQAAAAAAABAAAAAAAAACAAAAAAAANwAAAAAAADcAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAEAAgAAAAAAACsAAAAAAAACAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAgAAAAAAADcAAAAAAAA3AAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAAgAAAAAAAAIAAAAAAAA3AAAAAAAANwAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAANwAAAAAAADcAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAAUAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAAgAAAAAAADcAAAAAAAA3AAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAABAAIAAAAAAAArAAAAAAMAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAAgAAAAAAABkAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAIAGwAAAAAAABsAAAAAAgAbAAAAAAAAGwAAAAACABsAAAAAAwAbAAAAAAEAGwAAAAAAABsAAAAAAQAbAAAAAAMAGwAAAAACABsAAAAAAgAUAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAADABsAAAAAAgAbAAAAAAMAGwAAAAAAABsAAAAAAgAbAAAAAAEAGwAAAAABABsAAAAAAgAbAAAAAAAAGwAAAAABABsAAAAAAQAbAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAGgAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAAAABoAAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA== + tiles: HQAAAAAAAB0AAAAAAgARAAAAAAEAEQAAAAACABkAAAAAAAARAAAAAAEAEQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAAFQAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACABEAAAAAAQAZAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABAAAAAAAAAQAAAAAAIAEAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAAAAgAAAAAAABkAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAAAIAAAAAAAAQAAAAAAAAHQAAAAADABAAAAAAAgACAAAAAAAANwAAAAABADcAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAACsAAAAAAAACAAAAAAAAEAAAAAADABAAAAAAAQAQAAAAAAAAAgAAAAAAADcAAAAAAgA3AAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAIAAgAAAAAAAAIAAAAAAAA3AAAAAAIANwAAAAABABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAANwAAAAACADcAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAIAAgAAAAAAADcAAAAAAgA3AAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAACAAIAAAAAAAArAAAAAAEAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAZAAAAAAIAAgAAAAAAABkAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAEAGwAAAAAAABsAAAAAAQAbAAAAAAAAGwAAAAACABsAAAAAAgAbAAAAAAEAGwAAAAACABsAAAAAAQAbAAAAAAMAGwAAAAAAABsAAAAAAQAUAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAADABsAAAAAAwAbAAAAAAIAGwAAAAACABsAAAAAAgAbAAAAAAMAGwAAAAAAABsAAAAAAQAbAAAAAAMAGwAAAAAAABsAAAAAAAAbAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQARAAAAAAEAGgAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAAAABQAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAADABoAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAQAUAAAAAAAAFAAAAAADAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA== version: 7 0,2: ind: 0,2 - tiles: EQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAIAHQAAAAACABEAAAAAAwARAAAAAAIAGQAAAAADABEAAAAAAgARAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAIAHQAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAAAEQAAAAACAB0AAAAAAQARAAAAAAEAEQAAAAACABkAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwAdAAAAAAMAEQAAAAADABEAAAAAAgACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAAAAgAAAAAAAAsAAAAAAAARAAAAAAMADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAAAAB0AAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAALAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAQACAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAACwAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAAAABQAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAAMAAAAAAEADAAAAAABAAwAAAAAAQACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAAUAAAAAAIAFAAAAAADABQAAAAAAQAUAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAAgAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADABwAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADAAIAAAAAAAAMAAAAAAMADAAAAAABAAwAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAADAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAwACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAgACAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAEAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAMAHQAAAAADABEAAAAAAQARAAAAAAMAGQAAAAADABEAAAAAAQARAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAAAAB0AAAAAAwARAAAAAAAAEQAAAAAAABkAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAACABEAAAAAAAAdAAAAAAEAEQAAAAADABEAAAAAAQACAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAIADAAAAAABAAwAAAAAAwAMAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAIAHQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAsAAAAAAAARAAAAAAIADAAAAAABAAwAAAAAAgAMAAAAAAMADAAAAAACABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABAB0AAAAAAwARAAAAAAEAEQAAAAACAAIAAAAAAAALAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAgACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAQACAAAAAAAACwAAAAAAAAwAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAAAMAAAAAAIAEQAAAAABABEAAAAAAwARAAAAAAEAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAAAABQAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAAMAAAAAAMADAAAAAADAAwAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAACAAIAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAQAUAAAAAAEAEQAAAAAAABEAAAAAAgACAAAAAAAADAAAAAACAAwAAAAAAAAMAAAAAAIAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAAAABwAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAAAMAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAQACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAgACAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAIAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAAaAAAAAAAAAgAAAAAAAA== version: 7 3,0: ind: 3,0 - tiles: EQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAADAAYAAAAAAgARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAQAGAAAAAAEAEQAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEACwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAsAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAABEAAAAAAQALAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAGgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAABoAAAAAAAAeAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAaAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADABQAAAAAAwAUAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAwApAAAAAAMAKQAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAAB4AAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAEAKQAAAAAAACkAAAAAAwAUAAAAAAIAAgAAAAAAAAIAAAAAAAAzAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAIAEAAAAAABABAAAAAAAAAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACACkAAAAAAAApAAAAAAAAFAAAAAABAAIAAAAAAAACAAAAAAAAMwAAAAAAABAAAAAAAwAzAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAMwAAAAAAABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAwApAAAAAAIAKQAAAAADABQAAAAAAgACAAAAAAAAAgAAAAAAAA== + tiles: EQAAAAADABEAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAAAYAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAIAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAgARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAgAGAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAALAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMACwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADAAsAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAABEAAAAAAgALAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAGgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAABoAAAAAAAAeAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAaAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAGgAAAAAAAB4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAABoAAAAAAAAeAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAOAAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADgAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAA4AAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABEAAAAAAgAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 3,-1: ind: 3,-1 - tiles: FAAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAUAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAAFAAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAEAEQAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAABAAIAAAAAAAAOAAAAAAAAMQAAAAAAAAwAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAHAAAAAAAABIAAAAAAAASAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAwACAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAASAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAAxAAAAAAAANgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAA2AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAQAGAAAAAAIAEQAAAAADABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAEABgAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAIAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAABAAYAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAQARAAAAAAIAAgAAAAAAAA== + tiles: FAAAAAADAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAUAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAAFAAAAAADAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAAOAAAAAAAAMQAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAgACAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAwARAAAAAAEAAgAAAAAAAA4AAAAAAAAxAAAAAAAADAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAABAAIAAAAAAAAOAAAAAAAAMQAAAAAAAAwAAAAAAwACAAAAAAAADAAAAAABAAwAAAAAAAAMAAAAAAAAHAAAAAADABIAAAAAAAASAAAAAAIAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAABEAAAAAAQACAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAQASAAAAAAMAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAANgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAA2AAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAIAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAAAEQAAAAADABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAHAAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQAGAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAwARAAAAAAEABgAAAAACABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAAAYAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAgARAAAAAAIAAgAAAAAAAA== version: 7 3,-2: ind: 3,-2 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAUAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAABQAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAFAAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAABQAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAFAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAABQAAAAAAwACAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAFAAAAAADAAIAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA== version: 7 3,-3: ind: 3,-3 - tiles: DgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAACACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAALACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAQAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAADACoAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAABgAqAAAAAAAAKgAAAAAGACoAAAAAAAAqAAAAAAIAKgAAAAAAACoAAAAAAAAqAAAAAAoAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAADAAqAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAAAFAAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAABQAAAAAAgAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAMAFAAAAAABABQAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAQAUAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAAAFAAAAAACABQAAAAAAgAUAAAAAAMAAgAAAAAAACoAAAAAAAAqAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAHAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACQAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACQAqAAAAAAAAKgAAAAAMACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcAKgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAqAAAAAAoAKgAAAAAAACoAAAAABQAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAACQAqAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAAAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAACABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAMAFAAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAgAUAAAAAAMAFAAAAAACABQAAAAAAQAUAAAAAAMAFAAAAAADABQAAAAAAQACAAAAAAAAKgAAAAAAACoAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAQAUAAAAAAIAFAAAAAACABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAQAUAAAAAAIAFAAAAAAAABQAAAAAAgAUAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAFAAAAAACABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAIAFAAAAAABAAIAAAAAAAACAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA== version: 7 -1,2: ind: -1,2 - tiles: DAAAAAAAABwAAAAAAwAMAAAAAAEADAAAAAADAAwAAAAAAwACAAAAAAAADAAAAAACAAwAAAAAAQAMAAAAAAMADAAAAAADAAwAAAAAAgAMAAAAAAEADAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAIAAgAAAAAAAAwAAAAAAQAMAAAAAAMADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQAPAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAIAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMADwAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAAADAAAAAACAAwAAAAAAgAMAAAAAAMADAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAACAAIAAAAAAAARAAAAAAEAEQAAAAABAA8AAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAMADAAAAAADAAwAAAAAAAAMAAAAAAIADAAAAAAAAAwAAAAAAwAMAAAAAAMADAAAAAADAAwAAAAAAwARAAAAAAEAEQAAAAADABEAAAAAAgAPAAAAAAAADwAAAAAAAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAgAMAAAAAAMADAAAAAAAAAwAAAAAAwAMAAAAAAMADAAAAAACAAwAAAAAAgAMAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAADAAwAAAAAAwAMAAAAAAIADAAAAAABAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAwAMAAAAAAIADAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAVAAAAAAAAEQAAAAADACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAABEAAAAAAwAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAEQAAAAADABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAIAAgAAAAAAAA== + tiles: DAAAAAABABwAAAAAAwAMAAAAAAEADAAAAAAAAAwAAAAAAQACAAAAAAAADAAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAAAMAAAAAAMADAAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAADAAAAAACAAwAAAAAAwAMAAAAAAEAAgAAAAAAAAwAAAAAAgAMAAAAAAMADAAAAAAAAAwAAAAAAgAMAAAAAAAADAAAAAAAAAwAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAcAAAAAAEAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAACAAwAAAAAAAAMAAAAAAEADAAAAAABAAwAAAAAAQAMAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIADwAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAADAAwAAAAAAAAMAAAAAAMADAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAADAAwAAAAAAgAMAAAAAAEADAAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAA8AAAAAAAACAAAAAAAADAAAAAABAAwAAAAAAQAMAAAAAAEADAAAAAABAAwAAAAAAgAMAAAAAAEADAAAAAABAAwAAAAAAAAMAAAAAAMADAAAAAAAAAwAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAwAPAAAAAAAADwAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAADAAwAAAAAAgAMAAAAAAAADAAAAAADAAwAAAAAAwAMAAAAAAIADAAAAAACAAwAAAAAAgAMAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAACAAwAAAAAAgAMAAAAAAIADAAAAAADAAwAAAAAAQAMAAAAAAMADAAAAAADAAwAAAAAAQAMAAAAAAMADAAAAAADAAIAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAVAAAAAAAAEQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAABEAAAAAAwAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAIAAgAAAAAAAA== version: 7 -2,2: ind: -2,2 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAEADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAIADAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 -3,2: ind: -3,2 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAaAAAAAAAADwAAAAAAAA8AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAAhAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAIQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACACEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAaAAAAAAAADwAAAAAAAA8AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAgAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwAhAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAIQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACACEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA== version: 7 2,-4: ind: 2,-4 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAQAUAAAAAAEAFAAAAAADABQAAAAAAQAUAAAAAAEAFAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAEAFAAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAACABQAAAAAAwACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAwAUAAAAAAEAFAAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAQAUAAAAAAAAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAADABQAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAADABQAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAIAFAAAAAABABQAAAAAAQAUAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAPAAAAAAAAFAAAAAAAABQAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAABQAAAAAAQAUAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAUAAAAAAIAFAAAAAADAA8AAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAAFAAAAAACABQAAAAAAQAPAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAABQAAAAAAwAUAAAAAAEADwAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAUAAAAAAIAFAAAAAACAA8AAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAUAAAAAAIAFAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAAAABQAAAAAAgAUAAAAAAAAFAAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAEAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAQACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAABABQAAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAAAFAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAADABQAAAAAAAAUAAAAAAMAFAAAAAABABQAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAUAAAAAAEAFAAAAAACABQAAAAAAwAUAAAAAAAAFAAAAAADABQAAAAAAgACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAFAAAAAAAABQAAAAAAwAUAAAAAAIAFAAAAAABABQAAAAAAwAUAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAPAAAAAAAAFAAAAAAAABQAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAABQAAAAAAQAUAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAUAAAAAAMAFAAAAAACAA8AAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAAFAAAAAADABQAAAAAAgAPAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAABQAAAAAAAAUAAAAAAAADwAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAUAAAAAAMAFAAAAAABAA8AAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 1,-4: ind: 1,-4 - tiles: MQAAAAAAADEAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAACAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAFACoAAAAAAAAqAAAAAAkAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAQAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAHAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAIACoAAAAAAwAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAFAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABQAAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: MQAAAAAAADEAAAAAAAAqAAAAAAAAKgAAAAAKACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACQAqAAAAAAgAKgAAAAAAACoAAAAAAAAqAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAIAKgAAAAAAACoAAAAAAQAqAAAAAAcAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAABAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAIAKgAAAAAAACoAAAAAAQAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACwAqAAAAAAAAKgAAAAAGACoAAAAABQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACAAqAAAAAAAAKgAAAAAAACoAAAAACgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAFAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABQAAAAAAwAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAAeAAAAAAAAHgAAAAAAAAIAAAAAAAAwAAAAAAAAMAAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAHgAAAAAAAB4AAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAB4AAAAAAAAeAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -2,3: ind: -2,3 - tiles: DgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAMADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAABQAqAAAAAAMAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAACAAqAAAAAAsAKgAAAAAAACoAAAAABgAqAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAACAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAUADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAKgAAAAAMACoAAAAAAAAqAAAAAAYAKgAAAAAMACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAADAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAIACoAAAAAAAAqAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -1,3: ind: -1,3 - tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAwACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAgAaAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAMAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAYAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAADABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAADwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACABEAAAAAAAARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAGgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAUAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 0,3: ind: 0,3 - tiles: EQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAABAAIAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAQAUAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAARAAAAAAMAKQAAAAACABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAMAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABEAAAAAAQARAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA== + tiles: EQAAAAAAABEAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAADAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAgAUAAAAAAEADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAARAAAAAAMAKQAAAAACABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAgACAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAAA8AAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA== version: 7 1,3: ind: 1,3 - tiles: AgAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAAAABoAAAAAAAAUAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAAAFAAAAAACAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABQAAAAAAAARAAAAAAAAEQAAAAABABEAAAAAAgAaAAAAAAAAFAAAAAADABQAAAAAAgAUAAAAAAIAFAAAAAAAABQAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAYAKgAAAAABAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAABoAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAaAAAAAAAAGgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: AgAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABoAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAAAUAAAAAAMAFAAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAABQAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAwAaAAAAAAAAFAAAAAABABQAAAAAAwAUAAAAAAMAFAAAAAADABQAAAAAAQACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAGgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAACoAAAAAAAAqAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAJAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAABoAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAaAAAAAAAAGgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 2,3: ind: 2,3 - tiles: AgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAMAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAKgAAAAAIACoAAAAACAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: AgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAsAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAABAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 3,2: ind: 3,2 - tiles: MQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: MQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 3,1: ind: 3,1 - tiles: MwAAAAAAABAAAAAAAAAzAAAAAAAAMwAAAAAAAAIAAAAAAAAzAAAAAAAAEAAAAAAAAAIAAAAAAAAUAAAAAAMAAgAAAAAAABQAAAAAAAApAAAAAAAAKQAAAAACABQAAAAAAgACAAAAAAAAAgAAAAAAADMAAAAAAAAQAAAAAAMAMwAAAAAAAAIAAAAAAAACAAAAAAAAMwAAAAAAADMAAAAAAAAUAAAAAAIAFAAAAAAAABQAAAAAAQAUAAAAAAAAKQAAAAACACkAAAAAAgAUAAAAAAAAAgAAAAAAAAIAAAAAAAAeAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAAAEAAAAAABABAAAAAAAAAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFAAAAAACACkAAAAAAgApAAAAAAAAFAAAAAADAAIAAAAAAAACAAAAAAAAMwAAAAAAABAAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAIAMwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABQAAAAAAAAUAAAAAAMAFAAAAAACABQAAAAAAwACAAAAAAAAAgAAAAAAADMAAAAAAAAQAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEAAAAAABADMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAEAEAAAAAACABAAAAAAAwAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAIAAAAAAAACAAAAAAAAHgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAHgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA== + tiles: AgAAAAAAAAIAAAAAAAA4AAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABEAAAAAAgAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADMAAAAAAAA6AAAAAAAAOgAAAAACAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAA6AAAAAAAAOgAAAAACADMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAOgAAAAADADoAAAAAAAA6AAAAAAAAOgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADoAAAAAAAA6AAAAAAAAOgAAAAAAADoAAAAAAQAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMwAAAAAAADMAAAAAAAA6AAAAAAEAMwAAAAAAADMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAMwAAAAAAADoAAAAAAAAzAAAAAAAAMwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAzAAAAAAAAMwAAAAAAADoAAAAAAgA6AAAAAAEAOgAAAAADADMAAAAAAAAzAAAAAAAAMwAAAAAAADoAAAAAAwA6AAAAAAEAOgAAAAADADMAAAAAAAAzAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMwAAAAAAADMAAAAAAAA6AAAAAAAAOgAAAAACADoAAAAAAwAzAAAAAAAAMwAAAAAAADMAAAAAAAA6AAAAAAEAOgAAAAAAADoAAAAAAgAzAAAAAAAAMwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAAzAAAAAAAAMwAAAAAAADMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA== version: 7 3,3: ind: 3,3 @@ -331,7 +334,7 @@ entities: version: 7 -4,0: ind: -4,0 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAQARAAAAAAMAEQAAAAACABEAAAAAAwAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAIAEQAAAAADAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAgACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAEAAgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABwAAAAAAAAMAAAAAAIADAAAAAADAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAADAAAAAAAAAwAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAQAhAAAAAAAAIQAAAAAAACEAAAAAAAAMAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAAAwAAAAAAQAMAAAAAAAADAAAAAABAAwAAAAAAwAMAAAAAAEADAAAAAADAAwAAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAAMAAAAAAIADAAAAAADAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAgAMAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAEADAAAAAACAAwAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAQAMAAAAAAEAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAQAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAQARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAAARAAAAAAAAAgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAQAAAAAAEAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAAgAAAAAAAAwAAAAAAwAMAAAAAAIADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAABwAAAAAAgAMAAAAAAAADAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAAhAAAAAAAAIQAAAAAAACEAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAwAAAAAAwAhAAAAAAAAIQAAAAAAACEAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAAgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAgAMAAAAAAEADAAAAAADAAwAAAAAAwACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAAIAAAAAAAAMAAAAAAMADAAAAAACAAwAAAAAAQAMAAAAAAIADAAAAAACAAwAAAAAAgAMAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAADAAwAAAAAAgACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAADAAAAAADAAwAAAAAAAAMAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -4,1: ind: -4,1 @@ -347,43 +350,43 @@ entities: version: 7 -4,-4: ind: -4,-4 - tiles: MQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAgAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAACACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAGACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAgAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAIACoAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + tiles: MQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAaAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAcADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAYADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA8AAAAAAAAPAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAAPAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAFACoAAAAABgAqAAAAAAAAKgAAAAAAACoAAAAABQAqAAAAAAEAKgAAAAAAACoAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAgAKgAAAAAAACoAAAAAAAAqAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACAAqAAAAAAwAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== version: 7 1,-5: ind: 1,-5 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAABgAqAAAAAAsAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAABACoAAAAAAQAqAAAAAAAAKgAAAAADACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAHACoAAAAAAwAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAgAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAEAKgAAAAAAACoAAAAACAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 0,-5: ind: 0,-5 - tiles: DgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAABAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAARAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -1,-5: ind: -1,-5 - tiles: DgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAADABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAAARAAAAAAEAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgARAAAAAAEAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAMAEQAAAAACABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAQARAAAAAAEAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwARAAAAAAMAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAAAEQAAAAADABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAACAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -1,-6: ind: -1,-6 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAwACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABEAAAAAAgARAAAAAAIAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAADAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEQAAAAABABEAAAAAAQACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 0,-6: ind: 0,-6 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAIADwAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAwAPAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAEADwAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAARAAAAAAMAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAgAPAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -4,-1: ind: -4,-1 - tiles: DgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAARAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAMAEQAAAAAAABEAAAAAAwAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAAAAB0AAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAQARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwARAAAAAAAAEQAAAAABAAIAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAMAEQAAAAAAABEAAAAAAAARAAAAAAMAAgAAAAAAABMAAAAAAAAwAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAB0AAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAgARAAAAAAAAEQAAAAAAADAAAAAAAAATAAAAAAAAMAAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAACABEAAAAAAwACAAAAAAAAEwAAAAAAADAAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAABABEAAAAAAQACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAAAABEAAAAAAgARAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAB0AAAAAAAAdAAAAAAAAEQAAAAACABEAAAAAAAARAAAAAAMAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAZAAAAAAAAGQAAAAADABEAAAAAAQARAAAAAAMAEQAAAAAAABEAAAAAAgACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGQAAAAACABkAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAAAAgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABkAAAAAAgAZAAAAAAMAEQAAAAACABEAAAAAAgARAAAAAAIAEQAAAAACAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAdAAAAAAAAHQAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAADABEAAAAAAQACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwAlAAAAAAAAJQAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAADwAAAAAAAAIAAAAAAAARAAAAAAAAEQAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAQARAAAAAAEAEQAAAAADABEAAAAAAwARAAAAAAIAEQAAAAADAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAAIAAAAAAAARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAAAEQAAAAACABEAAAAAAAAPAAAAAAAADwAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAEQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAABABEAAAAAAAARAAAAAAIAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAABEAAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAAARAAAAAAMAEQAAAAAAAAIAAAAAAAACAAAAAAAAMAAAAAAAADAAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAARAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAIAEQAAAAABABEAAAAAAAARAAAAAAEAAgAAAAAAABMAAAAAAAAwAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABAB0AAAAAAgAdAAAAAAAAHQAAAAADABEAAAAAAAARAAAAAAMAEQAAAAAAADAAAAAAAAATAAAAAAAAMAAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAQARAAAAAAIAEQAAAAABABEAAAAAAwACAAAAAAAAEwAAAAAAADAAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAdAAAAAAIAHQAAAAADABEAAAAAAAARAAAAAAIAEQAAAAACABEAAAAAAwACAAAAAAAAAgAAAAAAADAAAAAAAAAwAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAABABEAAAAAAwARAAAAAAMAEQAAAAACABEAAAAAAwARAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAB0AAAAAAwAdAAAAAAIAEQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAAZAAAAAAMAGQAAAAACABEAAAAAAgARAAAAAAEAEQAAAAADABEAAAAAAwACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGQAAAAAAABkAAAAAAwARAAAAAAEAEQAAAAABABEAAAAAAgARAAAAAAEAAgAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABkAAAAAAAAZAAAAAAMAEQAAAAABABEAAAAAAQARAAAAAAIAEQAAAAABAAIAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAdAAAAAAAAHQAAAAABABEAAAAAAwARAAAAAAAAEQAAAAACABEAAAAAAAACAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEQAAAAAAABEAAAAAAwARAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAEAEQAAAAAAABEAAAAAAwAlAAAAAAAAJQAAAAAAAA== version: 7 4,1: ind: 4,1 - tiles: AgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA== + tiles: AgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA== version: 7 4,0: ind: 4,0 - tiles: BgAAAAABAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: BgAAAAACAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAABoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAMQAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 4,-1: ind: 4,-1 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAGAAAAAAIAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAABgAAAAABAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAGgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAgAAAAAAAAIAAAAAAAAaAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAGAAAAAAEAAgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAABgAAAAAAAAIAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 4,-2: ind: 4,-2 @@ -391,11 +394,11 @@ entities: version: 7 -3,-5: ind: -3,-5 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAgADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAUAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAKACoAAAAACgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAACgAqAAAAAAcAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAABAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAcADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAIAKgAAAAABACoAAAAAAQAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAQAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAMAKgAAAAAEAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAMACoAAAAAAAAqAAAAAAAADgAAAAAAACoAAAAABQAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAABQAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAADEAAAAAAAAxAAAAAAAAMQAAAAAAACoAAAAAAAAqAAAAAAYAKgAAAAALAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAFAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAACQAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAwAqAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -5,-3: ind: -5,-3 - tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAADEAAAAAAAAOAAAAAAAAKgAAAAAAACoAAAAAAAAqAAAAAAAAKgAAAAAJAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAAKgAAAAAMACoAAAAAAAAqAAAAAAMAKgAAAAAAACoAAAAACgAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAqAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -5,-4: ind: -5,-4 @@ -403,7 +406,7 @@ entities: version: 7 4,-3: ind: 4,-3 - tiles: DgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAHAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAALAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== + tiles: DgAAAAAAADEAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAxAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAMQAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAACoAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAqAAAAAAAAKgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAKgAAAAAFAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAA== version: 7 -4,-5: ind: -4,-5 @@ -693,6 +696,14 @@ entities: 2470: 7,51 2486: 3,50 2492: 5,50 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkBox + decals: + 4980: 50,24 + 4981: 60,24 + 4984: 59,18 + 4985: 51,18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -700,6 +711,9 @@ entities: 872: -53,8 873: -52,7 1725: 42,-40 + 4906: 61,16 + 4979: 61,25 + 4992: 57,18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw @@ -708,17 +722,23 @@ entities: 874: -57,7 1724: 40,-40 3888: 20,8 + 4912: 52,16 + 4963: 49,25 + 4991: 53,18 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 875: -52,5 + 4905: 59,13 + 4908: 61,14 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: 876: -57,5 3889: 20,5 + 4909: 52,13 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE @@ -733,6 +753,8 @@ entities: 3866: 23,5 4565: 45,-14 4741: 34,-14 + 4872: 54,14 + 4893: 57,16 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw @@ -743,6 +765,8 @@ entities: 4568: 47,-14 4607: 39,-16 4740: 36,-14 + 4871: 56,14 + 4892: 53,16 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe @@ -750,6 +774,9 @@ entities: 3865: 23,8 4566: 45,-12 4761: 37,-16 + 4868: 54,17 + 4873: 54,17 + 4878: 59,14 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw @@ -757,6 +784,8 @@ entities: 4182: 23,39 4567: 47,-12 4584: 39,-14 + 4867: 56,17 + 4874: 56,17 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -777,6 +806,19 @@ entities: 4561: 45,-13 4760: 37,-17 4764: 37,-15 + 4862: 54,15 + 4863: 54,16 + 4883: 57,17 + 4907: 61,15 + 4975: 61,24 + 4976: 61,23 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 4869: 56,16 + 4870: 56,15 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -787,6 +829,23 @@ entities: 3507: -8,-24 4564: 46,-14 4742: 35,-14 + 4880: 60,16 + 4881: 59,16 + 4882: 58,16 + 4885: 56,18 + 4886: 55,18 + 4887: 54,18 + 4964: 50,25 + 4965: 51,25 + 4966: 52,25 + 4967: 53,25 + 4968: 54,25 + 4969: 55,25 + 4970: 56,25 + 4971: 57,25 + 4972: 58,25 + 4973: 59,25 + 4974: 60,25 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -796,6 +855,15 @@ entities: 879: -54,5 880: -53,5 4563: 46,-12 + 4866: 55,17 + 4875: 60,14 + 4898: 52,13 + 4899: 53,13 + 4900: 54,13 + 4901: 55,13 + 4902: 56,13 + 4903: 57,13 + 4904: 58,13 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -811,6 +879,11 @@ entities: 4562: 47,-13 4590: 39,-15 4602: 39,-17 + 4889: 53,17 + 4910: 52,14 + 4911: 52,15 + 4977: 49,23 + 4978: 49,24 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe @@ -848,6 +921,7 @@ entities: id: BrickTileSteelEndN decals: 2315: -8,-44 + 4922: 55,15 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS @@ -909,6 +983,7 @@ entities: 3092: -29,42 3429: 20,-18 3430: 21,-18 + 4921: 55,13 - node: color: '#D4D4D496' id: BrickTileSteelLineS @@ -1349,7 +1424,6 @@ entities: decals: 1568: 40,-24 1570: 42,-24 - 1587: 39,-25 1588: 42,-25 1589: 42,-26 1590: 42,-28 @@ -1411,8 +1485,6 @@ entities: 4750: 37,-16 4769: 45,-21 4776: 48,-19 - 4779: 48,-21 - 4781: 48,-22 4803: 41,-19 4804: 40,-19 4805: 39,-19 @@ -1578,11 +1650,6 @@ entities: 1569: 42,-24 1571: 40,-24 1572: 40,-25 - 1573: 39,-25 - 1574: 39,-26 - 1575: 39,-27 - 1576: 39,-28 - 1577: 39,-29 1578: 40,-30 1620: 30,-34 1623: 40,-35 @@ -1782,7 +1849,6 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 1585: 39,-29 1595: 40,-30 1596: 42,-30 1597: 42,-29 @@ -1849,8 +1915,6 @@ entities: 4733: 42,-23 4748: 37,-14 4777: 48,-19 - 4780: 48,-22 - 4782: 48,-21 4783: 47,-22 4784: 46,-22 4785: 45,-22 @@ -2009,11 +2073,6 @@ entities: id: BrickTileWhiteInnerSw decals: 1579: 40,-24 - 1580: 39,-25 - 1581: 39,-26 - 1582: 39,-27 - 1583: 39,-28 - 1584: 39,-29 1586: 40,-29 1593: 42,-30 1594: 40,-30 @@ -2080,7 +2139,6 @@ entities: 4787: 45,-22 4788: 46,-22 4789: 47,-22 - 4790: 48,-22 4794: 43,-19 4795: 42,-20 4796: 39,-20 @@ -3212,12 +3270,6 @@ entities: 1307: 58.021324,0.5489143 1308: 57.96924,-1.1594192 3376: 57.99387,-2.411529 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Caution - decals: - 3544: 56.20735,16.017925 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -3936,6 +3988,10 @@ entities: id: GrayConcreteTrimLineE decals: 3391: 11,2 + 4913: 51,16 + 4914: 51,15 + 4915: 51,14 + 4916: 51,13 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN @@ -3954,6 +4010,10 @@ entities: decals: 3392: 14,2 3399: 4.001555,11.500919 + 4917: 51,13 + 4918: 51,14 + 4919: 51,15 + 4920: 51,16 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -4301,6 +4361,12 @@ entities: id: MiniTileCornerOverlayNE decals: 2879: -14,-40 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileCornerOverlayNW + decals: + 5037: 39,-25 - node: color: '#EFB34196' id: MiniTileCornerOverlayNW @@ -4311,6 +4377,12 @@ entities: id: MiniTileCornerOverlaySE decals: 2877: -14,-42 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileCornerOverlaySW + decals: + 5038: 39,-26 - node: color: '#EFB34196' id: MiniTileCornerOverlaySW @@ -4437,6 +4509,13 @@ entities: id: MiniTileWhiteCornerNe decals: 987: -52,-9 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNe + decals: + 5056: 59,24 + 5057: 53,24 + 5058: 60,20 - node: color: '#A4610696' id: MiniTileWhiteCornerNe @@ -4461,6 +4540,13 @@ entities: 441: -15,-34 2889: -12,-39 2890: -11,-42 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerNw + decals: + 5064: 50,20 + 5065: 51,24 + 5066: 57,24 - node: color: '#A4610696' id: MiniTileWhiteCornerNw @@ -4477,6 +4563,12 @@ entities: id: MiniTileWhiteCornerNw decals: 2923: -18,-39 + - node: + cleanable: True + color: '#FA750096' + id: MiniTileWhiteCornerNw + decals: + 5035: 39,-27 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw @@ -4488,6 +4580,13 @@ entities: id: MiniTileWhiteCornerSe decals: 986: -52,-11 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSe + decals: + 5059: 51,19 + 5060: 60,19 + 5061: 53,23 - node: color: '#A4610696' id: MiniTileWhiteCornerSe @@ -4510,6 +4609,13 @@ entities: decals: 438: -15,-35 2886: -11,-43 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteCornerSw + decals: + 5069: 50,19 + 5070: 59,19 + 5071: 57,23 - node: color: '#A4610696' id: MiniTileWhiteCornerSw @@ -4526,12 +4632,23 @@ entities: id: MiniTileWhiteCornerSw decals: 2919: -18,-43 + - node: + cleanable: True + color: '#FA750096' + id: MiniTileWhiteCornerSw + decals: + 5036: 39,-29 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: 439: -20,-35 2887: -18,-43 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerNe + decals: + 5072: 59,20 - node: color: '#D381C996' id: MiniTileWhiteInnerNe @@ -4543,6 +4660,13 @@ entities: id: MiniTileWhiteInnerNe decals: 3378: 42,-39 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileWhiteInnerNe + decals: + 5041: 48,-21 + 5042: 48,-22 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe @@ -4554,6 +4678,11 @@ entities: decals: 434: -21,-36 2907: -12,-42 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerNw + decals: + 5073: 51,20 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerNw @@ -4566,11 +4695,23 @@ entities: id: MiniTileWhiteInnerNw decals: 490: -14,-36 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerSe + decals: + 5074: 51,23 - node: color: '#D381C996' id: MiniTileWhiteInnerSe decals: 4108: 2,-42 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileWhiteInnerSe + decals: + 5043: 48,-22 + 5044: 48,-21 - node: color: '#FA750096' id: MiniTileWhiteInnerSe @@ -4582,6 +4723,11 @@ entities: decals: 436: -21,-33 437: -21,-33 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteInnerSw + decals: + 5075: 59,23 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerSw @@ -4589,6 +4735,12 @@ entities: 4715: 30,-19 4716: 31,-18 4721: 31,-15 + - node: + cleanable: True + color: '#DE3A3A96' + id: MiniTileWhiteInnerSw + decals: + 5045: 48,-22 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw @@ -4599,6 +4751,14 @@ entities: id: MiniTileWhiteLineE decals: 985: -52,-10 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineE + decals: + 5048: 59,21 + 5049: 51,21 + 5063: 59,23 + 5067: 56,20 - node: color: '#A4610696' id: MiniTileWhiteLineE @@ -4625,6 +4785,12 @@ entities: 427: -21,-35 2896: -12,-40 2897: -12,-41 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineN + decals: + 5054: 52,24 + 5055: 58,24 - node: color: '#D381C996' id: MiniTileWhiteLineN @@ -4665,6 +4831,14 @@ entities: 2893: -15,-39 2894: -14,-39 2895: -13,-39 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineS + decals: + 5050: 52,21 + 5051: 58,21 + 5052: 58,23 + 5053: 52,23 - node: color: '#D381C996' id: MiniTileWhiteLineS @@ -4706,6 +4880,14 @@ entities: 2901: -15,-43 2902: -16,-43 2903: -17,-43 + - node: + color: '#52B4E9FF' + id: MiniTileWhiteLineW + decals: + 5046: 51,21 + 5047: 59,21 + 5062: 51,23 + 5068: 54,20 - node: color: '#A4610696' id: MiniTileWhiteLineW @@ -4724,6 +4906,12 @@ entities: 2924: -18,-40 2925: -18,-41 2926: -18,-42 + - node: + cleanable: True + color: '#FA750096' + id: MiniTileWhiteLineW + decals: + 5025: 39,-28 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW @@ -6342,6 +6530,42 @@ entities: 4463: 49,-5 4475: 50,-8 4483: 43,-6 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#323232FF' + id: body + decals: + 5083: 57,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 5079: 57,24 + 5080: 57,24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 5014: 56,23 + 5081: 58,23 + 5082: 58,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt3 + decals: + 5076: 57,23 + 5077: 57,23 + 5078: 57,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 5022: 56,23 - type: GridAtmosphere version: 2 data: @@ -7254,7 +7478,7 @@ entities: 11,3: 0: 21845 11,4: - 0: 21845 + 0: 40277 12,0: 0: 29439 12,1: @@ -7262,7 +7486,7 @@ entities: 12,2: 0: 61567 12,3: - 0: 32752 + 0: 65520 8,8: 0: 61695 8,6: @@ -7278,27 +7502,25 @@ entities: 10,5: 0: 48063 10,6: - 0: 36856 + 0: 35832 10,7: 0: 52701 10,8: 0: 8191 11,5: - 0: 21845 + 0: 48059 11,6: - 0: 36636 + 0: 35771 11,7: - 0: 22387 + 0: 30707 11,8: 0: 17989 12,4: - 0: 65407 - 12,5: - 0: 4095 + 0: 60943 12,6: - 0: 48911 + 0: 61678 12,7: - 2: 65520 + 0: 4080 -12,-12: 0: 13119 -12,-13: @@ -7672,7 +7894,7 @@ entities: 9,11: 0: 1906 9,12: - 0: 3581 + 0: 3067 10,9: 0: 56797 10,10: @@ -7693,7 +7915,7 @@ entities: 11,12: 2: 53247 12,8: - 2: 13175 + 2: 13311 12,9: 2: 13107 12,10: @@ -7768,37 +7990,37 @@ entities: 13,1: 0: 63289 13,2: - 0: 61447 + 0: 61559 13,3: - 0: 59248 + 0: 65520 13,-1: 0: 65262 13,4: - 0: 30694 + 0: 12015 14,0: 0: 65535 14,1: 0: 29439 14,2: - 0: 53488 + 0: 28912 14,3: - 0: 56541 + 0: 65520 14,-1: 0: 65535 14,4: - 0: 56541 + 0: 43839 15,0: 0: 16183 15,1: 0: 45887 15,2: - 0: 46011 - 15,3: 0: 48059 + 15,3: + 0: 48051 15,-1: 0: 30527 15,4: - 0: 48059 + 0: 48011 16,0: 0: 1793 2: 4 @@ -8124,45 +8346,45 @@ entities: 2: 65228 12,12: 2: 65535 + 13,8: + 2: 20223 13,10: 2: 17 13,9: 2: 13028 - 13,8: - 2: 19652 13,7: - 2: 20476 + 0: 8752 + 2: 34944 + 14,8: + 2: 52429 14,9: 2: 248 - 14,8: - 2: 52428 14,7: - 2: 51711 + 2: 64496 15,8: 2: 56797 15,9: 2: 248 15,7: - 2: 55539 + 2: 55536 16,8: 2: 56797 16,9: 2: 248 + 12,5: + 0: 59630 13,5: - 0: 1911 + 0: 64543 13,6: - 0: 4879 - 2: 52224 + 0: 61695 14,5: - 0: 7633 + 0: 63951 14,6: - 0: 15 - 2: 13056 + 0: 61695 15,5: - 0: 35768 + 0: 47291 15,6: - 0: 15 - 2: 13824 + 0: 63675 16,7: 2: 55544 13,12: @@ -8363,8 +8585,6 @@ entities: 2: 39321 20,7: 2: 16 - 16,2: - 2: 8192 -12,-19: 2: 61440 -13,-19: @@ -9861,6 +10081,17 @@ entities: - type: Transform pos: 19.476593,-4.469906 parent: 21002 +- proto: ActionToggleLight + entities: + - uid: 18422 + mapInit: true + paused: true + components: + - type: Transform + parent: 2671 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 2671 - proto: AirAlarm entities: - uid: 2121 @@ -9895,6 +10126,8 @@ entities: - 114 - 115 - 116 + - type: Fixtures + fixtures: {} - uid: 3220 components: - type: Transform @@ -9905,6 +10138,8 @@ entities: devices: - 16149 - 16148 + - type: Fixtures + fixtures: {} - uid: 8130 components: - type: Transform @@ -9915,6 +10150,8 @@ entities: devices: - 8129 - 28592 + - type: Fixtures + fixtures: {} - uid: 8131 components: - type: Transform @@ -9924,6 +10161,8 @@ entities: devices: - 28591 - 8128 + - type: Fixtures + fixtures: {} - uid: 9177 components: - type: Transform @@ -9932,6 +10171,8 @@ entities: - type: DeviceList devices: - 9168 + - type: Fixtures + fixtures: {} - uid: 9410 components: - type: Transform @@ -9955,6 +10196,8 @@ entities: - 16334 - 16336 - 18545 + - type: Fixtures + fixtures: {} - uid: 10169 components: - type: Transform @@ -9972,12 +10215,16 @@ entities: - 5218 - 16531 - 16532 + - type: Fixtures + fixtures: {} - uid: 12296 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12885 components: - type: Transform @@ -9988,6 +10235,8 @@ entities: - 10841 - 15899 - 15903 + - type: Fixtures + fixtures: {} - uid: 14277 components: - type: Transform @@ -9999,6 +10248,8 @@ entities: - 15712 - 29812 - 15713 + - type: Fixtures + fixtures: {} - uid: 14996 components: - type: Transform @@ -10010,6 +10261,8 @@ entities: - 18504 - 16179 - 16180 + - type: Fixtures + fixtures: {} - uid: 15250 components: - type: Transform @@ -10021,6 +10274,8 @@ entities: - 15237 - 1597 - 424 + - type: Fixtures + fixtures: {} - uid: 15512 components: - type: Transform @@ -10038,6 +10293,8 @@ entities: - 18358 - 15615 - 15618 + - type: Fixtures + fixtures: {} - uid: 18240 components: - type: Transform @@ -10056,6 +10313,8 @@ entities: - 18233 - 18232 - 18253 + - type: Fixtures + fixtures: {} - uid: 18242 components: - type: Transform @@ -10071,6 +10330,8 @@ entities: - 16110 - 16111 - 18245 + - type: Fixtures + fixtures: {} - uid: 18244 components: - type: Transform @@ -10086,6 +10347,8 @@ entities: - 16112 - 16107 - 18254 + - type: Fixtures + fixtures: {} - uid: 18247 components: - type: Transform @@ -10107,6 +10370,8 @@ entities: - 16547 - 16546 - 18256 + - type: Fixtures + fixtures: {} - uid: 18258 components: - type: Transform @@ -10125,6 +10390,8 @@ entities: - 12298 - 10876 - 18257 + - type: Fixtures + fixtures: {} - uid: 18263 components: - type: Transform @@ -10142,6 +10409,8 @@ entities: - 18262 - 16543 - 16542 + - type: Fixtures + fixtures: {} - uid: 18270 components: - type: Transform @@ -10179,6 +10448,8 @@ entities: - 3343 - 3344 - 3345 + - type: Fixtures + fixtures: {} - uid: 18271 components: - type: Transform @@ -10215,6 +10486,8 @@ entities: - 16495 - 16496 - 18266 + - type: Fixtures + fixtures: {} - uid: 18272 components: - type: Transform @@ -10251,6 +10524,8 @@ entities: - 182 - 16486 - 18267 + - type: Fixtures + fixtures: {} - uid: 18273 components: - type: Transform @@ -10288,6 +10563,8 @@ entities: - 16489 - 16490 - 18268 + - type: Fixtures + fixtures: {} - uid: 18285 components: - type: Transform @@ -10327,6 +10604,8 @@ entities: - 13656 - 29732 - 29737 + - type: Fixtures + fixtures: {} - uid: 18286 components: - type: Transform @@ -10364,6 +10643,8 @@ entities: - 29739 - 29742 - 29743 + - type: Fixtures + fixtures: {} - uid: 18287 components: - type: Transform @@ -10398,6 +10679,8 @@ entities: - 18278 - 29740 - 29738 + - type: Fixtures + fixtures: {} - uid: 18288 components: - type: Transform @@ -10422,6 +10705,8 @@ entities: - 16482 - 16484 - 16485 + - type: Fixtures + fixtures: {} - uid: 18303 components: - type: Transform @@ -10439,6 +10724,8 @@ entities: - 18294 - 16498 - 16497 + - type: Fixtures + fixtures: {} - uid: 18305 components: - type: Transform @@ -10462,6 +10749,8 @@ entities: - 18293 - 16503 - 16504 + - type: Fixtures + fixtures: {} - uid: 18317 components: - type: Transform @@ -10475,6 +10764,8 @@ entities: - 15148 - 29776 - 15150 + - type: Fixtures + fixtures: {} - uid: 18328 components: - type: Transform @@ -10494,6 +10785,8 @@ entities: - 15129 - 15128 - 18320 + - type: Fixtures + fixtures: {} - uid: 18332 components: - type: Transform @@ -10521,6 +10814,8 @@ entities: - 75 - 24132 - 17899 + - type: Fixtures + fixtures: {} - uid: 18333 components: - type: Transform @@ -10537,6 +10832,8 @@ entities: - 16514 - 18295 - 16520 + - type: Fixtures + fixtures: {} - uid: 18336 components: - type: Transform @@ -10559,6 +10856,8 @@ entities: - 2177 - 20660 - 23087 + - type: Fixtures + fixtures: {} - uid: 18338 components: - type: Transform @@ -10572,6 +10871,8 @@ entities: - 15319 - 18290 - 15318 + - type: Fixtures + fixtures: {} - uid: 18366 components: - type: Transform @@ -10596,6 +10897,8 @@ entities: - 16529 - 18356 - 30338 + - type: Fixtures + fixtures: {} - uid: 18440 components: - type: Transform @@ -10606,25 +10909,10 @@ entities: devices: - 18369 - 18368 - - 18370 - - 18371 - 18439 - 18408 - - uid: 18443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,13.5 - parent: 2 - - type: DeviceList - devices: - - 18371 - - 18370 - - 18441 - - 18442 - - 18438 - - 18409 - - 18410 + - type: Fixtures + fixtures: {} - uid: 18460 components: - type: Transform @@ -10635,6 +10923,8 @@ entities: - 15418 - 29818 - 15417 + - type: Fixtures + fixtures: {} - uid: 18463 components: - type: Transform @@ -10652,6 +10942,8 @@ entities: - 18457 - 14689 - 14690 + - type: Fixtures + fixtures: {} - uid: 18478 components: - type: Transform @@ -10665,6 +10957,8 @@ entities: - 14741 - 14740 - 18462 + - type: Fixtures + fixtures: {} - uid: 18480 components: - type: Transform @@ -10678,6 +10972,8 @@ entities: - 18479 - 14749 - 14748 + - type: Fixtures + fixtures: {} - uid: 18482 components: - type: Transform @@ -10691,6 +10987,8 @@ entities: - 14768 - 14767 - 18481 + - type: Fixtures + fixtures: {} - uid: 18499 components: - type: Transform @@ -10711,6 +11009,8 @@ entities: - 16550 - 18349 - 16556 + - type: Fixtures + fixtures: {} - uid: 18501 components: - type: Transform @@ -10732,6 +11032,8 @@ entities: - 18485 - 13281 - 13351 + - type: Fixtures + fixtures: {} - uid: 18530 components: - type: Transform @@ -10748,6 +11050,8 @@ entities: - 16238 - 18519 - 16237 + - type: Fixtures + fixtures: {} - uid: 18536 components: - type: Transform @@ -10763,6 +11067,8 @@ entities: - 16267 - 18521 - 16285 + - type: Fixtures + fixtures: {} - uid: 18541 components: - type: Transform @@ -10778,6 +11084,8 @@ entities: - 18540 - 16297 - 16298 + - type: Fixtures + fixtures: {} - uid: 18553 components: - type: Transform @@ -10790,6 +11098,8 @@ entities: - 16433 - 18554 - 16432 + - type: Fixtures + fixtures: {} - uid: 18564 components: - type: Transform @@ -10808,6 +11118,8 @@ entities: - 13595 - 18563 - 28561 + - type: Fixtures + fixtures: {} - uid: 18567 components: - type: Transform @@ -10823,6 +11135,8 @@ entities: - 13584 - 16794 - 18573 + - type: Fixtures + fixtures: {} - uid: 18570 components: - type: Transform @@ -10843,6 +11157,8 @@ entities: - 18577 - 13560 - 13559 + - type: Fixtures + fixtures: {} - uid: 18582 components: - type: Transform @@ -10855,6 +11171,8 @@ entities: - 15028 - 18580 - 15029 + - type: Fixtures + fixtures: {} - uid: 18584 components: - type: Transform @@ -10873,6 +11191,8 @@ entities: - 15108 - 18579 - 15109 + - type: Fixtures + fixtures: {} - uid: 18587 components: - type: Transform @@ -10886,6 +11206,8 @@ entities: - 15106 - 18585 - 15105 + - type: Fixtures + fixtures: {} - uid: 18603 components: - type: Transform @@ -10902,6 +11224,8 @@ entities: - 18605 - 15651 - 15653 + - type: Fixtures + fixtures: {} - uid: 18606 components: - type: Transform @@ -10924,6 +11248,8 @@ entities: - 18610 - 15717 - 15716 + - type: Fixtures + fixtures: {} - uid: 18611 components: - type: Transform @@ -10950,6 +11276,8 @@ entities: - 18612 - 15742 - 15743 + - type: Fixtures + fixtures: {} - uid: 18623 components: - type: Transform @@ -10969,6 +11297,8 @@ entities: - 20660 - 23087 - 413 + - type: Fixtures + fixtures: {} - uid: 18645 components: - type: Transform @@ -10981,6 +11311,8 @@ entities: - 13132 - 18647 - 14373 + - type: Fixtures + fixtures: {} - uid: 18650 components: - type: Transform @@ -10995,6 +11327,8 @@ entities: - 14384 - 18649 - 14383 + - type: Fixtures + fixtures: {} - uid: 18652 components: - type: Transform @@ -11011,6 +11345,8 @@ entities: - 14454 - 18648 - 14455 + - type: Fixtures + fixtures: {} - uid: 18658 components: - type: Transform @@ -11025,6 +11361,8 @@ entities: - 18656 - 14528 - 14527 + - type: Fixtures + fixtures: {} - uid: 18663 components: - type: Transform @@ -11047,6 +11385,8 @@ entities: - 14927 - 29877 - 14924 + - type: Fixtures + fixtures: {} - uid: 18667 components: - type: Transform @@ -11058,6 +11398,8 @@ entities: - 14923 - 18665 - 14926 + - type: Fixtures + fixtures: {} - uid: 18676 components: - type: Transform @@ -11066,6 +11408,8 @@ entities: - type: DeviceList devices: - 18669 + - type: Fixtures + fixtures: {} - uid: 18677 components: - type: Transform @@ -11074,6 +11418,8 @@ entities: - type: DeviceList devices: - 18670 + - type: Fixtures + fixtures: {} - uid: 18678 components: - type: Transform @@ -11087,6 +11433,8 @@ entities: - 14922 - 18671 - 14925 + - type: Fixtures + fixtures: {} - uid: 18687 components: - type: Transform @@ -11101,6 +11449,8 @@ entities: - 15813 - 15814 - 18686 + - type: Fixtures + fixtures: {} - uid: 18690 components: - type: Transform @@ -11112,6 +11462,8 @@ entities: - 15420 - 15419 - 30214 + - type: Fixtures + fixtures: {} - uid: 18691 components: - type: Transform @@ -11124,6 +11476,8 @@ entities: - 15710 - 15711 - 18692 + - type: Fixtures + fixtures: {} - uid: 18697 components: - type: Transform @@ -11136,6 +11490,8 @@ entities: - 15898 - 18695 - 15902 + - type: Fixtures + fixtures: {} - uid: 20717 components: - type: Transform @@ -11150,6 +11506,8 @@ entities: - 20617 - 19518 - 16774 + - type: Fixtures + fixtures: {} - uid: 21369 components: - type: Transform @@ -11162,6 +11520,8 @@ entities: - 25354 - 25353 - 21373 + - type: Fixtures + fixtures: {} - uid: 21371 components: - type: Transform @@ -11175,6 +11535,8 @@ entities: - 25352 - 21451 - 25298 + - type: Fixtures + fixtures: {} - uid: 21415 components: - type: Transform @@ -11185,6 +11547,8 @@ entities: devices: - 21413 - 21414 + - type: Fixtures + fixtures: {} - uid: 21456 components: - type: Transform @@ -11198,6 +11562,8 @@ entities: - 25352 - 25293 - 21453 + - type: Fixtures + fixtures: {} - uid: 21504 components: - type: Transform @@ -11214,6 +11580,8 @@ entities: - 30227 - 30228 - 30225 + - type: Fixtures + fixtures: {} - uid: 22155 components: - type: Transform @@ -11223,6 +11591,8 @@ entities: devices: - 21709 - 21721 + - type: Fixtures + fixtures: {} - uid: 23056 components: - type: Transform @@ -11241,6 +11611,8 @@ entities: - 21182 - 23058 - 21183 + - type: Fixtures + fixtures: {} - uid: 23060 components: - type: Transform @@ -11254,6 +11626,8 @@ entities: - 23061 - 23052 - 23053 + - type: Fixtures + fixtures: {} - uid: 23235 components: - type: Transform @@ -11270,6 +11644,8 @@ entities: - 12062 - 18330 - 11291 + - type: Fixtures + fixtures: {} - uid: 23531 components: - type: Transform @@ -11280,6 +11656,8 @@ entities: devices: - 21389 - 22882 + - type: Fixtures + fixtures: {} - uid: 23679 components: - type: Transform @@ -11295,6 +11673,8 @@ entities: - 13599 - 13598 - 18486 + - type: Fixtures + fixtures: {} - uid: 23682 components: - type: Transform @@ -11311,6 +11691,8 @@ entities: - 23706 - 23678 - 16775 + - type: Fixtures + fixtures: {} - uid: 23683 components: - type: Transform @@ -11326,6 +11708,8 @@ entities: - 18488 - 18489 - 18487 + - type: Fixtures + fixtures: {} - uid: 23903 components: - type: Transform @@ -11337,6 +11721,8 @@ entities: - 23904 - 23901 - 23902 + - type: Fixtures + fixtures: {} - uid: 23907 components: - type: Transform @@ -11351,6 +11737,8 @@ entities: - 30819 - 30821 - 30822 + - type: Fixtures + fixtures: {} - uid: 23909 components: - type: Transform @@ -11362,6 +11750,8 @@ entities: - 23908 - 23910 - 23911 + - type: Fixtures + fixtures: {} - uid: 23915 components: - type: Transform @@ -11373,6 +11763,8 @@ entities: - 23914 - 23912 - 23913 + - type: Fixtures + fixtures: {} - uid: 23917 components: - type: Transform @@ -11382,6 +11774,8 @@ entities: devices: - 23921 - 23916 + - type: Fixtures + fixtures: {} - uid: 23918 components: - type: Transform @@ -11393,12 +11787,16 @@ entities: - 23920 - 23916 - 23919 + - type: Fixtures + fixtures: {} - uid: 23926 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23927 components: - type: Transform @@ -11412,6 +11810,8 @@ entities: - 15423 - 23923 - 23925 + - type: Fixtures + fixtures: {} - uid: 24091 components: - type: Transform @@ -11425,6 +11825,8 @@ entities: - 24087 - 15357 - 15356 + - type: Fixtures + fixtures: {} - uid: 25567 components: - type: Transform @@ -11435,6 +11837,8 @@ entities: devices: - 26587 - 24295 + - type: Fixtures + fixtures: {} - uid: 25568 components: - type: Transform @@ -11444,6 +11848,8 @@ entities: devices: - 21397 - 22267 + - type: Fixtures + fixtures: {} - uid: 26203 components: - type: Transform @@ -11454,6 +11860,8 @@ entities: devices: - 22384 - 26221 + - type: Fixtures + fixtures: {} - uid: 26568 components: - type: Transform @@ -11463,6 +11871,8 @@ entities: devices: - 21390 - 24297 + - type: Fixtures + fixtures: {} - uid: 28262 components: - type: Transform @@ -11473,6 +11883,8 @@ entities: devices: - 25359 - 28277 + - type: Fixtures + fixtures: {} - uid: 28414 components: - type: Transform @@ -11484,6 +11896,8 @@ entities: - 14005 - 14006 - 29930 + - type: Fixtures + fixtures: {} - uid: 28611 components: - type: Transform @@ -11494,6 +11908,8 @@ entities: - 3136 - 9112 - 28612 + - type: Fixtures + fixtures: {} - uid: 28879 components: - type: Transform @@ -11513,6 +11929,8 @@ entities: - 18468 - 18471 - 18472 + - type: Fixtures + fixtures: {} - uid: 28882 components: - type: Transform @@ -11524,6 +11942,8 @@ entities: - 29848 - 15325 - 15326 + - type: Fixtures + fixtures: {} - uid: 29040 components: - type: Transform @@ -11535,6 +11955,8 @@ entities: - 2175 - 28966 - 29041 + - type: Fixtures + fixtures: {} - uid: 29459 components: - type: Transform @@ -11547,6 +11969,8 @@ entities: - 15828 - 18618 - 18619 + - type: Fixtures + fixtures: {} - uid: 29460 components: - type: Transform @@ -11558,6 +11982,8 @@ entities: - 15850 - 15849 - 29461 + - type: Fixtures + fixtures: {} - uid: 29462 components: - type: Transform @@ -11571,6 +11997,8 @@ entities: - 15168 - 18602 - 18601 + - type: Fixtures + fixtures: {} - uid: 29773 components: - type: Transform @@ -11582,6 +12010,8 @@ entities: - 14954 - 14953 - 29772 + - type: Fixtures + fixtures: {} - uid: 29789 components: - type: Transform @@ -11592,6 +12022,8 @@ entities: - 16345 - 16346 - 29791 + - type: Fixtures + fixtures: {} - uid: 29792 components: - type: Transform @@ -11602,6 +12034,8 @@ entities: - 29793 - 16357 - 16358 + - type: Fixtures + fixtures: {} - uid: 29794 components: - type: Transform @@ -11613,12 +12047,16 @@ entities: - 29797 - 16474 - 16477 + - type: Fixtures + fixtures: {} - uid: 29795 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29796 components: - type: Transform @@ -11630,12 +12068,16 @@ entities: - 16476 - 16475 - 29798 + - type: Fixtures + fixtures: {} - uid: 29799 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29800 components: - type: Transform @@ -11648,6 +12090,8 @@ entities: - 15851 - 15852 - 29801 + - type: Fixtures + fixtures: {} - uid: 29802 components: - type: Transform @@ -11659,6 +12103,8 @@ entities: - 14764 - 14763 - 29804 + - type: Fixtures + fixtures: {} - uid: 29803 components: - type: Transform @@ -11670,6 +12116,8 @@ entities: - 28968 - 14766 - 14765 + - type: Fixtures + fixtures: {} - uid: 29805 components: - type: Transform @@ -11681,6 +12129,8 @@ entities: - 29808 - 16262 - 16263 + - type: Fixtures + fixtures: {} - uid: 29806 components: - type: Transform @@ -11692,6 +12142,8 @@ entities: - 29807 - 16251 - 16252 + - type: Fixtures + fixtures: {} - uid: 29814 components: - type: Transform @@ -11703,6 +12155,8 @@ entities: - 29815 - 29820 - 15415 + - type: Fixtures + fixtures: {} - uid: 29819 components: - type: Transform @@ -11714,6 +12168,8 @@ entities: - 15386 - 29817 - 29813 + - type: Fixtures + fixtures: {} - uid: 29842 components: - type: Transform @@ -11724,6 +12180,8 @@ entities: - 29927 - 14052 - 14057 + - type: Fixtures + fixtures: {} - uid: 29849 components: - type: Transform @@ -11735,6 +12193,8 @@ entities: - 14989 - 14990 - 29850 + - type: Fixtures + fixtures: {} - uid: 29851 components: - type: Transform @@ -11745,6 +12205,8 @@ entities: devices: - 14960 - 14961 + - type: Fixtures + fixtures: {} - uid: 29852 components: - type: Transform @@ -11755,6 +12217,8 @@ entities: devices: - 14955 - 14952 + - type: Fixtures + fixtures: {} - uid: 29853 components: - type: Transform @@ -11765,6 +12229,8 @@ entities: devices: - 14974 - 14975 + - type: Fixtures + fixtures: {} - uid: 29854 components: - type: Transform @@ -11775,6 +12241,8 @@ entities: - 15157 - 15156 - 29855 + - type: Fixtures + fixtures: {} - uid: 29856 components: - type: Transform @@ -11785,6 +12253,8 @@ entities: - 879 - 29857 - 56 + - type: Fixtures + fixtures: {} - uid: 29858 components: - type: Transform @@ -11795,6 +12265,8 @@ entities: devices: - 15117 - 15118 + - type: Fixtures + fixtures: {} - uid: 29859 components: - type: Transform @@ -11805,6 +12277,8 @@ entities: devices: - 16188 - 16189 + - type: Fixtures + fixtures: {} - uid: 29860 components: - type: Transform @@ -11816,6 +12290,8 @@ entities: - 16136 - 16137 - 29862 + - type: Fixtures + fixtures: {} - uid: 29861 components: - type: Transform @@ -11826,23 +12302,16 @@ entities: - 16125 - 16126 - 29863 - - uid: 29864 - components: - - type: Transform - pos: 52.5,15.5 - parent: 2 - - type: DeviceList - devices: - - 18412 - - 18411 - - 29866 - - 29865 + - type: Fixtures + fixtures: {} - uid: 29867 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29868 components: - type: Transform @@ -11853,6 +12322,8 @@ entities: devices: - 14528 - 14527 + - type: Fixtures + fixtures: {} - uid: 29869 components: - type: Transform @@ -11863,6 +12334,8 @@ entities: - 19072 - 19074 - 29871 + - type: Fixtures + fixtures: {} - uid: 29870 components: - type: Transform @@ -11874,12 +12347,16 @@ entities: - 14383 - 18649 - 14384 + - type: Fixtures + fixtures: {} - uid: 29872 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29873 components: - type: Transform @@ -11891,6 +12368,8 @@ entities: - 14927 - 29877 - 14924 + - type: Fixtures + fixtures: {} - uid: 29874 components: - type: Transform @@ -11902,6 +12381,8 @@ entities: - 29876 - 14939 - 14938 + - type: Fixtures + fixtures: {} - uid: 29880 components: - type: Transform @@ -11912,6 +12393,8 @@ entities: - 29706 - 29707 - 29881 + - type: Fixtures + fixtures: {} - uid: 29883 components: - type: Transform @@ -11923,6 +12406,8 @@ entities: - 13735 - 29885 - 13736 + - type: Fixtures + fixtures: {} - uid: 29884 components: - type: Transform @@ -11934,6 +12419,8 @@ entities: - 14675 - 14674 - 29882 + - type: Fixtures + fixtures: {} - uid: 29886 components: - type: Transform @@ -11945,12 +12432,16 @@ entities: - 29887 - 14088 - 14089 + - type: Fixtures + fixtures: {} - uid: 29893 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29894 components: - type: Transform @@ -11962,11 +12453,15 @@ entities: - 29897 - 14511 - 14512 + - type: Fixtures + fixtures: {} - uid: 29895 components: - type: Transform pos: 55.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29896 components: - type: Transform @@ -11977,6 +12472,8 @@ entities: - 29898 - 14513 - 14514 + - type: Fixtures + fixtures: {} - uid: 29899 components: - type: Transform @@ -11988,6 +12485,8 @@ entities: - 29901 - 16449 - 16448 + - type: Fixtures + fixtures: {} - uid: 29900 components: - type: Transform @@ -11998,6 +12497,8 @@ entities: devices: - 16447 - 16450 + - type: Fixtures + fixtures: {} - uid: 29902 components: - type: Transform @@ -12009,6 +12510,8 @@ entities: - 16337 - 16335 - 29903 + - type: Fixtures + fixtures: {} - uid: 29904 components: - type: Transform @@ -12020,6 +12523,8 @@ entities: - 9112 - 28612 - 3136 + - type: Fixtures + fixtures: {} - uid: 29905 components: - type: Transform @@ -12031,6 +12536,8 @@ entities: - 29908 - 13725 - 13724 + - type: Fixtures + fixtures: {} - uid: 29906 components: - type: Transform @@ -12042,6 +12549,8 @@ entities: - 29907 - 13722 - 13723 + - type: Fixtures + fixtures: {} - uid: 29911 components: - type: Transform @@ -12053,6 +12562,8 @@ entities: - 29914 - 15242 - 15243 + - type: Fixtures + fixtures: {} - uid: 29912 components: - type: Transform @@ -12064,12 +12575,16 @@ entities: - 13980 - 13962 - 29913 + - type: Fixtures + fixtures: {} - uid: 29916 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29917 components: - type: Transform @@ -12081,6 +12596,8 @@ entities: - 15809 - 15811 - 29919 + - type: Fixtures + fixtures: {} - uid: 29918 components: - type: Transform @@ -12092,11 +12609,15 @@ entities: - 29915 - 15797 - 15796 + - type: Fixtures + fixtures: {} - uid: 29920 components: - type: Transform pos: -4.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29921 components: - type: Transform @@ -12107,6 +12628,8 @@ entities: - 29922 - 15652 - 15654 + - type: Fixtures + fixtures: {} - uid: 29924 components: - type: Transform @@ -12118,6 +12641,8 @@ entities: - 14055 - 14020 - 29931 + - type: Fixtures + fixtures: {} - uid: 29925 components: - type: Transform @@ -12129,6 +12654,8 @@ entities: - 29929 - 14059 - 14060 + - type: Fixtures + fixtures: {} - uid: 29928 components: - type: Transform @@ -12140,6 +12667,8 @@ entities: - 29926 - 14130 - 14131 + - type: Fixtures + fixtures: {} - uid: 29932 components: - type: Transform @@ -12150,6 +12679,8 @@ entities: - 15900 - 29935 - 15904 + - type: Fixtures + fixtures: {} - uid: 29933 components: - type: Transform @@ -12160,11 +12691,15 @@ entities: - 15905 - 15901 - 29936 + - type: Fixtures + fixtures: {} - uid: 29934 components: - type: Transform pos: -24.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29938 components: - type: Transform @@ -12177,6 +12712,8 @@ entities: - 15149 - 15151 - 29940 + - type: Fixtures + fixtures: {} - uid: 30357 components: - type: Transform @@ -12201,6 +12738,8 @@ entities: - 30328 - 30329 - 30327 + - type: Fixtures + fixtures: {} - uid: 30360 components: - type: Transform @@ -12219,6 +12758,8 @@ entities: - 30330 - 4194 - 3466 + - type: Fixtures + fixtures: {} - uid: 30363 components: - type: Transform @@ -12235,6 +12776,8 @@ entities: - 3468 - 18164 - 13393 + - type: Fixtures + fixtures: {} - uid: 30364 components: - type: Transform @@ -12249,6 +12792,8 @@ entities: - 29990 - 4838 - 3698 + - type: Fixtures + fixtures: {} - uid: 30365 components: - type: Transform @@ -12269,6 +12814,8 @@ entities: - 3558 - 3852 - 3406 + - type: Fixtures + fixtures: {} - uid: 30366 components: - type: Transform @@ -12290,6 +12837,8 @@ entities: - 3857 - 3410 - 3816 + - type: Fixtures + fixtures: {} - uid: 30402 components: - type: Transform @@ -12307,6 +12856,8 @@ entities: - 3863 - 3818 - 3411 + - type: Fixtures + fixtures: {} - uid: 30403 components: - type: Transform @@ -12323,6 +12874,8 @@ entities: - 30355 - 30339 - 30340 + - type: Fixtures + fixtures: {} - uid: 30404 components: - type: Transform @@ -12333,12 +12886,14 @@ entities: devices: - 11912 - 4862 - - 15485 - 30343 - 30342 - 30344 - 30345 - 30341 + - 29292 + - type: Fixtures + fixtures: {} - uid: 30826 components: - type: Transform @@ -12355,8 +12910,65 @@ entities: - 30821 - 30819 - 12226 + - type: Fixtures + fixtures: {} + - uid: 31038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 31006 + - 31007 + - 2381 + - 2380 + - 30992 + - 30993 + - 30996 + - type: Fixtures + fixtures: {} + - uid: 31039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 31022 + - 30964 + - 30992 + - 30993 + - 30994 + - 30995 + - 28511 + - 12919 + - type: Fixtures + fixtures: {} + - uid: 31040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 30994 + - 30995 + - 30999 + - 31035 + - 31036 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: + - uid: 2674 + components: + - type: Transform + pos: 34.5,50.5 + parent: 2 - uid: 4223 components: - type: Transform @@ -12431,11 +13043,6 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 9470 - components: - - type: Transform - pos: 39.5,50.5 - parent: 2 - uid: 9747 components: - type: Transform @@ -12457,10 +13064,10 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 18930 + - uid: 12878 components: - type: Transform - pos: 44.5,18.5 + pos: 45.5,22.5 parent: 2 - uid: 18935 components: @@ -12985,18 +13592,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-35.5 parent: 2 -- proto: AirlockCommandGlass - entities: - - uid: 12715 - components: - - type: Transform - pos: 55.5,17.5 - parent: 2 - - uid: 12717 - components: - - type: Transform - pos: 55.5,15.5 - parent: 2 - proto: AirlockCommandGlassLocked entities: - uid: 2448 @@ -13041,20 +13636,32 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,14.5 parent: 2 + - uid: 20251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,19.5 + parent: 2 + - uid: 29363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,19.5 + parent: 2 + - uid: 29575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,22.5 + parent: 2 + - uid: 31095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,22.5 + parent: 2 - proto: AirlockCommandLocked entities: - - uid: 6908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,10.5 - parent: 2 - - uid: 6909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,10.5 - parent: 2 - uid: 6910 components: - type: Transform @@ -13067,6 +13674,16 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,6.5 parent: 2 + - uid: 12880 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 - uid: 20698 components: - type: Transform @@ -13283,6 +13900,12 @@ entities: - type: Transform pos: -18.5,19.5 parent: 2 + - uid: 12828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,29.5 + parent: 2 - uid: 13005 components: - type: Transform @@ -13299,12 +13922,6 @@ entities: - type: Transform pos: -29.5,-2.5 parent: 2 - - uid: 20486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,26.5 - parent: 2 - uid: 23669 components: - type: Transform @@ -13625,21 +14242,6 @@ entities: - type: Transform pos: 41.5,49.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6829: - - - DoorStatus - - DoorBolt - - uid: 6829 - components: - - type: Transform - pos: 37.5,49.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6828: - - - DoorStatus - - DoorBolt - uid: 7615 components: - type: Transform @@ -13736,11 +14338,22 @@ entities: 8052: - - DoorStatus - DoorBolt - - uid: 13059 + - uid: 12739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,26.5 + rot: 1.5707963267948966 rad + pos: 53.5,31.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,29.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: 38.5,49.5 parent: 2 - uid: 19973 components: @@ -13768,11 +14381,6 @@ entities: 19973: - - DoorStatus - DoorBolt - - uid: 29371 - components: - - type: Transform - pos: 53.5,26.5 - parent: 2 - proto: AirlockExternalGlassLocked entities: - uid: 3778 @@ -14906,7 +15514,7 @@ entities: pos: -22.5,26.5 parent: 2 - type: Door - secondsUntilStateChange: -187932.16 + secondsUntilStateChange: -213190.27 state: Opening - type: DeviceLinkSource lastSignals: @@ -15762,7 +16370,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -286760.75 + secondsUntilStateChange: -312018.88 state: Opening - uid: 6934 components: @@ -15774,7 +16382,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -286763.38 + secondsUntilStateChange: -312021.5 state: Opening - uid: 6935 components: @@ -15786,7 +16394,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -286762.22 + secondsUntilStateChange: -312020.34 state: Opening - uid: 6936 components: @@ -15797,7 +16405,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -286761.44 + secondsUntilStateChange: -312019.56 state: Opening - proto: AirlockTheatreLocked entities: @@ -15940,6 +16548,14 @@ entities: - type: DeviceNetwork deviceLists: - 12885 + - uid: 12919 + components: + - type: Transform + pos: 59.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 - uid: 12937 components: - type: Transform @@ -15982,15 +16598,6 @@ entities: - type: DeviceNetwork deviceLists: - 30403 - - uid: 15485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 30404 - uid: 18164 components: - type: Transform @@ -16219,21 +16826,6 @@ entities: - type: DeviceNetwork deviceLists: - 15512 - - uid: 18437 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,16.5 - parent: 2 - - uid: 18438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18443 - uid: 18439 components: - type: Transform @@ -16908,6 +17500,14 @@ entities: - type: DeviceNetwork deviceLists: - 28262 + - uid: 28511 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 - uid: 28591 components: - type: Transform @@ -16953,6 +17553,14 @@ entities: - type: DeviceNetwork deviceLists: - 29040 + - uid: 29292 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30404 - uid: 29772 components: - type: Transform @@ -17126,22 +17734,6 @@ entities: - type: DeviceNetwork deviceLists: - 29861 - - uid: 29865 - components: - - type: Transform - pos: 49.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29864 - - uid: 29866 - components: - - type: Transform - pos: 49.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29864 - uid: 29871 components: - type: Transform @@ -17411,6 +18003,22 @@ entities: - type: DeviceNetwork deviceLists: - 21504 + - uid: 30996 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31038 + - uid: 30999 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31040 - proto: AirTank entities: - uid: 18893 @@ -17491,224 +18099,292 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1598 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1689 components: - type: Transform pos: -7.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1691 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2001 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2763 components: - type: Transform pos: 12.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3049 components: - type: Transform pos: 43.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3610 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4506 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5517 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5556 components: - type: Transform pos: 2.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5660 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5974 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6039 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6040 components: - type: Transform pos: -19.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6260 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6308 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7912 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8969 components: - type: Transform pos: -31.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9133 components: - type: Transform pos: -40.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9190 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10615 components: - type: Transform pos: 3.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10974 components: - type: Transform pos: 2.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11710 components: - type: Transform pos: -47.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11726 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11992 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12202 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12311 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-31.5 parent: 2 - - uid: 13029 - components: - - type: MetaData - name: AI Upload APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,11.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 14169 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15444 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15473 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15483 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15525 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18166 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22494 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-4.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23684 components: - type: Transform pos: -2.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29223 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 30812 components: - type: Transform pos: -45.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 5818 @@ -17730,23 +18406,47 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 732 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 20247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,22.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 24769 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-35.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28757 components: - type: Transform pos: 7.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHyperCapacity entities: - uid: 8 @@ -17755,14 +18455,8 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,45.5 parent: 2 - - uid: 884 - components: - - type: MetaData - name: AI APC - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,17.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 2023 components: - type: MetaData @@ -17771,11 +18465,15 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10076 components: - type: Transform pos: 12.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCSuperCapacity entities: - uid: 733 @@ -17784,12 +18482,16 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10518 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArrivalsShuttleTimer entities: - uid: 29785 @@ -17798,12 +18500,14 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtistCircuitBoard entities: - uid: 29446 components: - type: Transform - pos: 58.485508,22.173643 + pos: 60.671783,21.611725 parent: 2 - proto: Ash entities: @@ -17859,7 +18563,7 @@ entities: - uid: 29359 components: - type: Transform - pos: 58.52338,18.753656 + pos: 57.573837,13.584124 parent: 2 - proto: AsteroidRock entities: @@ -37966,12 +38670,16 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8242 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignEngineChange entities: - uid: 18505 @@ -37979,6 +38687,8 @@ entities: - type: Transform pos: 14.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSpoon entities: - uid: 29242 @@ -38593,32 +39303,25 @@ entities: - type: Transform pos: 64.5,8.5 parent: 2 - - uid: 20268 - components: - - type: Transform - pos: 64.5,7.5 - parent: 2 - uid: 20644 components: - type: Transform pos: 64.5,9.5 parent: 2 -- proto: BlastDoorOpen - entities: - - uid: 12801 + - uid: 20882 components: - type: Transform - pos: 56.5,17.5 + pos: 64.5,10.5 parent: 2 - - uid: 12802 + - uid: 23516 components: - type: Transform - pos: 56.5,16.5 + pos: 64.5,7.5 parent: 2 - - uid: 12803 + - uid: 29440 components: - type: Transform - pos: 56.5,15.5 + pos: 64.5,11.5 parent: 2 - proto: BlockGameArcade entities: @@ -39403,10 +40106,10 @@ entities: - type: Transform pos: -7.5,-54.5 parent: 2 - - uid: 20271 + - uid: 12920 components: - type: Transform - pos: 61.5,16.5 + pos: 50.5,16.5 parent: 2 - proto: BoxBeaker entities: @@ -39521,12 +40224,6 @@ entities: parent: 2 - proto: BoxFolderBlue entities: - - uid: 2673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.41682,20.629406 - parent: 2 - uid: 9380 components: - type: Transform @@ -39545,24 +40242,24 @@ entities: rot: 3.141592653589793 rad pos: 26.243004,4.587342 parent: 2 - - uid: 29292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.243004,4.587342 - parent: 2 - uid: 29891 components: - type: Transform pos: 51.56539,-7.444486 parent: 2 -- proto: BoxFolderClipboard - entities: - - uid: 2695 + - uid: 31087 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.752617,20.619299 + pos: 31.899996,20.634655 + parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 3594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.63958,20.591486 parent: 2 - type: ContainerContainer containers: @@ -39702,12 +40399,6 @@ entities: canCollide: False - proto: BoxFolderRed entities: - - uid: 2674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.88557,20.613781 - parent: 2 - uid: 3454 components: - type: Transform @@ -39752,6 +40443,12 @@ entities: - type: Transform pos: 46.29923,-4.2670507 parent: 2 + - uid: 31089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.160414,20.697155 + parent: 2 - proto: BoxFolderWhite entities: - uid: 1115 @@ -40063,6 +40760,30 @@ entities: rot: 3.141592653589793 rad pos: -24.10293,-40.495407 parent: 2 + - uid: 30900 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30901 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30902 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30903 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: Brutepack entities: - uid: 29650 @@ -40151,6 +40872,12 @@ entities: rot: 3.141592653589793 rad pos: 45.28038,-7.5 parent: 2 + - uid: 20498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 - uid: 24355 components: - type: Transform @@ -40169,12 +40896,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-36.5 parent: 2 - - uid: 24380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - uid: 24390 components: - type: Transform @@ -40206,11 +40927,15 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-48.5 parent: 2 - - uid: 24379 + - uid: 30984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,11.5 + pos: 56.5,26.5 + parent: 2 + - uid: 30985 + components: + - type: Transform + pos: 54.5,26.5 parent: 2 - proto: ButtonFrameExit entities: @@ -41843,6 +42568,16 @@ entities: - type: Transform pos: -41.5,-39.5 parent: 2 + - uid: 2372 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 - uid: 2472 components: - type: Transform @@ -43578,6 +44313,21 @@ entities: - type: Transform pos: -15.5,21.5 parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 - uid: 3611 components: - type: Transform @@ -44468,11 +45218,6 @@ entities: - type: Transform pos: 56.5,-31.5 parent: 2 - - uid: 4823 - components: - - type: Transform - pos: 60.5,18.5 - parent: 2 - uid: 4954 components: - type: Transform @@ -48183,11 +48928,6 @@ entities: - type: Transform pos: -0.5,52.5 parent: 2 - - uid: 9396 - components: - - type: Transform - pos: 50.5,16.5 - parent: 2 - uid: 9398 components: - type: Transform @@ -49163,11 +49903,6 @@ entities: - type: Transform pos: 34.5,-45.5 parent: 2 - - uid: 10945 - components: - - type: Transform - pos: 57.5,11.5 - parent: 2 - uid: 10950 components: - type: Transform @@ -51618,145 +52353,25 @@ entities: - type: Transform pos: 6.5,28.5 parent: 2 - - uid: 12854 + - uid: 12736 components: - type: Transform - pos: 52.5,17.5 + pos: 53.5,30.5 parent: 2 - - uid: 12855 + - uid: 12737 components: - type: Transform - pos: 53.5,17.5 + pos: 53.5,29.5 parent: 2 - - uid: 12856 + - uid: 12900 components: - type: Transform - pos: 53.5,16.5 + pos: 55.5,20.5 parent: 2 - - uid: 12857 + - uid: 12910 components: - type: Transform - pos: 53.5,15.5 - parent: 2 - - uid: 12858 - components: - - type: Transform - pos: 53.5,14.5 - parent: 2 - - uid: 12859 - components: - - type: Transform - pos: 53.5,18.5 - parent: 2 - - uid: 12860 - components: - - type: Transform - pos: 52.5,18.5 - parent: 2 - - uid: 12861 - components: - - type: Transform - pos: 51.5,18.5 - parent: 2 - - uid: 12862 - components: - - type: Transform - pos: 50.5,18.5 - parent: 2 - - uid: 12863 - components: - - type: Transform - pos: 49.5,18.5 - parent: 2 - - uid: 12864 - components: - - type: Transform - pos: 49.5,17.5 - parent: 2 - - uid: 12865 - components: - - type: Transform - pos: 49.5,16.5 - parent: 2 - - uid: 12866 - components: - - type: Transform - pos: 49.5,15.5 - parent: 2 - - uid: 12867 - components: - - type: Transform - pos: 49.5,14.5 - parent: 2 - - uid: 12868 - components: - - type: Transform - pos: 50.5,14.5 - parent: 2 - - uid: 12869 - components: - - type: Transform - pos: 50.5,14.5 - parent: 2 - - uid: 12870 - components: - - type: Transform - pos: 51.5,14.5 - parent: 2 - - uid: 12871 - components: - - type: Transform - pos: 52.5,14.5 - parent: 2 - - uid: 12872 - components: - - type: Transform - pos: 49.5,19.5 - parent: 2 - - uid: 12873 - components: - - type: Transform - pos: 49.5,20.5 - parent: 2 - - uid: 12874 - components: - - type: Transform - pos: 49.5,21.5 - parent: 2 - - uid: 12875 - components: - - type: Transform - pos: 50.5,21.5 - parent: 2 - - uid: 12876 - components: - - type: Transform - pos: 51.5,21.5 - parent: 2 - - uid: 12877 - components: - - type: Transform - pos: 52.5,21.5 - parent: 2 - - uid: 12878 - components: - - type: Transform - pos: 53.5,21.5 - parent: 2 - - uid: 12879 - components: - - type: Transform - pos: 53.5,20.5 - parent: 2 - - uid: 12880 - components: - - type: Transform - pos: 53.5,19.5 - parent: 2 - - uid: 12881 - components: - - type: Transform - pos: 54.5,16.5 + pos: 57.5,17.5 parent: 2 - uid: 12983 components: @@ -51778,71 +52393,6 @@ entities: - type: Transform pos: 62.5,-5.5 parent: 2 - - uid: 13039 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - - uid: 13040 - components: - - type: Transform - pos: 59.5,11.5 - parent: 2 - - uid: 13041 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - - uid: 13042 - components: - - type: Transform - pos: 60.5,12.5 - parent: 2 - - uid: 13043 - components: - - type: Transform - pos: 60.5,13.5 - parent: 2 - - uid: 13044 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - uid: 13045 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - - uid: 13046 - components: - - type: Transform - pos: 60.5,16.5 - parent: 2 - - uid: 13047 - components: - - type: Transform - pos: 60.5,17.5 - parent: 2 - - uid: 13048 - components: - - type: Transform - pos: 59.5,16.5 - parent: 2 - - uid: 13049 - components: - - type: Transform - pos: 58.5,16.5 - parent: 2 - - uid: 13050 - components: - - type: Transform - pos: 57.5,16.5 - parent: 2 - - uid: 13052 - components: - - type: Transform - pos: 55.5,16.5 - parent: 2 - uid: 13053 components: - type: Transform @@ -51883,6 +52433,11 @@ entities: - type: Transform pos: 59.5,-7.5 parent: 2 + - uid: 13076 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 - uid: 13078 components: - type: Transform @@ -52458,6 +53013,11 @@ entities: - type: Transform pos: -49.5,0.5 parent: 2 + - uid: 17457 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 - uid: 17468 components: - type: Transform @@ -52708,6 +53268,11 @@ entities: - type: Transform pos: -46.5,-33.5 parent: 2 + - uid: 17524 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 - uid: 17956 components: - type: Transform @@ -53133,11 +53698,71 @@ entities: - type: Transform pos: 20.5,-18.5 parent: 2 + - uid: 18229 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 - uid: 18364 components: - type: Transform pos: 42.5,-2.5 parent: 2 + - uid: 18413 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 18417 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 18434 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 18435 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 18436 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 18437 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 18438 + components: + - type: Transform + pos: 55.5,16.5 + parent: 2 + - uid: 18441 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - uid: 18442 + components: + - type: Transform + pos: 56.5,17.5 + parent: 2 + - uid: 18443 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 18444 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 - uid: 18503 components: - type: Transform @@ -53148,6 +53773,11 @@ entities: - type: Transform pos: 25.5,35.5 parent: 2 + - uid: 18557 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 - uid: 18985 components: - type: Transform @@ -53443,6 +54073,26 @@ entities: - type: Transform pos: -47.5,-55.5 parent: 2 + - uid: 20245 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 20250 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 20487 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 - uid: 20490 components: - type: Transform @@ -53458,31 +54108,6 @@ entities: - type: Transform pos: 43.5,26.5 parent: 2 - - uid: 20493 - components: - - type: Transform - pos: 44.5,26.5 - parent: 2 - - uid: 20494 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 20495 - components: - - type: Transform - pos: 46.5,26.5 - parent: 2 - - uid: 20496 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 20497 - components: - - type: Transform - pos: 48.5,26.5 - parent: 2 - uid: 20502 components: - type: Transform @@ -55008,6 +55633,11 @@ entities: - type: Transform pos: -6.5,52.5 parent: 2 + - uid: 23422 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 - uid: 23430 components: - type: Transform @@ -55028,6 +55658,11 @@ entities: - type: Transform pos: 32.5,40.5 parent: 2 + - uid: 23510 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 - uid: 23511 components: - type: Transform @@ -55083,11 +55718,6 @@ entities: - type: Transform pos: -2.5,41.5 parent: 2 - - uid: 23759 - components: - - type: Transform - pos: 51.5,16.5 - parent: 2 - uid: 23846 components: - type: Transform @@ -55143,6 +55773,11 @@ entities: - type: Transform pos: -46.5,-55.5 parent: 2 + - uid: 24124 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 - uid: 24141 components: - type: Transform @@ -57913,6 +58548,21 @@ entities: - type: Transform pos: 17.5,-51.5 parent: 2 + - uid: 28812 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 28813 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 28814 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 - uid: 28908 components: - type: Transform @@ -57983,11 +58633,21 @@ entities: - type: Transform pos: -44.5,37.5 parent: 2 + - uid: 29002 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 - uid: 29036 components: - type: Transform pos: -14.5,19.5 parent: 2 + - uid: 29074 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 - uid: 29077 components: - type: Transform @@ -58098,6 +58758,56 @@ entities: - type: Transform pos: 22.5,39.5 parent: 2 + - uid: 29306 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 29335 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - uid: 29337 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 29340 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - uid: 29341 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - uid: 29342 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 + - uid: 29343 + components: + - type: Transform + pos: 55.5,24.5 + parent: 2 + - uid: 29344 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2 + - uid: 29345 + components: + - type: Transform + pos: 53.5,24.5 + parent: 2 + - uid: 29346 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 - uid: 29352 components: - type: Transform @@ -58113,55 +58823,85 @@ entities: - type: Transform pos: 63.5,8.5 parent: 2 - - uid: 29368 + - uid: 29375 components: - type: Transform - pos: 49.5,26.5 + pos: 51.5,21.5 + parent: 2 + - uid: 29376 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 29377 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 29378 + components: + - type: Transform + pos: 54.5,20.5 parent: 2 - uid: 29379 components: - type: Transform - pos: 50.5,26.5 + pos: 60.5,19.5 parent: 2 - uid: 29380 components: - type: Transform - pos: 51.5,26.5 + pos: 60.5,18.5 parent: 2 - uid: 29381 components: - type: Transform - pos: 52.5,26.5 + pos: 53.5,20.5 parent: 2 - uid: 29382 components: - type: Transform - pos: 53.5,26.5 + pos: 53.5,15.5 parent: 2 - uid: 29383 components: - type: Transform - pos: 54.5,26.5 + pos: 59.5,15.5 parent: 2 - uid: 29384 components: - type: Transform - pos: 55.5,26.5 + pos: 57.5,15.5 parent: 2 - uid: 29385 components: - type: Transform - pos: 56.5,26.5 + pos: 58.5,15.5 parent: 2 - uid: 29386 components: - type: Transform - pos: 56.5,27.5 + pos: 52.5,14.5 parent: 2 - uid: 29387 components: - type: Transform - pos: 56.5,28.5 + pos: 56.5,15.5 + parent: 2 + - uid: 29388 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 29413 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 29415 + components: + - type: Transform + pos: 55.5,15.5 parent: 2 - uid: 29472 components: @@ -58263,21 +59003,6 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 2 - - uid: 29575 - components: - - type: Transform - pos: 60.5,19.5 - parent: 2 - - uid: 29576 - components: - - type: Transform - pos: 60.5,20.5 - parent: 2 - - uid: 29577 - components: - - type: Transform - pos: 60.5,21.5 - parent: 2 - uid: 29622 components: - type: Transform @@ -58768,8 +59493,48 @@ entities: - type: Transform pos: -46.5,-19.5 parent: 2 + - uid: 30831 + components: + - type: Transform + pos: 56.5,24.5 + parent: 2 + - uid: 30832 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 30833 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 30834 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 31062 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 31063 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 31064 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 - proto: CableApcStack entities: + - uid: 21060 + components: + - type: Transform + pos: 49.516796,20.036963 + parent: 2 - uid: 30075 components: - type: Transform @@ -58807,11 +59572,6 @@ entities: - type: Transform pos: 7.5,28.5 parent: 2 - - uid: 2381 - components: - - type: Transform - pos: 58.5,24.5 - parent: 2 - uid: 2384 components: - type: Transform @@ -58882,6 +59642,11 @@ entities: - type: Transform pos: 52.5,-10.5 parent: 2 + - uid: 4079 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 - uid: 4153 components: - type: Transform @@ -60507,10 +61272,10 @@ entities: - type: Transform pos: 31.5,33.5 parent: 2 - - uid: 5219 + - uid: 5220 components: - type: Transform - pos: 50.5,26.5 + pos: 60.5,15.5 parent: 2 - uid: 5357 components: @@ -61282,6 +62047,11 @@ entities: - type: Transform pos: 27.5,40.5 parent: 2 + - uid: 6543 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 - uid: 6674 components: - type: Transform @@ -61327,6 +62097,36 @@ entities: - type: Transform pos: -4.5,45.5 parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + pos: 61.5,22.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: 56.5,15.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 - uid: 7326 components: - type: Transform @@ -61707,11 +62507,26 @@ entities: - type: Transform pos: 33.5,50.5 parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 8670 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 - uid: 8709 components: - type: Transform pos: 43.5,26.5 parent: 2 + - uid: 8754 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 - uid: 8755 components: - type: Transform @@ -61722,6 +62537,26 @@ entities: - type: Transform pos: 43.5,28.5 parent: 2 + - uid: 8794 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 8807 + components: + - type: Transform + pos: 60.5,22.5 + parent: 2 - uid: 8904 components: - type: Transform @@ -61732,6 +62567,21 @@ entities: - type: Transform pos: 43.5,30.5 parent: 2 + - uid: 8955 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 - uid: 9393 components: - type: Transform @@ -61757,6 +62607,31 @@ entities: - type: Transform pos: -19.5,43.5 parent: 2 + - uid: 9468 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 9470 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 9473 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 9935 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 - uid: 10005 components: - type: Transform @@ -62017,16 +62892,51 @@ entities: - type: Transform pos: 43.5,-51.5 parent: 2 + - uid: 10728 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 - uid: 10744 components: - type: Transform pos: 41.5,-50.5 parent: 2 + - uid: 10840 + components: + - type: Transform + pos: 63.5,22.5 + parent: 2 + - uid: 10887 + components: + - type: Transform + pos: 63.5,26.5 + parent: 2 - uid: 10891 components: - type: Transform pos: -47.5,-48.5 parent: 2 + - uid: 10945 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 - uid: 11584 components: - type: Transform @@ -62462,225 +63372,235 @@ entities: - type: Transform pos: 43.5,10.5 parent: 2 - - uid: 12823 + - uid: 12704 components: - type: Transform - pos: 50.5,19.5 + pos: 47.5,27.5 parent: 2 - - uid: 12824 + - uid: 12709 components: - type: Transform - pos: 51.5,19.5 + pos: 62.5,22.5 parent: 2 - - uid: 12825 + - uid: 12716 components: - type: Transform - pos: 52.5,19.5 + pos: 47.5,25.5 parent: 2 - - uid: 12890 + - uid: 12717 components: - type: Transform - pos: 46.5,24.5 + pos: 47.5,26.5 parent: 2 - - uid: 12891 + - uid: 12728 components: - type: Transform pos: 47.5,24.5 parent: 2 - - uid: 12892 + - uid: 12794 components: - type: Transform - pos: 48.5,24.5 + pos: 63.5,15.5 parent: 2 - - uid: 12893 + - uid: 12795 components: - type: Transform - pos: 49.5,24.5 + pos: 63.5,18.5 parent: 2 - - uid: 12894 + - uid: 12796 components: - type: Transform - pos: 50.5,24.5 + pos: 51.5,27.5 parent: 2 - - uid: 12895 + - uid: 12798 components: - type: Transform - pos: 51.5,24.5 + pos: 63.5,21.5 parent: 2 - - uid: 12896 + - uid: 12799 components: - type: Transform - pos: 52.5,24.5 + pos: 63.5,25.5 parent: 2 - - uid: 12897 + - uid: 12800 components: - type: Transform - pos: 53.5,24.5 + pos: 63.5,23.5 parent: 2 - - uid: 12898 + - uid: 12801 components: - type: Transform - pos: 54.5,24.5 + pos: 47.5,19.5 parent: 2 - - uid: 12899 + - uid: 12805 components: - type: Transform - pos: 55.5,24.5 + pos: 50.5,15.5 parent: 2 - - uid: 12900 + - uid: 12807 components: - type: Transform - pos: 56.5,24.5 + pos: 50.5,22.5 parent: 2 - - uid: 12901 + - uid: 12808 components: - type: Transform - pos: 56.5,23.5 + pos: 51.5,22.5 parent: 2 - - uid: 12902 + - uid: 12809 components: - type: Transform - pos: 56.5,22.5 + pos: 47.5,18.5 parent: 2 - - uid: 12903 + - uid: 12811 components: - type: Transform - pos: 56.5,21.5 + pos: 51.5,17.5 parent: 2 - - uid: 12904 + - uid: 12813 components: - type: Transform - pos: 56.5,20.5 + pos: 58.5,22.5 parent: 2 - - uid: 12905 + - uid: 12816 components: - type: Transform - pos: 56.5,19.5 + pos: 47.5,23.5 parent: 2 - - uid: 12906 + - uid: 12817 components: - type: Transform - pos: 46.5,23.5 + pos: 47.5,20.5 parent: 2 - - uid: 12907 + - uid: 12823 components: - type: Transform - pos: 46.5,22.5 + pos: 47.5,21.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + pos: 63.5,17.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + pos: 58.5,15.5 parent: 2 - uid: 12908 components: - type: Transform - pos: 46.5,21.5 + pos: 48.5,11.5 parent: 2 - uid: 12909 components: - type: Transform - pos: 46.5,20.5 - parent: 2 - - uid: 12910 - components: - - type: Transform - pos: 46.5,19.5 - parent: 2 - - uid: 12911 - components: - - type: Transform - pos: 46.5,18.5 + pos: 46.5,12.5 parent: 2 - uid: 12912 components: - type: Transform - pos: 46.5,17.5 + pos: 63.5,14.5 parent: 2 - uid: 12913 components: - type: Transform - pos: 46.5,16.5 - parent: 2 - - uid: 12914 - components: - - type: Transform - pos: 46.5,15.5 - parent: 2 - - uid: 12915 - components: - - type: Transform - pos: 46.5,14.5 - parent: 2 - - uid: 12916 - components: - - type: Transform - pos: 46.5,13.5 - parent: 2 - - uid: 12917 - components: - - type: Transform - pos: 46.5,12.5 - parent: 2 - - uid: 12918 - components: - - type: Transform - pos: 46.5,11.5 - parent: 2 - - uid: 12919 - components: - - type: Transform - pos: 47.5,11.5 - parent: 2 - - uid: 12920 - components: - - type: Transform - pos: 48.5,11.5 + pos: 54.5,27.5 parent: 2 - uid: 12921 components: - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 12922 - components: - - type: Transform - pos: 50.5,11.5 + pos: 63.5,13.5 parent: 2 - uid: 12923 components: - type: Transform - pos: 51.5,11.5 + pos: 55.5,27.5 parent: 2 - uid: 12924 components: - type: Transform - pos: 52.5,11.5 + pos: 61.5,27.5 parent: 2 - uid: 12925 components: - type: Transform - pos: 53.5,11.5 + pos: 59.5,27.5 parent: 2 - uid: 12926 components: - type: Transform - pos: 54.5,11.5 - parent: 2 - - uid: 12927 - components: - - type: Transform - pos: 55.5,11.5 + pos: 60.5,27.5 parent: 2 - uid: 12928 components: - type: Transform - pos: 56.5,11.5 + pos: 47.5,22.5 parent: 2 - uid: 12929 components: - type: Transform - pos: 56.5,12.5 + pos: 48.5,22.5 parent: 2 - - uid: 12930 + - uid: 12933 components: - type: Transform - pos: 56.5,13.5 + pos: 63.5,20.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + pos: 58.5,27.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + pos: 58.5,11.5 parent: 2 - uid: 12959 components: @@ -62827,50 +63747,85 @@ entities: - type: Transform pos: 56.5,9.5 parent: 2 + - uid: 13007 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + pos: 55.5,29.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 - uid: 13034 components: - type: Transform pos: 43.5,-45.5 parent: 2 - - uid: 13037 + - uid: 13041 components: - type: Transform - pos: 51.5,23.5 + pos: 44.5,29.5 parent: 2 - - uid: 13062 + - uid: 13042 components: - type: Transform - pos: 47.5,27.5 + pos: 46.5,29.5 parent: 2 - - uid: 13073 + - uid: 13043 components: - type: Transform - pos: 49.5,27.5 + pos: 45.5,29.5 parent: 2 - - uid: 13130 + - uid: 13044 components: - type: Transform - pos: 51.5,26.5 + pos: 49.5,30.5 parent: 2 - - uid: 13131 + - uid: 13046 components: - type: Transform - pos: 52.5,26.5 + pos: 50.5,30.5 parent: 2 - - uid: 13210 + - uid: 13047 components: - type: Transform - pos: 51.5,22.5 + pos: 47.5,29.5 parent: 2 - - uid: 13747 + - uid: 13048 components: - type: Transform - pos: 51.5,20.5 + pos: 48.5,30.5 parent: 2 - - uid: 13773 + - uid: 13049 components: - type: Transform - pos: 51.5,21.5 + pos: 48.5,29.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + pos: 53.5,19.5 parent: 2 - uid: 14333 components: @@ -62902,11 +63857,6 @@ entities: - type: Transform pos: 49.5,-15.5 parent: 2 - - uid: 14998 - components: - - type: Transform - pos: 54.5,26.5 - parent: 2 - uid: 15404 components: - type: Transform @@ -62930,7 +63880,7 @@ entities: - uid: 16507 components: - type: Transform - pos: 57.5,24.5 + pos: 50.5,16.5 parent: 2 - uid: 16567 components: @@ -62962,6 +63912,46 @@ entities: - type: Transform pos: -46.5,-51.5 parent: 2 + - uid: 18371 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 18393 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 18394 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 18396 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 18419 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 + - uid: 18420 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 18421 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 18431 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 - uid: 18451 components: - type: Transform @@ -62992,10 +63982,20 @@ entities: - type: Transform pos: -54.5,-61.5 parent: 2 - - uid: 18883 + - uid: 18922 components: - type: Transform - pos: 59.5,24.5 + pos: 46.5,16.5 + parent: 2 + - uid: 18928 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 18929 + components: + - type: Transform + pos: 50.5,17.5 parent: 2 - uid: 19073 components: @@ -64552,41 +65552,6 @@ entities: - type: Transform pos: -61.5,-53.5 parent: 2 - - uid: 20237 - components: - - type: Transform - pos: 55.5,26.5 - parent: 2 - - uid: 20243 - components: - - type: Transform - pos: 56.5,26.5 - parent: 2 - - uid: 20262 - components: - - type: Transform - pos: 44.5,26.5 - parent: 2 - - uid: 20263 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 20264 - components: - - type: Transform - pos: 46.5,26.5 - parent: 2 - - uid: 20265 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 20267 - components: - - type: Transform - pos: 49.5,26.5 - parent: 2 - uid: 20388 components: - type: Transform @@ -64595,12 +65560,12 @@ entities: - uid: 20391 components: - type: Transform - pos: 56.5,27.5 + pos: 46.5,13.5 parent: 2 - uid: 20392 components: - type: Transform - pos: 56.5,28.5 + pos: 46.5,18.5 parent: 2 - uid: 20393 components: @@ -64992,26 +65957,46 @@ entities: - type: Transform pos: 59.5,29.5 parent: 2 - - uid: 20500 + - uid: 20485 components: - type: Transform - pos: 61.5,24.5 + pos: 46.5,17.5 parent: 2 - - uid: 20646 + - uid: 20499 components: - type: Transform - pos: 48.5,27.5 + pos: 62.5,27.5 + parent: 2 + - uid: 20561 + components: + - type: Transform + pos: 63.5,27.5 parent: 2 - uid: 20654 components: - type: Transform - pos: 62.5,24.5 + pos: 54.5,22.5 + parent: 2 + - uid: 20705 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 20720 + components: + - type: Transform + pos: 50.5,11.5 parent: 2 - uid: 20886 components: - type: Transform pos: 51.5,-21.5 parent: 2 + - uid: 20911 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 - uid: 20959 components: - type: Transform @@ -65787,16 +66772,16 @@ entities: - type: Transform pos: 55.5,-14.5 parent: 2 - - uid: 23422 - components: - - type: Transform - pos: 63.5,24.5 - parent: 2 - uid: 23427 components: - type: Transform pos: 55.5,-17.5 parent: 2 + - uid: 23528 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 - uid: 23604 components: - type: Transform @@ -65892,11 +66877,6 @@ entities: - type: Transform pos: -20.5,24.5 parent: 2 - - uid: 24167 - components: - - type: Transform - pos: 63.5,20.5 - parent: 2 - uid: 24258 components: - type: Transform @@ -65982,175 +66962,30 @@ entities: - type: Transform pos: 60.5,10.5 parent: 2 - - uid: 29152 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - - uid: 29153 - components: - - type: Transform - pos: 60.5,12.5 - parent: 2 - - uid: 29154 - components: - - type: Transform - pos: 60.5,13.5 - parent: 2 - - uid: 29155 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - uid: 29156 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - uid: 29157 components: - type: Transform - pos: 60.5,16.5 + pos: 53.5,20.5 parent: 2 - - uid: 29158 + - uid: 29308 components: - type: Transform - pos: 59.5,16.5 + pos: 46.5,11.5 parent: 2 - - uid: 29159 + - uid: 29310 components: - type: Transform - pos: 58.5,16.5 + pos: 47.5,11.5 parent: 2 - - uid: 29160 - components: - - type: Transform - pos: 57.5,16.5 - parent: 2 - - uid: 29161 - components: - - type: Transform - pos: 56.5,16.5 - parent: 2 - - uid: 29162 - components: - - type: Transform - pos: 55.5,16.5 - parent: 2 - - uid: 29163 - components: - - type: Transform - pos: 54.5,16.5 - parent: 2 - - uid: 29164 - components: - - type: Transform - pos: 53.5,16.5 - parent: 2 - - uid: 29165 - components: - - type: Transform - pos: 53.5,17.5 - parent: 2 - - uid: 29166 - components: - - type: Transform - pos: 53.5,19.5 - parent: 2 - - uid: 29167 + - uid: 29311 components: - type: Transform pos: 53.5,18.5 parent: 2 - - uid: 29289 + - uid: 29361 components: - type: Transform - pos: 60.5,24.5 - parent: 2 - - uid: 29298 - components: - - type: Transform - pos: 63.5,22.5 - parent: 2 - - uid: 29299 - components: - - type: Transform - pos: 63.5,21.5 - parent: 2 - - uid: 29305 - components: - - type: Transform - pos: 52.5,20.5 - parent: 2 - - uid: 29306 - components: - - type: Transform - pos: 50.5,20.5 - parent: 2 - - uid: 29324 - components: - - type: Transform - pos: 63.5,19.5 - parent: 2 - - uid: 29325 - components: - - type: Transform - pos: 63.5,18.5 - parent: 2 - - uid: 29326 - components: - - type: Transform - pos: 63.5,17.5 - parent: 2 - - uid: 29327 - components: - - type: Transform - pos: 63.5,16.5 - parent: 2 - - uid: 29328 - components: - - type: Transform - pos: 63.5,15.5 - parent: 2 - - uid: 29329 - components: - - type: Transform - pos: 63.5,14.5 - parent: 2 - - uid: 29330 - components: - - type: Transform - pos: 63.5,13.5 - parent: 2 - - uid: 29331 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 - - uid: 29332 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - - uid: 29333 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - - uid: 29335 - components: - - type: Transform - pos: 63.5,23.5 - parent: 2 - - uid: 29364 - components: - - type: Transform - pos: 61.5,15.5 - parent: 2 - - uid: 29367 - components: - - type: Transform - pos: 53.5,26.5 + pos: 52.5,21.5 parent: 2 - uid: 29392 components: @@ -66277,6 +67112,11 @@ entities: - type: Transform pos: 24.5,-25.5 parent: 2 + - uid: 30294 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 - uid: 30314 components: - type: Transform @@ -68114,6 +68954,16 @@ entities: - type: Transform pos: -4.5,41.5 parent: 2 + - uid: 6541 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + pos: 51.5,17.5 + parent: 2 - uid: 6682 components: - type: Transform @@ -68154,6 +69004,16 @@ entities: - type: Transform pos: 17.5,26.5 parent: 2 + - uid: 6812 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 - uid: 7097 components: - type: Transform @@ -68959,6 +69819,11 @@ entities: - type: Transform pos: -23.5,43.5 parent: 2 + - uid: 8992 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 - uid: 9028 components: - type: Transform @@ -69124,6 +69989,21 @@ entities: - type: Transform pos: -25.5,44.5 parent: 2 + - uid: 9396 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 9471 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 - uid: 9475 components: - type: Transform @@ -69159,6 +70039,11 @@ entities: - type: Transform pos: -23.5,26.5 parent: 2 + - uid: 9739 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 - uid: 10039 components: - type: Transform @@ -69504,6 +70389,11 @@ entities: - type: Transform pos: 3.5,-58.5 parent: 2 + - uid: 10958 + components: + - type: Transform + pos: 58.5,19.5 + parent: 2 - uid: 10975 components: - type: Transform @@ -69849,26 +70739,131 @@ entities: - type: Transform pos: -53.5,-31.5 parent: 2 - - uid: 12827 + - uid: 12710 components: - type: Transform - pos: 51.5,19.5 + pos: 59.5,15.5 parent: 2 - - uid: 12828 + - uid: 12711 components: - type: Transform - pos: 51.5,18.5 + pos: 56.5,15.5 parent: 2 - - uid: 12829 + - uid: 12760 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 12761 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 12762 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + pos: 58.5,18.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 12906 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - uid: 12907 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + pos: 50.5,17.5 + parent: 2 + - uid: 12930 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 12931 + components: + - type: Transform + pos: 60.5,17.5 + parent: 2 + - uid: 12948 components: - type: Transform pos: 52.5,18.5 parent: 2 - - uid: 12853 - components: - - type: Transform - pos: 52.5,17.5 - parent: 2 - uid: 12992 components: - type: Transform @@ -69904,26 +70899,6 @@ entities: - type: Transform pos: 60.5,10.5 parent: 2 - - uid: 13025 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - - uid: 13026 - components: - - type: Transform - pos: 59.5,11.5 - parent: 2 - - uid: 13027 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - - uid: 13028 - components: - - type: Transform - pos: 57.5,11.5 - parent: 2 - uid: 13072 components: - type: Transform @@ -70994,6 +71969,11 @@ entities: - type: Transform pos: 23.5,-26.5 parent: 2 + - uid: 18644 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 - uid: 19861 components: - type: Transform @@ -71034,6 +72014,11 @@ entities: - type: Transform pos: 44.5,56.5 parent: 2 + - uid: 20246 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 - uid: 20396 components: - type: Transform @@ -71614,6 +72599,36 @@ entities: - type: Transform pos: 25.5,35.5 parent: 2 + - uid: 29326 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 29327 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 29328 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 29329 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 29330 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 29455 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 - uid: 29578 components: - type: Transform @@ -71925,15 +72940,23 @@ entities: - type: Transform pos: 14.5,43.5 parent: 2 - - uid: 8502 + - uid: 12693 components: - type: Transform - pos: 50.5,20.5 + rot: 3.141592653589793 rad + pos: 48.5,14.5 parent: 2 - - uid: 8670 + - uid: 12792 components: - type: Transform - pos: 52.5,20.5 + rot: -1.5707963267948966 rad + pos: 49.5,15.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,29.5 parent: 2 - uid: 16678 components: @@ -71953,12 +72976,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-53.5 parent: 2 - - uid: 20245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,26.5 - parent: 2 - uid: 22495 components: - type: Transform @@ -71988,12 +73005,6 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-45.5 parent: 2 - - uid: 29149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,19.5 - parent: 2 - proto: Candle entities: - uid: 23174 @@ -74193,6 +75204,11 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-27.5 parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 - uid: 3449 components: - type: Transform @@ -74241,11 +75257,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,28.5 parent: 2 - - uid: 5222 - components: - - type: Transform - pos: 49.5,26.5 - parent: 2 - uid: 5397 components: - type: Transform @@ -74281,6 +75292,12 @@ entities: - type: Transform pos: 22.5,22.5 parent: 2 + - uid: 5749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,14.5 + parent: 2 - uid: 6433 components: - type: Transform @@ -74667,11 +75684,6 @@ entities: - type: Transform pos: -27.5,22.5 parent: 2 - - uid: 8754 - components: - - type: Transform - pos: 52.5,20.5 - parent: 2 - uid: 8785 components: - type: Transform @@ -74816,17 +75828,18 @@ entities: - type: Transform pos: -27.5,18.5 parent: 2 - - uid: 9935 - components: - - type: Transform - pos: 50.5,20.5 - parent: 2 - uid: 9945 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-47.5 parent: 2 + - uid: 10660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,15.5 + parent: 2 - uid: 11974 components: - type: Transform @@ -76021,6 +77034,11 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-46.5 parent: 2 + - uid: 13131 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 - uid: 13135 components: - type: Transform @@ -76039,6 +77057,16 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,6.5 parent: 2 + - uid: 13210 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 - uid: 13571 components: - type: Transform @@ -76051,11 +77079,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,9.5 parent: 2 - - uid: 15443 - components: - - type: Transform - pos: 51.5,20.5 - parent: 2 - uid: 15563 components: - type: Transform @@ -76266,12 +77289,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,49.5 parent: 2 - - uid: 18557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,49.5 - parent: 2 - uid: 18588 components: - type: Transform @@ -77360,11 +78377,10 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-55.5 parent: 2 - - uid: 20246 + - uid: 20271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,27.5 + pos: 50.5,29.5 parent: 2 - uid: 21050 components: @@ -77372,6 +78388,12 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-47.5 parent: 2 + - uid: 23308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,15.5 + parent: 2 - uid: 23469 components: - type: Transform @@ -77759,40 +78781,41 @@ entities: - type: Transform pos: -13.5,-59.5 parent: 2 + - uid: 28975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,13.5 + parent: 2 - uid: 29021 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-44.5 parent: 2 - - uid: 29023 - components: - - type: Transform - pos: 48.5,26.5 - parent: 2 - uid: 29024 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-45.5 parent: 2 - - uid: 29366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,26.5 - parent: 2 - - uid: 29370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,26.5 - parent: 2 - - uid: 29373 + - uid: 29309 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,27.5 + pos: 48.5,16.5 + parent: 2 + - uid: 29429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,14.5 + parent: 2 + - uid: 29430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,13.5 parent: 2 - uid: 29547 components: @@ -78432,6 +79455,12 @@ entities: rot: 3.141592653589793 rad pos: 31.434769,-34.426872 parent: 21002 + - uid: 29302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.468098,9.715801 + parent: 2 - uid: 29668 components: - type: Transform @@ -78718,7 +79747,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 31.963871,-3.9006166 + pos: 32.059547,-4.228452 parent: 2 - uid: 11855 components: @@ -78726,17 +79755,11 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-26.5 parent: 2 - - uid: 12795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,18.5 - parent: 2 - - uid: 13020 + - uid: 12745 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,12.5 + pos: 49.541958,30.582247 parent: 2 - uid: 17325 components: @@ -78750,17 +79773,11 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-53.5 parent: 2 - - uid: 20272 + - uid: 20253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.57121,15.605441 - parent: 2 - - uid: 20910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.535034,27.628138 + rot: 3.141592653589793 rad + pos: 54.5,18 parent: 2 - uid: 23664 components: @@ -78795,6 +79812,18 @@ entities: - type: Transform pos: 31.484047,-20.398914 parent: 2 + - uid: 30938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,18 + parent: 2 + - uid: 31080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.63151,16.669516 + parent: 2 - proto: ChairOfficeLight entities: - uid: 1247 @@ -78870,6 +79899,12 @@ entities: rot: -1.5707963267948966 rad pos: 14.49886,-34.42077 parent: 2 + - uid: 30830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.520355,15.684031 + parent: 2 - proto: ChairWood entities: - uid: 483 @@ -79339,6 +80374,18 @@ entities: parent: 3442 - type: Physics canCollide: False + - uid: 31118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.63412,23.520771 + parent: 2 + - uid: 31119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.675785,23.177021 + parent: 2 - proto: CigarGold entities: - uid: 2705 @@ -79398,6 +80445,8 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetBombFilled entities: - uid: 4310 @@ -79504,6 +80553,11 @@ entities: - type: Transform pos: 35.5,4.5 parent: 2 + - uid: 12827 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 - uid: 15617 components: - type: Transform @@ -79514,6 +80568,11 @@ entities: - type: Transform pos: 62.5,-0.5 parent: 2 + - uid: 18425 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 - uid: 18970 components: - type: Transform @@ -79574,6 +80633,11 @@ entities: - type: Transform pos: 45.5,-45.5 parent: 2 + - uid: 20389 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 - uid: 20868 components: - type: Transform @@ -79589,11 +80653,6 @@ entities: - type: Transform pos: 4.5,49.5 parent: 2 - - uid: 23517 - components: - - type: Transform - pos: 51.5,27.5 - parent: 2 - uid: 23748 components: - type: Transform @@ -79619,11 +80678,6 @@ entities: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 30294 - components: - - type: Transform - pos: 44.5,19.5 - parent: 2 - uid: 30295 components: - type: Transform @@ -79738,11 +80792,6 @@ entities: - type: Transform pos: 21.5,28.5 parent: 2 - - uid: 9471 - components: - - type: Transform - pos: 38.5,48.5 - parent: 2 - uid: 9647 components: - type: Transform @@ -79763,6 +80812,11 @@ entities: - type: Transform pos: 17.5,39.5 parent: 2 + - uid: 12874 + components: + - type: Transform + pos: 39.5,48.5 + parent: 2 - uid: 13133 components: - type: Transform @@ -79798,6 +80852,11 @@ entities: - type: Transform pos: -37.5,-28.5 parent: 2 + - uid: 19005 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 - uid: 19015 components: - type: Transform @@ -79973,21 +81032,26 @@ entities: - type: Transform pos: 38.5,46.5 parent: 2 - - uid: 9473 - components: - - type: Transform - pos: 39.5,48.5 - parent: 2 - uid: 9649 components: - type: Transform pos: -25.5,8.5 parent: 2 + - uid: 12872 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 - uid: 13936 components: - type: Transform pos: 37.5,-37.5 parent: 2 + - uid: 14998 + components: + - type: Transform + pos: 35.5,50.5 + parent: 2 - uid: 18255 components: - type: Transform @@ -80043,11 +81107,6 @@ entities: - type: Transform pos: 44.5,12.5 parent: 2 - - uid: 18922 - components: - - type: Transform - pos: 44.5,23.5 - parent: 2 - uid: 18924 components: - type: Transform @@ -80078,11 +81137,6 @@ entities: - type: Transform pos: 31.5,52.5 parent: 2 - - uid: 19005 - components: - - type: Transform - pos: 54.5,8.5 - parent: 2 - uid: 19006 components: - type: Transform @@ -80200,6 +81254,16 @@ entities: - type: Transform pos: -11.5,-56.5 parent: 2 + - uid: 28510 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 29301 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 - uid: 30193 components: - type: Transform @@ -80244,10 +81308,10 @@ entities: - type: Transform pos: 29.5,40.5 parent: 2 - - uid: 9466 + - uid: 12873 components: - type: Transform - pos: 36.5,50.5 + pos: 37.5,50.5 parent: 2 - proto: ClosetWallEmergencyFilledRandom entities: @@ -80257,12 +81321,16 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9505 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClothingBeltStorageWaistbag entities: - uid: 26598 @@ -81427,6 +82495,12 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-37.5 parent: 2 + - uid: 18426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,12.5 + parent: 2 - uid: 29138 components: - type: Transform @@ -81497,10 +82571,10 @@ entities: - type: Transform pos: 41.5,23.5 parent: 2 - - uid: 29136 + - uid: 12875 components: - type: Transform - pos: 44.5,23.5 + pos: 45.5,26.5 parent: 2 - uid: 29816 components: @@ -81832,7 +82906,7 @@ entities: - uid: 29451 components: - type: Transform - pos: 61.47509,22.204893 + pos: 49.497982,19.266006 parent: 2 - proto: CommsComputerCircuitboard entities: @@ -81855,18 +82929,17 @@ entities: rot: 3.141592653589793 rad pos: -27.5,39.5 parent: 2 - - uid: 13015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,12.5 - parent: 2 - uid: 18894 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,42.5 parent: 2 + - uid: 24167 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 - uid: 29295 components: - type: Transform @@ -82019,11 +83092,10 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-6.5 parent: 2 - - uid: 14688 + - uid: 29324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,18.5 + pos: 56.5,18.5 parent: 2 - uid: 30257 components: @@ -82067,6 +83139,11 @@ entities: - type: Transform pos: 43.5,-15.5 parent: 2 + - uid: 31133 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 - proto: ComputerFrame entities: - uid: 3893 @@ -82166,11 +83243,10 @@ entities: rot: 3.141592653589793 rad pos: -6.5,45.5 parent: 2 - - uid: 29363 + - uid: 29422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,15.5 + pos: 54.5,18.5 parent: 2 - proto: ComputerRadar entities: @@ -82264,18 +83340,18 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-46.5 parent: 2 + - uid: 12747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,30.5 + parent: 2 - uid: 18228 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-53.5 parent: 2 - - uid: 20261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,27.5 - parent: 2 - uid: 22493 components: - type: Transform @@ -82348,6 +83424,17 @@ entities: - type: Transform pos: 19.5,-42.5 parent: 21002 + - uid: 29889 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 31061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,16.5 + parent: 2 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - uid: 12464 @@ -82842,7 +83929,7 @@ entities: - uid: 20270 components: - type: Transform - pos: 58.49672,13.929133 + pos: 52.565563,13.613095 parent: 2 - proto: CottonSeeds entities: @@ -83082,10 +84169,10 @@ entities: parent: 2 - proto: CrateEngineeringCableBulk entities: - - uid: 13076 + - uid: 20261 components: - type: Transform - pos: 52.5,27.5 + pos: 55.5,29.5 parent: 2 - uid: 23066 components: @@ -83891,8 +84978,10 @@ entities: - uid: 4647 components: - type: Transform - pos: 44.5,-20.5 + pos: 45.5,-20.5 parent: 2 + - type: Pullable + prevFixedRotation: True - proto: CrateServiceBureaucracy entities: - uid: 29667 @@ -84342,6 +85431,27 @@ entities: - type: Transform pos: 0.5,0.5 parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 31065 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 +- proto: DefaultStationBeaconAIPower + entities: + - uid: 31066 + components: + - type: Transform + pos: 49.5,14.5 + parent: 2 +- proto: DefaultStationBeaconAIUpload + entities: + - uid: 31067 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 - proto: DefaultStationBeaconAME entities: - uid: 5822 @@ -84713,24 +85823,32 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1594 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1604 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7691 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 4624 @@ -85212,12 +86330,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-54.5 parent: 2 - - uid: 17524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,1.5 - parent: 2 - uid: 17545 components: - type: Transform @@ -85386,6 +86498,29 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-30.5 parent: 2 + - uid: 30930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,4.5 + parent: 2 + - uid: 30931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,4.5 + parent: 2 + - uid: 30932 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - uid: 30933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 - proto: DisposalJunction entities: - uid: 1202 @@ -85597,6 +86732,12 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-10.5 parent: 2 + - uid: 30934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,1.5 + parent: 2 - proto: DisposalJunctionFlipped entities: - uid: 3203 @@ -92482,6 +93623,102 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,-30.5 parent: 2 + - uid: 30838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,6.5 + parent: 2 + - uid: 30841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,4.5 + parent: 2 + - uid: 30842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,4.5 + parent: 2 + - uid: 30843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,3.5 + parent: 2 + - uid: 30881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,5.5 + parent: 2 + - uid: 30882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,4.5 + parent: 2 + - uid: 30919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,2.5 + parent: 2 + - uid: 30920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,4.5 + parent: 2 + - uid: 30921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,4.5 + parent: 2 + - uid: 30922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,7.5 + parent: 2 + - uid: 30923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,8.5 + parent: 2 + - uid: 30924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,9.5 + parent: 2 + - uid: 30925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,10.5 + parent: 2 + - uid: 30926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,11.5 + parent: 2 + - uid: 30927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,12.5 + parent: 2 + - uid: 30928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,13.5 + parent: 2 - proto: DisposalRouter entities: - uid: 16559 @@ -93108,6 +94345,12 @@ entities: rot: 3.141592653589793 rad pos: -47.5,-31.5 parent: 2 + - uid: 30929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,13.5 + parent: 2 - proto: DisposalUnit entities: - uid: 434 @@ -93375,6 +94618,11 @@ entities: - type: Transform pos: 11.5,34.5 parent: 2 + - uid: 29347 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 - proto: DisposalYJunction entities: - uid: 16566 @@ -93958,7 +95206,7 @@ entities: - uid: 23421 components: - type: Transform - pos: 29.415947,20.657654 + pos: 40.5752,16.812033 parent: 2 - proto: DrinkFlaskOld entities: @@ -94100,6 +95348,16 @@ entities: - type: Transform pos: 14.850212,37.63946 parent: 2 + - uid: 31085 + components: + - type: Transform + pos: 30.13958,20.716486 + parent: 2 + - uid: 31086 + components: + - type: Transform + pos: 29.993746,20.560236 + parent: 2 - proto: DrinkGlassCoupeShaped entities: - uid: 11702 @@ -94494,45 +95752,10 @@ entities: parent: 2 - proto: DrinkSodaWaterBottleFull entities: - - uid: 18 - components: - - type: Transform - pos: 24.350317,14.880395 - parent: 2 - - uid: 3589 - components: - - type: Transform - pos: 23.636429,16.66636 - parent: 2 - - uid: 3590 - components: - - type: Transform - pos: 24.292679,16.681986 - parent: 2 - - uid: 3591 - components: - - type: Transform - pos: 24.511429,16.306986 - parent: 2 - - uid: 3592 - components: - - type: Transform - pos: 23.605179,14.947611 - parent: 2 - - uid: 3593 - components: - - type: Transform - pos: 23.355179,15.494486 - parent: 2 - - uid: 3594 - components: - - type: Transform - pos: 24.573929,15.385111 - parent: 2 - uid: 3597 components: - type: Transform - pos: 29.34997,20.992138 + pos: 29.79583,20.997736 parent: 2 - uid: 23386 components: @@ -94606,6 +95829,41 @@ entities: - type: Transform pos: 40.765537,-7.309368 parent: 2 + - uid: 12893 + components: + - type: Transform + pos: 23.743635,14.669084 + parent: 2 + - uid: 12894 + components: + - type: Transform + pos: 24.420717,16.3045 + parent: 2 + - uid: 12895 + components: + - type: Transform + pos: 24.441551,15.700334 + parent: 2 + - uid: 12896 + components: + - type: Transform + pos: 24.420717,15.075334 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: 23.733217,16.627417 + parent: 2 + - uid: 12898 + components: + - type: Transform + pos: 24.201967,16.606583 + parent: 2 + - uid: 12899 + components: + - type: Transform + pos: 24.149885,14.658667 + parent: 2 - uid: 16792 components: - type: Transform @@ -94621,6 +95879,21 @@ entities: - type: Transform pos: -36.29477,-34.245426 parent: 2 + - uid: 31082 + components: + - type: Transform + pos: 23.451967,15.096167 + parent: 2 + - uid: 31083 + components: + - type: Transform + pos: 23.441551,15.679501 + parent: 2 + - uid: 31084 + components: + - type: Transform + pos: 23.462385,16.356583 + parent: 2 - proto: DrinkWaterCup entities: - uid: 2270 @@ -95390,18 +96663,6 @@ entities: - type: Transform pos: -7.5,38.5 parent: 2 - - uid: 24124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,17.5 - parent: 2 - - uid: 24125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,15.5 - parent: 2 - uid: 24131 components: - type: Transform @@ -95675,83 +96936,111 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5805 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8970 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9765 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11980 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19637 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23043 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,3.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23795 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23796 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23798 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23800 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23801 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28859 components: - type: Transform pos: -29.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28905 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 1043 @@ -95789,7 +97078,7 @@ entities: pos: 43.5,-4.5 parent: 2 - type: FaxMachine - name: HoP + name: HoP's Office - uid: 5844 components: - type: MetaData @@ -95852,16 +97141,7 @@ entities: pos: -46.5,-27.5 parent: 2 - type: FaxMachine - name: News - - uid: 13061 - components: - - type: MetaData - name: AI fax machine - - type: Transform - pos: 58.5,14.5 - parent: 2 - - type: FaxMachine - name: AI + name: News Room - uid: 17217 components: - type: MetaData @@ -95880,6 +97160,15 @@ entities: parent: 21002 - type: FaxMachine name: Perma + - uid: 31068 + components: + - type: MetaData + name: AI fax machine + - type: Transform + pos: 59.5,16.5 + parent: 2 + - type: FaxMachine + name: AI Upload - proto: FaxMachineCaptain entities: - uid: 2688 @@ -95889,12 +97178,38 @@ entities: parent: 2 - proto: FenceMetalGate entities: + - uid: 18427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 - uid: 30252 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-38.5 parent: 2 +- proto: FenceMetalStraight + entities: + - uid: 13037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,14.5 + parent: 2 + - uid: 29155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,16.5 + parent: 2 + - uid: 29161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,13.5 + parent: 2 - proto: FenceWoodSmallGate entities: - uid: 28615 @@ -95965,6 +97280,34 @@ entities: - type: Transform pos: 29.507704,22.5 parent: 2 + - type: Storage + storedItems: + 2743: + position: 0,0 + _rotation: South + 2746: + position: 1,0 + _rotation: South + 2747: + position: 2,0 + _rotation: South + 2744: + position: 3,0 + _rotation: South + 2745: + position: 4,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2743 + - 2746 + - 2747 + - 2744 + - 2745 - uid: 5843 components: - type: Transform @@ -96059,6 +97402,9 @@ entities: 10837: position: 0,0 _rotation: South + 29266: + position: 1,0 + _rotation: South - type: ContainerContainer containers: storagebase: !type:Container @@ -96066,6 +97412,7 @@ entities: occludes: True ents: - 10837 + - 29266 - uid: 4570 components: - type: Transform @@ -96211,6 +97558,16 @@ entities: occludes: True ents: - 29265 + - uid: 31073 + components: + - type: Transform + pos: 54.068718,13.5 + parent: 2 + - uid: 31074 + components: + - type: Transform + pos: 56.943718,13.5 + parent: 2 - proto: FireAlarm entities: - uid: 410 @@ -96219,6 +97576,8 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2123 components: - type: Transform @@ -96229,6 +97588,8 @@ entities: devices: - 17904 - 17905 + - type: Fixtures + fixtures: {} - uid: 4037 components: - type: Transform @@ -96241,6 +97602,8 @@ entities: - 30329 - 5582 - 30327 + - type: Fixtures + fixtures: {} - uid: 4514 components: - type: Transform @@ -96269,6 +97632,8 @@ entities: - 16528 - 30338 - 30028 + - type: Fixtures + fixtures: {} - uid: 10191 components: - type: Transform @@ -96283,6 +97648,8 @@ entities: - 16523 - 16524 - 16525 + - type: Fixtures + fixtures: {} - uid: 13051 components: - type: Transform @@ -96297,6 +97664,8 @@ entities: - 30358 - 30359 - 30332 + - type: Fixtures + fixtures: {} - uid: 13483 components: - type: Transform @@ -96311,6 +97680,8 @@ entities: - 17899 - 16671 - 12062 + - type: Fixtures + fixtures: {} - uid: 15810 components: - type: Transform @@ -96321,6 +97692,8 @@ entities: devices: - 876 - 18504 + - type: Fixtures + fixtures: {} - uid: 18231 components: - type: Transform @@ -96331,6 +97704,8 @@ entities: devices: - 18232 - 18233 + - type: Fixtures + fixtures: {} - uid: 18241 components: - type: Transform @@ -96345,6 +97720,8 @@ entities: - 18232 - 18234 - 18235 + - type: Fixtures + fixtures: {} - uid: 18243 components: - type: Transform @@ -96355,6 +97732,8 @@ entities: devices: - 18235 - 18234 + - type: Fixtures + fixtures: {} - uid: 18246 components: - type: Transform @@ -96374,6 +97753,8 @@ entities: - 18250 - 18252 - 18251 + - type: Fixtures + fixtures: {} - uid: 18259 components: - type: Transform @@ -96390,6 +97771,8 @@ entities: - 16536 - 16535 - 16534 + - type: Fixtures + fixtures: {} - uid: 18264 components: - type: Transform @@ -96404,6 +97787,8 @@ entities: - 3343 - 3344 - 3345 + - type: Fixtures + fixtures: {} - uid: 18274 components: - type: Transform @@ -96432,6 +97817,8 @@ entities: - 131 - 130 - 129 + - type: Fixtures + fixtures: {} - uid: 18275 components: - type: Transform @@ -96459,6 +97846,8 @@ entities: - 166 - 167 - 168 + - type: Fixtures + fixtures: {} - uid: 18276 components: - type: Transform @@ -96493,6 +97882,8 @@ entities: - 181 - 180 - 179 + - type: Fixtures + fixtures: {} - uid: 18277 components: - type: Transform @@ -96521,6 +97912,8 @@ entities: - 124 - 125 - 126 + - type: Fixtures + fixtures: {} - uid: 18281 components: - type: Transform @@ -96555,6 +97948,8 @@ entities: - 158 - 157 - 156 + - type: Fixtures + fixtures: {} - uid: 18282 components: - type: Transform @@ -96588,6 +97983,8 @@ entities: - 171 - 170 - 169 + - type: Fixtures + fixtures: {} - uid: 18283 components: - type: Transform @@ -96622,6 +98019,8 @@ entities: - 184 - 183 - 182 + - type: Fixtures + fixtures: {} - uid: 18284 components: - type: Transform @@ -96656,6 +98055,8 @@ entities: - 119 - 118 - 117 + - type: Fixtures + fixtures: {} - uid: 18289 components: - type: Transform @@ -96675,6 +98076,8 @@ entities: - 85 - 86 - 87 + - type: Fixtures + fixtures: {} - uid: 18302 components: - type: Transform @@ -96689,6 +98092,8 @@ entities: - 16499 - 16500 - 16501 + - type: Fixtures + fixtures: {} - uid: 18306 components: - type: Transform @@ -96709,6 +98114,8 @@ entities: - 18322 - 18307 - 18308 + - type: Fixtures + fixtures: {} - uid: 18318 components: - type: Transform @@ -96719,6 +98126,8 @@ entities: devices: - 18327 - 18326 + - type: Fixtures + fixtures: {} - uid: 18319 components: - type: Transform @@ -96734,6 +98143,8 @@ entities: - 18325 - 18309 - 18310 + - type: Fixtures + fixtures: {} - uid: 18331 components: - type: Transform @@ -96758,6 +98169,8 @@ entities: - 75 - 24132 - 17899 + - type: Fixtures + fixtures: {} - uid: 18334 components: - type: Transform @@ -96772,6 +98185,8 @@ entities: - 16516 - 16515 - 16514 + - type: Fixtures + fixtures: {} - uid: 18335 components: - type: Transform @@ -96788,18 +98203,8 @@ entities: - 2177 - 20660 - 23087 - - uid: 18444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - - type: DeviceList - devices: - - 18371 - - 18370 - - 18441 - - 18442 + - type: Fixtures + fixtures: {} - uid: 18454 components: - type: Transform @@ -96813,6 +98218,8 @@ entities: - 16528 - 18369 - 18368 + - type: Fixtures + fixtures: {} - uid: 18464 components: - type: Transform @@ -96827,6 +98234,8 @@ entities: - 18466 - 18467 - 18468 + - type: Fixtures + fixtures: {} - uid: 18470 components: - type: Transform @@ -96843,6 +98252,8 @@ entities: - 18476 - 18468 - 18467 + - type: Fixtures + fixtures: {} - uid: 18477 components: - type: Transform @@ -96853,6 +98264,8 @@ entities: devices: - 18471 - 18472 + - type: Fixtures + fixtures: {} - uid: 18483 components: - type: Transform @@ -96862,6 +98275,8 @@ entities: devices: - 18476 - 18475 + - type: Fixtures + fixtures: {} - uid: 18484 components: - type: Transform @@ -96872,6 +98287,8 @@ entities: devices: - 18473 - 18474 + - type: Fixtures + fixtures: {} - uid: 18498 components: - type: Transform @@ -96890,6 +98307,8 @@ entities: - 16548 - 16549 - 16550 + - type: Fixtures + fixtures: {} - uid: 18500 components: - type: Transform @@ -96909,6 +98328,8 @@ entities: - 16552 - 876 - 18504 + - type: Fixtures + fixtures: {} - uid: 18531 components: - type: Transform @@ -96923,12 +98344,16 @@ entities: - 18493 - 18522 - 18523 + - type: Fixtures + fixtures: {} - uid: 18537 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18538 components: - type: Transform @@ -96942,6 +98367,8 @@ entities: - 18524 - 18527 - 18526 + - type: Fixtures + fixtures: {} - uid: 18542 components: - type: Transform @@ -96953,6 +98380,8 @@ entities: - 18528 - 18526 - 18527 + - type: Fixtures + fixtures: {} - uid: 18551 components: - type: Transform @@ -96967,6 +98396,8 @@ entities: - 18529 - 18547 - 18546 + - type: Fixtures + fixtures: {} - uid: 18552 components: - type: Transform @@ -96981,6 +98412,8 @@ entities: - 18529 - 18547 - 18546 + - type: Fixtures + fixtures: {} - uid: 18565 components: - type: Transform @@ -96994,6 +98427,8 @@ entities: - 18488 - 18489 - 18561 + - type: Fixtures + fixtures: {} - uid: 18566 components: - type: Transform @@ -97008,6 +98443,8 @@ entities: - 18572 - 18568 - 18569 + - type: Fixtures + fixtures: {} - uid: 18575 components: - type: Transform @@ -97021,6 +98458,8 @@ entities: - 18578 - 18568 - 18569 + - type: Fixtures + fixtures: {} - uid: 18583 components: - type: Transform @@ -97036,6 +98475,8 @@ entities: - 12062 - 17902 - 17903 + - type: Fixtures + fixtures: {} - uid: 18586 components: - type: Transform @@ -97046,6 +98487,8 @@ entities: devices: - 17902 - 17903 + - type: Fixtures + fixtures: {} - uid: 18604 components: - type: Transform @@ -97060,6 +98503,8 @@ entities: - 18593 - 18594 - 18608 + - type: Fixtures + fixtures: {} - uid: 18607 components: - type: Transform @@ -97079,6 +98524,8 @@ entities: - 18593 - 18609 - 18608 + - type: Fixtures + fixtures: {} - uid: 18615 components: - type: Transform @@ -97094,6 +98541,8 @@ entities: - 18617 - 18619 - 18618 + - type: Fixtures + fixtures: {} - uid: 18651 components: - type: Transform @@ -97106,6 +98555,8 @@ entities: - 18639 - 18636 - 18635 + - type: Fixtures + fixtures: {} - uid: 18653 components: - type: Transform @@ -97119,6 +98570,8 @@ entities: - 18636 - 18635 - 18634 + - type: Fixtures + fixtures: {} - uid: 18657 components: - type: Transform @@ -97128,6 +98581,8 @@ entities: - type: DeviceList devices: - 18638 + - type: Fixtures + fixtures: {} - uid: 18662 components: - type: Transform @@ -97143,6 +98598,8 @@ entities: - 18248 - 18249 - 18659 + - type: Fixtures + fixtures: {} - uid: 18668 components: - type: Transform @@ -97152,6 +98609,8 @@ entities: - type: DeviceList devices: - 18659 + - type: Fixtures + fixtures: {} - uid: 18679 components: - type: Transform @@ -97161,6 +98620,8 @@ entities: - type: DeviceList devices: - 18660 + - type: Fixtures + fixtures: {} - uid: 18684 components: - type: Transform @@ -97170,6 +98631,8 @@ entities: - type: DeviceList devices: - 18661 + - type: Fixtures + fixtures: {} - uid: 18685 components: - type: Transform @@ -97181,6 +98644,8 @@ entities: - 2200 - 18595 - 18594 + - type: Fixtures + fixtures: {} - uid: 18688 components: - type: Transform @@ -97190,12 +98655,16 @@ entities: - type: DeviceList devices: - 18597 + - type: Fixtures + fixtures: {} - uid: 18689 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18699 components: - type: Transform @@ -97205,6 +98674,8 @@ entities: - type: DeviceList devices: - 18698 + - type: Fixtures + fixtures: {} - uid: 20687 components: - type: Transform @@ -97216,6 +98687,8 @@ entities: - 18523 - 18522 - 18524 + - type: Fixtures + fixtures: {} - uid: 21211 components: - type: Transform @@ -97225,6 +98698,8 @@ entities: - type: DeviceList devices: - 21390 + - type: Fixtures + fixtures: {} - uid: 21367 components: - type: Transform @@ -97236,6 +98711,8 @@ entities: - 25356 - 25354 - 25353 + - type: Fixtures + fixtures: {} - uid: 21372 components: - type: Transform @@ -97247,6 +98724,8 @@ entities: - 25356 - 25354 - 25353 + - type: Fixtures + fixtures: {} - uid: 21412 components: - type: Transform @@ -97256,6 +98735,8 @@ entities: - type: DeviceList devices: - 22384 + - type: Fixtures + fixtures: {} - uid: 21417 components: - type: Transform @@ -97265,6 +98746,8 @@ entities: - type: DeviceList devices: - 25359 + - type: Fixtures + fixtures: {} - uid: 21418 components: - type: Transform @@ -97274,6 +98757,8 @@ entities: - type: DeviceList devices: - 25359 + - type: Fixtures + fixtures: {} - uid: 21419 components: - type: Transform @@ -97283,6 +98768,8 @@ entities: - type: DeviceList devices: - 21413 + - type: Fixtures + fixtures: {} - uid: 21420 components: - type: Transform @@ -97291,6 +98778,8 @@ entities: - type: DeviceList devices: - 21413 + - type: Fixtures + fixtures: {} - uid: 21452 components: - type: Transform @@ -97302,6 +98791,8 @@ entities: - 25357 - 25358 - 25352 + - type: Fixtures + fixtures: {} - uid: 21454 components: - type: Transform @@ -97312,6 +98803,8 @@ entities: - 25357 - 25358 - 25352 + - type: Fixtures + fixtures: {} - uid: 21460 components: - type: Transform @@ -97320,6 +98813,8 @@ entities: - type: DeviceList devices: - 21457 + - type: Fixtures + fixtures: {} - uid: 21463 components: - type: Transform @@ -97328,6 +98823,8 @@ entities: - type: DeviceList devices: - 21457 + - type: Fixtures + fixtures: {} - uid: 21570 components: - type: Transform @@ -97339,6 +98836,8 @@ entities: - 26798 - 26787 - 26792 + - type: Fixtures + fixtures: {} - uid: 21697 components: - type: Transform @@ -97348,6 +98847,8 @@ entities: - type: DeviceList devices: - 21709 + - type: Fixtures + fixtures: {} - uid: 21712 components: - type: Transform @@ -97357,6 +98858,8 @@ entities: - type: DeviceList devices: - 28045 + - type: Fixtures + fixtures: {} - uid: 22141 components: - type: Transform @@ -97366,6 +98869,8 @@ entities: - type: DeviceList devices: - 21709 + - type: Fixtures + fixtures: {} - uid: 22952 components: - type: Transform @@ -97375,6 +98880,8 @@ entities: - type: DeviceList devices: - 30331 + - type: Fixtures + fixtures: {} - uid: 23057 components: - type: Transform @@ -97387,6 +98894,8 @@ entities: - 23053 - 23054 - 23055 + - type: Fixtures + fixtures: {} - uid: 23088 components: - type: Transform @@ -97399,6 +98908,8 @@ entities: - 23087 - 18621 - 18620 + - type: Fixtures + fixtures: {} - uid: 23680 components: - type: Transform @@ -97409,6 +98920,8 @@ entities: devices: - 16775 - 23678 + - type: Fixtures + fixtures: {} - uid: 23681 components: - type: Transform @@ -97423,6 +98936,8 @@ entities: - 16775 - 16551 - 16552 + - type: Fixtures + fixtures: {} - uid: 23726 components: - type: Transform @@ -97436,6 +98951,8 @@ entities: - 23687 - 23685 - 23686 + - type: Fixtures + fixtures: {} - uid: 24092 components: - type: Transform @@ -97447,6 +98964,8 @@ entities: - 24090 - 24089 - 24087 + - type: Fixtures + fixtures: {} - uid: 24225 components: - type: Transform @@ -97456,6 +98975,8 @@ entities: - type: DeviceList devices: - 24155 + - type: Fixtures + fixtures: {} - uid: 24298 components: - type: Transform @@ -97465,6 +98986,8 @@ entities: - type: DeviceList devices: - 26587 + - type: Fixtures + fixtures: {} - uid: 24299 components: - type: Transform @@ -97474,6 +98997,8 @@ entities: - type: DeviceList devices: - 26587 + - type: Fixtures + fixtures: {} - uid: 24301 components: - type: Transform @@ -97482,6 +99007,8 @@ entities: - type: DeviceList devices: - 21390 + - type: Fixtures + fixtures: {} - uid: 24302 components: - type: Transform @@ -97491,6 +99018,8 @@ entities: - type: DeviceList devices: - 21397 + - type: Fixtures + fixtures: {} - uid: 24303 components: - type: Transform @@ -97499,6 +99028,8 @@ entities: - type: DeviceList devices: - 21397 + - type: Fixtures + fixtures: {} - uid: 24304 components: - type: Transform @@ -97507,6 +99038,8 @@ entities: - type: DeviceList devices: - 21389 + - type: Fixtures + fixtures: {} - uid: 24305 components: - type: Transform @@ -97516,6 +99049,8 @@ entities: - type: DeviceList devices: - 21389 + - type: Fixtures + fixtures: {} - uid: 26222 components: - type: Transform @@ -97524,6 +99059,8 @@ entities: - type: DeviceList devices: - 22384 + - type: Fixtures + fixtures: {} - uid: 26679 components: - type: Transform @@ -97533,6 +99070,8 @@ entities: - type: DeviceList devices: - 28045 + - type: Fixtures + fixtures: {} - uid: 28066 components: - type: Transform @@ -97544,6 +99083,8 @@ entities: - 26798 - 26787 - 26792 + - type: Fixtures + fixtures: {} - uid: 28901 components: - type: Transform @@ -97553,6 +99094,8 @@ entities: - type: DeviceList devices: - 18546 + - type: Fixtures + fixtures: {} - uid: 29463 components: - type: Transform @@ -97562,6 +99105,8 @@ entities: - type: DeviceList devices: - 29461 + - type: Fixtures + fixtures: {} - uid: 29464 components: - type: Transform @@ -97573,6 +99118,8 @@ entities: - 18601 - 18620 - 18621 + - type: Fixtures + fixtures: {} - uid: 30080 components: - type: Transform @@ -97582,6 +99129,8 @@ entities: devices: - 30338 - 30028 + - type: Fixtures + fixtures: {} - uid: 30348 components: - type: Transform @@ -97595,6 +99144,8 @@ entities: - 30344 - 30345 - 30341 + - type: Fixtures + fixtures: {} - uid: 30349 components: - type: Transform @@ -97606,6 +99157,8 @@ entities: - 30346 - 30347 - 30341 + - type: Fixtures + fixtures: {} - uid: 30350 components: - type: Transform @@ -97619,6 +99172,8 @@ entities: - 30335 - 30354 - 30355 + - type: Fixtures + fixtures: {} - uid: 30351 components: - type: Transform @@ -97629,6 +99184,8 @@ entities: - 30333 - 30334 - 30330 + - type: Fixtures + fixtures: {} - uid: 30352 components: - type: Transform @@ -97645,6 +99202,8 @@ entities: - 30340 - 30337 - 30336 + - type: Fixtures + fixtures: {} - uid: 30353 components: - type: Transform @@ -97658,6 +99217,8 @@ entities: - 30333 - 30354 - 30355 + - type: Fixtures + fixtures: {} - uid: 30356 components: - type: Transform @@ -97671,19 +99232,8 @@ entities: - 30333 - 30354 - 30355 - - uid: 30361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-18.5 - parent: 2 - - type: DeviceList - devices: - - 30327 - - 30331 - - 30332 - - 30359 - - 30358 + - type: Fixtures + fixtures: {} - uid: 30827 components: - type: Transform @@ -97696,6 +99246,8 @@ entities: - 30821 - 30819 - 12226 + - type: Fixtures + fixtures: {} - uid: 30828 components: - type: Transform @@ -97708,6 +99260,37 @@ entities: - 30821 - 30819 - 12226 + - type: Fixtures + fixtures: {} + - uid: 30836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 30327 + - 30331 + - 30332 + - 30359 + - 30358 + - type: Fixtures + fixtures: {} + - uid: 31037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 2381 + - 2380 + - 30992 + - 30993 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 2471 @@ -97716,12 +99299,16 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28373 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 6252 @@ -98684,7 +100271,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -278084.75 + secondsUntilStateChange: -303342.88 - type: DeviceNetwork deviceLists: - 18275 @@ -99226,6 +100813,24 @@ entities: - 18687 - 18607 - 18606 + - uid: 2380 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31037 + - 31038 + - uid: 2381 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31037 + - 31038 - uid: 3343 components: - type: Transform @@ -100137,48 +101742,6 @@ entities: - 15512 - 18440 - 18454 - - uid: 18370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18440 - - 18444 - - 18443 - - uid: 18371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18440 - - 18444 - - 18443 - - uid: 18441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18444 - - 18443 - - uid: 18442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18444 - - 18443 - uid: 18465 components: - type: Transform @@ -101201,8 +102764,8 @@ entities: deviceLists: - 4037 - 30357 - - 30361 - 30363 + - 30836 - uid: 30328 components: - type: Transform @@ -101247,10 +102810,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 30361 - 30363 - 30364 - 22952 + - 30836 - uid: 30332 components: - type: Transform @@ -101261,8 +102824,8 @@ entities: deviceLists: - 30360 - 13051 - - 30361 - 30363 + - 30836 - uid: 30333 components: - type: Transform @@ -101488,8 +103051,8 @@ entities: deviceLists: - 30360 - 13051 - - 30361 - 30363 + - 30836 - uid: 30359 components: - type: Transform @@ -101500,8 +103063,46 @@ entities: deviceLists: - 30360 - 13051 - - 30361 - 30363 + - 30836 + - uid: 30992 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31037 + - 31038 + - 31039 + - uid: 30993 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31037 + - 31038 + - 31039 + - uid: 30994 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 + - 31040 + - uid: 30995 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 + - 31040 - proto: Fireplace entities: - uid: 1588 @@ -101900,16 +103501,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5742838,-52.5 parent: 2 - - uid: 13063 - components: - - type: Transform - pos: 58.45381,19.547539 - parent: 2 - - uid: 13064 - components: - - type: Transform - pos: 58.594437,19.375664 - parent: 2 - uid: 19044 components: - type: Transform @@ -101939,6 +103530,16 @@ entities: rot: -1.5707963267948966 rad pos: 40.50512,-2.6322846 parent: 2 + - uid: 31069 + components: + - type: Transform + pos: 60.204136,16.662529 + parent: 2 + - uid: 31070 + components: + - type: Transform + pos: 60.422886,16.485447 + parent: 2 - proto: FoodBakedCookieOatmeal entities: - uid: 23380 @@ -102007,10 +103608,10 @@ entities: parent: 2 - proto: FoodBurgerRobot entities: - - uid: 13066 + - uid: 31057 components: - type: Transform - pos: 51.50141,22.597155 + pos: 50.48245,13.668946 parent: 2 - proto: FoodCartCold entities: @@ -102072,6 +103673,30 @@ entities: - type: Transform pos: 13.403409,29.562233 parent: 2 + - uid: 30886 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30887 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30888 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30889 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodFrozenPopsicleJumbo entities: - uid: 1579 @@ -102118,6 +103743,96 @@ entities: rot: -1.5707963267948966 rad pos: -24.074755,-39.23473 parent: 2 + - uid: 30854 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30855 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30862 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30863 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30864 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30869 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30870 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30871 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30872 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30873 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30874 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30906 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30907 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30908 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30910 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodFrozenSandwichStrawberry entities: - uid: 1595 @@ -102127,6 +103842,50 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodFrozenSnowconeTrash + entities: + - uid: 30875 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30876 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30877 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30878 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30880 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30884 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30885 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodFrozenSundae entities: - uid: 1580 @@ -102204,6 +103963,16 @@ entities: - type: Transform pos: -25.542435,-40.44679 parent: 2 + - uid: 30846 + components: + - type: Transform + pos: -25.429605,-40.442677 + parent: 2 + - uid: 30847 + components: + - type: Transform + pos: -25.690022,-40.43226 + parent: 2 - proto: FoodOrange entities: - uid: 16226 @@ -102252,6 +104021,20 @@ entities: - type: Transform pos: -37.508495,-43.551857 parent: 2 +- proto: FoodPlateTrash + entities: + - uid: 30912 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30913 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodPoppy entities: - uid: 2295 @@ -102292,14 +104075,14 @@ entities: - uid: 3595 components: - type: Transform - pos: 23.980179,16.619486 + pos: 24.004051,16.731583 parent: 2 - proto: FoodSnackPistachios entities: - uid: 3596 components: - type: Transform - pos: 23.433304,16.119486 + pos: 23.410301,15.981584 parent: 2 - proto: FoodSnackRaisins entities: @@ -102332,6 +104115,80 @@ entities: - type: Transform pos: -34.484306,-51.296925 parent: 2 +- proto: FoodTinBeansTrash + entities: + - uid: 30849 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30857 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30860 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30865 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30866 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30867 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30868 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30890 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30891 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30892 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30893 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30894 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodTinMRETrash entities: - uid: 30139 @@ -102339,6 +104196,142 @@ entities: - type: Transform pos: -26.621073,-39.243793 parent: 2 + - uid: 30851 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30858 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30896 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30897 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30898 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30899 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30904 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 30879 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False +- proto: FoodTinPeachesTrash + entities: + - uid: 30850 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30852 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30853 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30856 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30859 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30861 + components: + - type: Transform + parent: 30848 + - type: Physics + canCollide: False + - uid: 30895 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30905 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30909 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30911 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30914 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30915 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30916 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False + - uid: 30918 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: FoodWatermelon entities: - uid: 19149 @@ -102376,6 +104369,8 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FundingAllocationComputerCircuitboard entities: - uid: 1404 @@ -102385,12 +104380,19 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FungalSoil + entities: + - uid: 30835 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 2 - proto: GameMasterCircuitBoard entities: - uid: 29445 components: - type: Transform - pos: 61.47509,21.65281 + pos: 50.2482,21.60414 parent: 2 - proto: GasAnalyzer entities: @@ -102676,6 +104678,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 30943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasPassiveVent entities: - uid: 5579 @@ -102881,6 +104899,54 @@ entities: - type: Transform pos: 52.5,16.5 parent: 21002 + - uid: 30955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 31011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasPipeBend entities: - uid: 51 @@ -104903,36 +106969,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18433 - components: - - type: Transform - pos: 60.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18434 - components: - - type: Transform - pos: 61.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18461 components: - type: Transform @@ -105402,6 +107438,51 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 30949 + components: + - type: Transform + pos: 58.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 31000 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31002 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 666 @@ -124758,38 +126839,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18397 components: - type: Transform @@ -124854,140 +126903,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18428 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18429 - components: - - type: Transform - pos: 60.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 19075 components: - type: Transform @@ -127635,6 +129550,378 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 30947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30952 + components: + - type: Transform + pos: 58.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30953 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30954 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30986 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 30987 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 30988 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 30989 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 30990 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 30991 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31001 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31008 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31009 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31012 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31013 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31014 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31015 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31016 + components: + - type: Transform + pos: 51.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31017 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31018 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31020 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasPipeTJunction entities: - uid: 17 @@ -130520,21 +132807,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 18431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18432 - components: - - type: Transform - pos: 60.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 19545 components: - type: Transform @@ -130879,6 +133151,96 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 30945 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30946 + components: + - type: Transform + pos: 56.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30948 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30951 + components: + - type: Transform + pos: 53.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30968 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30969 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 31003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPort entities: - uid: 1675 @@ -131125,6 +133487,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 30939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: GasPressurePump entities: - uid: 43 @@ -133478,27 +135856,6 @@ entities: - 30366 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18443 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18411 - components: - - type: Transform - pos: 53.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29864 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 18654 components: - type: Transform @@ -133815,6 +136172,38 @@ entities: - 21504 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 31007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31038 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 31036 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31040 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasVentScrubber entities: - uid: 53 @@ -135671,27 +138060,6 @@ entities: - 18440 - type: AtmosPipeColor color: '#990000FF' - - uid: 18409 - components: - - type: Transform - pos: 59.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18443 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 18412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 29864 - - type: AtmosPipeColor - color: '#990000FF' - uid: 18655 components: - type: Transform @@ -136055,6 +138423,38 @@ entities: - 30403 - type: AtmosPipeColor color: '#990000FF' + - uid: 30964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31039 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31038 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 31035 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31040 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePump entities: - uid: 8939 @@ -136124,6 +138524,14 @@ entities: - ActivatableUI - UserInterface - Gateway +- proto: GeigerCounter + entities: + - uid: 31114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.485546,18.73488 + parent: 2 - proto: GlassBoxLaserFilled entities: - uid: 30286 @@ -136144,7 +138552,7 @@ entities: - uid: 9690 components: - type: Transform - pos: 24.054735,15.237508 + pos: 23.941551,15.148251 parent: 2 - proto: GravityGenerator entities: @@ -136162,6 +138570,12 @@ entities: parent: 21002 - proto: Grille entities: + - uid: 18 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,24.5 + parent: 2 - uid: 25 components: - type: Transform @@ -136718,30 +139132,6 @@ entities: - type: Transform pos: 21.5,3.5 parent: 2 - - uid: 2371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,24.5 - parent: 2 - - uid: 2372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,24.5 - parent: 2 - - uid: 2373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,23.5 - parent: 2 - - uid: 2380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,22.5 - parent: 2 - uid: 2422 components: - type: Transform @@ -136788,6 +139178,27 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,12.5 parent: 2 + - uid: 2673 + components: + - type: Transform + pos: 63.5,22.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,26.5 + parent: 2 - uid: 3162 components: - type: Transform @@ -136800,6 +139211,18 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-79.5 parent: 2 + - uid: 3194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,23.5 + parent: 2 - uid: 3225 components: - type: Transform @@ -136905,6 +139328,12 @@ entities: - type: Transform pos: 45.5,-22.5 parent: 2 + - uid: 3593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,17.5 + parent: 2 - uid: 3679 components: - type: Transform @@ -137220,6 +139649,12 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-26.5 parent: 2 + - uid: 4823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,21.5 + parent: 2 - uid: 5249 components: - type: Transform @@ -137626,12 +140061,6 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,51.5 parent: 2 - - uid: 7016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,51.5 - parent: 2 - uid: 7017 components: - type: Transform @@ -138660,24 +141089,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 - - uid: 8955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,24.5 - parent: 2 - - uid: 8956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,23.5 - parent: 2 - - uid: 8957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,22.5 - parent: 2 - uid: 9257 components: - type: Transform @@ -139181,6 +141592,16 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-55.5 parent: 2 + - uid: 10959 + components: + - type: Transform + pos: 63.5,25.5 + parent: 2 + - uid: 10960 + components: + - type: Transform + pos: 63.5,24.5 + parent: 2 - uid: 11186 components: - type: Transform @@ -139436,244 +141857,195 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-55.5 parent: 2 + - uid: 12567 + components: + - type: Transform + pos: 63.5,21.5 + parent: 2 - uid: 12691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,11.5 + pos: 63.5,18.5 parent: 2 - uid: 12692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,13.5 - parent: 2 - - uid: 12693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,12.5 + pos: 55.5,11.5 parent: 2 - uid: 12694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,15.5 + pos: 57.5,11.5 parent: 2 - uid: 12695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,14.5 + pos: 50.5,11.5 parent: 2 - uid: 12696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,16.5 + pos: 48.5,11.5 parent: 2 - uid: 12697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,17.5 + pos: 47.5,11.5 parent: 2 - uid: 12698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,18.5 - parent: 2 - - uid: 12699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,19.5 - parent: 2 - - uid: 12700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,20.5 - parent: 2 - - uid: 12701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,21.5 - parent: 2 - - uid: 12702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,24.5 + pos: 46.5,12.5 parent: 2 - uid: 12705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 + rot: 1.5707963267948966 rad + pos: 47.5,22.5 parent: 2 - - uid: 12707 + - uid: 12706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 + rot: 1.5707963267948966 rad + pos: 47.5,20.5 parent: 2 - uid: 12708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,24.5 - parent: 2 - - uid: 12710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,24.5 - parent: 2 - - uid: 12711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,21.5 - parent: 2 - - uid: 12712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,20.5 - parent: 2 - - uid: 12713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,19.5 - parent: 2 - - uid: 12719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,13.5 - parent: 2 - - uid: 12720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,12.5 - parent: 2 - - uid: 12721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,11.5 - parent: 2 - - uid: 12722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,11.5 - parent: 2 - - uid: 12723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,11.5 - parent: 2 - - uid: 12724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,11.5 - parent: 2 - - uid: 12725 - components: - - type: Transform - rot: -1.5707963267948966 rad pos: 52.5,11.5 parent: 2 - - uid: 12726 + - uid: 12734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,11.5 - parent: 2 - - uid: 12727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,11.5 - parent: 2 - - uid: 12728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,11.5 - parent: 2 - - uid: 12729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,11.5 - parent: 2 - - uid: 12730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,11.5 - parent: 2 - - uid: 12745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,24.5 + pos: 63.5,26.5 parent: 2 - uid: 12746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,24.5 - parent: 2 - - uid: 12747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,24.5 + rot: 1.5707963267948966 rad + pos: 48.5,31.5 parent: 2 - uid: 12748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,24.5 + rot: 1.5707963267948966 rad + pos: 49.5,31.5 parent: 2 - - uid: 12785 + - uid: 12749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,24.5 + rot: 1.5707963267948966 rad + pos: 51.5,31.5 parent: 2 - - uid: 12816 + - uid: 12750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,22.5 + rot: 1.5707963267948966 rad + pos: 50.5,31.5 parent: 2 - - uid: 12817 + - uid: 12751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,23.5 + rot: 1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 + - uid: 12756 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + pos: 63.5,17.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: 63.5,23.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + pos: 63.5,20.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 12855 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + pos: 63.5,13.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,17.5 parent: 2 - uid: 12887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,16.5 + pos: 63.5,15.5 parent: 2 - - uid: 12936 + - uid: 12901 components: - type: Transform - pos: 57.5,16.5 + rot: 3.141592653589793 rad + pos: 59.5,17.5 parent: 2 - uid: 12989 components: @@ -139686,6 +142058,18 @@ entities: - type: Transform pos: 65.5,22.5 parent: 2 + - uid: 13062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,19.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,22.5 + parent: 2 - uid: 13080 components: - type: Transform @@ -139840,6 +142224,11 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-17.5 parent: 2 + - uid: 14688 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 - uid: 15252 components: - type: Transform @@ -140373,6 +142762,17 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-1.5 parent: 2 + - uid: 18412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,17.5 + parent: 2 + - uid: 18418 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 - uid: 18558 components: - type: Transform @@ -140862,6 +143262,11 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,-18.5 parent: 2 + - uid: 20237 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 - uid: 20238 components: - type: Transform @@ -140898,12 +143303,6 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,19.5 parent: 2 - - uid: 20247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,28.5 - parent: 2 - uid: 20248 components: - type: Transform @@ -140916,34 +143315,28 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,24.5 parent: 2 - - uid: 20250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,28.5 - parent: 2 - - uid: 20251 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,27.5 - parent: 2 - uid: 20252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,28.5 + rot: 3.141592653589793 rad + pos: 49.5,17.5 parent: 2 - - uid: 20259 + - uid: 20256 components: - type: Transform - pos: 65.5,12.5 + pos: 54.5,11.5 parent: 2 - uid: 20260 components: - type: Transform pos: 66.5,16.5 parent: 2 + - uid: 20265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,34.5 + parent: 2 - uid: 20266 components: - type: Transform @@ -140954,6 +143347,12 @@ entities: - type: Transform pos: 66.5,15.5 parent: 2 + - uid: 20275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,30.5 + parent: 2 - uid: 20347 components: - type: Transform @@ -141194,23 +143593,20 @@ entities: rot: 3.141592653589793 rad pos: 52.5,39.5 parent: 2 - - uid: 20387 + - uid: 20493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,33.5 + pos: 37.5,51.5 parent: 2 - - uid: 20485 + - uid: 20494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,28.5 + pos: 47.5,27.5 parent: 2 - - uid: 20561 + - uid: 20496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,28.5 + pos: 49.5,27.5 parent: 2 - uid: 20562 components: @@ -141510,6 +143906,22 @@ entities: rot: -1.5707963267948966 rad pos: 51.5,-10.5 parent: 2 + - uid: 20910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,19.5 + parent: 2 + - uid: 20912 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 20913 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 - uid: 21071 components: - type: Transform @@ -141540,18 +143952,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 21002 - - uid: 21076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 21002 - - uid: 21077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 21002 - uid: 21080 components: - type: Transform @@ -142994,6 +145394,18 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-8.5 parent: 2 + - uid: 29135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,22.5 + parent: 2 + - uid: 29136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,22.5 + parent: 2 - uid: 29143 components: - type: Transform @@ -143018,66 +145430,59 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,-21.5 parent: 2 + - uid: 29159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,17.5 + parent: 2 + - uid: 29160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,18.5 + parent: 2 - uid: 29193 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-21.5 parent: 2 - - uid: 29337 + - uid: 29303 components: - type: Transform - pos: 63.5,21.5 + pos: 58.5,27.5 + parent: 2 + - uid: 29304 + components: + - type: Transform + pos: 55.5,27.5 + parent: 2 + - uid: 29305 + components: + - type: Transform + pos: 60.5,27.5 + parent: 2 + - uid: 29331 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - uid: 29332 + components: + - type: Transform + pos: 59.5,27.5 + parent: 2 + - uid: 29333 + components: + - type: Transform + pos: 62.5,27.5 parent: 2 - uid: 29338 components: - type: Transform - pos: 63.5,20.5 - parent: 2 - - uid: 29339 - components: - - type: Transform - pos: 63.5,18.5 - parent: 2 - - uid: 29340 - components: - - type: Transform - pos: 63.5,17.5 - parent: 2 - - uid: 29341 - components: - - type: Transform - pos: 63.5,16.5 - parent: 2 - - uid: 29342 - components: - - type: Transform - pos: 63.5,15.5 - parent: 2 - - uid: 29343 - components: - - type: Transform - pos: 63.5,14.5 - parent: 2 - - uid: 29344 - components: - - type: Transform - pos: 63.5,13.5 - parent: 2 - - uid: 29345 - components: - - type: Transform - pos: 63.5,19.5 - parent: 2 - - uid: 29346 - components: - - type: Transform - pos: 63.5,12.5 - parent: 2 - - uid: 29347 - components: - - type: Transform - pos: 63.5,11.5 + rot: 3.141592653589793 rad + pos: 52.5,18.5 parent: 2 - uid: 29355 components: @@ -143094,41 +145499,76 @@ entities: - type: Transform pos: 69.5,23.5 parent: 2 + - uid: 29364 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 29366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,22.5 + parent: 2 + - uid: 29367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,22.5 + parent: 2 + - uid: 29368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,22.5 + parent: 2 + - uid: 29370 + components: + - type: Transform + pos: 63.5,27.5 + parent: 2 + - uid: 29371 + components: + - type: Transform + pos: 61.5,27.5 + parent: 2 - uid: 29372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,28.5 + pos: 53.5,27.5 parent: 2 - - uid: 29426 + - uid: 29373 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 29374 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 29431 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,24.5 + pos: 52.5,19.5 parent: 2 - - uid: 29427 + - uid: 29435 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,24.5 + pos: 51.5,17.5 parent: 2 - - uid: 29428 + - uid: 29436 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,24.5 + pos: 50.5,17.5 parent: 2 - - uid: 29429 + - uid: 29441 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,24.5 - parent: 2 - - uid: 29430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,24.5 + pos: 46.5,16.5 parent: 2 - uid: 29448 components: @@ -143160,6 +145600,12 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-11.5 parent: 2 + - uid: 29576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,18.5 + parent: 2 - uid: 29580 components: - type: Transform @@ -143183,6 +145629,11 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-19.5 parent: 2 + - uid: 29864 + components: + - type: Transform + pos: 56.5,27.5 + parent: 2 - uid: 30023 components: - type: Transform @@ -143201,6 +145652,11 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,-1.5 parent: 2 + - uid: 30936 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 - proto: GrilleBroken entities: - uid: 22881 @@ -143443,6 +145899,16 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-7.5 parent: 2 + - uid: 12824 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 - uid: 19885 components: - type: Transform @@ -144264,11 +146730,6 @@ entities: - type: Transform pos: 65.5,14.5 parent: 2 - - uid: 29308 - components: - - type: Transform - pos: 65.5,11.5 - parent: 2 - proto: GunSafeDisabler entities: - uid: 4271 @@ -144449,11 +146910,6 @@ entities: - type: Transform pos: 32.5,34.5 parent: 2 - - uid: 3047 - components: - - type: Transform - pos: 60.5,20.5 - parent: 2 - uid: 11477 components: - type: Transform @@ -144464,16 +146920,6 @@ entities: - type: Transform pos: -43.5,-21.5 parent: 2 - - uid: 12931 - components: - - type: Transform - pos: 57.5,17.5 - parent: 2 - - uid: 12932 - components: - - type: Transform - pos: 57.5,15.5 - parent: 2 - uid: 23600 components: - type: Transform @@ -144641,10 +147087,10 @@ entities: baseName: holopad - proto: HolopadAiBackupPower entities: - - uid: 12567 + - uid: 31081 components: - type: Transform - pos: 51.5,20.5 + pos: 49.5,16.5 parent: 2 - proto: HolopadAiChute entities: @@ -144653,36 +147099,33 @@ entities: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 29002 - components: - - type: Transform - pos: 61.5,8.5 - parent: 2 - proto: HolopadAiCore entities: - - uid: 12886 + - uid: 30937 components: - type: Transform - pos: 49.5,16.5 - parent: 2 - - uid: 23528 - components: - - type: Transform - pos: 49.5,16.5 + pos: 55.5,24.5 parent: 2 - proto: HolopadAiEntrance entities: - - uid: 10840 + - uid: 13130 components: - type: Transform - pos: 54.5,16.5 + pos: 59.5,5.5 + parent: 2 +- proto: HolopadAiMain + entities: + - uid: 18414 + components: + - type: Transform + pos: 55.5,20.5 parent: 2 - proto: HolopadAiUpload entities: - - uid: 28975 + - uid: 30361 components: - type: Transform - pos: 60.5,18.5 + pos: 55.5,17.5 parent: 2 - proto: HolopadCargoBay entities: @@ -145104,10 +147547,10 @@ entities: parent: 2 - proto: HolopadSecurityFront entities: - - uid: 29889 + - uid: 15485 components: - type: Transform - pos: 32.5,-3.5 + pos: 32.5,-4.5 parent: 2 - proto: HolopadSecurityLawyer entities: @@ -145214,6 +147657,13 @@ entities: - type: Transform pos: -21.5,-3.5 parent: 2 +- proto: HoloprojectorClownBorg + entities: + - uid: 31128 + components: + - type: Transform + pos: 49.639477,25.406134 + parent: 2 - proto: HoloprojectorSecurity entities: - uid: 23392 @@ -145254,7 +147704,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -314916.53 + secondsUntilStateChange: -340174.66 state: Opening - uid: 5211 components: @@ -145719,23 +148169,30 @@ entities: parent: 2 - proto: IntercomAll entities: - - uid: 12798 - components: - - type: Transform - pos: 51.5,17.5 - parent: 2 - - uid: 12799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,16.5 - parent: 2 - - uid: 12800 + - uid: 12879 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,15.5 + pos: 56.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 24009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommand entities: - uid: 359 @@ -145744,28 +148201,38 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9681 components: - type: Transform pos: 45.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13065 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23809 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29290 components: - type: Transform pos: 25.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 5806 @@ -145774,11 +148241,15 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23523 components: - type: Transform pos: 19.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 6192 @@ -145787,11 +148258,15 @@ entities: rot: 3.141592653589793 rad pos: 2.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8948 components: - type: Transform pos: -34.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 23520 @@ -145800,12 +148275,16 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23626 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 23519 @@ -145813,6 +148292,16 @@ entities: - type: Transform pos: 3.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 31125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,12.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 17321 @@ -145821,6 +148310,8 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 23522 @@ -145829,6 +148320,8 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 23808 @@ -145837,12 +148330,23 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24129 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} +- proto: InterdyneFlippo + entities: + - uid: 31117 + components: + - type: Transform + pos: 57.22787,23.416605 + parent: 2 - proto: JanitorialTrolley entities: - uid: 11979 @@ -146118,8 +148622,24 @@ entities: - uid: 2671 components: - type: Transform - pos: 29.74325,21 + pos: 29.392466,20.981281 parent: 2 + - type: HandheldLight + toggleActionEntity: 18422 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 18422 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 5854 components: - type: Transform @@ -146291,7 +148811,7 @@ entities: - uid: 29444 components: - type: Transform - pos: 61.450054,22.656609 + pos: 61.47715,20.547256 parent: 2 - proto: LockableButtonAtmospherics entities: @@ -146314,6 +148834,8 @@ entities: 8460: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonBrig entities: - uid: 4683 @@ -146329,6 +148851,8 @@ entities: 4811: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 28257 components: - type: MetaData @@ -146341,6 +148865,8 @@ entities: 4811: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonSecurity entities: - uid: 22953 @@ -146351,6 +148877,8 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: LockableButtonService entities: - uid: 4166 @@ -146366,6 +148894,8 @@ entities: 683: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23551 components: - type: MetaData @@ -146379,6 +148909,8 @@ entities: 570: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23556 components: - type: MetaData @@ -146392,6 +148924,8 @@ entities: 684: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23557 components: - type: MetaData @@ -146404,6 +148938,8 @@ entities: 682: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23558 components: - type: MetaData @@ -146416,6 +148952,8 @@ entities: 681: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 23559 components: - type: MetaData @@ -146428,6 +148966,8 @@ entities: 680: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilled entities: - uid: 8897 @@ -146586,10 +149126,10 @@ entities: - type: Transform pos: 34.5,35.5 parent: 2 - - uid: 9474 + - uid: 18429 components: - type: Transform - pos: 36.5,48.5 + pos: 37.5,48.5 parent: 2 - uid: 23691 components: @@ -148212,16 +150752,16 @@ entities: - type: Transform pos: -38.5,-51.5 parent: 2 - - uid: 5749 - components: - - type: Transform - pos: 44.5,25.5 - parent: 2 - uid: 9310 components: - type: Transform pos: 58.5,7.5 parent: 2 + - uid: 20914 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 - uid: 21027 components: - type: Transform @@ -148264,6 +150804,11 @@ entities: parent: 2 - proto: MaintenanceToolSpawner entities: + - uid: 12876 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 - uid: 23172 components: - type: Transform @@ -148709,52 +151254,70 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2657 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4061 components: - type: Transform pos: 48.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11400 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11401 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11402 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11403 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14231 components: - type: Transform pos: 54.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29888 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MonkeyCubeWrapped entities: - uid: 3150 @@ -148969,6 +151532,11 @@ entities: parent: 8002 - type: Physics canCollide: False + - uid: 31116 + components: + - type: Transform + pos: 61.546024,19.876612 + parent: 2 - proto: MysteryFigureBoxTrash entities: - uid: 30140 @@ -149006,6 +151574,12 @@ entities: - type: Transform pos: 11.55334,-34.190166 parent: 2 + - uid: 31127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.545727,20.994167 + parent: 2 - proto: NewsReaderCartridge entities: - uid: 19529 @@ -149064,11 +151638,6 @@ entities: - type: Transform pos: -45.5,-53.5 parent: 2 - - uid: 18929 - components: - - type: Transform - pos: 44.5,17.5 - parent: 2 - uid: 18932 components: - type: Transform @@ -149109,6 +151678,11 @@ entities: - type: Transform pos: 7.5,-6.5 parent: 21002 + - uid: 29163 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 - uid: 29490 components: - type: Transform @@ -149126,6 +151700,22 @@ entities: - type: Transform pos: -42.5,23.5 parent: 2 + - uid: 30941 + components: + - type: Transform + anchored: True + pos: 56.5,22.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 30942 + components: + - type: Transform + anchored: True + pos: 54.5,22.5 + parent: 2 + - type: Physics + bodyType: Static - proto: NitrousOxideTankFilled entities: - uid: 2056 @@ -149161,6 +151751,8 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23853 components: - type: Transform @@ -149186,18 +151778,22 @@ entities: - 23854 - 23855 - 23856 + - type: Fixtures + fixtures: {} - uid: 29984 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 29358 components: - type: Transform - pos: 58.444633,13.5958 + pos: 58.391357,13.564787 parent: 2 - proto: NuclearBomb entities: @@ -149219,7 +151815,7 @@ entities: - uid: 29443 components: - type: Transform - pos: 58.485508,21.59031 + pos: 20.46843,-35.541214 parent: 2 - proto: OperatingTable entities: @@ -149266,6 +151862,11 @@ entities: - type: Transform pos: -23.5,-14.5 parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 39.5,50.5 + parent: 2 - uid: 4221 components: - type: Transform @@ -149296,21 +151897,11 @@ entities: - type: Transform pos: -57.5,-21.5 parent: 2 - - uid: 9468 - components: - - type: Transform - pos: 38.5,50.5 - parent: 2 - uid: 9780 components: - type: Transform pos: 8.5,-35.5 parent: 2 - - uid: 18928 - components: - - type: Transform - pos: 44.5,16.5 - parent: 2 - uid: 18931 components: - type: Transform @@ -149341,6 +151932,11 @@ entities: - type: Transform pos: -46.5,-51.5 parent: 2 + - uid: 20243 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 - uid: 23424 components: - type: Transform @@ -149354,6 +151950,8 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingMonkey entities: - uid: 11651 @@ -149362,6 +151960,8 @@ entities: rot: 3.141592653589793 rad pos: -21.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingMoony entities: - uid: 23614 @@ -149369,6 +151969,8 @@ entities: - type: Transform pos: -35.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingOldGuitarist entities: - uid: 2013 @@ -149377,11 +151979,15 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29727 components: - type: Transform pos: -17.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingPersistenceOfMemory entities: - uid: 24192 @@ -149390,6 +151996,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingRedBlueYellow entities: - uid: 23624 @@ -149397,6 +152005,8 @@ entities: - type: Transform pos: -43.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSadClown entities: - uid: 23622 @@ -149404,6 +152014,8 @@ entities: - type: Transform pos: -33.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSaturn entities: - uid: 23623 @@ -149411,6 +152023,8 @@ entities: - type: Transform pos: -36.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSkeletonCigarette entities: - uid: 23179 @@ -149419,6 +152033,8 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheKiss entities: - uid: 23180 @@ -149427,6 +152043,8 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheSonOfMan entities: - uid: 23625 @@ -149434,13 +152052,14 @@ entities: - type: Transform pos: -37.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaladinCircuitBoard entities: - uid: 29449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.360508,22.579893 + pos: 49.47715,20.75559 parent: 2 - proto: Paper entities: @@ -149820,7 +152439,7 @@ entities: - uid: 10176 components: - type: Transform - parent: 2695 + parent: 3594 - type: Physics canCollide: False - uid: 10837 @@ -150474,8 +153093,9 @@ entities: - uid: 29266 components: - type: Transform - pos: 29.769129,21.041245 - parent: 2 + parent: 4569 + - type: Physics + canCollide: False - type: Paper content: >+ [bold]=====================================================[/bold] @@ -150828,32 +153448,44 @@ entities: - uid: 2743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.116163,20.673426 - parent: 2 + parent: 4097 + - type: Physics + canCollide: False - uid: 2744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.209913,20.62655 - parent: 2 + parent: 4097 + - type: Physics + canCollide: False - uid: 2745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.303663,20.5328 - parent: 2 + parent: 4097 + - type: Physics + canCollide: False - uid: 2746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.303663,20.5328 - parent: 2 + parent: 4097 + - type: Physics + canCollide: False - uid: 2747 + components: + - type: Transform + parent: 4097 + - type: Physics + canCollide: False + - uid: 18433 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.225538,20.610926 + pos: 31.556246,20.624237 + parent: 2 + - uid: 31088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.629164,20.655487 parent: 2 - proto: PaperCNCSheet entities: @@ -151005,6 +153637,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 31120 + components: + - type: Transform + pos: 50.50912,14.420492 + parent: 2 - proto: Pen entities: - uid: 1052 @@ -151207,6 +153844,11 @@ entities: rot: 1.5707963267948966 rad pos: -47.527077,-35.26962 parent: 2 + - uid: 31071 + components: + - type: Transform + pos: 60.6833,16.735445 + parent: 2 - proto: PenCap entities: - uid: 2672 @@ -151271,7 +153913,7 @@ entities: - uid: 2675 components: - type: Transform - pos: 24.007292,15.691906 + pos: 23.993635,15.627417 parent: 2 - proto: PianoInstrument entities: @@ -151432,58 +154074,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-11.5 parent: 2 - - uid: 12832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,18.5 - parent: 2 - - uid: 12833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,18.5 - parent: 2 - - uid: 12834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,19.5 - parent: 2 - - uid: 12835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,20.5 - parent: 2 - - uid: 12836 - components: - - type: Transform - pos: 52.5,21.5 - parent: 2 - - uid: 12837 - components: - - type: Transform - pos: 50.5,21.5 - parent: 2 - - uid: 12838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,20.5 - parent: 2 - - uid: 12839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,19.5 - parent: 2 - - uid: 12840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,18.5 - parent: 2 - uid: 14238 components: - type: Transform @@ -151663,10 +154253,10 @@ entities: parent: 2 - proto: PlayerStationAi entities: - - uid: 23510 + - uid: 12890 components: - type: Transform - pos: 51.5,16.5 + pos: 55.5,22.5 parent: 2 - proto: PlushieCarp entities: @@ -151769,6 +154359,11 @@ entities: - type: Transform pos: 60.5,-16.5 parent: 2 + - uid: 12877 + components: + - type: Transform + pos: 36.5,48.5 + parent: 2 - uid: 18067 components: - type: Transform @@ -151809,14 +154404,11 @@ entities: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 10728 + - uid: 12857 components: - type: Transform - anchored: True - pos: 50.5,20.5 + pos: 48.5,14.5 parent: 2 - - type: Physics - bodyType: Static - uid: 16211 components: - type: Transform @@ -151824,19 +154416,16 @@ entities: parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 10730 - components: - - type: Transform - anchored: True - pos: 52.5,20.5 - parent: 2 - - type: Physics - bodyType: Static - uid: 16213 components: - type: Transform pos: 12.5,41.5 parent: 2 + - uid: 23517 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 - proto: PortableScrubber entities: - uid: 8450 @@ -151893,6 +154482,8 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,38.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterContrabandBeachStarYamamoto entities: - uid: 11972 @@ -151900,6 +154491,8 @@ entities: - type: Transform pos: 25.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 8814 @@ -151907,6 +154500,8 @@ entities: - type: Transform pos: -32.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonutCorp entities: - uid: 30713 @@ -151915,6 +154510,8 @@ entities: rot: 3.141592653589793 rad pos: -4.5,18.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnlistGorlex entities: - uid: 30686 @@ -151923,6 +154520,8 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,39.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeDrone entities: - uid: 29365 @@ -151931,6 +154530,8 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFunPolice entities: - uid: 16210 @@ -151939,11 +154540,15 @@ entities: rot: 3.141592653589793 rad pos: 7.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19552 components: - type: Transform pos: 26.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHackingGuide entities: - uid: 11884 @@ -151952,6 +154557,8 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingGloves entities: - uid: 23491 @@ -151960,6 +154567,8 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingSpacepen entities: - uid: 30714 @@ -151968,6 +154577,8 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-42.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 28330 @@ -151975,17 +154586,23 @@ entities: - type: Transform pos: 22.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28332 components: - type: Transform pos: -32.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28881 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 2117 @@ -151993,6 +154610,8 @@ entities: - type: Transform pos: -22.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitCarpMount entities: - uid: 28493 @@ -152000,6 +154619,8 @@ entities: - type: Transform pos: -56.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 19636 @@ -152007,6 +154628,8 @@ entities: - type: Transform pos: 42.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDoNotQuestion entities: - uid: 3522 @@ -152014,6 +154637,8 @@ entities: - type: Transform pos: 28.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitEnlist entities: - uid: 3731 @@ -152022,6 +154647,8 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitFoamForceAd entities: - uid: 11964 @@ -152030,6 +154657,8 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitHelpOthers entities: - uid: 30621 @@ -152038,6 +154667,8 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitIan entities: - uid: 28865 @@ -152046,6 +154677,8 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 28438 @@ -152054,12 +154687,16 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29722 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitMime entities: - uid: 23628 @@ -152067,6 +154704,8 @@ entities: - type: Transform pos: -37.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanomichiAd entities: - uid: 30215 @@ -152074,6 +154713,8 @@ entities: - type: Transform pos: -7.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNoERP entities: - uid: 23428 @@ -152081,6 +154722,8 @@ entities: - type: Transform pos: -31.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNTTGC entities: - uid: 30216 @@ -152088,6 +154731,8 @@ entities: - type: Transform pos: -10.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitPDAAd entities: - uid: 28483 @@ -152096,17 +154741,23 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28484 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28491 components: - type: Transform pos: -5.5,54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitRenault entities: - uid: 28751 @@ -152114,6 +154765,8 @@ entities: - type: Transform pos: 42.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitReportCrimes entities: - uid: 14331 @@ -152122,11 +154775,15 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28492 components: - type: Transform pos: -5.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyInternals entities: - uid: 30126 @@ -152134,6 +154791,8 @@ entities: - type: Transform pos: 2.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 1051 @@ -152142,6 +154801,8 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 8712 @@ -152150,6 +154811,8 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyReport entities: - uid: 20461 @@ -152158,6 +154821,8 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSecWatch entities: - uid: 30715 @@ -152166,6 +154831,8 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-46.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: PosterLegitStateLaws entities: - uid: 30622 @@ -152174,6 +154841,8 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitThereIsNoGasGiant entities: - uid: 9176 @@ -152182,6 +154851,15 @@ entities: rot: 3.141592653589793 rad pos: -29.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 31077 + components: + - type: Transform + pos: 55.5,26.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitTyrone entities: - uid: 30218 @@ -152189,6 +154867,8 @@ entities: - type: Transform pos: -7.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitVacation entities: - uid: 3247 @@ -152196,16 +154876,22 @@ entities: - type: Transform pos: 6.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28489 components: - type: Transform pos: -11.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28490 components: - type: Transform pos: -5.5,52.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWalk entities: - uid: 30623 @@ -152214,6 +154900,8 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWorkForAFuture entities: - uid: 30626 @@ -152222,6 +154910,8 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlant1 entities: - uid: 28294 @@ -152353,21 +155043,11 @@ entities: - type: Transform pos: -19.5,-40.5 parent: 2 - - uid: 12957 - components: - - type: Transform - pos: 61.5,17.5 - parent: 2 - uid: 13009 components: - type: Transform pos: 19.5,8.5 parent: 2 - - uid: 13013 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - uid: 14157 components: - type: Transform @@ -152533,6 +155213,11 @@ entities: - type: Transform pos: 38.5,4.5 parent: 2 + - uid: 30983 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 - proto: PottedPlantRD entities: - uid: 9902 @@ -152550,6 +155235,18 @@ entities: parent: 2 - type: PointLight enabled: False +- proto: PowerCellMedium + entities: + - uid: 21061 + components: + - type: Transform + pos: 61.412632,21.54738 + parent: 2 + - uid: 31111 + components: + - type: Transform + pos: 61.568882,21.370296 + parent: 2 - proto: PowerCellPotato entities: - uid: 13597 @@ -152676,12 +155373,6 @@ entities: - type: Transform pos: -52.5,-19.5 parent: 2 - - uid: 13060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,19.5 - parent: 2 - uid: 22981 components: - type: Transform @@ -152697,6 +155388,16 @@ entities: - type: Transform pos: 31.5,31.5 parent: 2 + - uid: 31072 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 31113 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 - proto: PowerCellSmall entities: - uid: 23814 @@ -152718,6 +155419,12 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,16.5 parent: 2 + - uid: 3589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,7.5 + parent: 2 - uid: 7182 components: - type: Transform @@ -152734,6 +155441,12 @@ entities: - type: Transform pos: -16.5,-46.5 parent: 2 + - uid: 12829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 - uid: 13524 components: - type: Transform @@ -152901,24 +155614,12 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-11.5 parent: 2 - - uid: 17437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,31.5 - parent: 2 - uid: 17438 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,40.5 parent: 2 - - uid: 17440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,25.5 - parent: 2 - uid: 17441 components: - type: Transform @@ -153075,16 +155776,16 @@ entities: - type: Transform pos: -6.5,26.5 parent: 2 - - uid: 18644 + - uid: 20272 components: - type: Transform - pos: 63.5,9.5 + rot: -1.5707963267948966 rad + pos: 44.5,32.5 parent: 2 - - uid: 20213 + - uid: 20501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,27.5 + pos: 63.5,11.5 parent: 2 - uid: 20656 components: @@ -153126,6 +155827,12 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-47.5 parent: 2 + - uid: 29162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,20.5 + parent: 2 - uid: 29957 components: - type: Transform @@ -153198,8 +155905,7 @@ entities: - uid: 29970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,20.5 + pos: 42.5,25.5 parent: 2 - uid: 29971 components: @@ -153336,6 +156042,27 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,18.5 parent: 2 + - uid: 31052 + components: + - type: Transform + pos: 55.5,25.5 + parent: 2 + - uid: 31053 + components: + - type: Transform + pos: 60.5,25.5 + parent: 2 + - uid: 31054 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 31055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,13.5 + parent: 2 - proto: Poweredlight entities: - uid: 68 @@ -154858,6 +157585,11 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,36.5 parent: 2 + - uid: 12954 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 - uid: 13411 components: - type: Transform @@ -155024,29 +157756,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,31.5 parent: 2 - - uid: 17455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,16.5 - parent: 2 - - uid: 17456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,13.5 - parent: 2 - - uid: 17457 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - - uid: 17458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,16.5 - parent: 2 - uid: 17461 components: - type: Transform @@ -155388,12 +158097,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 2 - - uid: 23516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,18.5 - parent: 2 - uid: 23765 components: - type: Transform @@ -155456,24 +158159,12 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-0.5 parent: 2 - - uid: 29360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,12.5 - parent: 2 - uid: 29447 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-10.5 parent: 2 - - uid: 29452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,22.5 - parent: 2 - uid: 29482 components: - type: Transform @@ -155502,6 +158193,35 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-11.5 parent: 2 + - uid: 31048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,13.5 + parent: 2 + - uid: 31049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,13.5 + parent: 2 + - uid: 31050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,20.5 + parent: 2 + - uid: 31051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,20.5 + parent: 2 + - uid: 31056 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 - proto: PoweredlightEmpty entities: - uid: 12295 @@ -155625,11 +158345,11 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-53.5 parent: 2 - - uid: 20254 + - uid: 20274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,30.5 + rot: -1.5707963267948966 rad + pos: 56.5,32.5 parent: 2 - uid: 20783 components: @@ -155860,6 +158580,12 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-40.5 parent: 2 + - uid: 12825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,29.5 + parent: 2 - uid: 13036 components: - type: Transform @@ -155961,12 +158687,6 @@ entities: - type: Transform pos: -48.5,-52.5 parent: 2 - - uid: 20487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,26.5 - parent: 2 - uid: 20647 components: - type: Transform @@ -156574,6 +159294,12 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-7.5 parent: 2 + - uid: 884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,13.5 + parent: 2 - uid: 1397 components: - type: Transform @@ -156712,6 +159438,18 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 + - uid: 3953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,23.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,20.5 + parent: 2 - uid: 4510 components: - type: Transform @@ -156724,12 +159462,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-8.5 parent: 2 - - uid: 5220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,30.5 - parent: 2 - uid: 6171 components: - type: Transform @@ -157399,6 +160131,47 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-44.5 parent: 2 + - uid: 12738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,33.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,33.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,15.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,15.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,16.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,16.5 + parent: 2 - uid: 13010 components: - type: Transform @@ -157416,6 +160189,12 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-3.5 parent: 2 + - uid: 14683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,33.5 + parent: 2 - uid: 15041 components: - type: Transform @@ -157498,23 +160277,17 @@ entities: - type: Transform pos: -49.5,-56.5 parent: 2 - - uid: 20274 + - uid: 20264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,26.5 + rot: 3.141592653589793 rad + pos: 50.5,33.5 parent: 2 - - uid: 20275 + - uid: 20486 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,27.5 - parent: 2 - - uid: 20488 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,32.5 + pos: 56.5,31.5 parent: 2 - uid: 22456 components: @@ -157762,6 +160535,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,15.5 parent: 2 + - uid: 29156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,20.5 + parent: 2 - uid: 29546 components: - type: Transform @@ -157784,6 +160563,90 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,36.5 parent: 2 + - uid: 30837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,25.5 + parent: 2 + - uid: 30997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,25.5 + parent: 2 + - uid: 30998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,25.5 + parent: 2 + - uid: 31096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,24.5 + parent: 2 + - uid: 31097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 2 + - uid: 31098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,25.5 + parent: 2 + - uid: 31099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,25.5 + parent: 2 + - uid: 31100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,25.5 + parent: 2 + - uid: 31101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,25.5 + parent: 2 + - uid: 31102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,25.5 + parent: 2 + - uid: 31103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,25.5 + parent: 2 + - uid: 31104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,24.5 + parent: 2 + - uid: 31105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,25.5 + parent: 2 + - uid: 31106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,23.5 + parent: 2 - proto: RailingCorner entities: - uid: 64 @@ -158007,18 +160870,6 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-56.5 parent: 2 - - uid: 20498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,31.5 - parent: 2 - - uid: 20499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,33.5 - parent: 2 - uid: 22457 components: - type: Transform @@ -158046,17 +160897,11 @@ entities: - type: Transform pos: 23.5,-19.5 parent: 2 - - uid: 29374 + - uid: 29293 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,30.5 - parent: 2 - - uid: 29375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,30.5 + pos: 56.5,32.5 parent: 2 - uid: 29489 components: @@ -158087,6 +160932,18 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-23.5 parent: 2 + - uid: 31107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,25.5 + parent: 2 + - uid: 31108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,25.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 380 @@ -158130,6 +160987,12 @@ entities: rot: 3.141592653589793 rad pos: 17.5,10.5 parent: 2 + - uid: 2371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 2 - uid: 2419 components: - type: Transform @@ -158142,6 +161005,12 @@ entities: rot: 3.141592653589793 rad pos: 27.5,8.5 parent: 2 + - uid: 3207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,14.5 + parent: 2 - uid: 3337 components: - type: Transform @@ -158432,6 +161301,22 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,9.5 parent: 2 + - uid: 12742 + components: + - type: Transform + pos: 53.5,33.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: 56.5,14.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,14.5 + parent: 2 - uid: 14320 components: - type: Transform @@ -158505,22 +161390,11 @@ entities: - type: Transform pos: -52.5,-56.5 parent: 2 - - uid: 20257 - components: - - type: Transform - pos: 53.5,30.5 - parent: 2 - - uid: 20276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,28.5 - parent: 2 - - uid: 20389 + - uid: 20254 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,31.5 + pos: 56.5,30.5 parent: 2 - uid: 20390 components: @@ -158625,29 +161499,17 @@ entities: - type: Transform pos: -10.5,12.5 parent: 2 - - uid: 29376 + - uid: 29457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,30.5 + rot: 3.141592653589793 rad + pos: 54.5,17.5 parent: 2 - - uid: 29377 + - uid: 29467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,29.5 - parent: 2 - - uid: 29378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,29.5 - parent: 2 - - uid: 29388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,30.5 + rot: 1.5707963267948966 rad + pos: 56.5,17.5 parent: 2 - uid: 29486 components: @@ -158682,6 +161544,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,16.5 parent: 2 + - uid: 29866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,32.5 + parent: 2 - uid: 29997 components: - type: Transform @@ -159694,6 +162562,16 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-51.5 parent: 2 + - uid: 31078 + components: + - type: Transform + pos: 62.5,16.5 + parent: 2 + - uid: 31079 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 - proto: RandomPosterContraband entities: - uid: 20650 @@ -159706,11 +162584,6 @@ entities: - type: Transform pos: 46.5,10.5 parent: 2 - - uid: 20720 - components: - - type: Transform - pos: 53.5,9.5 - parent: 2 - uid: 20722 components: - type: Transform @@ -159776,6 +162649,12 @@ entities: - type: Transform pos: -36.5,-18.5 parent: 2 + - uid: 29300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,8.5 + parent: 2 - uid: 30217 components: - type: Transform @@ -159926,20 +162805,10 @@ entities: - type: Transform pos: 11.5,24.5 parent: 2 - - uid: 29454 + - uid: 29442 components: - type: Transform - pos: 58.5,20.5 - parent: 2 - - uid: 29455 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 29456 - components: - - type: Transform - pos: 62.5,18.5 + pos: 51.5,26.5 parent: 2 - uid: 30624 components: @@ -159953,6 +162822,21 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-26.5 parent: 2 + - uid: 31075 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 31076 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 31094 + components: + - type: Transform + pos: 59.5,26.5 + parent: 2 - proto: RandomProduce entities: - uid: 20761 @@ -160137,11 +163021,6 @@ entities: - type: Transform pos: 35.5,25.5 parent: 2 - - uid: 20705 - components: - - type: Transform - pos: 46.5,30.5 - parent: 2 - uid: 20706 components: - type: Transform @@ -160157,6 +163036,11 @@ entities: - type: Transform pos: 27.5,-23.5 parent: 2 + - uid: 29165 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 - uid: 30128 components: - type: Transform @@ -160855,15 +163739,23 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,42.5 parent: 2 - - uid: 12753 + - uid: 12757 components: - type: Transform - pos: 55.5,16.5 + rot: 3.141592653589793 rad + pos: 52.5,17.5 parent: 2 - - uid: 12933 + - uid: 12881 components: - type: Transform - pos: 57.5,16.5 + rot: 3.141592653589793 rad + pos: 58.5,19.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,17.5 parent: 2 - uid: 13508 components: @@ -160894,6 +163786,23 @@ entities: - type: Transform pos: 45.5,-22.5 parent: 2 + - uid: 18395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,17.5 + parent: 2 + - uid: 18409 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 18411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,17.5 + parent: 2 - uid: 18633 components: - type: Transform @@ -160917,16 +163826,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,37.5 parent: 2 - - uid: 28510 - components: - - type: Transform - pos: 2.5,3.5 - parent: 21002 - - uid: 28511 - components: - - type: Transform - pos: 3.5,3.5 - parent: 21002 - uid: 28512 components: - type: Transform @@ -160947,6 +163846,57 @@ entities: - type: Transform pos: 6.5,-2.5 parent: 21002 + - uid: 29154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,19.5 + parent: 2 + - uid: 29158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,18.5 + parent: 2 + - uid: 29323 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 + - uid: 29325 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 29362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,17.5 + parent: 2 + - uid: 29425 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 + - uid: 29434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,18.5 + parent: 2 + - uid: 29437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,17.5 + parent: 2 + - uid: 29439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,17.5 + parent: 2 - uid: 29594 components: - type: Transform @@ -160970,6 +163920,44 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-11.5 parent: 2 +- proto: ReinforcedUraniumWindow + entities: + - uid: 13028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,22.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,22.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,22.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,22.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,22.5 + parent: 2 + - uid: 24380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,22.5 + parent: 2 - proto: ReinforcedWindow entities: - uid: 127 @@ -161970,11 +164958,6 @@ entities: - type: Transform pos: 36.5,51.5 parent: 2 - - uid: 6825 - components: - - type: Transform - pos: 38.5,51.5 - parent: 2 - uid: 6826 components: - type: Transform @@ -163174,12 +166157,6 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,-33.5 parent: 2 - - uid: 10887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,28.5 - parent: 2 - uid: 10902 components: - type: Transform @@ -163327,6 +166304,18 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-57.5 parent: 2 + - uid: 12744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 - uid: 12845 components: - type: Transform @@ -163551,12 +166540,6 @@ entities: - type: Transform pos: 43.5,-2.5 parent: 2 - - uid: 18229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,28.5 - parent: 2 - uid: 18360 components: - type: Transform @@ -163631,11 +166614,29 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-79.5 parent: 2 - - uid: 20256 + - uid: 20257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,28.5 + rot: 1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,31.5 + parent: 2 + - uid: 20268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,31.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,31.5 parent: 2 - uid: 20662 components: @@ -163841,12 +166842,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,28.5 parent: 2 - - uid: 24009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,28.5 - parent: 2 - uid: 24137 components: - type: Transform @@ -163988,6 +166983,11 @@ entities: - type: Transform pos: 46.5,-3.5 parent: 2 + - uid: 29299 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 - uid: 29597 components: - type: Transform @@ -164117,10 +167117,10 @@ entities: parent: 2 - proto: RobocopCircuitBoard entities: - - uid: 29442 + - uid: 12905 components: - type: Transform - pos: 61.45505,14.543717 + pos: 53.381123,13.600489 parent: 2 - proto: RockGuitarInstrument entities: @@ -164216,288 +167216,374 @@ entities: - type: Transform pos: -21.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4623 components: - type: Transform pos: -15.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4828 components: - type: Transform pos: 41.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4845 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9382 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9387 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9402 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9403 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9406 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9654 components: - type: Transform pos: 11.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11556 components: - type: Transform pos: 29.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12731 components: - type: Transform pos: -55.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13502 components: - type: Transform pos: -55.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14306 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16676 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16682 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16683 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16684 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16740 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16747 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17605 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18533 components: - type: Transform pos: -12.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18870 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20960 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23309 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23310 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23311 components: - type: Transform pos: 56.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23312 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23440 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23441 components: - type: Transform pos: -9.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23442 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23443 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23446 components: - type: Transform pos: -46.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23448 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23454 components: - type: Transform pos: 2.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23455 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23456 components: - type: Transform pos: -1.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23457 components: - type: Transform pos: -7.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23458 components: - type: Transform pos: -5.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23459 components: - type: Transform pos: -8.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23461 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23492 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23612 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23644 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23646 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24118 components: - type: Transform pos: 10.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28331 components: - type: Transform pos: 20.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28364 components: - type: Transform pos: -51.5,-11.5 parent: 2 - - uid: 29195 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,19.5 - parent: 2 - - uid: 29196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,12.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 29669 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SecurityTechFab entities: - uid: 28361 @@ -164771,7 +167857,7 @@ entities: - uid: 9691 components: - type: Transform - pos: 24.023485,16.190632 + pos: 23.951967,16.075333 parent: 2 - uid: 11880 components: @@ -164787,12 +167873,16 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23601 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Shovel entities: - uid: 1269 @@ -165404,12 +168494,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-54.5 parent: 2 - - uid: 12774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,7.5 - parent: 2 - uid: 12955 components: - type: Transform @@ -165422,6 +168506,24 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,9.5 parent: 2 + - uid: 20213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,10.5 + parent: 2 + - uid: 29469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,7.5 + parent: 2 + - uid: 29484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,11.5 + parent: 2 - uid: 29526 components: - type: Transform @@ -165527,14 +168629,6 @@ entities: - type: Transform pos: -56.500233,9.6115055 parent: 2 -- proto: SignAi - entities: - - uid: 23308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,18.5 - parent: 2 - proto: SignAiUpload entities: - uid: 12285 @@ -165543,6 +168637,8 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 1014 @@ -165558,6 +168654,8 @@ entities: 1050: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 1919 components: - type: MetaData @@ -165571,6 +168669,8 @@ entities: 7999: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 1920 components: - type: MetaData @@ -165584,6 +168684,8 @@ entities: 8000: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2735 components: - type: MetaData @@ -165597,6 +168699,50 @@ entities: 2733: - - Pressed - Toggle + - type: Fixtures + fixtures: {} + - uid: 3210 + components: + - type: MetaData + name: space connector + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29484: + - - Pressed + - Toggle + 20213: + - - Pressed + - Toggle + 12956: + - - Pressed + - Toggle + 12955: + - - Pressed + - Toggle + 29469: + - - Pressed + - Toggle + 29440: + - - Pressed + - Toggle + 20882: + - - Pressed + - Toggle + 20644: + - - Pressed + - Toggle + 20255: + - - Pressed + - Toggle + 23516: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 3749 components: - type: MetaData @@ -165610,6 +168756,8 @@ entities: 3921: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3839 components: - type: MetaData @@ -165626,6 +168774,8 @@ entities: 23782: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3840 components: - type: MetaData @@ -165639,6 +168789,8 @@ entities: 4811: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3892 components: - type: MetaData @@ -165652,6 +168804,8 @@ entities: 3810: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4033 components: - type: MetaData @@ -165665,6 +168819,8 @@ entities: 4035: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4168 components: - type: MetaData @@ -165678,6 +168834,8 @@ entities: 4167: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 5382 components: - type: MetaData @@ -165691,6 +168849,8 @@ entities: 3921: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7696 components: - type: MetaData @@ -165710,6 +168870,8 @@ entities: 7192: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7697 components: - type: MetaData @@ -165729,6 +168891,8 @@ entities: 7042: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7706 components: - type: MetaData @@ -165751,6 +168915,8 @@ entities: 7335: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9642 components: - type: MetaData @@ -165770,6 +168936,8 @@ entities: 9638: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9774 components: - type: MetaData @@ -165783,6 +168951,8 @@ entities: 16239: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9781 components: - type: MetaData @@ -165796,6 +168966,8 @@ entities: 9718: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10078 components: - type: MetaData @@ -165809,6 +168981,8 @@ entities: 9715: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10588 components: - type: MetaData @@ -165827,6 +169001,8 @@ entities: 10591: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15442 components: - type: MetaData @@ -165839,6 +169015,8 @@ entities: 3502: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15451 components: - type: MetaData @@ -165852,6 +169030,8 @@ entities: 3502: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21063 components: - type: MetaData @@ -165865,6 +169045,8 @@ entities: 28504: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 21064 components: - type: MetaData @@ -165878,6 +169060,8 @@ entities: 21068: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 22960 components: - type: MetaData @@ -165891,6 +169075,8 @@ entities: 22959: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23768 components: - type: MetaData @@ -165904,6 +169090,8 @@ entities: 23766: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23771 components: - type: MetaData @@ -165916,6 +169104,8 @@ entities: 23770: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23773 components: - type: MetaData @@ -165929,6 +169119,8 @@ entities: 23772: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23774 components: - type: MetaData @@ -165944,6 +169136,8 @@ entities: 23762: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23775 components: - type: MetaData @@ -165957,6 +169151,8 @@ entities: 23761: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23776 components: - type: MetaData @@ -165969,6 +169165,8 @@ entities: 24128: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23777 components: - type: MetaData @@ -165982,6 +169180,8 @@ entities: 23763: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23778 components: - type: MetaData @@ -165995,6 +169195,8 @@ entities: 23764: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23779 components: - type: MetaData @@ -166007,6 +169209,8 @@ entities: 16214: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23785 components: - type: MetaData @@ -166020,6 +169224,8 @@ entities: 23784: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 23829 components: - type: MetaData @@ -166033,6 +169239,8 @@ entities: 16797: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 24385 components: - type: Transform @@ -166044,6 +169252,8 @@ entities: 423: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 28356 components: - type: MetaData @@ -166057,6 +169267,8 @@ entities: 12133: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 28357 components: - type: MetaData @@ -166070,6 +169282,8 @@ entities: 12132: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 28358 components: - type: MetaData @@ -166083,6 +169297,8 @@ entities: 12131: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 28878 components: - type: MetaData @@ -166096,6 +169312,8 @@ entities: 23642: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 28900 components: - type: MetaData @@ -166114,6 +169332,8 @@ entities: 9295: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 29782 components: - type: MetaData @@ -166130,6 +169350,8 @@ entities: 1378: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 30004 components: - type: MetaData @@ -166143,6 +169365,8 @@ entities: 23780: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 30014 components: - type: MetaData @@ -166164,6 +169388,8 @@ entities: 14391: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 30069 components: - type: MetaData @@ -166177,6 +169403,8 @@ entities: 3474: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 30265 components: - type: MetaData @@ -166190,6 +169418,56 @@ entities: 30310: - - Pressed - Toggle + - type: Fixtures + fixtures: {} + - uid: 30981 + components: + - type: MetaData + name: gas release R + - type: Transform + pos: 56.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12892: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} + - uid: 30982 + components: + - type: MetaData + name: gas release L + - type: Transform + pos: 54.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 30935: + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} +- proto: SignalControlledValve + entities: + - uid: 12892 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FFAA00FF' + - uid: 30935 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FFAA00FF' - proto: SignalSwitchDirectional entities: - uid: 2694 @@ -166234,6 +169512,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 2696 components: - type: MetaData @@ -166261,6 +169541,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3388 components: - type: MetaData @@ -166291,6 +169573,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3800 components: - type: MetaData @@ -166320,6 +169604,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 4188 components: - type: MetaData @@ -166362,6 +169648,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 4507 components: - type: MetaData @@ -166404,6 +169692,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 4820 components: - type: MetaData @@ -166426,6 +169716,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 6175 components: - type: MetaData @@ -166451,6 +169743,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 6481 components: - type: MetaData @@ -166473,6 +169767,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 7698 components: - type: MetaData @@ -166498,6 +169794,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 7789 components: - type: MetaData @@ -166523,6 +169821,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 7865 components: - type: MetaData @@ -166567,6 +169867,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 8947 components: - type: MetaData @@ -166593,6 +169895,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 9775 components: - type: MetaData @@ -166625,6 +169929,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 10222 components: - type: MetaData @@ -166662,6 +169968,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 10393 components: - type: MetaData @@ -166687,6 +169995,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 11339 components: - type: MetaData @@ -166707,6 +170017,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 11986 components: - type: MetaData @@ -166727,6 +170039,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 12804 components: - type: MetaData @@ -166747,71 +170061,8 @@ entities: - Open - - Off - Close - - uid: 13038 - components: - - type: MetaData - name: space connector - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,11.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 12956: - - - On - - Open - - - Off - - Close - 12955: - - - On - - Open - - - Off - - Close - 12774: - - - On - - Open - - - Off - - Close - 20644: - - - On - - Open - - - Off - - Close - 20255: - - - On - - Open - - - Off - - Close - 20268: - - - On - - Open - - - Off - - Close - - uid: 13400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,18.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12801: - - - On - - Open - - - Off - - Close - 12802: - - - On - - Open - - - Off - - Close - 12803: - - - On - - Open - - - Off - - Close + - type: Fixtures + fixtures: {} - uid: 15445 components: - type: MetaData @@ -166831,6 +170082,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 16068 components: - type: MetaData @@ -166858,6 +170111,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 17733 components: - type: MetaData @@ -166895,6 +170150,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 18469 components: - type: Transform @@ -166935,6 +170192,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 18694 components: - type: MetaData @@ -166961,6 +170220,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 21017 components: - type: MetaData @@ -167018,6 +170279,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 24372 components: - type: MetaData @@ -167038,6 +170301,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 24386 components: - type: MetaData @@ -167062,6 +170327,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 16793 @@ -167070,12 +170337,16 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23200 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArcade entities: - uid: 6863 @@ -167084,12 +170355,16 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15737 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 23186 @@ -167098,6 +170373,8 @@ entities: rot: 3.141592653589793 rad pos: -17.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBath entities: - uid: 28974 @@ -167106,18 +170383,24 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29046 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29781 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBio entities: - uid: 23187 @@ -167126,6 +170409,8 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 23188 @@ -167134,6 +170419,8 @@ entities: rot: 3.141592653589793 rad pos: 24.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 8260 @@ -167142,6 +170429,8 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 23190 @@ -167150,6 +170439,8 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 23191 @@ -167158,6 +170449,8 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 23192 @@ -167166,6 +170459,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 8921 @@ -167174,6 +170469,8 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCloning entities: - uid: 23193 @@ -167182,6 +170479,8 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignConference entities: - uid: 23194 @@ -167190,6 +170489,8 @@ entities: rot: 3.141592653589793 rad pos: 28.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 6028 @@ -167198,11 +170499,15 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23799 components: - type: Transform pos: -45.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDangerMed entities: - uid: 889 @@ -167211,18 +170516,24 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7938 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28305 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,5.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 20978 @@ -167231,12 +170542,16 @@ entities: rot: 1.5707963267948966 rad pos: 5.5165973,-1.8227005 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20998 components: - type: Transform rot: 3.141592653589793 rad pos: 32.500874,2.5446026 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 1279 @@ -167245,11 +170560,15 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3461 components: - type: Transform pos: 2.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChemistry entities: - uid: 20974 @@ -167257,6 +170576,8 @@ entities: - type: Transform pos: -1.4649258,-4.6710877 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 20976 @@ -167265,6 +170586,8 @@ entities: rot: -1.5707963267948966 rad pos: -4.5113826,-1.2714531 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 20985 @@ -167273,6 +170596,8 @@ entities: rot: -1.5707963267948966 rad pos: -4.4699364,2.5505779 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 20977 @@ -167281,12 +170606,16 @@ entities: rot: 3.141592653589793 rad pos: 5.522138,2.6120837 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20997 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4812675,33.33204 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 20979 @@ -167295,35 +170624,47 @@ entities: rot: 1.5707963267948966 rad pos: 5.5276074,2.4069471 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20986 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5332532,-28.346897 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20988 components: - type: Transform rot: 3.141592653589793 rad pos: -1.497997,-40.258747 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20995 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.461353,-1.2455269 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20999 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.525524,2.687672 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28601 components: - type: Transform pos: -0.50126964,39.711143 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 14128 @@ -167331,36 +170672,48 @@ entities: - type: Transform pos: -0.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20987 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5332532,-28.565647 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20989 components: - type: Transform rot: 3.141592653589793 rad pos: -1.497997,-40.456665 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20994 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.465195,-1.4434437 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21000 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.525524,2.4793384 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29721 components: - type: Transform rot: 3.141592653589793 rad pos: -1.4826567,5.7890882 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalGravity entities: - uid: 5192 @@ -167369,23 +170722,31 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5193 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5206 components: - type: Transform pos: 32.5,41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20984 components: - type: Transform rot: 3.141592653589793 rad pos: -4.4699364,2.7693279 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 18363 @@ -167393,12 +170754,16 @@ entities: - type: Transform pos: 48.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20973 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5115004,-1.6256199 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 20981 @@ -167407,6 +170772,8 @@ entities: rot: 3.141592653589793 rad pos: 5.524472,2.2030704 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 20968 @@ -167415,6 +170782,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5120444,-1.1898417 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 20969 @@ -167423,12 +170792,16 @@ entities: rot: 3.141592653589793 rad pos: 5.527905,2.8014636 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20996 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.4812675,33.537514 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 20970 @@ -167436,12 +170809,16 @@ entities: - type: Transform pos: -1.4676661,-4.2297864 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20991 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.497997,-40.882515 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSalvage entities: - uid: 20967 @@ -167450,6 +170827,8 @@ entities: rot: -1.5707963267948966 rad pos: -43.471596,2.8032153 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 20971 @@ -167457,12 +170836,16 @@ entities: - type: Transform pos: -1.4676661,-4.4485364 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20990 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.4875805,-40.663765 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 20972 @@ -167471,6 +170854,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5115004,-1.4068699 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 20966 @@ -167479,12 +170864,16 @@ entities: rot: -1.5707963267948966 rad pos: -43.471596,2.630097 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20982 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.511603,-1.4910889 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalWash entities: - uid: 20965 @@ -167492,12 +170881,16 @@ entities: - type: Transform pos: -43.471596,2.411347 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20983 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.511603,-1.7098389 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 3742 @@ -167505,171 +170898,231 @@ entities: - type: Transform pos: 56.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3745 components: - type: Transform pos: 52.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3853 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4516 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24515 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,64.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 24517 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,60.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 24520 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,57.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 24544 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,66.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 24579 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,50.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28123 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,3.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28143 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,18.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28148 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,13.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28161 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,44.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28167 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,53.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28174 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,60.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28183 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,64.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28191 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,66.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28198 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,66.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28214 components: - type: Transform pos: 92.5,-19.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28227 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,-11.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28233 components: - type: Transform pos: 88.5,-27.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28234 components: - type: Transform pos: 79.5,-36.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28235 components: - type: Transform pos: 79.5,-36.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28236 components: - type: Transform pos: 70.5,-40.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28237 components: - type: Transform pos: 55.5,-44.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28239 components: - type: Transform pos: 39.5,-44.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28241 components: - type: Transform pos: 30.5,-44.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28243 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,34.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28254 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,42.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28255 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,32.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 23195 @@ -167678,6 +171131,8 @@ entities: rot: 3.141592653589793 rad pos: 25.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 9293 @@ -167686,12 +171141,16 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23196 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 23197 @@ -167700,6 +171159,8 @@ entities: rot: 3.141592653589793 rad pos: 32.5,47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 8923 @@ -167708,6 +171169,8 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFire entities: - uid: 28553 @@ -167715,6 +171178,8 @@ entities: - type: Transform pos: -27.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGenpop entities: - uid: 4825 @@ -167723,18 +171188,24 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14163 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14310 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 9201 @@ -167743,6 +171214,8 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 857 @@ -167751,47 +171224,63 @@ entities: rot: 3.141592653589793 rad pos: 33.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7939 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9604 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10797 components: - type: Transform pos: -28.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23313 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23314 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28593 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 30401 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 23182 @@ -167800,6 +171289,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 3683 @@ -167808,6 +171299,8 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 8924 @@ -167816,6 +171309,8 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLaserMed entities: - uid: 29432 @@ -167823,21 +171318,29 @@ entities: - type: Transform pos: 62.5,6.5 parent: 2 - - uid: 29433 + - type: Fixtures + fixtures: {} + - uid: 29485 components: - type: Transform - pos: 56.5,14.5 + pos: 62.5,12.5 parent: 2 - - uid: 29434 + - type: Fixtures + fixtures: {} + - uid: 31121 components: - type: Transform - pos: 56.5,18.5 + pos: 64.5,6.5 parent: 2 - - uid: 29435 + - type: Fixtures + fixtures: {} + - uid: 31122 components: - type: Transform - pos: 62.5,10.5 + pos: 64.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 3448 @@ -167846,18 +171349,24 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8925 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17280 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 8928 @@ -167866,14 +171375,8 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,35.5 parent: 2 -- proto: SignMagneticsMed - entities: - - uid: 29453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,20.5 - parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 10161 @@ -167882,12 +171385,16 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10162 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 8931 @@ -167896,12 +171403,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8932 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNTMine entities: - uid: 23483 @@ -167910,12 +171421,16 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,5.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23630 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-0.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: SignPrison entities: - uid: 23631 @@ -167924,18 +171439,24 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-0.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23637 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-14.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 23638 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-24.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 2070 @@ -167944,23 +171465,31 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2076 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2077 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10584 components: - type: Transform pos: -36.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRestroom entities: - uid: 29255 @@ -167969,6 +171498,8 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 23199 @@ -167977,6 +171508,8 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 28902 @@ -167985,6 +171518,8 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 28906 @@ -167993,14 +171528,8 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-40.5 parent: 2 -- proto: SignSecureMed - entities: - - uid: 3044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,20.5 - parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 1348 @@ -168009,23 +171538,31 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3519 components: - type: Transform pos: 30.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3764 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8935 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignServer entities: - uid: 28903 @@ -168034,6 +171571,8 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 8514 @@ -168042,85 +171581,123 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShock entities: + - uid: 12864 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 24216 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24217 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24236 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24237 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24238 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24239 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24240 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,70.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 29164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 29289 + components: + - type: Transform + pos: 62.5,28.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 29465 components: - type: Transform pos: 64.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29466 components: - type: Transform pos: 64.5,19.5 parent: 2 - - uid: 29467 - components: - - type: Transform - pos: 56.5,25.5 - parent: 2 - - uid: 29468 - components: - - type: Transform - pos: 61.5,25.5 - parent: 2 - - uid: 29469 - components: - - type: Transform - pos: 45.5,21.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 29470 components: - type: Transform pos: 49.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 29471 components: - type: Transform pos: 45.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 31123 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 24212 @@ -168128,11 +171705,8 @@ entities: - type: Transform pos: -10.5,-33.5 parent: 2 - - uid: 29297 - components: - - type: Transform - pos: 62.5,12.5 - parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 880 @@ -168141,86 +171715,116 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 885 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 890 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7984 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8249 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8936 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9162 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9297 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23354 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28314 components: - type: Transform pos: 96.5,27.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28315 components: - type: Transform pos: 43.5,67.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28316 components: - type: Transform pos: 96.5,-4.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28317 components: - type: Transform pos: 47.5,-45.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28437 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28864 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 8937 @@ -168229,6 +171833,8 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 9562 @@ -168236,6 +171842,8 @@ entities: - type: Transform pos: -30.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTheater entities: - uid: 2198 @@ -168243,6 +171851,8 @@ entities: - type: Transform pos: -32.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 5794 @@ -168251,6 +171861,8 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 28907 @@ -168259,6 +171871,8 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignXenobio entities: - uid: 7850 @@ -168267,6 +171881,8 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SingularityGenerator entities: - uid: 16956 @@ -168494,25 +172110,6 @@ entities: - type: Transform pos: 42.5,-45.5 parent: 2 - - uid: 10731 - components: - - type: MetaData - name: AI SMES B - - type: Transform - pos: 52.5,19.5 - parent: 2 - - uid: 10743 - components: - - type: MetaData - name: AI SMES A - - type: Transform - pos: 50.5,19.5 - parent: 2 - - uid: 13023 - components: - - type: Transform - pos: 49.5,27.5 - parent: 2 - uid: 19639 components: - type: MetaData @@ -168535,11 +172132,23 @@ entities: - type: Transform pos: 3.5,-6.5 parent: 21002 + - uid: 24125 + components: + - type: MetaData + name: E Solars + - type: Transform + pos: 51.5,30.5 + parent: 2 - uid: 24747 components: - type: Transform pos: 22.5,-24.5 parent: 21002 + - uid: 29167 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 - proto: SmokingPipe entities: - uid: 16103 @@ -170699,6 +174308,26 @@ entities: - type: Transform pos: -25.5,-41.5 parent: 2 + - uid: 30839 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 30840 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 2 + - uid: 30844 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 + - uid: 30845 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 - proto: SpawnMobCorgi entities: - uid: 24191 @@ -170818,11 +174447,6 @@ entities: - type: Transform pos: -16.5,34.5 parent: 2 - - uid: 4079 - components: - - type: Transform - pos: 45.5,28.5 - parent: 2 - uid: 23565 components: - type: Transform @@ -170838,6 +174462,11 @@ entities: - type: Transform pos: -52.5,-26.5 parent: 2 + - uid: 29452 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 - proto: SpawnMobParrot entities: - uid: 676 @@ -171032,12 +174661,6 @@ entities: - type: Transform pos: -57.5,-29.5 parent: 2 - - uid: 29074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,18.5 - parent: 2 - uid: 30135 components: - type: Transform @@ -171879,6 +175502,12 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-12.5 parent: 2 + - uid: 3196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,13.5 + parent: 2 - uid: 4040 components: - type: Transform @@ -171901,6 +175530,12 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-13.5 parent: 2 + - uid: 12860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,13.5 + parent: 2 - uid: 20755 components: - type: Transform @@ -172074,6 +175709,11 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-23.5 parent: 2 + - uid: 12856 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 - uid: 28344 components: - type: Transform @@ -172121,10 +175761,10 @@ entities: parent: 2 - proto: StationAiUploadComputer entities: - - uid: 10660 + - uid: 29468 components: - type: Transform - pos: 59.5,19.5 + pos: 55.5,16.5 parent: 2 - proto: StationAnchor entities: @@ -172138,8 +175778,7 @@ entities: - uid: 29450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.91259,22.59031 + pos: 61.487568,19.28684 parent: 2 - proto: StationMap entities: @@ -172149,62 +175788,84 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18574 components: - type: Transform pos: -47.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18643 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23439 components: - type: Transform pos: 51.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23449 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23451 components: - type: Transform pos: -1.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23452 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23453 components: - type: Transform pos: 2.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23462 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23493 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28042 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,0.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: StationMapCircuitboard entities: - uid: 5814 @@ -172551,13 +176212,6 @@ entities: - type: Transform pos: -52.5,-25.5 parent: 2 - - uid: 12831 - components: - - type: MetaData - name: AI substation - - type: Transform - pos: 51.5,19.5 - parent: 2 - uid: 12958 components: - type: MetaData @@ -172575,6 +176229,11 @@ entities: - type: Transform pos: 23.5,-24.5 parent: 21002 + - uid: 29166 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 - proto: SuitStorageAtmos entities: - uid: 8905 @@ -172843,21 +176502,11 @@ entities: - type: Transform pos: 39.5,-26.5 parent: 2 - - uid: 3953 - components: - - type: Transform - pos: 39.5,-24.5 - parent: 2 - uid: 3954 components: - type: Transform pos: 39.5,-28.5 parent: 2 - - uid: 3955 - components: - - type: Transform - pos: 39.5,-25.5 - parent: 2 - uid: 3956 components: - type: Transform @@ -172926,6 +176575,16 @@ entities: - type: Transform pos: 48.5,-20.5 parent: 2 + - uid: 15443 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 21077 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 2 - uid: 30024 components: - type: Transform @@ -173027,14 +176686,6 @@ entities: setupAvailableNetworks: - SurveillanceCameraCommand id: Captain's Bedroom - - uid: 20882 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,6.5 - parent: 2 - - type: SurveillanceCamera - id: EVA - uid: 20891 components: - type: Transform @@ -173062,40 +176713,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Briefing - - uid: 20911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,16.5 - parent: 2 - - type: SurveillanceCamera - id: AI Core - - uid: 20912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,16.5 - parent: 2 - - type: SurveillanceCamera - id: AI Control - - uid: 20913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - id: AI Spaceway - - uid: 20914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,18.5 - parent: 2 - - type: SurveillanceCamera - id: AI - uid: 20963 components: - type: Transform @@ -173103,28 +176720,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Telecoms - - uid: 29135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Compliance N - - uid: 29137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,9.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Compliance S - uid: 29141 components: - type: Transform @@ -173146,17 +176741,82 @@ entities: - SurveillanceCameraCommand nameSet: True id: QM's Bedroom - - uid: 29457 + - uid: 31041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,22.5 + pos: 54.5,13.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraCommand nameSet: True - id: Law Storage + id: AI upload + - uid: 31042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI board storage 1 + - uid: 31043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI board Storage 2 + - uid: 31044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core 1 + - uid: 31045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI core 2 + - uid: 31046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI bridge + - uid: 31047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: AI maints 1 - proto: SurveillanceCameraEngineering entities: - uid: 20897 @@ -173566,27 +177226,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Anchorage - - uid: 29484 - components: - - type: Transform - pos: 49.5,26.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: E Solars - - uid: 29485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,28.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: E Solars Catwalk - proto: SurveillanceCameraGeneral entities: - uid: 7089 @@ -173638,6 +177277,11 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,3.5 parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac 2 - uid: 20951 components: - type: Transform @@ -173756,6 +177400,11 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,-4.5 parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac 1 - uid: 29035 components: - type: Transform @@ -174139,6 +177788,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Gambling Den + - uid: 31129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Evac 3 - proto: SurveillanceCameraMedical entities: - uid: 20915 @@ -174764,6 +178424,17 @@ entities: - SurveillanceCameraSecurity nameSet: True id: perma retention north + - uid: 31130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lockerroom - proto: SurveillanceCameraService entities: - uid: 3264 @@ -175734,6 +179405,18 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-34.5 parent: 2 + - uid: 13021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,19.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,21.5 + parent: 2 - uid: 14253 components: - type: Transform @@ -175821,11 +179504,6 @@ entities: - type: Transform pos: 42.5,-15.5 parent: 2 - - uid: 20253 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - uid: 22351 components: - type: Transform @@ -176029,36 +179707,66 @@ entities: - type: Transform pos: -14.5,19.5 parent: 2 - - uid: 29436 + - uid: 29023 components: - type: Transform - pos: 58.5,21.5 + rot: -1.5707963267948966 rad + pos: 50.5,13.5 parent: 2 - - uid: 29437 + - uid: 29137 components: - type: Transform - pos: 58.5,22.5 + rot: 3.141592653589793 rad + pos: 50.5,21.5 parent: 2 - - uid: 29438 + - uid: 29149 components: - type: Transform - pos: 59.5,22.5 + rot: 3.141592653589793 rad + pos: 61.5,18.5 parent: 2 - - uid: 29439 + - uid: 29152 components: - type: Transform - pos: 60.5,22.5 + rot: 3.141592653589793 rad + pos: 61.5,20.5 parent: 2 - - uid: 29440 + - uid: 29153 components: - type: Transform - pos: 61.5,22.5 + rot: 3.141592653589793 rad + pos: 61.5,19.5 parent: 2 - - uid: 29441 + - uid: 29426 components: - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,18.5 + parent: 2 + - uid: 29427 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 61.5,21.5 parent: 2 + - uid: 29428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,14.5 + parent: 2 + - uid: 29433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,20.5 + parent: 2 + - uid: 29456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,21.5 + parent: 2 - uid: 30249 components: - type: Transform @@ -176097,6 +179805,21 @@ entities: - type: Transform pos: -45.5,-35.5 parent: 2 + - uid: 31058 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 31059 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 31060 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 - proto: TableCarpet entities: - uid: 7942 @@ -176347,48 +180070,34 @@ entities: - type: Transform pos: 43.5,-34.5 parent: 2 - - uid: 13006 - components: - - type: Transform - pos: 58.5,19.5 - parent: 2 - - uid: 13007 - components: - - type: Transform - pos: 61.5,19.5 - parent: 2 - - uid: 13011 - components: - - type: Transform - pos: 58.5,18.5 - parent: 2 - - uid: 13012 - components: - - type: Transform - pos: 58.5,13.5 - parent: 2 - - uid: 13014 - components: - - type: Transform - pos: 58.5,14.5 - parent: 2 - uid: 13070 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-16.5 parent: 2 - - uid: 29361 + - uid: 18415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,13.5 + rot: 3.141592653589793 rad + pos: 52.5,13.5 parent: 2 - - uid: 29362 + - uid: 18416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,14.5 + rot: 3.141592653589793 rad + pos: 53.5,13.5 + parent: 2 + - uid: 18432 + components: + - type: Transform + pos: 57.5,13.5 + parent: 2 + - uid: 29360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,13.5 parent: 2 - uid: 29909 components: @@ -178692,6 +182401,13 @@ entities: - type: Transform pos: -45.681465,-31.433119 parent: 2 +- proto: ToyAi + entities: + - uid: 31115 + components: + - type: Transform + pos: 55.475132,25.468586 + parent: 2 - proto: ToyAmongPequeno entities: - uid: 30091 @@ -178707,6 +182423,13 @@ entities: parent: 8002 - type: Physics canCollide: False +- proto: ToyReticence + entities: + - uid: 31124 + components: + - type: Transform + pos: 52.508877,21.605362 + parent: 2 - proto: ToyRubberDuck entities: - uid: 3734 @@ -178813,6 +182536,300 @@ entities: - type: Transform pos: 20.246368,3.9232254 parent: 21002 + - uid: 30848 + components: + - type: Transform + pos: -24.617859,-39.4461 + parent: 2 + - type: Storage + storedItems: + 30849: + position: 0,0 + _rotation: South + 30850: + position: 1,0 + _rotation: South + 30851: + position: 2,0 + _rotation: South + 30852: + position: 3,0 + _rotation: South + 30853: + position: 4,0 + _rotation: South + 30854: + position: 5,0 + _rotation: South + 30855: + position: 6,0 + _rotation: South + 30856: + position: 7,0 + _rotation: South + 30857: + position: 0,1 + _rotation: South + 30858: + position: 1,1 + _rotation: South + 30859: + position: 2,1 + _rotation: South + 30860: + position: 3,1 + _rotation: South + 30861: + position: 4,1 + _rotation: South + 30862: + position: 7,1 + _rotation: South + 30863: + position: 0,2 + _rotation: South + 30864: + position: 1,2 + _rotation: South + 30865: + position: 2,2 + _rotation: South + 30866: + position: 3,2 + _rotation: South + 30867: + position: 4,2 + _rotation: South + 30868: + position: 5,2 + _rotation: South + 30869: + position: 6,2 + _rotation: South + 30870: + position: 2,3 + _rotation: South + 30871: + position: 3,3 + _rotation: South + 30872: + position: 4,3 + _rotation: South + 30873: + position: 5,3 + _rotation: South + 30874: + position: 7,3 + _rotation: South + 30875: + position: 0,4 + _rotation: South + 30876: + position: 1,4 + _rotation: South + 30877: + position: 6,4 + _rotation: South + 30878: + position: 2,5 + _rotation: East + 30879: + position: 7,5 + _rotation: South + 30880: + position: 4,5 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 30849 + - 30850 + - 30851 + - 30852 + - 30853 + - 30854 + - 30855 + - 30856 + - 30857 + - 30858 + - 30859 + - 30860 + - 30861 + - 30862 + - 30863 + - 30864 + - 30865 + - 30866 + - 30867 + - 30868 + - 30869 + - 30870 + - 30871 + - 30872 + - 30873 + - 30874 + - 30875 + - 30876 + - 30877 + - 30878 + - 30879 + - 30880 + - uid: 30883 + components: + - type: Transform + pos: -26.711609,-40.050266 + parent: 2 + - type: Storage + storedItems: + 30884: + position: 0,0 + _rotation: South + 30885: + position: 1,0 + _rotation: South + 30886: + position: 2,0 + _rotation: South + 30887: + position: 3,0 + _rotation: South + 30888: + position: 4,0 + _rotation: South + 30889: + position: 5,0 + _rotation: South + 30890: + position: 6,0 + _rotation: South + 30891: + position: 7,0 + _rotation: South + 30892: + position: 2,1 + _rotation: South + 30893: + position: 3,1 + _rotation: South + 30894: + position: 4,1 + _rotation: South + 30895: + position: 5,1 + _rotation: South + 30896: + position: 6,1 + _rotation: South + 30897: + position: 7,1 + _rotation: South + 30898: + position: 0,2 + _rotation: South + 30899: + position: 1,2 + _rotation: South + 30900: + position: 2,2 + _rotation: South + 30901: + position: 3,2 + _rotation: South + 30902: + position: 4,2 + _rotation: South + 30903: + position: 5,2 + _rotation: South + 30904: + position: 6,2 + _rotation: South + 30905: + position: 7,2 + _rotation: South + 30906: + position: 0,3 + _rotation: South + 30907: + position: 1,3 + _rotation: South + 30908: + position: 6,3 + _rotation: South + 30909: + position: 7,3 + _rotation: South + 30910: + position: 2,4 + _rotation: South + 30911: + position: 3,4 + _rotation: South + 30912: + position: 4,4 + _rotation: South + 30913: + position: 7,4 + _rotation: East + 30914: + position: 0,5 + _rotation: South + 30915: + position: 1,5 + _rotation: South + 30916: + position: 3,5 + _rotation: South + 30917: + position: 4,5 + _rotation: East + 30918: + position: 6,5 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 30884 + - 30885 + - 30886 + - 30887 + - 30888 + - 30889 + - 30890 + - 30891 + - 30892 + - 30893 + - 30894 + - 30895 + - 30896 + - 30897 + - 30898 + - 30899 + - 30900 + - 30901 + - 30902 + - 30903 + - 30904 + - 30905 + - 30906 + - 30907 + - 30908 + - 30909 + - 30910 + - 30911 + - 30912 + - 30913 + - 30914 + - 30915 + - 30916 + - 30917 + - 30918 - proto: TrashBananaPeel entities: - uid: 3484 @@ -178825,6 +182842,12 @@ entities: - type: Transform pos: 13.830492,29.010149 parent: 2 + - uid: 30917 + components: + - type: Transform + parent: 30883 + - type: Physics + canCollide: False - proto: TrashCherryPit entities: - uid: 4046 @@ -178877,6 +182900,11 @@ entities: - type: Transform pos: -32.484524,43.639366 parent: 2 + - uid: 31126 + components: + - type: Transform + pos: 50.31656,14.556666 + parent: 2 - proto: TreasureCoinIron entities: - uid: 3752 @@ -179878,12 +183906,16 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1469 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: VendingMachineWinter entities: - uid: 11934 @@ -179918,29 +183950,39 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4329 components: - type: Transform pos: 40.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9895 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11386 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23602 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelescreenFrame entities: - uid: 2379 @@ -179948,6 +183990,8 @@ entities: - type: Transform pos: 25.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelevision entities: - uid: 3581 @@ -179955,56 +183999,76 @@ entities: - type: Transform pos: 3.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3582 components: - type: Transform pos: 27.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3583 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3585 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3587 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5408 components: - type: Transform pos: 48.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5420 components: - type: Transform pos: -18.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9936 components: - type: Transform pos: 7.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19457 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20658 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 3 @@ -181669,12 +185733,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,16.5 parent: 2 - - uid: 2364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,21.5 - parent: 2 - uid: 2374 components: - type: Transform @@ -182557,26 +186615,6 @@ entities: - type: Transform pos: 45.5,19.5 parent: 2 - - uid: 3194 - components: - - type: Transform - pos: 45.5,20.5 - parent: 2 - - uid: 3195 - components: - - type: Transform - pos: 45.5,21.5 - parent: 2 - - uid: 3196 - components: - - type: Transform - pos: 45.5,22.5 - parent: 2 - - uid: 3197 - components: - - type: Transform - pos: 45.5,23.5 - parent: 2 - uid: 3198 components: - type: Transform @@ -182602,21 +186640,6 @@ entities: - type: Transform pos: 38.5,23.5 parent: 2 - - uid: 3207 - components: - - type: Transform - pos: 45.5,24.5 - parent: 2 - - uid: 3208 - components: - - type: Transform - pos: 45.5,25.5 - parent: 2 - - uid: 3210 - components: - - type: Transform - pos: 45.5,27.5 - parent: 2 - uid: 3211 components: - type: Transform @@ -183985,12 +188008,24 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,-44.5 parent: 2 + - uid: 5219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,27.5 + parent: 2 - uid: 5221 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,28.5 parent: 2 + - uid: 5222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,13.5 + parent: 2 - uid: 5223 components: - type: Transform @@ -184716,18 +188751,6 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,35.5 parent: 2 - - uid: 6541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,25.5 - parent: 2 - - uid: 6543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,27.5 - parent: 2 - uid: 6544 components: - type: Transform @@ -184740,12 +188763,6 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,28.5 parent: 2 - - uid: 6547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,29.5 - parent: 2 - uid: 6548 components: - type: Transform @@ -185069,21 +189086,6 @@ entities: - type: Transform pos: 32.5,55.5 parent: 2 - - uid: 6812 - components: - - type: Transform - pos: 37.5,48.5 - parent: 2 - - uid: 6813 - components: - - type: Transform - pos: 37.5,50.5 - parent: 2 - - uid: 6814 - components: - - type: Transform - pos: 37.5,51.5 - parent: 2 - uid: 6815 components: - type: Transform @@ -188289,24 +192291,6 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,9.5 parent: 2 - - uid: 10958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,9.5 - parent: 2 - - uid: 10959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,9.5 - parent: 2 - - uid: 10960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,9.5 - parent: 2 - uid: 10961 components: - type: Transform @@ -189108,182 +193092,151 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-42.5 parent: 2 + - uid: 12699 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - uid: 12700 + components: + - type: Transform + pos: 58.5,28.5 + parent: 2 + - uid: 12701 + components: + - type: Transform + pos: 60.5,28.5 + parent: 2 + - uid: 12702 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 - uid: 12703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,25.5 + pos: 61.5,28.5 parent: 2 - - uid: 12704 + - uid: 12707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,25.5 + pos: 54.5,26.5 parent: 2 - - uid: 12706 + - uid: 12712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,25.5 + pos: 52.5,26.5 parent: 2 - - uid: 12709 + - uid: 12713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,21.5 + pos: 50.5,26.5 parent: 2 - uid: 12714 components: - type: Transform - pos: 56.5,18.5 + pos: 51.5,26.5 parent: 2 - - uid: 12716 + - uid: 12715 components: - type: Transform - pos: 57.5,13.5 + pos: 53.5,26.5 parent: 2 - uid: 12718 components: - type: Transform - pos: 56.5,14.5 + pos: 49.5,26.5 parent: 2 - - uid: 12732 + - uid: 12719 components: - type: Transform - pos: 47.5,12.5 + pos: 61.5,26.5 parent: 2 - - uid: 12733 + - uid: 12720 components: - type: Transform - pos: 47.5,13.5 + pos: 59.5,26.5 parent: 2 - - uid: 12734 + - uid: 12721 components: - type: Transform - pos: 47.5,14.5 + pos: 60.5,26.5 parent: 2 - - uid: 12735 + - uid: 12722 components: - type: Transform - pos: 47.5,15.5 + pos: 57.5,26.5 parent: 2 - - uid: 12736 + - uid: 12723 components: - type: Transform - pos: 47.5,16.5 + pos: 58.5,26.5 parent: 2 - - uid: 12737 - components: - - type: Transform - pos: 47.5,17.5 - parent: 2 - - uid: 12738 - components: - - type: Transform - pos: 47.5,18.5 - parent: 2 - - uid: 12739 - components: - - type: Transform - pos: 47.5,19.5 - parent: 2 - - uid: 12740 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - - uid: 12742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,25.5 - parent: 2 - - uid: 12743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,25.5 - parent: 2 - - uid: 12744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,25.5 - parent: 2 - - uid: 12749 - components: - - type: Transform - pos: 55.5,19.5 - parent: 2 - - uid: 12750 - components: - - type: Transform - pos: 55.5,18.5 - parent: 2 - - uid: 12751 - components: - - type: Transform - pos: 57.5,12.5 - parent: 2 - - uid: 12752 - components: - - type: Transform - pos: 57.5,14.5 - parent: 2 - - uid: 12754 - components: - - type: Transform - pos: 55.5,14.5 - parent: 2 - - uid: 12755 - components: - - type: Transform - pos: 55.5,13.5 - parent: 2 - - uid: 12756 - components: - - type: Transform - pos: 55.5,12.5 - parent: 2 - - uid: 12757 - components: - - type: Transform - pos: 54.5,12.5 - parent: 2 - - uid: 12758 - components: - - type: Transform - pos: 53.5,12.5 - parent: 2 - - uid: 12759 - components: - - type: Transform - pos: 52.5,12.5 - parent: 2 - - uid: 12760 - components: - - type: Transform - pos: 51.5,12.5 - parent: 2 - - uid: 12761 - components: - - type: Transform - pos: 50.5,12.5 - parent: 2 - - uid: 12762 + - uid: 12724 components: - type: Transform pos: 49.5,12.5 parent: 2 + - uid: 12725 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + pos: 51.5,12.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + pos: 56.5,12.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + pos: 57.5,12.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 + - uid: 12755 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 - uid: 12763 components: - type: Transform - pos: 48.5,12.5 + pos: 64.5,26.5 parent: 2 - uid: 12764 components: - type: Transform - pos: 57.5,11.5 + pos: 56.5,26.5 parent: 2 - uid: 12765 components: @@ -189318,161 +193271,55 @@ entities: - uid: 12771 components: - type: Transform - pos: 57.5,18.5 + pos: 55.5,26.5 parent: 2 - uid: 12772 components: - type: Transform - pos: 57.5,19.5 + pos: 64.5,27.5 parent: 2 - uid: 12773 components: - type: Transform - pos: 57.5,20.5 - parent: 2 - - uid: 12775 - components: - - type: Transform - pos: 57.5,22.5 - parent: 2 - - uid: 12776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,23.5 - parent: 2 - - uid: 12777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,25.5 - parent: 2 - - uid: 12778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,25.5 + pos: 64.5,28.5 parent: 2 - uid: 12779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,25.5 + pos: 63.5,28.5 parent: 2 - uid: 12780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,25.5 + pos: 62.5,28.5 parent: 2 - uid: 12782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,25.5 - parent: 2 - - uid: 12783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,20.5 + rot: 1.5707963267948966 rad + pos: 47.5,17.5 parent: 2 - uid: 12784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,22.5 + rot: 1.5707963267948966 rad + pos: 47.5,15.5 parent: 2 - uid: 12790 components: - type: Transform - pos: 51.5,15.5 - parent: 2 - - uid: 12791 - components: - - type: Transform - pos: 51.5,17.5 - parent: 2 - - uid: 12792 - components: - - type: Transform - pos: 52.5,16.5 - parent: 2 - - uid: 12793 - components: - - type: Transform - pos: 52.5,15.5 - parent: 2 - - uid: 12794 - components: - - type: Transform - pos: 52.5,17.5 - parent: 2 - - uid: 12805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,23.5 - parent: 2 - - uid: 12806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,23.5 - parent: 2 - - uid: 12807 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,23.5 - parent: 2 - - uid: 12808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,23.5 - parent: 2 - - uid: 12809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,23.5 + pos: 48.5,12.5 parent: 2 - uid: 12810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,23.5 - parent: 2 - - uid: 12811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,23.5 - parent: 2 - - uid: 12812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,23.5 - parent: 2 - - uid: 12813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,23.5 - parent: 2 - - uid: 12814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,22.5 + pos: 50.5,12.5 parent: 2 - uid: 12815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,21.5 + rot: 1.5707963267948966 rad + pos: 47.5,16.5 parent: 2 - uid: 12819 components: @@ -189480,6 +193327,18 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-10.5 parent: 2 + - uid: 12839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,14.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,12.5 + parent: 2 - uid: 12844 components: - type: Transform @@ -189504,75 +193363,89 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-47.5 parent: 2 + - uid: 12865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,19.5 + parent: 2 + - uid: 12891 + components: + - type: Transform + pos: 55.5,28.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,23.5 + parent: 2 + - uid: 12904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,21.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,17.5 + parent: 2 + - uid: 12917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,18.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,22.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + pos: 63.5,12.5 + parent: 2 + - uid: 12927 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 12932 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 - uid: 12940 components: - type: Transform - pos: 58.5,20.5 + rot: 1.5707963267948966 rad + pos: 55.5,21.5 parent: 2 - uid: 12941 components: - type: Transform - pos: 59.5,20.5 - parent: 2 - - uid: 12943 - components: - - type: Transform - pos: 61.5,20.5 - parent: 2 - - uid: 12944 - components: - - type: Transform - pos: 62.5,20.5 - parent: 2 - - uid: 12945 - components: - - type: Transform - pos: 62.5,19.5 - parent: 2 - - uid: 12946 - components: - - type: Transform - pos: 62.5,18.5 - parent: 2 - - uid: 12947 - components: - - type: Transform - pos: 62.5,17.5 - parent: 2 - - uid: 12948 - components: - - type: Transform - pos: 62.5,16.5 - parent: 2 - - uid: 12949 - components: - - type: Transform - pos: 62.5,15.5 - parent: 2 - - uid: 12950 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 12951 - components: - - type: Transform - pos: 62.5,13.5 - parent: 2 - - uid: 12952 - components: - - type: Transform - pos: 62.5,12.5 + rot: 1.5707963267948966 rad + pos: 54.5,21.5 parent: 2 - uid: 12953 components: - type: Transform - pos: 62.5,11.5 + pos: 38.5,51.5 parent: 2 - - uid: 12954 + - uid: 12957 components: - type: Transform - pos: 62.5,10.5 + pos: 62.5,16.5 parent: 2 - uid: 12986 components: @@ -189596,17 +193469,56 @@ entities: - type: Transform pos: 59.5,10.5 parent: 2 + - uid: 13006 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + pos: 62.5,22.5 + parent: 2 + - uid: 13014 + components: + - type: Transform + pos: 62.5,26.5 + parent: 2 + - uid: 13015 + components: + - type: Transform + pos: 62.5,25.5 + parent: 2 - uid: 13017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,27.5 + pos: 62.5,24.5 parent: 2 - - uid: 13021 + - uid: 13020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,27.5 + pos: 62.5,23.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + pos: 62.5,15.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,21.5 + parent: 2 + - uid: 13064 + components: + - type: Transform + pos: 62.5,12.5 parent: 2 - uid: 13067 components: @@ -189717,6 +193629,11 @@ entities: - type: Transform pos: 30.5,31.5 parent: 2 + - uid: 13747 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 - uid: 13960 components: - type: Transform @@ -189786,12 +193703,6 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-3.5 parent: 2 - - uid: 14683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,25.5 - parent: 2 - uid: 14805 components: - type: Transform @@ -189864,6 +193775,11 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,48.5 parent: 2 + - uid: 17129 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 - uid: 17215 components: - type: Transform @@ -189911,6 +193827,26 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-20.5 parent: 2 + - uid: 17437 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 17440 + components: + - type: Transform + pos: 62.5,21.5 + parent: 2 + - uid: 17455 + components: + - type: Transform + pos: 62.5,17.5 + parent: 2 + - uid: 17456 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 - uid: 18052 components: - type: Transform @@ -190010,6 +193946,11 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,9.5 parent: 2 + - uid: 18370 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 - uid: 18406 components: - type: Transform @@ -190022,6 +193963,18 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-79.5 parent: 2 + - uid: 18410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,24.5 + parent: 2 + - uid: 18424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,22.5 + parent: 2 - uid: 18628 components: - type: Transform @@ -190046,6 +193999,12 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-50.5 parent: 2 + - uid: 18930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,28.5 + parent: 2 - uid: 19043 components: - type: Transform @@ -190194,18 +194153,63 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-81.5 parent: 2 + - uid: 20259 + components: + - type: Transform + pos: 56.5,28.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,31.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,31.5 + parent: 2 - uid: 20273 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,28.5 parent: 2 + - uid: 20488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,21.5 + parent: 2 + - uid: 20495 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 20500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,21.5 + parent: 2 - uid: 20610 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-8.5 parent: 2 + - uid: 20646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,19.5 + parent: 2 - uid: 20659 components: - type: Transform @@ -191309,6 +195313,12 @@ entities: rot: 3.141592653589793 rad pos: -0.5,44.5 parent: 2 + - uid: 23759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,25.5 + parent: 2 - uid: 23783 components: - type: Transform @@ -192513,61 +196523,26 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-20.5 parent: 2 - - uid: 29293 + - uid: 29196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,25.5 + rot: 1.5707963267948966 rad + pos: 46.5,20.5 parent: 2 - uid: 29294 components: - type: Transform pos: -15.5,-61.5 parent: 2 - - uid: 29300 + - uid: 29297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,22.5 + pos: 38.5,48.5 parent: 2 - - uid: 29301 + - uid: 29298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,23.5 - parent: 2 - - uid: 29302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,23.5 - parent: 2 - - uid: 29303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,23.5 - parent: 2 - - uid: 29304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,23.5 - parent: 2 - - uid: 29309 - components: - - type: Transform - pos: 63.5,10.5 - parent: 2 - - uid: 29310 - components: - - type: Transform - pos: 64.5,10.5 - parent: 2 - - uid: 29311 - components: - - type: Transform - pos: 64.5,11.5 + pos: 38.5,50.5 parent: 2 - uid: 29312 components: @@ -192624,17 +196599,17 @@ entities: - type: Transform pos: 64.5,22.5 parent: 2 - - uid: 29323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,23.5 - parent: 2 - uid: 29334 components: - type: Transform pos: 63.5,6.5 parent: 2 + - uid: 29339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,22.5 + parent: 2 - uid: 29348 components: - type: Transform @@ -192650,30 +196625,12 @@ entities: - type: Transform pos: 63.5,5.5 parent: 2 - - uid: 29413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,25.5 - parent: 2 - - uid: 29415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,25.5 - parent: 2 - uid: 29421 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,25.5 parent: 2 - - uid: 29422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,25.5 - parent: 2 - uid: 29423 components: - type: Transform @@ -192686,17 +196643,23 @@ entities: rot: 3.141592653589793 rad pos: 64.5,23.5 parent: 2 - - uid: 29425 + - uid: 29438 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,25.5 + pos: 48.5,20.5 parent: 2 - - uid: 29431 + - uid: 29453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,21.5 + rot: 1.5707963267948966 rad + pos: 46.5,25.5 + parent: 2 + - uid: 29454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,24.5 parent: 2 - uid: 29481 components: @@ -192709,6 +196672,12 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-9.5 parent: 2 + - uid: 29577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 - uid: 29593 components: - type: Transform @@ -192725,6 +196694,18 @@ entities: - type: Transform pos: -14.5,-60.5 parent: 2 + - uid: 29833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,26.5 + parent: 2 + - uid: 29865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,22.5 + parent: 2 - uid: 29962 components: - type: Transform @@ -192802,6 +196783,18 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,24.5 parent: 2 + - uid: 31131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 21002 + - uid: 31132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 21002 - proto: WallReinforcedRust entities: - uid: 24425 @@ -195984,11 +199977,6 @@ entities: - type: Transform pos: 45.5,32.5 parent: 2 - - uid: 9739 - components: - - type: Transform - pos: 45.5,31.5 - parent: 2 - uid: 9750 components: - type: Transform @@ -196958,6 +200946,12 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-52.5 parent: 2 + - uid: 13029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,26.5 + parent: 2 - uid: 13033 components: - type: Transform @@ -197128,11 +201122,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,33.5 parent: 2 - - uid: 17129 - components: - - type: Transform - pos: 44.5,24.5 - parent: 2 - uid: 17434 components: - type: Transform @@ -197540,6 +201529,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-44.5 parent: 2 + - uid: 29195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,27.5 + parent: 2 - uid: 29369 components: - type: Transform @@ -198437,22 +202432,30 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28304 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,5.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28505 components: - type: Transform pos: 5.5,-0.5 parent: 21002 + - type: Fixtures + fixtures: {} - uid: 28552 components: - type: Transform pos: -25.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningCO2 entities: - uid: 8912 @@ -198461,6 +202464,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 8913 @@ -198469,12 +202474,16 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28302 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: WarningN2O entities: - uid: 8914 @@ -198483,6 +202492,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 8915 @@ -198491,12 +202502,16 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 28303 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-12.5 parent: 21002 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 6196 @@ -198505,6 +202520,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningTritium entities: - uid: 8920 @@ -198513,6 +202530,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 8699 @@ -198521,18 +202540,24 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8938 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9479 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 593 @@ -198735,6 +202760,11 @@ entities: - type: Transform pos: 43.5,-35.5 parent: 2 + - uid: 31112 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 - proto: WeaponDisabler entities: - uid: 28507 @@ -198763,14 +202793,159 @@ entities: - type: Transform pos: 48.66992,-38.664413 parent: 2 +- proto: WeaponEnergyTurretAI + entities: + - uid: 17458 + components: + - type: Transform + pos: 60.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12911 + - uid: 24379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12911 + - uid: 30245 + components: + - type: Transform + pos: 63.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18428 + - 3208 + - uid: 31109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12911 + - uid: 31110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12911 +- proto: WeaponEnergyTurretAIControlPanel + entities: + - uid: 3208 + components: + - type: MetaData + name: AI bridge turret control + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 30245 + - uid: 12911 + components: + - type: MetaData + name: AI turret control + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 17458 + - 24379 + - 31109 + - 31110 + - uid: 18428 + components: + - type: MetaData + name: AI bridge turret + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 30245 - proto: WeaponEnergyTurretSecurity entities: + - uid: 21076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12903 - uid: 30411 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 21002 + - type: DeviceNetwork + deviceLists: + - 31093 + - 31090 + - 31091 + - 31092 +- proto: WeaponEnergyTurretSecurityControlPanel + entities: + - uid: 12903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 21076 + - uid: 31090 + components: + - type: Transform + pos: -0.5,2.5 + parent: 21002 + - type: DeviceList + devices: + - 30411 + - uid: 31091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 21002 + - type: DeviceList + devices: + - 30411 + - uid: 31092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 21002 + - type: DeviceList + devices: + - 30411 + - uid: 31093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 21002 + - type: DeviceList + devices: + - 30411 - proto: WeaponGrapplingGun entities: - uid: 10217 @@ -198909,38 +203084,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.421173,-41.240723 parent: 2 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 20501 - components: - - type: Transform - pos: 63.5,8.5 - parent: 2 - - uid: 28812 - components: - - type: Transform - pos: 48.5,22.5 - parent: 2 - - uid: 28813 - components: - - type: Transform - pos: 48.5,13.5 - parent: 2 - - uid: 28814 - components: - - type: Transform - pos: 48.5,18.5 - parent: 2 - - uid: 29833 - components: - - type: Transform - pos: 54.5,13.5 - parent: 2 - - uid: 30245 - components: - - type: Transform - pos: 54.5,22.5 - parent: 2 - proto: WeldingFuelTankFull entities: - uid: 4298 @@ -199216,17 +203359,6 @@ entities: parent: 2 - proto: WindoorSecureCommandLocked entities: - - uid: 12796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,16.5 - parent: 2 - - uid: 12841 - components: - - type: Transform - pos: 51.5,21.5 - parent: 2 - uid: 30289 components: - type: Transform @@ -200564,16 +204696,6 @@ entities: - type: Transform pos: 7.5,2.5 parent: 21002 - - uid: 21060 - components: - - type: Transform - pos: 2.5,4.5 - parent: 21002 - - uid: 21061 - components: - - type: Transform - pos: 3.5,4.5 - parent: 21002 - uid: 22277 components: - type: Transform @@ -200705,7 +204827,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -660121.25 + secondsUntilStateChange: -685379.4 state: Opening - uid: 28863 components: From 9d32e7db4ea8a5d5f35cc5f0dcf9980159b14ca0 Mon Sep 17 00:00:00 2001 From: John <50085876+AreYouConfused@users.noreply.github.com> Date: Sun, 17 Aug 2025 18:59:22 -0400 Subject: [PATCH 041/194] Atmos Firesuit Vox sprites (#39705) --- .../equipped-OUTERCLOTHING-vox.png | Bin 0 -> 2029 bytes .../Suits/atmos_firesuit.rsi/meta.json | 6 +++++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-vox.png diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 0000000000000000000000000000000000000000..c093278ad392afca58836db5215e02ac5117a045 GIT binary patch literal 2029 zcmVz@;j|==^1poj5AY({UO#lFTCIA3{ga82g0001h=l}q9FaQARU;qF* zm;eA5aGbhPJOBUy24YJ`L;(K){{a7>y{D4^000SaNLh0L01m?d01m?e$8V@)00007 zbV*G`2k8hA4=XZ|v2XqI9j;#7T#=+k}cSxQS^f z%|gQ>0wuJ991JbJH3wk=q5TEQsYt(|C6~~Hj-`bh3J!!`jMBmef)j<9cu|{pNtjXx z30JNYId-Q9dnU6h$=0rS4Q=&-iFP%b@4Ywgy_tRc0t_&~00Rs#zyJgMPoe$W1kUAh zyw`WLv$KKq845C(Qp$JpeN@Ub#yb9XGS03%AeYN=K|%=WYUzH)>=vqlk6*qh??1j; zk)IvM(IPhhrIZsw&`UwT@{F;-g7l-fs&w&KQGPBzEq55BUw*A0^5d5;!nr+47)68Q47A3DCDF4DgEwVlY<$QUYL z{EYI`GTPT~0sykvEC8Tdt-`V_06@K72LPm|&ZBs&h>PExMUpM;$_U*&Z)|J~0I`&-(h`Dt;*Lo$$(C^Oo3qm848!P9UcIj>A2oz>s`Bc!>W%#(vE7%ZX#xOj z+eZ0m8H`o%)fcl{2B7%-qi;LhuKcu&B&*2ZI*t=c+0&;_^WouPWV2b1V*ZsE*M6f2 zFFknhAfKC?(*lP8rIeed3Ds?{n0U~+O&#=hSu^Yiln0RQi{hI+j&4GRFZS`CwvlU^kf3DjyeIi^~zf)FCTAan=_CDI!Wk5N?N zx*@&M!0NtH?A8cEd9eV55S~hs!v|6pe3((U5>5T?1oTd1q`6ul8S9`IT zxKt|1u~)8K@$T6h4V)WK;>gG_e*8IH4oGh_@cz-)&>Bv{p8s9)x7%%;IB^22tE;cZ zrqg)z=n-^Xhpy{9z0rU<@jCPaE&TMP5#9ryzjy(A{&(E{^_fQLsN9kWAyR2V2-N$G zG2H$2nFfG=_+D~X9?*Ke)|EeaQYlPKOl;;Iu~jFNn46pP7@=SOo?ndWDc)$cwNX9A50ke%lZz~?o&`kW z5h3!7EkgXh(P{@aKsSCN!}9Vn#>dC8fB$~GeEAX!3k%3(GM=2%FMnbuK^m>Lc9_5u z|6)t>e^vzuqx4Sv>Pc{6VFAfx5^HN~$Ye6|zL23`{={~~>b2_X*=*LMxMf+M9U%%s zbmJcz8$%|Ok@uFDm!WU*9) zD5YE+G!&y~gb+^=Lf7?3ABFvo#Fk}YW@e^?KcCM_uMEQ9cSXo?94(*EgHj4gDRfUaH~e2nVErQS%LWzK?VzQapDq!wOTE{weqpn1MBsA2mjW;T-WuU zC(}qgpin4qN@>p+BZPobibA0fOI=W{I&GJyg4PB5au-4f7nbi8<041+S11ao{K~3# zj1l1wHU9tu3^2d|0}L?0e-fciOX8K4Kpby^`#m13$KWszVu`TizWM;)OG607qo_fI zdSm0ir@kPK+X%T_j;k+cyFE6?<^keWIq>RLm@0^6SzwIuxM~8FQtmIui6_z2)cMVe ztCc|ffkQyNB`!~uaU7cs38FmKZAGGn;1HZ*L4;h>pz-E_>Eb5AwQ@MZs38?E()e?L zKl?MrpmuLe7b&il9ppZZr~7R7dvL*_a{6V8H3S5SUx3XRtZen`6k}QK&ABVGTSa+s zD#IcuhQcaunkF>um7$N`c_@=(To7{$E&$LpO*UhM*$#)o2to*f>$>2a%SMR3hG7^W zgn)An*L6d!e&7&r97m&+b`&SoMvA?FZQC7jANCv&$^*`gCvoh+UpP0Ol%1NTQVFF} z35+pZx^Ob`%J8KNC%K=8G3Jpab`OwNcAKEa2#$;lgOL3&48zkTab#pT@>SoQ^O@uk z{YytiUP_sOgYo77(KyvyX~S`wxOH#Q6aOL^-MY6JxdFtSfxJ@)y+AvKs zaKG|USb_dNltpu;4cB#H+qR5N0BEkXBR7DUQ{{497tNJ6{yvlqJ?~J^)xZDC4P@SU zry~IoLOiPz7fjQX2~bUbnK$0S{akV2TI|7Sq7%Ehg`DueLE+1Xi-OtBV3wmWa{<#E_B3{S_Zs7CGCvw*0_sl5QM z>&Dg_prTMHa8>z2p}_m;3688LC>j;IoyAqRjH@2l>+x5}6qNfPIFop*rXDE@00000 LNkvXXu0mjfqZ`Do literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json index cdebd4fdca..c5378f202f 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/atmos_firesuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by @Aisfae(facebook).", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/blob/master/icons/mob/clothing/suit.dmi. equipped-OUTERCLOTHING-dog modified from equipped-OUTERCLOTHING by @Aisfae(facebook). Vox Sprite taken from https://github.com/ParadiseSS13/Paradise/blob/980bbb489d27baa168d30d044d573d017845015b/icons/mob/clothing/species/vox/suit.dmi modified by @areyouconfused(github)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-dog", "directions": 4 From e16bca5b181c4d72070513f675cd0d320f7b04ff Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Mon, 18 Aug 2025 01:47:26 +0200 Subject: [PATCH 042/194] Hand pickup and drop triggers (#39663) --- .../TriggerOnDidEquipHandComponent.cs | 10 +++ .../TriggerOnDidUnequipHandComponent.cs | 10 +++ .../Triggers/TriggerOnDroppedComponent.cs | 10 +++ .../TriggerOnGotEquippedHandComponent.cs | 10 +++ .../TriggerOnGotUnequippedHandComponent.cs | 10 +++ .../Trigger/Systems/HandTriggerSystem.cs | 64 +++++++++++++++++++ 6 files changed, 114 insertions(+) create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipHandComponent.cs create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipHandComponent.cs create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnDroppedComponent.cs create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedHandComponent.cs create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedHandComponent.cs create mode 100644 Content.Shared/Trigger/Systems/HandTriggerSystem.cs diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipHandComponent.cs new file mode 100644 index 0000000000..d598db6d93 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidEquipHandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it is equips an item into one of its hand slots. +/// The user is the entity that was equipped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDidEquipHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipHandComponent.cs new file mode 100644 index 0000000000..5c3d2da018 --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDidUnequipHandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it is drops an item from one of its hand slots. +/// The user is the entity that was dropped. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDidUnequipHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnDroppedComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnDroppedComponent.cs new file mode 100644 index 0000000000..6e06216a2c --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnDroppedComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity when it is dropped from a users hands, or directly removed from a users inventory, but not when moved between hands & inventory. +/// The user is the player that was holding or wearing the item. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnDroppedComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedHandComponent.cs new file mode 100644 index 0000000000..24c2d4231c --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotEquippedHandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an item when it is equipped into a hand slot. +/// The user is the entity that picked the item up. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotEquippedHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedHandComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedHandComponent.cs new file mode 100644 index 0000000000..624c1a141b --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnGotUnequippedHandComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an item when it is dropped from a hand slot. +/// The user is the entity that dropped the item. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnGotUnequippedHandComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Systems/HandTriggerSystem.cs b/Content.Shared/Trigger/Systems/HandTriggerSystem.cs new file mode 100644 index 0000000000..8001d5d92f --- /dev/null +++ b/Content.Shared/Trigger/Systems/HandTriggerSystem.cs @@ -0,0 +1,64 @@ +using Content.Shared.Hands; +using Content.Shared.Interaction.Events; +using Content.Shared.Trigger.Components.Triggers; +using Robust.Shared.Timing; + +namespace Content.Shared.Trigger.Systems; + +public sealed partial class HandTriggerSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly TriggerSystem _trigger = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGotEquipped); + SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnDidEquip); + SubscribeLocalEvent(OnDidUnequip); + SubscribeLocalEvent(OnDropped); + } + + private void OnGotEquipped(Entity ent, ref GotEquippedHandEvent args) + { + // If the entity was equipped on the server (without prediction) then the container change is networked to the client + // which will raise the same event, but the effect of the trigger is already networked on its own. So this guard statement + // prevents triggering twice on the client. + if (_timing.ApplyingState) + return; + + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } + + private void OnGotUnequipped(Entity ent, ref GotUnequippedHandEvent args) + { + if (_timing.ApplyingState) + return; + + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } + + private void OnDidEquip(Entity ent, ref DidEquipHandEvent args) + { + if (_timing.ApplyingState) + return; + + _trigger.Trigger(ent.Owner, args.Equipped, ent.Comp.KeyOut); + } + + private void OnDidUnequip(Entity ent, ref DidUnequipHandEvent args) + { + if (_timing.ApplyingState) + return; + + _trigger.Trigger(ent.Owner, args.Unequipped, ent.Comp.KeyOut); + } + + private void OnDropped(Entity ent, ref DroppedEvent args) + { + // We don't need the guard statement here because this one is not a container event, but raised directly when interacting. + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } +} From d9f125787e64e5931ed210083611bc0210311089 Mon Sep 17 00:00:00 2001 From: BadaBoomie Date: Sun, 17 Aug 2025 16:51:36 -0700 Subject: [PATCH 043/194] Teaches tacos how to spell (#39717) --- .../Prototypes/Entities/Objects/Consumable/Food/taco.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml index d715704770..d680d16765 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/taco.yml @@ -132,7 +132,7 @@ name: beef taco supreme parent: FoodTacoBase id: FoodTacoBeefSupreme - description: It's like a regular beef taco, but surpeme! + description: It's like a regular beef taco, but supreme! components: - type: Food - type: Sprite @@ -151,7 +151,7 @@ name: chicken taco supreme parent: FoodTacoBase id: FoodTacoChickenSupreme - description: It's like a regular chicken taco, but surpeme! + description: It's like a regular chicken taco, but supreme! components: - type: Food - type: Sprite From c59f7a53633f69eb091fe43aa05cda705e189257 Mon Sep 17 00:00:00 2001 From: psykana <36602558+psykana@users.noreply.github.com> Date: Mon, 18 Aug 2025 01:25:26 +0100 Subject: [PATCH 044/194] Fix ninja spawning with jetpack internals (#35067) Remove redundant StartingGearEquippedEvent --- Content.Shared/Clothing/LoadoutSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Clothing/LoadoutSystem.cs b/Content.Shared/Clothing/LoadoutSystem.cs index 93b0abfd82..08b4f5f763 100644 --- a/Content.Shared/Clothing/LoadoutSystem.cs +++ b/Content.Shared/Clothing/LoadoutSystem.cs @@ -150,7 +150,7 @@ public sealed class LoadoutSystem : EntitySystem { // First, randomly pick a startingGear profile from those specified, and equip it. if (startingGear != null && startingGear.Count > 0) - _station.EquipStartingGear(uid, _random.Pick(startingGear)); + _station.EquipStartingGear(uid, _random.Pick(startingGear), false); if (loadoutGroups == null) { From ba44a88f075f4f6c44098357b449256d79f5ba6f Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 18 Aug 2025 00:26:34 +0000 Subject: [PATCH 045/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3f51b6da45..9d64d3a4ad 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: chromiumboy - changes: - - message: Ghosts will now follow the AI when it activates a holopad or answers - a holo-call - type: Fix - id: 8348 - time: '2025-04-25T10:30:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36355 - author: Radezolid changes: - message: Fixed some donuts not counting towards the donuts bounty for cargo. @@ -3954,3 +3946,10 @@ id: 8860 time: '2025-08-17T19:30:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/37953 +- author: psykana + changes: + - message: Ninja now spawns breathing from his gas tank instead of jetpack + type: Fix + id: 8861 + time: '2025-08-18T00:25:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35067 From 1bed929298f0ac87a449cf2449e3a9748f782b54 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Sun, 17 Aug 2025 19:52:27 -0700 Subject: [PATCH 046/194] Add new nukeops spawners! (#39088) --- .../Markers/Spawners/nuke_ops_spawners.yml | 243 ++++++++++++++++++ 1 file changed, 243 insertions(+) create mode 100644 Resources/Prototypes/Entities/Markers/Spawners/nuke_ops_spawners.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/nuke_ops_spawners.yml b/Resources/Prototypes/Entities/Markers/Spawners/nuke_ops_spawners.yml new file mode 100644 index 0000000000..60f6a3a118 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/nuke_ops_spawners.yml @@ -0,0 +1,243 @@ +# Tables + +- type: entityTable + id: NukeOpsLootTable + table: !type:GroupSelector + children: + - !type:NestedSelector + tableId: NukeOpsUplinkLootTable + weight: 6.25 + - !type:NestedSelector + tableId: NukeOpsWeaponsTable + weight: 0.25 + - !type:NestedSelector + tableId: NukeOpsGrenadeTable + weight: 0.75 + - !type:NestedSelector + tableId: NukeOpsAmmoTable + weight: 0.75 + - !type:NestedSelector + tableId: NukeOpsMedKitGeneral + weight: 0.75 + +- type: entityTable + id: NukeOpsUplinkLootTable + table: !type:GroupSelector + children: + - id: ClothingBackpackChameleonFill + - id: ClothingMaskGasVoiceChameleon + amount: !type:RangeNumberSelector + range: 1, 2 + - id: NukeDiskFake + weight: 0.5 + - id: ClothingBackpackDuffelSyndicateDecoyKitFilled + weight: 0.75 + - id: BriefcaseSyndieLobbyingBundleFilled + amount: !type:RangeNumberSelector + range: 1, 2 + - id: ChameleonProjector + - id: CameraBug + - id: SyndicateJawsOfLife + - id: RadioJammer + - id: BorgModuleMartyr + - id: ScramImplant + - id: FakeMindShieldImplanter + amount: !type:RangeNumberSelector + range: 1, 3 + - id: EmpImplanter + - id: MicroBombImplanter + - id: SlipocalypseClusterSoap + amount: !type:RangeNumberSelector + range: 1, 2 + - id: ReinforcementRadioSyndicateAncestor + - id: ClothingEyesHudSyndicate + amount: !type:RangeNumberSelector + range: 1, 2 + - id: CigPackSyndicate + amount: !type:RangeNumberSelector + range: 1, 3 + - id: PenExplodingBox + +- type: entityTable + id: NukeOpsWeaponsTable + table: !type:GroupSelector + children: + - id: ThrowingKnivesKit + - id: ClothingHandsKnuckleDustersSyndicate + - id: EnergyDaggerLoud + weight: 0.5 + - id: WeaponRevolverPython + - id: WeaponPistolCobra + - id: WeaponShotgunSawn + - id: RevolverCapGunFake + weight: .01 + +- type: entityTable + id: NukeOpsAmmoTable + table: !type:GroupSelector + children: + - id: MagazinePistolSubMachineGun + - id: MagazineRifle + - id: MagazineBoxLightRifle + weight: 0.5 + - id: MagazineShotgunSlug + weight: 0.5 + - id: MagazineShotgun + weight: 0.5 + - id: MagazinePistol + weight: 0.5 + - id: MagazineBoxAntiMateriel + weight: 0.5 + - id: MagazinePistolCaselessRifle + weight: 0.5 + - id: SpeedLoaderMagnumAP + weight: 0.5 + +- type: entityTable + id: NukeOpsGrenadeTable + table: !type:GroupSelector + children: + - id: SmokeGrenade + weight: 1.25 + - id: GrenadeFlashBang + weight: 1.25 + - id: GrenadeShrapnel + weight: 1.25 + - id: GrenadeIncendiary + - id: EmpGrenade + - id: ExGrenade + weight: 0.5 + - id: SingularityGrenade + weight: 0.25 + - id: WhiteholeGrenade + weight: 0.25 + +- type: entityTable + id: NukeOpsMedkitTableBrute + table: !type:GroupSelector + children: + - id: MedkitFilled + weight: 1.5 + - id: MedkitBruteFilled + weight: 1.5 + - id: MedkitAdvancedFilled + - id: MedkitCombatFilled + weight: 0.2 + +- type: entityTable + id: NukeOpsMedKitGeneral + table: !type:GroupSelector + children: + - id: MedkitFilled + - id: MedkitBruteFilled + - id: MedkitToxinFilled + - id: MedkitRadiationFilled + - id: MedkitOxygenFilled + - id: MedkitBurnFilled + +# Spawners + +- type: entity + name: nuke ops loot spawner + id: NukeOpsLootSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Devices/jammer.rsi + state: jammer + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: NukeOpsLootTable + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops weapon spawner + id: NukeOpsWeaponSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Weapons/Guns/Revolvers/python.rsi + state: icon + - type: EntityTableSpawner + offset: 0.15 + table: !type:NestedSelector + tableId: NukeOpsWeaponsTable + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops brute medkit spawner + id: NukeOpsMedkitBruteSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Medical/firstaidkits.rsi + state: brutekit + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: NukeOpsMedkitTableBrute + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops general medkit spawner + id: NukeOpsMedkitSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Specific/Medical/firstaidkits.rsi + state: burnkit + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: NukeOpsMedKitGeneral + rolls: !type:RangeNumberSelector + range: 2, 4 + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops grenade spawner + id: NukeOpsGrenadeSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Weapons/Grenades/grenade.rsi + state: icon + - type: EntityTableSpawner + offset: 0.15 + table: !type:NestedSelector + tableId: NukeOpsGrenadeTable + rolls: !type:RangeNumberSelector + range: 1, 2 + placement: + mode: AlignTileAny + +- type: entity + name: nuke ops ammo spawner + id: NukeOpsAmmoSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: Objects/Weapons/Guns/Ammunition/Magazine/Pistol/smg_mag.rsi + state: base + - type: EntityTableSpawner + offset: 0.15 + table: !type:NestedSelector + tableId: NukeOpsAmmoTable + rolls: !type:RangeNumberSelector + range: 1, 2 + placement: + mode: AlignTileAny From f525bdbb834479475aa94ef445a052a3042e4b5e Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Sun, 17 Aug 2025 21:33:37 -0700 Subject: [PATCH 047/194] Rebalance nukie planet (#39090) --- Resources/Maps/Nonstations/nukieplanet.yml | 322 +++++++++------------ 1 file changed, 141 insertions(+), 181 deletions(-) diff --git a/Resources/Maps/Nonstations/nukieplanet.yml b/Resources/Maps/Nonstations/nukieplanet.yml index 554e242410..6bb6ed7f70 100644 --- a/Resources/Maps/Nonstations/nukieplanet.yml +++ b/Resources/Maps/Nonstations/nukieplanet.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Map + engineVersion: 263.0.0 + forkId: "" + forkVersion: "" + time: 07/20/2025 06:14:13 + entityCount: 2547 +maps: +- 1295 +grids: +- 104 +orphans: [] +nullspace: [] tilemap: 0: Space 14: FloorBar @@ -33,96 +44,96 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAKWQAAAAAAfAAAAAAAHQAAAAACbgAAAAADbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAABbgAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAAAbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAAAHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAADWQAAAAAEWQAAAAAAWQAAAAAEfAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAIfAAAAAAADgAAAAAB - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAACgBZAAAAAAAAfAAAAAAAAB0AAAAAAgBuAAAAAAMAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAAdAAAAAAEAbgAAAAADAFsAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAHQAAAAAAAG4AAAAAAgBuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAMAWQAAAAAEAFkAAAAAAABZAAAAAAQAfAAAAAAAAHgAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAB4AAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAA4AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAOAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAAOAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAACAB8AAAAAAAADgAAAAABAA== + version: 7 0,-1: ind: 0,-1 - tiles: bgAAAAAAbgAAAAADfAAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACWwAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADHQAAAAADVgAAAAAAHQAAAAACVgAAAAAAHQAAAAADVgAAAAAAHQAAAAADHQAAAAADbgAAAAAAbgAAAAACfAAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAACHQAAAAADVgAAAAAAHQAAAAADVgAAAAAAHQAAAAABVgAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWwAAAAADWwAAAAACWwAAAAADbgAAAAADbgAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAABWwAAAAABWwAAAAACbgAAAAADbgAAAAACDgAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAbgAAAAAAWwAAAAABWwAAAAAAWwAAAAAAbgAAAAACbgAAAAAAWQAAAAAAHQAAAAADHQAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAAADgAAAAADfAAAAAAAHQAAAAABfAAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAACDgAAAAAAHQAAAAABHQAAAAADHQAAAAABVgAAAAAAVgAAAAAAeAAAAAACeAAAAAACeAAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACfAAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABeAAAAAAAeAAAAAACeAAAAAACeAAAAAADeAAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABeAAAAAAAeAAAAAABeAAAAAAAeAAAAAADeAAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADfAAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAABHQAAAAAAHQAAAAACHQAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAACeAAAAAAAeAAAAAADeAAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAAAVgAAAAAADgAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAADeAAAAAABeAAAAAABeAAAAAADDgAAAAADDgAAAAABDgAAAAADDgAAAAACDgAAAAADDgAAAAAADgAAAAAAVgAAAAAADgAAAAAAUAAAAAAALAAAAAAADgAAAAAADgAAAAACHQAAAAAAHQAAAAACfAAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAAADgAAAAADDgAAAAABDgAAAAACVgAAAAAADgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAACDgAAAAABDgAAAAABDgAAAAAADgAAAAACUAAAAAAAUAAAAAAALAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAfAAAAAAA - version: 6 + tiles: bgAAAAAAAG4AAAAAAwB8AAAAAAAAbgAAAAAAAG4AAAAAAgBuAAAAAAIAbgAAAAADAG4AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAABAB0AAAAAAAAdAAAAAAMAHQAAAAACAFsAAAAAAABuAAAAAAMAbgAAAAADAG4AAAAAAwBuAAAAAAIAbgAAAAAAAG4AAAAAAwBuAAAAAAMAHQAAAAADAFYAAAAAAAAdAAAAAAIAVgAAAAAAAB0AAAAAAwBWAAAAAAAAHQAAAAADAB0AAAAAAwBuAAAAAAAAbgAAAAACAHwAAAAAAABuAAAAAAMAbgAAAAACAG4AAAAAAwBuAAAAAAIAbgAAAAACAB0AAAAAAwBWAAAAAAAAHQAAAAADAFYAAAAAAAAdAAAAAAEAVgAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAAAWwAAAAADAFsAAAAAAgBbAAAAAAMAbgAAAAADAG4AAAAAAgAdAAAAAAEAHQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAABAB0AAAAAAQAdAAAAAAAAHQAAAAADAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFsAAAAAAQBbAAAAAAEAWwAAAAACAG4AAAAAAwBuAAAAAAIADgAAAAACAB0AAAAAAwAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAAAAB0AAAAAAwBZAAAAAAAAWQAAAAAAAG4AAAAAAABbAAAAAAEAWwAAAAAAAFsAAAAAAABuAAAAAAIAbgAAAAAAAFkAAAAAAAAdAAAAAAMAHQAAAAADAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAADgAAAAABAA4AAAAAAwAOAAAAAAIADgAAAAAAAA4AAAAAAwB8AAAAAAAAHQAAAAABAHwAAAAAAAAOAAAAAAMADgAAAAACAA4AAAAAAAAOAAAAAAIADgAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAABAFYAAAAAAABWAAAAAAAAeAAAAAACAHgAAAAAAgB4AAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAIAfAAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAB0AAAAAAQB4AAAAAAAAeAAAAAACAHgAAAAAAgB4AAAAAAMAeAAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAACAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAgAdAAAAAAEAeAAAAAAAAHgAAAAAAQB4AAAAAAAAeAAAAAADAHgAAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAAAHQAAAAABAB0AAAAAAwB8AAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAHQAAAAACAA4AAAAAAgAOAAAAAAAADgAAAAACAA4AAAAAAwAOAAAAAAIADgAAAAABAA4AAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAgAOAAAAAAMADgAAAAAAAA4AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAgAOAAAAAAAADgAAAAABAA4AAAAAAgAOAAAAAAAADgAAAAABAA4AAAAAAQAOAAAAAAMADgAAAAAAAA4AAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAOAAAAAAIAeAAAAAAAAHgAAAAAAwB4AAAAAAEADgAAAAACAA4AAAAAAgAOAAAAAAAADgAAAAAAAA4AAAAAAwAOAAAAAAAADgAAAAAAAFYAAAAAAAAOAAAAAAIALAAAAAAAACwAAAAAAAAsAAAAAAAADgAAAAADAHgAAAAAAQB4AAAAAAEAeAAAAAADAA4AAAAAAwAOAAAAAAEADgAAAAADAA4AAAAAAgAOAAAAAAMADgAAAAAAAA4AAAAAAABWAAAAAAAADgAAAAAAAFAAAAAAAAAsAAAAAAAADgAAAAAAAA4AAAAAAgAdAAAAAAAAHQAAAAACAHwAAAAAAAAOAAAAAAIADgAAAAACAA4AAAAAAgAOAAAAAAAADgAAAAADAA4AAAAAAQAOAAAAAAIAVgAAAAAAAA4AAAAAAwBQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAADgAAAAAAAA4AAAAAAwAOAAAAAAIADgAAAAACAA4AAAAAAgAOAAAAAAEADgAAAAABAA4AAAAAAAAOAAAAAAIAUAAAAAAAAFAAAAAAAAAsAAAAAAAAUAAAAAAAAFAAAAAAAAB8AAAAAAAAfAAAAAAAAA== + version: 7 0,0: ind: 0,0 - tiles: HQAAAAADHQAAAAACHQAAAAACDgAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAACDgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAWQAAAAAGfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAACfAAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAABDgAAAAAADgAAAAACDgAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAWQAAAAAIWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAIWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAKWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAGWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAMWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAACWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAJWQAAAAAAWQAAAAAFTwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHWQAAAAAHWQAAAAAKWQAAAAAFWQAAAAAAWQAAAAALWQAAAAAA - version: 6 + tiles: HQAAAAADAB0AAAAAAgAdAAAAAAIADgAAAAAAAA4AAAAAAQAOAAAAAAEADgAAAAABAA4AAAAAAgAOAAAAAAMAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAB8AAAAAAAAWQAAAAAGAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAgB8AAAAAAAADgAAAAAAAA4AAAAAAQAOAAAAAAEADgAAAAACAA4AAAAAAQAOAAAAAAAADgAAAAACAA4AAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAABPAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAAB8AAAAAAAATwAAAAAAAHwAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAUAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAgAWQAAAAAAAFkAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAKAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAJAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACABZAAAAAAAAWQAAAAAGAFkAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAwAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAgBZAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAACQBZAAAAAAAAWQAAAAAFAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAHAFkAAAAABwBZAAAAAAoAWQAAAAAFAFkAAAAAAABZAAAAAAsAWQAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAAWQAAAAAKWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAKWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAGHQAAAAADHQAAAAADHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAIfAAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAABHQAAAAABWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAGTwAAAAAAHQAAAAABHQAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAADWQAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKTwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAADABZAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAKAFkAAAAACABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAACgBZAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAYAHQAAAAADAB0AAAAAAwAdAAAAAAAAfAAAAAAAAB0AAAAAAAAdAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACwBZAAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAgAfAAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAwAdAAAAAAIAHQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAAAAB0AAAAAAAB8AAAAAAAAHQAAAAABAB0AAAAAAQBZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAABgBPAAAAAAAAHQAAAAABAB0AAAAAAAB8AAAAAAAAfAAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAIAFkAAAAAAwBZAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAfAAAAAAAAHwAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAAA7AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAADABZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAABgBZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAJAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAA== + version: 7 1,-1: ind: 1,-1 - tiles: HQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACfAAAAAAAWQAAAAAAWQAAAAABWQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAADTQAAAAAATQAAAAAATQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAMWQAAAAAHWQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAACWQAAAAAFWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAHQAAAAADHQAAAAABVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAACHQAAAAACHQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAfAAAAAAAHQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAADHQAAAAADHQAAAAACWQAAAAAETwAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAAAAAAAAAHQAAAAAAHQAAAAABVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAACHQAAAAADHQAAAAACWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAACVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAAAHQAAAAADHQAAAAACWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAfAAAAAAAHQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAHQAAAAAAHQAAAAABHQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAABWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAABWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAGfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAWQAAAAAATwAAAAAAWQAAAAAEWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAA - version: 6 + tiles: HQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAACAB0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAIAfAAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAMATQAAAAAAAE0AAAAAAABNAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAACAHwAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAAAdAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAAAdAAAAAAMAHQAAAAABAB0AAAAAAgB8AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAHQAAAAADAB0AAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAEAHQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAABAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFkAAAAADABZAAAAAAcAWQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAADAB0AAAAAAQAdAAAAAAIAHQAAAAAAAB0AAAAAAwAdAAAAAAIAHQAAAAACAB0AAAAAAQBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAIAWQAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAQAdAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAQAdAAAAAAIAWQAAAAAFAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAHQAAAAADAB0AAAAAAQBWAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAIAAAAAAAAAAHwAAAAAAAAdAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAFYAAAAAAAAdAAAAAAMAHQAAAAADAB0AAAAAAgBZAAAAAAQATwAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAAAAAAAAAAAdAAAAAAAAHQAAAAABAFYAAAAAAABWAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAIAWQAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAB0AAAAAAgBWAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAB0AAAAAAAAdAAAAAAMAHQAAAAACAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAHwAAAAAAAAdAAAAAAAAVgAAAAAAAFYAAAAAAABWAAAAAAAAVgAAAAAAAFYAAAAAAAAdAAAAAAAAHQAAAAABAB0AAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAACAB0AAAAAAQAdAAAAAAEAWQAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAgAdAAAAAAAAHQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACQBZAAAAAAAAWQAAAAAAAHwAAAAAAAB8AAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAAAAB0AAAAAAQAdAAAAAAMAHQAAAAAAAB0AAAAAAQBZAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABgB8AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAAAfAAAAAAAagAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAADfAAAAAAAHQAAAAAAHQAAAAABWQAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAAAagAAAAAAagAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAfAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABgBZAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAfAAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAHwAAAAAAABZAAAAAAAAWQAAAAAGAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAAB8AAAAAAAAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAE0AAAAAAABNAAAAAAAATQAAAAAAAE0AAAAAAABNAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABbAAAAAAAAWwAAAAAAAFsAAAAAAQBbAAAAAAAAWwAAAAACAHwAAAAAAAB8AAAAAAAAfAAAAAAAAFkAAAAAAABuAAAAAAAAbgAAAAADAG4AAAAAAwBuAAAAAAMAbgAAAAAAAHwAAAAAAABqAAAAAAAAWwAAAAACAFsAAAAAAwBbAAAAAAEAWwAAAAABAFsAAAAAAwB8AAAAAAAAHQAAAAAAAB0AAAAAAQBZAAAAAAAAbgAAAAABAG4AAAAAAQBuAAAAAAMAbgAAAAADAG4AAAAAAABqAAAAAAAAagAAAAAAAFsAAAAAAwBbAAAAAAAAWwAAAAABAFsAAAAAAQBbAAAAAAAAfAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAFWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAHQAAAAABHQAAAAAAHQAAAAAC - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAUAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAFAFkAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABgBZAAAAAAAAWQAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAFAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAAAWQAAAAAEAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAB0AAAAAAQAdAAAAAAAAHQAAAAACAA== + version: 7 -1,1: ind: -1,1 - tiles: WQAAAAAIWQAAAAAAWQAAAAALWQAAAAAAWQAAAAADWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAFWQAAAAADWQAAAAAEWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAEWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFTwAAAAAATwAAAAAATwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADTwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAIAFkAAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAwBZAAAAAAwAWQAAAAAAAFkAAAAAAABZAAAAAAoAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAWQAAAAAEAFkAAAAAAABZAAAAAAAAWQAAAAAGAFkAAAAAAABZAAAAAAUAWQAAAAADAFkAAAAABABZAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAEABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBPAAAAAAAATwAAAAAAAE8AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAMATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAUAWQAAAAAMAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAsAWQAAAAAHAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAADABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,1: ind: 0,1 - tiles: WQAAAAAAWQAAAAAEWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAJWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAALWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAIWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAABABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAACQBZAAAAAAYAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAAAFkAAAAAAABZAAAAAAsAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAFkAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAsAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAADABZAAAAAAgAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAJAFkAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoAWQAAAAACAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAwBZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAA== + version: 7 1,1: ind: 1,1 - tiles: WQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAGWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAABWQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAoAWQAAAAAMAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABPAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAGAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAWQAAAAAAAFkAAAAAAABZAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACQBZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAQBZAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,0: ind: 1,0 - tiles: WQAAAAAATwAAAAAATwAAAAAAWQAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAALWQAAAAALWQAAAAAAWQAAAAAMWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAFWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAHWQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEWQAAAAAJWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAATwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAAAE8AAAAAAABPAAAAAAAAWQAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAALAFkAAAAACwBZAAAAAAAAWQAAAAAMAFkAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAMAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAFkAAAAADABZAAAAAAAAWQAAAAAAAFkAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAAA7AAAAAAAAOwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAABQBZAAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAgA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAcAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAOwAAAAAAADsAAAAAAAA7AAAAAAAAWQAAAAAAAFkAAAAACgBZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAcAWQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEAFkAAAAACQBZAAAAAAAAWQAAAAAHAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAJAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAoAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABwBZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAATwAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAABWQAAAAAAWQAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAWQAAAAAMWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAMWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAagAAAAAAHQAAAAACHQAAAAADHQAAAAACfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAACHQAAAAABagAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJfAAAAAAAagAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABagAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAagAAAAAAHQAAAAAAHQAAAAABHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAACHQAAAAADHQAAAAACagAAAAAAfAAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAEHQAAAAACHQAAAAACHQAAAAABHQAAAAABTQAAAAAATQAAAAAATQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAfAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAAAQBZAAAAAAAAWQAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABPAAAAAAAATwAAAAAAAE8AAAAAAABZAAAAAAwAWQAAAAAAAFkAAAAACwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAADABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAfAAAAAAAAGoAAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAgB8AAAAAAAAfAAAAAAAAHwAAAAAAAAdAAAAAAAAHQAAAAACAB0AAAAAAQBqAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAJAHwAAAAAAABqAAAAAAAAHQAAAAADAB0AAAAAAgAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAABAB0AAAAAAQAdAAAAAAEAagAAAAAAAHwAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAB8AAAAAAAAagAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAB0AAAAAAgAdAAAAAAMAHQAAAAACAGoAAAAAAAB8AAAAAAAAWQAAAAALAFkAAAAAAABZAAAAAAAAWQAAAAAEAB0AAAAAAgAdAAAAAAIAHQAAAAABAB0AAAAAAQBNAAAAAAAATQAAAAAAAE0AAAAAAAAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAAAfAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAA== + version: 7 -2,0: ind: -2,0 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAHWQAAAAAAWQAAAAABTwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAATwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAETwAAAAAATwAAAAAATwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAALWQAAAAAAWQAAAAALWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAALWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA - version: 6 + tiles: ewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAQAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAABwBZAAAAAAAAWQAAAAABAE8AAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAAAABPAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAEAE8AAAAAAABPAAAAAAAATwAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAALAFkAAAAAAABZAAAAAAsAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACwBZAAAAAAAAWQAAAAAAAFkAAAAAAQBZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAA== + version: 7 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAATwAAAAAAWQAAAAAKFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAJWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAHWQAAAAAKWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGWQAAAAAJWQAAAAALWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAALWQAAAAAIWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAGFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAEWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEWQAAAAAAWQAAAAAMWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAEWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACQBZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAACQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAATwAAAAAAAFkAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAE8AAAAAAABZAAAAAAoAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAkAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAcAWQAAAAAKAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAYAWQAAAAAJAFkAAAAACwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAALAFkAAAAACABZAAAAAAAAWQAAAAAIAFkAAAAAAABZAAAAAAAAWQAAAAAGABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAABABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAABABZAAAAAAAAWQAAAAAMAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAEAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAgAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAFAFkAAAAABQBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAA== + version: 7 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,0: ind: 2,0 - tiles: TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: TwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,-1: ind: 2,-1 - tiles: TwAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: TwAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAAAAAABZAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAFkAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAIWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAgAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAFWQAAAAAEWQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAABQBZAAAAAAQAWQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 1,2: ind: 1,2 - tiles: WQAAAAAAWQAAAAAFWQAAAAACWQAAAAAJWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAAAAFkAAAAABQBZAAAAAAIAWQAAAAAJAFkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAHsAAAAAAAB7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHsAAAAAAAB7AAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB7AAAAAAAAewAAAAAAAHsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -1620,16 +1631,19 @@ entities: - type: RadiationGridResistance - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: GravityShake shakeTimes: 10 - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding + - type: ImplicitRoof - uid: 1295 components: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: GridTree - type: FTLDestination whitelist: @@ -1658,7 +1672,6 @@ entities: - 0 - 0 - 0 - - type: LoadedMap - proto: AirlockExternalGlassNukeopLocked entities: - uid: 49 @@ -6668,14 +6681,14 @@ entities: - uid: 1635 components: - type: Transform - pos: 5.4970627,10.597828 + pos: 5.568222,13.296588 parent: 104 - proto: BoxMagazinePistolSubMachineGunPractice entities: - uid: 1634 components: - type: Transform - pos: 5.388983,13.953581 + pos: 5.4014716,13.713544 parent: 104 - proto: BoxPillCanister entities: @@ -10318,13 +10331,6 @@ entities: - type: Transform pos: 19.246769,6.507033 parent: 104 -- proto: CombatKnife - entities: - - uid: 1694 - components: - - type: Transform - pos: 5.483225,11.368477 - parent: 104 - proto: ComfyChair entities: - uid: 21 @@ -10417,18 +10423,6 @@ entities: - type: Transform pos: -0.5303154,-6.2851996 parent: 104 -- proto: EmpGrenade - entities: - - uid: 2456 - components: - - type: Transform - pos: 14.40774,-17.385033 - parent: 104 - - uid: 2457 - components: - - type: Transform - pos: 14.62649,-17.385033 - parent: 104 - proto: ExtinguisherCabinetFilled entities: - uid: 139 @@ -10771,18 +10765,6 @@ entities: parent: 104 - type: PointLight radius: 175.75 -- proto: GrenadeFlashBang - entities: - - uid: 2309 - components: - - type: Transform - pos: 11.399388,-16.363453 - parent: 104 - - uid: 2310 - components: - - type: Transform - pos: 11.571263,-16.363453 - parent: 104 - proto: Grille entities: - uid: 95 @@ -11138,7 +11120,7 @@ entities: - uid: 1648 components: - type: Transform - pos: 5.7430096,13.989216 + pos: 5.5473785,13.984566 parent: 104 - type: BallisticAmmoProvider unspawnedCount: 35 @@ -11164,55 +11146,6 @@ entities: - type: Transform pos: -1.5,-16.5 parent: 104 -- proto: MedkitAdvancedFilled - entities: - - uid: 447 - components: - - type: Transform - pos: 7.5183387,-10.279964 - parent: 104 -- proto: MedkitBruteFilled - entities: - - uid: 138 - components: - - type: Transform - pos: 7.5183387,-10.576839 - parent: 104 -- proto: MedkitBurnFilled - entities: - - uid: 1894 - components: - - type: Transform - pos: 7.5339637,-10.889339 - parent: 104 -- proto: MedkitFilled - entities: - - uid: 770 - components: - - type: Transform - pos: 0.48478004,-16.399067 - parent: 104 -- proto: MedkitOxygenFilled - entities: - - uid: 1895 - components: - - type: Transform - pos: 7.5339637,-11.186214 - parent: 104 -- proto: MedkitRadiationFilled - entities: - - uid: 448 - components: - - type: Transform - pos: 7.5495887,-11.733089 - parent: 104 -- proto: MedkitToxinFilled - entities: - - uid: 1388 - components: - - type: Transform - pos: 7.5339637,-11.436214 - parent: 104 - proto: Mirror entities: - uid: 142 @@ -11265,6 +11198,63 @@ entities: - type: Transform pos: 12.149857,15.427643 parent: 104 +- proto: NukeOpsAmmoSpawner + entities: + - uid: 770 + components: + - type: Transform + pos: 5.5,10.5 + parent: 104 +- proto: NukeOpsGrenadeSpawner + entities: + - uid: 228 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 104 + - uid: 448 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 104 +- proto: NukeOpsLootSpawner + entities: + - uid: 1703 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 104 + - uid: 1704 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 104 +- proto: NukeOpsMedkitBruteSpawner + entities: + - uid: 447 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 104 +- proto: NukeOpsMedkitSpawner + entities: + - uid: 306 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 104 +- proto: NukeOpsWeaponSpawner + entities: + - uid: 1388 + components: + - type: Transform + pos: 5.5,11.5 + parent: 104 + - uid: 1694 + components: + - type: Transform + pos: 5.5,12.5 + parent: 104 - proto: OperatingTable entities: - uid: 2435 @@ -11452,18 +11442,6 @@ entities: - type: Transform pos: 8.5,-12.5 parent: 104 -- proto: PosterContrabandLustyExomorph - entities: - - uid: 754 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 104 - - uid: 2447 - components: - - type: Transform - pos: 15.5,-15.5 - parent: 104 - proto: PosterContrabandMoth entities: - uid: 2462 @@ -11492,6 +11470,18 @@ entities: - type: Transform pos: 25.5,-12.5 parent: 104 +- proto: PosterContrabandRealExomorph + entities: + - uid: 754 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 104 + - uid: 2447 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 104 - proto: PosterContrabandRebelsUnite entities: - uid: 2446 @@ -12972,6 +12962,11 @@ entities: parent: 104 - proto: SprayBottle entities: + - uid: 138 + components: + - type: Transform + pos: 14.5635,-16.40939 + parent: 104 - uid: 1699 components: - type: Transform @@ -13586,24 +13581,12 @@ entities: - type: Transform pos: 0.5,10.5 parent: 104 -- proto: TearGasGrenade - entities: - - uid: 306 - components: - - type: Transform - pos: 14.638793,-16.908663 - parent: 104 - - uid: 1703 - components: - - type: Transform - pos: 14.341918,-16.877413 - parent: 104 - proto: Telecrystal1 entities: - uid: 2474 components: - type: Transform - pos: 2.9398513,-3.4842777 + pos: 3.1330178,-3.4578767 parent: 104 - proto: TimerTrigger entities: @@ -13651,7 +13634,7 @@ entities: - uid: 2470 components: - type: Transform - pos: 2.5657434,-3.260709 + pos: 2.3930676,-2.59717 parent: 104 - proto: ToyFigurineNukie entities: @@ -15143,22 +15126,6 @@ entities: - type: Transform pos: 11.5,-4.5 parent: 104 -- proto: WeaponPistolCobra - entities: - - uid: 1705 - components: - - type: Transform - pos: 5.4793262,12.166912 - parent: 104 -- proto: WeaponShotgunSawn - entities: - - uid: 228 - components: - - type: Transform - pos: 5.347948,13.528896 - parent: 104 - - type: BallisticAmmoProvider - unspawnedCount: 2 - proto: WeaponSprayNozzle entities: - uid: 152 @@ -15166,13 +15133,6 @@ entities: - type: Transform pos: 9.67418,-4.571714 parent: 104 -- proto: WeaponSubMachineGunC20r - entities: - - uid: 1704 - components: - - type: Transform - pos: 5.497257,12.817707 - parent: 104 - proto: WelderIndustrial entities: - uid: 207 From 2ecc3b85c4f04463d697517e13320e7d948542a5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 18 Aug 2025 04:34:44 +0000 Subject: [PATCH 048/194] Automatic changelog update --- Resources/Changelog/Maps.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Resources/Changelog/Maps.yml b/Resources/Changelog/Maps.yml index 21654f0760..34ecf1fb01 100644 --- a/Resources/Changelog/Maps.yml +++ b/Resources/Changelog/Maps.yml @@ -528,4 +528,14 @@ id: 65 time: '2025-08-17T19:00:49.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/38339 +- author: beck-thompson + changes: + - message: Removed a lot of mapped gear on the nukie planet and replaced it with + random spawners. + type: Tweak + - message: Two new random spawners with loot for the nukie planet + type: Add + id: 66 + time: '2025-08-18T04:33:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39090 Order: 1 From 14f949c3112e903cd9adc1a8355a3aa3a9c1fcab Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Mon, 18 Aug 2025 14:22:36 +0200 Subject: [PATCH 049/194] Jumpability collisions (#39710) --- .../Components/ActiveLeaperComponent.cs | 16 ++++ .../Components/JumpAbilityComponent.cs | 31 ++++++++ .../Systems/SharedJumpAbilitySystem.cs | 78 ++++++++++++++++++- .../en-US/jump-ability/jump-ability.ftl | 1 + .../Prototypes/Entities/Mobs/Player/clone.yml | 1 + 5 files changed, 126 insertions(+), 1 deletion(-) create mode 100644 Content.Shared/Movement/Components/ActiveLeaperComponent.cs create mode 100644 Resources/Locale/en-US/jump-ability/jump-ability.ftl diff --git a/Content.Shared/Movement/Components/ActiveLeaperComponent.cs b/Content.Shared/Movement/Components/ActiveLeaperComponent.cs new file mode 100644 index 0000000000..cb5a237af4 --- /dev/null +++ b/Content.Shared/Movement/Components/ActiveLeaperComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Movement.Components; + +/// +/// Marker component given to the users of the if they are meant to collide with environment. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ActiveLeaperComponent : Component +{ + /// + /// The duration to stun the owner on collide with environment. + /// + [DataField, AutoNetworkedField] + public TimeSpan KnockdownDuration; +} diff --git a/Content.Shared/Movement/Components/JumpAbilityComponent.cs b/Content.Shared/Movement/Components/JumpAbilityComponent.cs index 6da9161578..a6e33d5b87 100644 --- a/Content.Shared/Movement/Components/JumpAbilityComponent.cs +++ b/Content.Shared/Movement/Components/JumpAbilityComponent.cs @@ -2,6 +2,7 @@ using Content.Shared.Actions; using Content.Shared.Movement.Systems; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; namespace Content.Shared.Movement.Components; @@ -13,6 +14,18 @@ namespace Content.Shared.Movement.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedJumpAbilitySystem))] public sealed partial class JumpAbilityComponent : Component { + /// + /// The action prototype that allows you to jump. + /// + [DataField] + public EntProtoId Action = "ActionGravityJump"; + + /// + /// Entity to hold the action prototype. + /// + [DataField, AutoNetworkedField] + public EntityUid? ActionEntity; + /// /// How far you will jump (in tiles). /// @@ -25,11 +38,29 @@ public sealed partial class JumpAbilityComponent : Component [DataField, AutoNetworkedField] public float JumpThrowSpeed = 10f; + /// + /// Whether this entity can collide with another entity, leading to it getting knocked down. + /// + [DataField, AutoNetworkedField] + public bool CanCollide = false; + + /// + /// The duration of the knockdown in case of a collision from CanCollide. + /// + [DataField, AutoNetworkedField] + public TimeSpan CollideKnockdown = TimeSpan.FromSeconds(2); + /// /// This gets played whenever the jump action is used. /// [DataField, AutoNetworkedField] public SoundSpecifier? JumpSound; + + /// + /// The popup to show if the entity is unable to perform a jump. + /// + [DataField, AutoNetworkedField] + public LocId? JumpFailedPopup = "jump-ability-failure"; } public sealed partial class GravityJumpEvent : InstantActionEvent; diff --git a/Content.Shared/Movement/Systems/SharedJumpAbilitySystem.cs b/Content.Shared/Movement/Systems/SharedJumpAbilitySystem.cs index ac720cae68..598e4b564a 100644 --- a/Content.Shared/Movement/Systems/SharedJumpAbilitySystem.cs +++ b/Content.Shared/Movement/Systems/SharedJumpAbilitySystem.cs @@ -1,7 +1,14 @@ +using Content.Shared.Actions; +using Content.Shared.Actions.Components; +using Content.Shared.Cloning.Events; using Content.Shared.Gravity; using Content.Shared.Movement.Components; +using Content.Shared.Popups; +using Content.Shared.Standing; +using Content.Shared.Stunnable; using Content.Shared.Throwing; using Robust.Shared.Audio.Systems; +using Robust.Shared.Physics.Events; namespace Content.Shared.Movement.Systems; @@ -10,18 +17,64 @@ public sealed partial class SharedJumpAbilitySystem : EntitySystem [Dependency] private readonly ThrowingSystem _throwing = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedGravitySystem _gravity = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; + [Dependency] private readonly SharedStunSystem _stun = default!; + [Dependency] private readonly StandingStateSystem _standing = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnGravityJump); + + SubscribeLocalEvent(OnLeaperCollide); + SubscribeLocalEvent(OnLeaperLand); + SubscribeLocalEvent(OnLeaperStopThrow); + + SubscribeLocalEvent(OnClone); + } + + private void OnInit(Entity entity, ref MapInitEvent args) + { + if (!TryComp(entity, out ActionsComponent? comp)) + return; + + _actions.AddAction(entity, ref entity.Comp.ActionEntity, entity.Comp.Action, component: comp); + } + + private void OnShutdown(Entity entity, ref ComponentShutdown args) + { + _actions.RemoveAction(entity.Owner, entity.Comp.ActionEntity); + } + + private void OnLeaperCollide(Entity entity, ref StartCollideEvent args) + { + _stun.TryKnockdown(entity.Owner, entity.Comp.KnockdownDuration, force: true); + RemCompDeferred(entity); + } + + private void OnLeaperLand(Entity entity, ref LandEvent args) + { + RemCompDeferred(entity); + } + + private void OnLeaperStopThrow(Entity entity, ref StopThrowEvent args) + { + RemCompDeferred(entity); } private void OnGravityJump(Entity entity, ref GravityJumpEvent args) { - if (_gravity.IsWeightless(args.Performer)) + if (_gravity.IsWeightless(args.Performer) || _standing.IsDown(args.Performer)) + { + if (entity.Comp.JumpFailedPopup != null) + _popup.PopupClient(Loc.GetString(entity.Comp.JumpFailedPopup.Value), args.Performer, args.Performer); return; + } var xform = Transform(args.Performer); var throwing = xform.LocalRotation.ToWorldVec() * entity.Comp.JumpDistance; @@ -30,6 +83,29 @@ public sealed partial class SharedJumpAbilitySystem : EntitySystem _throwing.TryThrow(args.Performer, direction, entity.Comp.JumpThrowSpeed); _audio.PlayPredicted(entity.Comp.JumpSound, args.Performer, args.Performer); + + if (entity.Comp.CanCollide) + { + EnsureComp(entity, out var leaperComp); + leaperComp.KnockdownDuration = entity.Comp.CollideKnockdown; + Dirty(entity.Owner, leaperComp); + } + args.Handled = true; } + + private void OnClone(Entity ent, ref CloningEvent args) + { + if (!args.Settings.EventComponents.Contains(Factory.GetRegistration(ent.Comp.GetType()).Name)) + return; + + var targetComp = Factory.GetComponent(); + targetComp.Action = ent.Comp.Action; + targetComp.CanCollide = ent.Comp.CanCollide; + targetComp.JumpSound = ent.Comp.JumpSound; + targetComp.CollideKnockdown = ent.Comp.CollideKnockdown; + targetComp.JumpDistance = ent.Comp.JumpDistance; + targetComp.JumpThrowSpeed = ent.Comp.JumpThrowSpeed; + AddComp(args.CloneUid, targetComp, true); + } } diff --git a/Resources/Locale/en-US/jump-ability/jump-ability.ftl b/Resources/Locale/en-US/jump-ability/jump-ability.ftl new file mode 100644 index 0000000000..a9737455a3 --- /dev/null +++ b/Resources/Locale/en-US/jump-ability/jump-ability.ftl @@ -0,0 +1 @@ +jump-ability-failure = You cannot jump right now. diff --git a/Resources/Prototypes/Entities/Mobs/Player/clone.yml b/Resources/Prototypes/Entities/Mobs/Player/clone.yml index 907b694db9..43174cfffe 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/clone.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/clone.yml @@ -121,6 +121,7 @@ - Rootable # diona - Sericulture # arachnids - MovementSpeedModifier # moths when weightless + - JumpAbility # vulp leaping copyEquipment: null copyInternalStorage: false copyImplants: false From 9b9ea3b40de9b149cafa40314afa3248f3aee018 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 18 Aug 2025 12:23:43 +0000 Subject: [PATCH 050/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9d64d3a4ad..cd0603bfee 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Radezolid - changes: - - message: Fixed some donuts not counting towards the donuts bounty for cargo. - type: Fix - id: 8349 - time: '2025-04-25T15:07:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36903 - author: Kiri-Yoshikage changes: - message: Atomic Bomb cocktail is now mixed in 10u instead of 11. @@ -3953,3 +3946,10 @@ id: 8861 time: '2025-08-18T00:25:26.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35067 +- author: ScarKy0 + changes: + - message: Jump boots can no longer be used when knocked down. + type: Fix + id: 8862 + time: '2025-08-18T12:22:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39710 From c0b739d1dc13cfcfe2ba78ad575e7824bcfa19bd Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Mon, 18 Aug 2025 16:33:16 +0200 Subject: [PATCH 051/194] Remove StaminaResistance from cardboard armor (#39727) Remove StaminaResistance from places where it should not be --- Resources/Prototypes/Entities/Clothing/Head/helmets.yml | 4 +--- .../Prototypes/Entities/Clothing/OuterClothing/armor.yml | 4 +--- .../Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml | 2 +- Resources/Prototypes/Entities/Mobs/NPCs/animals.yml | 2 -- Resources/Prototypes/Entities/Objects/Shields/shields.yml | 3 --- 5 files changed, 3 insertions(+), 12 deletions(-) diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 57665af04f..93efa6415c 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -585,8 +585,6 @@ modifiers: coefficients: Blunt: 0.95 - - type: StaminaResistance - damageCoefficient: 0.95 - type: Construction graph: cardHelmet - node: cardhelmet \ No newline at end of file + node: cardhelmet diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 25d963882c..5cc78d90b0 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -505,8 +505,6 @@ modifiers: coefficients: Blunt: 0.9 - - type: StaminaResistance - damageCoefficient: 0.90 - type: Construction graph: cardArmour - node: cardarmour \ No newline at end of file + node: cardarmour diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 6904727d2b..0909ef56a4 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -974,7 +974,7 @@ damageCoefficient: 0.2 - type: FireProtection reduction: 0.8 - - type: StaminaResistance + - type: StaminaResistance # do not add these to other equipment or mobs, we don't want to microbalance these everywhere damageCoefficient: 0.15 # Needs 21 hits with a disabler to stun :godo: - type: Armor modifiers: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 4c6facdd4f..6934a405f8 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1220,8 +1220,6 @@ 0: Alive 200: Critical 250: Dead - - type: StaminaResistance - damageCoefficient: 0.40 - type: entity name: kangaroo diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index 3b64f0c4b1..3f50a07b8d 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -190,9 +190,6 @@ state: cardshield-icon - type: Item heldPrefix: cardshield - - type: StaminaResistance - damageCoefficient: 0.95 - worn: true - type: Blocking passiveBlockModifier: coefficients: From 0a1c17cbc81b319cf4dcf88f3b36becbaae35c11 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 18 Aug 2025 14:34:23 +0000 Subject: [PATCH 052/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index cd0603bfee..3d2caa23b7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Kiri-Yoshikage - changes: - - message: Atomic Bomb cocktail is now mixed in 10u instead of 11. - type: Tweak - id: 8350 - time: '2025-04-25T15:33:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36921 - author: EmoGarbage404 changes: - message: Added 3 modkits for the proto-kinetic accelerator, granting increased @@ -3953,3 +3946,10 @@ id: 8862 time: '2025-08-18T12:22:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39710 +- author: SlamBamActionman + changes: + - message: Stamina resistance has been removed from cardboard armor and gorillas. + type: Tweak + id: 8863 + time: '2025-08-18T14:33:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39727 From b31cc6010011a1ed6961884f5d78e1017aea16a8 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Mon, 18 Aug 2025 18:44:51 +0200 Subject: [PATCH 053/194] add myself to codeowners for the trigger system (#39725) add myself to codeowners --- .github/CODEOWNERS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 33a56c4844..5017422e13 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -24,6 +24,8 @@ /Content.*/Forensics/ @ficcialfaint +/Content.*/Trigger/ @slarticodefast + # SKREEEE /Content.*.Database/ @PJB3005 @DrSmugleaf /Content.Shared.Database/Log*.cs @PJB3005 @DrSmugleaf @crazybrain23 From 342fc84f169274aa90b0890ac8245618a82a061c Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Mon, 18 Aug 2025 20:22:02 +0200 Subject: [PATCH 054/194] Hotfix: Camera offset for "Separated Chat" HUD fix & targetting fix (#35087) * Initial commit * Fix everything * Comment and remove unused dependencies * Update comments for consistency --------- Co-authored-by: PJB3005 --- .../Movement/Systems/ContentEyeSystem.cs | 12 +++++- .../Movement/Systems/EyeCursorOffsetSystem.cs | 37 ++++++++++--------- Content.Client/Wieldable/WieldableSystem.cs | 3 ++ 3 files changed, 33 insertions(+), 19 deletions(-) diff --git a/Content.Client/Movement/Systems/ContentEyeSystem.cs b/Content.Client/Movement/Systems/ContentEyeSystem.cs index 518a4a1bd4..a332d25f9a 100644 --- a/Content.Client/Movement/Systems/ContentEyeSystem.cs +++ b/Content.Client/Movement/Systems/ContentEyeSystem.cs @@ -1,7 +1,6 @@ using System.Numerics; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; -using Robust.Client.GameObjects; using Robust.Client.Player; namespace Content.Client.Movement.Systems; @@ -63,4 +62,15 @@ public sealed class ContentEyeSystem : SharedContentEyeSystem UpdateEyeOffset((entity, eyeComponent)); } } + + public override void Update(float frameTime) + { + base.Update(frameTime); + // TODO: Ideally we wouldn't want this to run in both FrameUpdate and Update, but we kind of have to since the visual update happens in FrameUpdate, but interaction update happens in Update. It's a workaround and a better solution should be found. + var eyeEntities = AllEntityQuery(); + while (eyeEntities.MoveNext(out var entity, out ContentEyeComponent? contentComponent, out EyeComponent? eyeComponent)) + { + UpdateEyeOffset((entity, eyeComponent)); + } + } } diff --git a/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs b/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs index eb524cf4ee..174ae2dd97 100644 --- a/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs +++ b/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs @@ -1,10 +1,10 @@ using System.Numerics; using Content.Client.Movement.Components; +using Content.Client.Viewport; using Content.Shared.Camera; using Robust.Client.Graphics; using Robust.Client.Input; using Robust.Shared.Map; -using Robust.Client.Player; namespace Content.Client.Movement.Systems; @@ -12,13 +12,10 @@ public sealed partial class EyeCursorOffsetSystem : EntitySystem { [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IInputManager _inputManager = default!; - [Dependency] private readonly IPlayerManager _player = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly IClyde _clyde = default!; // This value is here to make sure the user doesn't have to move their mouse // all the way out to the edge of the screen to get the full offset. - static private float _edgeOffset = 0.9f; + private static float _edgeOffset = 0.8f; public override void Initialize() { @@ -38,25 +35,29 @@ public sealed partial class EyeCursorOffsetSystem : EntitySystem public Vector2? OffsetAfterMouse(EntityUid uid, EyeCursorOffsetComponent? component) { - var localPlayer = _player.LocalEntity; - var mousePos = _inputManager.MouseScreenPosition; - var screenSize = _clyde.MainWindow.Size; - var minValue = MathF.Min(screenSize.X / 2, screenSize.Y / 2) * _edgeOffset; - - var mouseNormalizedPos = new Vector2(-(mousePos.X - screenSize.X / 2) / minValue, (mousePos.Y - screenSize.Y / 2) / minValue); // X needs to be inverted here for some reason, otherwise it ends up flipped. - - if (localPlayer == null) + // We need the main viewport where the game content is displayed, as certain UI layouts (e.g. Separated HUD) can make it a different size to the game window. + if (_eyeManager.MainViewport is not ScalingViewport vp) return null; - var playerPos = _transform.GetWorldPosition(localPlayer.Value); + var mousePos = _inputManager.MouseScreenPosition.Position; // TODO: If we ever get a right-aligned Separated HUD setting, this might need to be adjusted for that. + + var viewportSize = vp.PixelSize; // The size of the game viewport, including black bars - does not include the chatbox in Separated HUD view. + var scalingViewportSize = vp.ViewportSize * vp.CurrentRenderScale; // The size of the viewport in which the game is rendered (i.e. not including black bars). Note! Can extend outside the game window with certain zoom settings! + var visibleViewportSize = Vector2.Min(viewportSize, scalingViewportSize); // The size of the game viewport that is "actually visible" to the player, cutting off over-extensions and not counting black bar padding. + + Matrix3x2.Invert(_eyeManager.MainViewport.GetLocalToScreenMatrix(), out var matrix); + var mouseCoords = Vector2.Transform(mousePos, matrix); // Gives the mouse position inside of the *scaling viewport*, i.e. 0,0 is inside the black bars. Note! 0,0 can be outside the game window with certain zoom settings! + + var boundedMousePos = Vector2.Clamp(Vector2.Min(mouseCoords, mousePos), Vector2.Zero, visibleViewportSize); // Mouse position inside the visible game viewport's bounds. + + var offsetRadius = MathF.Min(visibleViewportSize.X / 2f, visibleViewportSize.Y / 2f) * _edgeOffset; + var mouseNormalizedPos = new Vector2(-(boundedMousePos.X - visibleViewportSize.X / 2f) / offsetRadius, (boundedMousePos.Y - visibleViewportSize.Y / 2f) / offsetRadius); if (component == null) - { component = EnsureComp(uid); - } // Doesn't move the offset if the mouse has left the game window! - if (mousePos.Window != WindowId.Invalid) + if (_inputManager.MouseScreenPosition.Window != WindowId.Invalid) { // The offset must account for the in-world rotation. var eyeRotation = _eyeManager.CurrentEye.Rotation; @@ -77,7 +78,7 @@ public sealed partial class EyeCursorOffsetSystem : EntitySystem Vector2 vectorOffset = component.TargetPosition - component.CurrentPosition; if (vectorOffset.Length() > component.OffsetSpeed) { - vectorOffset = vectorOffset.Normalized() * component.OffsetSpeed; + vectorOffset = vectorOffset.Normalized() * component.OffsetSpeed; // TODO: Probably needs to properly account for time delta or something. } component.CurrentPosition += vectorOffset; } diff --git a/Content.Client/Wieldable/WieldableSystem.cs b/Content.Client/Wieldable/WieldableSystem.cs index 2de837923c..e40544e39d 100644 --- a/Content.Client/Wieldable/WieldableSystem.cs +++ b/Content.Client/Wieldable/WieldableSystem.cs @@ -29,7 +29,10 @@ public sealed class WieldableSystem : SharedWieldableSystem return; if (_gameTiming.IsFirstTimePredicted) + { cursorOffsetComp.CurrentPosition = Vector2.Zero; + cursorOffsetComp.TargetPosition = Vector2.Zero; + } } public void OnGetEyeOffset(Entity entity, ref HeldRelayedEvent args) From d38d2e209a97885118dd9e87fbbfac4d4843e728 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Mon, 18 Aug 2025 11:22:15 -0700 Subject: [PATCH 055/194] Rebalance infiltrator (Nukie ship) (#39091) --- Resources/Maps/Shuttles/infiltrator.yml | 298 ++++++++++++++---------- 1 file changed, 173 insertions(+), 125 deletions(-) diff --git a/Resources/Maps/Shuttles/infiltrator.yml b/Resources/Maps/Shuttles/infiltrator.yml index 784886c892..d8b50e99ab 100644 --- a/Resources/Maps/Shuttles/infiltrator.yml +++ b/Resources/Maps/Shuttles/infiltrator.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/18/2025 05:46:30 + entityCount: 822 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 3: FloorArcadeRed @@ -34,20 +45,20 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACWAAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACaAAAAAAAWQAAAAAAHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADWQAAAAAAaAAAAAABWAAAAAAAHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADWAAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAgAfAAAAAAEAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAWAAAAAAAAB8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAFgAAAAAAAAfAAAAAAIAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABYAAAAAAAAHwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAfAAAAAAEAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAFgAAAAAAAAfAAAAAAIAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAABdAAAAAAIAaAAAAAAAAFkAAAAAAAAfAAAAAAMAHwAAAAAAAB8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAXQAAAAADAFkAAAAAAABoAAAAAAEAWAAAAAAAAB8AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAADAFgAAAAAAAAfAAAAAAIAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABYAAAAAAAAWAAAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: HwAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABWAAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAegAAAAADegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAWAAAAAAAegAAAAAAAwAAAAAAegAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADWAAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: HwAAAAABAB8AAAAAAQAfAAAAAAEAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAIAWAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACAFgAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQBYAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABAFgAAAAAAAB6AAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAwAfAAAAAAAAHwAAAAAAAHoAAAAAAwB6AAAAAAEAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAWAAAAAAAAHoAAAAAAAADAAAAAAAAegAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADAFgAAAAAAAB+AAAAAAAAAwAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAABYAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAJAAAAAAAOAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAJAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAJAAAAAAAOAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACTwAAAAAAHwAAAAABWAAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAWAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAWAAAAAAAHwAAAAADHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAWAAAAAAAHwAAAAAAWAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAFgAAAAAAABYAAAAAAAAWAAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAA4AAAAAAAAJAAAAAAAADgAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAOAAAAAAAACQAAAAAAAA4AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAADgAAAAAAAAkAAAAAAAAOAAAAAAAAFgAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAAAAB8AAAAAAwBYAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAHwAAAAACAE8AAAAAAAAfAAAAAAEAWAAAAAAAAH4AAAAAAAB+AAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAFgAAAAAAAB+AAAAAAAAHwAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAKAAAAAAAACgAAAAAAABYAAAAAAAAHwAAAAADAB8AAAAAAAAfAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfgAAAAAAAFgAAAAAAAAfAAAAAAAAWAAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgAfAAAAAAEAHwAAAAAAAB8AAAAAAwAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAG4AAAAAAAAfAAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAABWAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAE8AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAABPAAAAAAAAfgAAAAAAAE8AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAABPAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAQAfAAAAAAMAHwAAAAABAB8AAAAAAwAfAAAAAAEAWAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAMAHwAAAAACAB8AAAAAAAAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAgAfAAAAAAAAHwAAAAADAB8AAAAAAQB+AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAEAHwAAAAAAAB8AAAAAAQAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAAAHwAAAAACAG4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -576,12 +587,14 @@ entities: flags: Hide - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: RadiationGridResistance - type: GravityShake shakeTimes: 10 - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding + - type: ImplicitRoof - proto: AirlockExternalGlassShuttleSyndicateLocked entities: - uid: 8 @@ -593,7 +606,8 @@ entities: - type: DeviceLinkSource linkedPorts: 13: - - DoorStatus: Close + - - DoorStatus + - Close - type: DeviceLinkSink invokeCounter: 1 - uid: 10 @@ -605,7 +619,8 @@ entities: - type: DeviceLinkSource linkedPorts: 3: - - DoorStatus: Close + - - DoorStatus + - Close - type: DeviceLinkSink invokeCounter: 1 - proto: AirlockExternalSyndicateLocked @@ -618,7 +633,8 @@ entities: - type: DeviceLinkSource linkedPorts: 14: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 3 components: - type: Transform @@ -629,7 +645,8 @@ entities: - type: DeviceLinkSource linkedPorts: 10: - - DoorStatus: Close + - - DoorStatus + - Close - uid: 7 components: - type: Transform @@ -638,7 +655,8 @@ entities: - type: DeviceLinkSource linkedPorts: 12: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 9 components: - type: Transform @@ -647,7 +665,8 @@ entities: - type: DeviceLinkSource linkedPorts: 22: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 12 components: - type: Transform @@ -656,7 +675,8 @@ entities: - type: DeviceLinkSource linkedPorts: 7: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 13 components: - type: Transform @@ -667,7 +687,8 @@ entities: - type: DeviceLinkSource linkedPorts: 8: - - DoorStatus: Close + - - DoorStatus + - Close - uid: 14 components: - type: Transform @@ -676,7 +697,8 @@ entities: - type: DeviceLinkSource linkedPorts: 2: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - uid: 22 components: - type: Transform @@ -685,7 +707,8 @@ entities: - type: DeviceLinkSource linkedPorts: 9: - - DoorStatus: DoorBolt + - - DoorStatus + - DoorBolt - proto: AirlockSyndicateGlassLocked entities: - uid: 4 @@ -727,12 +750,16 @@ entities: - type: Transform pos: -3.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 19 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-8.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: AtmosFixNitrogenMarker entities: - uid: 25 @@ -820,45 +847,6 @@ entities: - type: Transform pos: 1.4510483,-2.399527 parent: 1 -- proto: Brutepack - entities: - - uid: 44 - components: - - type: Transform - pos: -3.292087,-4.1600046 - parent: 1 - - uid: 45 - components: - - type: Transform - pos: -3.354587,-4.4256296 - parent: 1 -- proto: C4 - entities: - - uid: 46 - components: - - type: Transform - pos: 1.7857682,-12.631323 - parent: 1 - - uid: 47 - components: - - type: Transform - pos: 1.5045182,-12.646948 - parent: 1 - - uid: 48 - components: - - type: Transform - pos: 1.5982682,-12.646948 - parent: 1 - - uid: 49 - components: - - type: Transform - pos: 1.4107682,-12.646948 - parent: 1 - - uid: 50 - components: - - type: Transform - pos: 1.6920182,-12.631323 - parent: 1 - proto: CableApcExtension entities: - uid: 51 @@ -2210,26 +2198,26 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 -- proto: CigPackSyndicate +- proto: ClothingBackpackDuffelSyndicateAmmoFilled entities: - - uid: 313 + - uid: 49 components: - type: Transform - pos: -3.5658307,-17.516623 + pos: 1.4468282,-11.670399 parent: 1 - proto: ClothingBackpackDuffelSyndicateFilledMedical entities: - uid: 314 components: - type: Transform - pos: -3.5044222,-6.293252 + pos: -5.6167116,-4.2485933 parent: 1 - proto: ClothingHeadHatSyndie entities: - uid: 315 components: - type: Transform - pos: -3.1200604,-17.289778 + pos: -3.0420556,-17.469692 parent: 1 - proto: ClothingHeadHatSyndieMAA entities: @@ -3617,18 +3605,6 @@ entities: - type: Transform pos: -4.5,-3.5 parent: 1 -- proto: MedkitCombatFilled - entities: - - uid: 501 - components: - - type: Transform - pos: -3.401462,-3.5350046 - parent: 1 - - uid: 502 - components: - - type: Transform - pos: -3.557712,-3.4256296 - parent: 1 - proto: Mirror entities: - uid: 503 @@ -3636,6 +3612,8 @@ entities: - type: Transform pos: 4.5,-3.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: Multitool entities: - uid: 504 @@ -3672,17 +3650,38 @@ entities: - type: Transform pos: -2.5,-12.5 parent: 1 -- proto: Ointment +- proto: NukeOpsGrenadeSpawner entities: - - uid: 511 + - uid: 44 components: - type: Transform - pos: -3.651462,-4.5193796 + pos: 1.5,-12.5 parent: 1 - - uid: 512 +- proto: NukeOpsLootSpawner + entities: + - uid: 46 components: - type: Transform - pos: -3.667087,-4.2225046 + pos: -3.5,-17.5 + parent: 1 +- proto: NukeOpsMedkitBruteSpawner + entities: + - uid: 48 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 +- proto: NukeOpsMedkitSpawner + entities: + - uid: 47 + components: + - type: Transform + pos: -3.5,-4.5 parent: 1 - proto: OperatingTable entities: @@ -3761,6 +3760,8 @@ entities: - type: Transform pos: 1.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandCC64KAd entities: - uid: 525 @@ -3768,6 +3769,8 @@ entities: - type: Transform pos: -5.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandCybersun600 entities: - uid: 526 @@ -3775,6 +3778,8 @@ entities: - type: Transform pos: 2.5,-6.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonk entities: - uid: 527 @@ -3783,6 +3788,8 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonutCorp entities: - uid: 528 @@ -3791,6 +3798,8 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnergySwords entities: - uid: 529 @@ -3798,6 +3807,8 @@ entities: - type: Transform pos: 2.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnlistGorlex entities: - uid: 530 @@ -3806,6 +3817,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - uid: 531 @@ -3813,6 +3826,8 @@ entities: - type: Transform pos: -2.5,-8.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandInterdyne entities: - uid: 532 @@ -3821,6 +3836,8 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandKosmicheskayaStantsiya entities: - uid: 533 @@ -3828,6 +3845,8 @@ entities: - type: Transform pos: -2.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMoth entities: - uid: 534 @@ -3835,11 +3854,15 @@ entities: - type: Transform pos: -2.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 535 components: - type: Transform pos: 2.5,-3.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 536 @@ -3848,11 +3871,15 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-13.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 537 components: - type: Transform pos: 0.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSyndicatePistol entities: - uid: 538 @@ -3860,6 +3887,8 @@ entities: - type: Transform pos: 1.5,-10.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSyndicateRecruitment entities: - uid: 539 @@ -3867,6 +3896,8 @@ entities: - type: Transform pos: -1.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWaffleCorp entities: - uid: 540 @@ -3875,6 +3906,8 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: Poweredlight entities: - uid: 541 @@ -4302,9 +4335,13 @@ entities: - type: DeviceLinkSource linkedPorts: 600: - - Pressed: Toggle + - - Pressed + - Toggle 599: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 611 components: - type: Transform @@ -4313,7 +4350,10 @@ entities: - type: DeviceLinkSource linkedPorts: 605: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 20 @@ -4325,9 +4365,13 @@ entities: - type: DeviceLinkSource linkedPorts: 602: - - Pressed: Toggle + - - Pressed + - Toggle 598: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - uid: 21 components: - type: Transform @@ -4337,19 +4381,28 @@ entities: - type: DeviceLinkSource linkedPorts: 597: - - Pressed: Toggle + - - Pressed + - Toggle 601: - - Pressed: Toggle + - - Pressed + - Toggle 608: - - Pressed: Toggle + - - Pressed + - Toggle 606: - - Pressed: Toggle + - - Pressed + - Toggle 604: - - Pressed: Toggle + - - Pressed + - Toggle 607: - - Pressed: Toggle + - - Pressed + - Toggle 603: - - Pressed: Toggle + - - Pressed + - Toggle + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 613 @@ -4357,30 +4410,40 @@ entities: - type: Transform pos: 0.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 614 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-15.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 615 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 616 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-14.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 617 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-15.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 618 @@ -4388,6 +4451,8 @@ entities: - type: Transform pos: -2.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignNosmoking entities: - uid: 619 @@ -4395,6 +4460,8 @@ entities: - type: Transform pos: 5.5,-22.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SignSecureSmallRed entities: - uid: 620 @@ -4402,16 +4469,22 @@ entities: - type: Transform pos: -3.5,-11.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 621 components: - type: Transform pos: 4.5,-17.5 parent: 1 + - type: Fixtures + fixtures: {} - uid: 622 components: - type: Transform pos: 2.5,-11.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: SMESBasic entities: - uid: 623 @@ -4481,30 +4554,6 @@ entities: - type: Transform pos: 3.5,-19.5 parent: 1 -- proto: SyndieMiniBomb - entities: - - uid: 633 - components: - - type: Transform - pos: 1.4127003,-11.973867 - parent: 1 - - uid: 634 - components: - - type: Transform - pos: 1.6939503,-11.973867 - parent: 1 -- proto: SyringeInaprovaline - entities: - - uid: 635 - components: - - type: Transform - pos: -3.510837,-4.3787546 - parent: 1 - - uid: 636 - components: - - type: Transform - pos: -3.510837,-4.0193796 - parent: 1 - proto: Table entities: - uid: 637 @@ -4689,14 +4738,7 @@ entities: - uid: 669 components: - type: Transform - pos: -2.5731854,-17.414778 - parent: 1 -- proto: ToolboxSyndicateFilled - entities: - - uid: 670 - components: - - type: Transform - pos: 1.5034143,-11.298322 + pos: -2.468854,-17.396727 parent: 1 - proto: VendingMachineTankDispenserEVA entities: @@ -5516,6 +5558,8 @@ entities: - type: Transform pos: 4.5,-25.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 828 @@ -5523,6 +5567,8 @@ entities: - type: Transform pos: 2.5,-25.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 829 @@ -5530,6 +5576,8 @@ entities: - type: Transform pos: 4.5,-18.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 830 From fdfdecf57b587103a71e02e12725ba99ac2859be Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 18 Aug 2025 18:23:23 +0000 Subject: [PATCH 056/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 22 +++++++++++----------- Resources/Changelog/Maps.yml | 13 +++++++++++++ 2 files changed, 24 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3d2caa23b7..21b3e4c7a3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,15 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - message: Added 3 modkits for the proto-kinetic accelerator, granting increased - damage, range, and fire rate. They can be researched via the new "Kinetic Modifications" - arsenal tech. - type: Add - - message: Reduced damage and range on the proto-kinetic accelerator. - type: Tweak - id: 8351 - time: '2025-04-25T18:18:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31247 - author: Wolfkey-SomeoneElseTookMyUsername changes: - message: Added cotton buns, which can be be used for the creation of custom burgers @@ -3953,3 +3942,14 @@ id: 8863 time: '2025-08-18T14:33:16.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39727 +- author: SlamBamActionman + changes: + - message: Aiming with the Hristov is now working correctly when using the Separated + Chat HUD mode. + type: Fix + - message: Cursor targetting with the Hristov now correctly selects the target underneath + the cursor. + type: Fix + id: 8864 + time: '2025-08-18T18:22:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35087 diff --git a/Resources/Changelog/Maps.yml b/Resources/Changelog/Maps.yml index 34ecf1fb01..0ec3640252 100644 --- a/Resources/Changelog/Maps.yml +++ b/Resources/Changelog/Maps.yml @@ -538,4 +538,17 @@ id: 66 time: '2025-08-18T04:33:37.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39090 +- author: beck-thompson + changes: + - message: Replaced the guaranteed explosives on the infiltrator with a random grenade + spawner and ammo bundle. + type: Tweak + - message: Replaced the guaranteed med spawns on the infiltrator with random med + kit spawners. + type: Tweak + - message: Added a random loot spawner to the infiltrator. + type: Add + id: 67 + time: '2025-08-18T18:22:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39091 Order: 1 From aa4ca4199a70c606192acf32cc06a16236da9dc0 Mon Sep 17 00:00:00 2001 From: Zokkie <6126135+Zokkie@users.noreply.github.com> Date: Mon, 18 Aug 2025 20:57:30 +0200 Subject: [PATCH 057/194] Minor fix to give Lone Operatives the correct roletype (#36521) * Gives loneop the proper mindrole * Moved the entity to a more logical position. It was above the parent entity in the .yml file. It is now below it. * Added requested changes --- .../Prototypes/Entities/Markers/Spawners/ghost_roles.yml | 2 +- Resources/Prototypes/GameRules/events.yml | 2 +- Resources/Prototypes/Roles/MindRoles/mind_roles.yml | 8 ++++++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml index 48a2e70655..e662a8b211 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml @@ -110,7 +110,7 @@ description: ghost-role-information-loneop-description rules: ghost-role-information-loneop-rules mindRoles: - - MindRoleGhostRoleSoloAntagonist + - MindRoleLoneops - type: Sprite sprite: Markers/jobs.rsi layers: diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 2642c0286b..acd3d4a2b8 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -568,7 +568,7 @@ factions: - Syndicate mindRoles: - - MindRoleNukeops + - MindRoleLoneops - type: DynamicRuleCost cost: 75 diff --git a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml index d387903ec4..d56e798fda 100644 --- a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml +++ b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml @@ -197,6 +197,14 @@ - type: MindRole antagPrototype: NukeopsCommander +- type: entity + parent: MindRoleNukeops + id: MindRoleLoneops + name: Loneops Operative Role + components: + - type: MindRole + roleType: SoloAntagonist + # Revolutionaries - type: entity parent: BaseMindRoleAntag From 5a5b81f7dc8434a2ca5000cb3e3a4e031e56c4b2 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Mon, 18 Aug 2025 20:58:30 +0200 Subject: [PATCH 058/194] Fix rebinding keys crashing the game (#39732) fix control settings --- Content.Client/UserInterface/Controls/MenuButton.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Content.Client/UserInterface/Controls/MenuButton.cs b/Content.Client/UserInterface/Controls/MenuButton.cs index 540a8ecb57..a0ba21da74 100644 --- a/Content.Client/UserInterface/Controls/MenuButton.cs +++ b/Content.Client/UserInterface/Controls/MenuButton.cs @@ -25,7 +25,7 @@ public sealed class MenuButton : ContainerButton private Color NormalColor => HasStyleClass(StyleClassRedTopButton) ? ColorRedNormal : ColorNormal; private Color HoveredColor => HasStyleClass(StyleClassRedTopButton) ? ColorRedHovered : ColorHovered; - private BoundKeyFunction _function; + private BoundKeyFunction? _function; private readonly BoxContainer _root; private readonly TextureRect? _buttonIcon; private readonly Label? _buttonLabel; @@ -33,13 +33,13 @@ public sealed class MenuButton : ContainerButton public string AppendStyleClass { set => AddStyleClass(value); } public Texture? Icon { get => _buttonIcon!.Texture; set => _buttonIcon!.Texture = value; } - public BoundKeyFunction BoundKey + public BoundKeyFunction? BoundKey { get => _function; set { _function = value; - _buttonLabel!.Text = BoundKeyHelper.ShortKeyName(value); + _buttonLabel!.Text = _function == null ? "" : BoundKeyHelper.ShortKeyName(_function.Value); } } @@ -95,12 +95,12 @@ public sealed class MenuButton : ContainerButton private void OnKeyBindingChanged(IKeyBinding obj) { - _buttonLabel!.Text = BoundKeyHelper.ShortKeyName(_function); + _buttonLabel!.Text = _function == null ? "" : BoundKeyHelper.ShortKeyName(_function.Value); } private void OnKeyBindingChanged() { - _buttonLabel!.Text = BoundKeyHelper.ShortKeyName(_function); + _buttonLabel!.Text = _function == null ? "" : BoundKeyHelper.ShortKeyName(_function.Value); } protected override void StylePropertiesChanged() From fedba2425bf94f78bcdd72f7d45835152e7f6d38 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 18 Aug 2025 18:59:40 +0000 Subject: [PATCH 059/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 21b3e4c7a3..024760194a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,20 +1,4 @@ Entries: -- author: Wolfkey-SomeoneElseTookMyUsername - changes: - - message: Added cotton buns, which can be be used for the creation of custom burgers - that can be eaten by moths. - type: Add - id: 8352 - time: '2025-04-26T01:54:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36405 -- author: Booblesnoot42 - changes: - - message: Due to a lack of functionality, light-switches have temporarily been - removed from the construction menu. - type: Remove - id: 8353 - time: '2025-04-26T01:54:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34664 - author: OnyxTheBrave changes: - message: Cloth is now able to be made in the Sheet-Meister 2000 @@ -3953,3 +3937,18 @@ id: 8864 time: '2025-08-18T18:22:02.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35087 +- author: Zokkie + changes: + - message: Lone Operative is now assigned the Solo Antagonist role ingame instead + of the Team Antagonist role. + type: Fix + id: 8865 + time: '2025-08-18T18:57:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36521 +- author: beck-thompson, slarticodefast + changes: + - message: Fixed rebinding keys crashing the client. + type: Fix + id: 8866 + time: '2025-08-18T18:58:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39732 From d737e39a98a88d07bee24106901206cfc7d8fbb4 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Mon, 18 Aug 2025 22:21:33 +0200 Subject: [PATCH 060/194] cleanup LockOnTriggerComponent (#39720) * cleanup LockOnTriggerComponent * comment * indentation --- .../Components/Effects/LockOnTriggerComponent.cs | 12 ++++++++++-- .../Trigger/Systems/LockOnTriggerSystem.cs | 13 +++++++++---- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/Content.Shared/Trigger/Components/Effects/LockOnTriggerComponent.cs b/Content.Shared/Trigger/Components/Effects/LockOnTriggerComponent.cs index 38eea0a461..6dbec86c5d 100644 --- a/Content.Shared/Trigger/Components/Effects/LockOnTriggerComponent.cs +++ b/Content.Shared/Trigger/Components/Effects/LockOnTriggerComponent.cs @@ -1,19 +1,27 @@ +using Content.Shared.Lock; using Robust.Shared.GameStates; using Robust.Shared.Serialization; namespace Content.Shared.Trigger.Components.Effects; +/// +/// Will lock, unlock or toggle an entity with the . +/// If TargetUser is true then they will be (un)locked instead. +/// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class LockOnTriggerComponent : BaseXOnTriggerComponent { + /// + /// If the trigger will lock, unlock or toggle the lock. + /// [DataField, AutoNetworkedField] - public LockAction LockOnTrigger = LockAction.Toggle; + public LockAction LockMode = LockAction.Toggle; } [Serializable, NetSerializable] public enum LockAction { - Lock = 0, + Lock = 0, Unlock = 1, Toggle = 2, } diff --git a/Content.Shared/Trigger/Systems/LockOnTriggerSystem.cs b/Content.Shared/Trigger/Systems/LockOnTriggerSystem.cs index 8726ede899..2056d5fe51 100644 --- a/Content.Shared/Trigger/Systems/LockOnTriggerSystem.cs +++ b/Content.Shared/Trigger/Systems/LockOnTriggerSystem.cs @@ -19,16 +19,21 @@ public sealed class LockOnTriggerSystem : EntitySystem if (args.Key != null && !ent.Comp.KeysIn.Contains(args.Key)) return; - switch (ent.Comp.LockOnTrigger) + var target = ent.Comp.TargetUser ? args.User : ent.Owner; + + if (!TryComp(target, out var lockComp)) + return; // prevent the Resolve in Lock/Unlock/ToggleLock from logging errors in case the user does not have the component + + switch (ent.Comp.LockMode) { case LockAction.Lock: - _lock.Lock(ent.Owner, args.User); + _lock.Lock(target.Value, args.User, lockComp); break; case LockAction.Unlock: - _lock.Unlock(ent, args.User); + _lock.Unlock(target.Value, args.User, lockComp); break; case LockAction.Toggle: - _lock.ToggleLock(ent, args.User); + _lock.ToggleLock(target.Value, args.User, lockComp); break; } } From 6b73d320b9eb35cab7cbcc9301759fa0ff395a80 Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Mon, 18 Aug 2025 13:26:29 -0700 Subject: [PATCH 061/194] [NEW STATUS SYSTEM] Drunkenness, Stuttering, Slurred Speech, and Bloodloss (#38678) * The only commit that matters * I had to stop playing with my cat to push this change * Yaml removal * Proper drunk status effect and remove shitcode * Review changes * whoops * Whoops x2 * Update master fix merge conflicts * Fix merge conflicts * Dunk Component kill * MORE RELAYS * Holy fucking breaking changes * Ough * 46 file diff * Fix bad commits * Erm what the test fail? * Fix those last two * Merge conflicts * Me when I fix the merge conflicts --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- Content.Client/Drunk/DrunkOverlay.cs | 19 ++++--- Content.Client/Drunk/DrunkSystem.cs | 36 +++++++------ .../Electrocution/ElectrocutionSystem.cs | 2 +- .../Components/StutteringAccentComponent.cs | 12 ++--- .../Speech/EntitySystems/SlurredSystem.cs | 46 +++++++++-------- .../Speech/EntitySystems/StutteringSystem.cs | 34 +++++++++---- .../Body/Components/BloodstreamComponent.cs | 6 --- .../Body/Systems/SharedBloodstreamSystem.cs | 25 +++------- Content.Shared/Drunk/DrunkComponent.cs | 6 --- .../Drunk/DrunkStatusEffectComponent.cs | 11 ++++ Content.Shared/Drunk/DrunkSystem.cs | 48 ------------------ Content.Shared/Drunk/SharedDrunkSystem.cs | 50 +++++++++++++++++++ Content.Shared/EntityEffects/Effects/Drunk.cs | 13 ++--- .../EntitySystems/SharedSlurredSystem.cs | 3 ++ .../EntitySystems/SharedStutteringSystem.cs | 14 +++--- .../Components/StatusEffectComponent.cs | 1 - .../StatusEffectSystem.Relay.cs | 3 ++ .../Entities/Mobs/NPCs/asteroid.yml | 1 - .../Entities/Mobs/NPCs/elemental.yml | 1 - .../Prototypes/Entities/Mobs/NPCs/silicon.yml | 1 - .../Entities/Mobs/NPCs/simplemob.yml | 2 - .../Entities/Mobs/Player/dragon.yml | 1 - .../Prototypes/Entities/Mobs/Species/base.yml | 3 -- .../Entities/StatusEffects/body.yml | 18 +++++++ .../Entities/StatusEffects/misc.yml | 14 ++++++ .../Entities/StatusEffects/speech.yml | 27 ++++++++++ Resources/Prototypes/Reagents/medicine.yml | 14 +++--- 27 files changed, 235 insertions(+), 176 deletions(-) delete mode 100644 Content.Shared/Drunk/DrunkComponent.cs create mode 100644 Content.Shared/Drunk/DrunkStatusEffectComponent.cs delete mode 100644 Content.Shared/Drunk/DrunkSystem.cs create mode 100644 Content.Shared/Drunk/SharedDrunkSystem.cs create mode 100644 Resources/Prototypes/Entities/StatusEffects/body.yml create mode 100644 Resources/Prototypes/Entities/StatusEffects/speech.yml diff --git a/Content.Client/Drunk/DrunkOverlay.cs b/Content.Client/Drunk/DrunkOverlay.cs index 1f26e75ffc..c806cdad66 100644 --- a/Content.Client/Drunk/DrunkOverlay.cs +++ b/Content.Client/Drunk/DrunkOverlay.cs @@ -1,5 +1,6 @@ using Content.Shared.Drunk; using Content.Shared.StatusEffect; +using Content.Shared.StatusEffectNew; using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Shared.Enums; @@ -43,19 +44,21 @@ public sealed class DrunkOverlay : Overlay if (playerEntity == null) return; - if (!_entityManager.HasComponent(playerEntity) - || !_entityManager.TryGetComponent(playerEntity, out var status)) + var statusSys = _sysMan.GetEntitySystem(); + if (!statusSys.TryGetMaxTime(playerEntity.Value, out var status)) return; - var statusSys = _sysMan.GetEntitySystem(); - if (!statusSys.TryGetTime(playerEntity.Value, SharedDrunkSystem.DrunkKey, out var time, status)) - return; + var time = status.Item2; - var curTime = _timing.CurTime; - var timeLeft = (float) (time.Value.Item2 - curTime).TotalSeconds; + var power = SharedDrunkSystem.MagicNumber; + if (time != null) + { + var curTime = _timing.CurTime; + power = (float) (time - curTime).Value.TotalSeconds; + } - CurrentBoozePower += 8f * (0.5f*timeLeft - CurrentBoozePower) * args.DeltaSeconds / (timeLeft+1); + CurrentBoozePower += 8f * (power * 0.5f - CurrentBoozePower) * args.DeltaSeconds / (power+1); } protected override bool BeforeDraw(in OverlayDrawArgs args) diff --git a/Content.Client/Drunk/DrunkSystem.cs b/Content.Client/Drunk/DrunkSystem.cs index d9c6bb192f..c5fab75e7d 100644 --- a/Content.Client/Drunk/DrunkSystem.cs +++ b/Content.Client/Drunk/DrunkSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.Drunk; +using Content.Shared.StatusEffectNew; using Robust.Client.Graphics; using Robust.Client.Player; using Robust.Shared.Player; @@ -16,38 +17,41 @@ public sealed class DrunkSystem : SharedDrunkSystem { base.Initialize(); - SubscribeLocalEvent(OnDrunkInit); - SubscribeLocalEvent(OnDrunkShutdown); + SubscribeLocalEvent(OnStatusApplied); + SubscribeLocalEvent(OnStatusRemoved); - SubscribeLocalEvent(OnPlayerAttached); - SubscribeLocalEvent(OnPlayerDetached); + SubscribeLocalEvent>(OnPlayerAttached); + SubscribeLocalEvent>(OnPlayerDetached); _overlay = new(); } - private void OnPlayerAttached(EntityUid uid, DrunkComponent component, LocalPlayerAttachedEvent args) + private void OnStatusApplied(Entity entity, ref StatusEffectAppliedEvent args) { - _overlayMan.AddOverlay(_overlay); + if (!_overlayMan.HasOverlay()) + _overlayMan.AddOverlay(_overlay); } - private void OnPlayerDetached(EntityUid uid, DrunkComponent component, LocalPlayerDetachedEvent args) + private void OnStatusRemoved(Entity entity, ref StatusEffectRemovedEvent args) { + if (Status.HasEffectComp(args.Target)) + return; + + if (_player.LocalEntity != args.Target) + return; + _overlay.CurrentBoozePower = 0; _overlayMan.RemoveOverlay(_overlay); } - private void OnDrunkInit(EntityUid uid, DrunkComponent component, ComponentInit args) + private void OnPlayerAttached(Entity entity, ref StatusEffectRelayedEvent args) { - if (_player.LocalEntity == uid) - _overlayMan.AddOverlay(_overlay); + _overlayMan.AddOverlay(_overlay); } - private void OnDrunkShutdown(EntityUid uid, DrunkComponent component, ComponentShutdown args) + private void OnPlayerDetached(Entity entity, ref StatusEffectRelayedEvent args) { - if (_player.LocalEntity == uid) - { - _overlay.CurrentBoozePower = 0; - _overlayMan.RemoveOverlay(_overlay); - } + _overlay.CurrentBoozePower = 0; + _overlayMan.RemoveOverlay(_overlay); } } diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index 1f04421c0f..a162b29e19 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -418,7 +418,7 @@ public sealed class ElectrocutionSystem : SharedElectrocutionSystem } } - _stuttering.DoStutter(uid, time * StutteringTimeMultiplier, refresh, statusEffects); + _stuttering.DoStutter(uid, time * StutteringTimeMultiplier, refresh); _jittering.DoJitter(uid, time * JitterTimeMultiplier, refresh, JitterAmplitude, JitterFrequency, true, statusEffects); _popup.PopupEntity(Loc.GetString("electrocuted-component-mob-shocked-popup-player"), uid, uid); diff --git a/Content.Server/Speech/Components/StutteringAccentComponent.cs b/Content.Server/Speech/Components/StutteringAccentComponent.cs index e82cd9b12b..dd65ef66e0 100644 --- a/Content.Server/Speech/Components/StutteringAccentComponent.cs +++ b/Content.Server/Speech/Components/StutteringAccentComponent.cs @@ -6,29 +6,25 @@ namespace Content.Server.Speech.Components /// /// Percentage chance that a stutter will occur if it matches. /// - [DataField("matchRandomProb")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float MatchRandomProb = 0.8f; /// /// Percentage chance that a stutter occurs f-f-f-f-four times. /// - [DataField("fourRandomProb")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float FourRandomProb = 0.1f; /// /// Percentage chance that a stutter occurs t-t-t-three times. /// - [DataField("threeRandomProb")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float ThreeRandomProb = 0.2f; /// /// Percentage chance that a stutter cut off. /// - [DataField("cutRandomProb")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float CutRandomProb = 0.05f; } } diff --git a/Content.Server/Speech/EntitySystems/SlurredSystem.cs b/Content.Server/Speech/EntitySystems/SlurredSystem.cs index 5ac1ba037f..8690079de1 100644 --- a/Content.Server/Speech/EntitySystems/SlurredSystem.cs +++ b/Content.Server/Speech/EntitySystems/SlurredSystem.cs @@ -3,8 +3,7 @@ using Content.Server.Speech.Components; using Content.Shared.Drunk; using Content.Shared.Speech; using Content.Shared.Speech.EntitySystems; -using Content.Shared.StatusEffect; -using Robust.Shared.Prototypes; +using Content.Shared.StatusEffectNew; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -12,26 +11,15 @@ namespace Content.Server.Speech.EntitySystems; public sealed class SlurredSystem : SharedSlurredSystem { - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; + [Dependency] private readonly StatusEffectsSystem _status = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly IGameTiming _timing = default!; - private static readonly ProtoId SlurKey = "SlurredSpeech"; - public override void Initialize() { SubscribeLocalEvent(OnAccent); - } - public override void DoSlur(EntityUid uid, TimeSpan time, StatusEffectsComponent? status = null) - { - if (!Resolve(uid, ref status, false)) - return; - - if (!_statusEffectsSystem.HasStatusEffect(uid, SlurKey, status)) - _statusEffectsSystem.TryAddStatusEffect(uid, SlurKey, time, true, status); - else - _statusEffectsSystem.TryAddTime(uid, SlurKey, time, status); + SubscribeLocalEvent>(OnAccentRelayed); } /// @@ -39,15 +27,33 @@ public sealed class SlurredSystem : SharedSlurredSystem /// private float GetProbabilityScale(EntityUid uid) { - if (!_statusEffectsSystem.TryGetTime(uid, SharedDrunkSystem.DrunkKey, out var time)) + if (!_status.TryGetMaxTime(uid, out var time)) return 0; - var curTime = _timing.CurTime; - var timeLeft = (float) (time.Value.Item2 - curTime).TotalSeconds; - return Math.Clamp((timeLeft - 80) / 1100, 0f, 1f); + // This is a magic number. Why this value? No clue it was made 3 years before I refactored this. + var magic = SharedDrunkSystem.MagicNumber; + + if (time.Item2 != null) + { + var curTime = _timing.CurTime; + magic = (float) (time.Item2 - curTime).Value.TotalSeconds - 80f; + } + + return Math.Clamp(magic / SharedDrunkSystem.MagicNumber, 0f, 1f); } - private void OnAccent(EntityUid uid, SlurredAccentComponent component, AccentGetEvent args) + private void OnAccent(Entity entity, ref AccentGetEvent args) + { + GetAccent(entity, ref args); + } + + private void OnAccentRelayed(Entity entity, ref StatusEffectRelayedEvent args) + { + var ev = args.Args; + GetAccent(args.Args.Entity, ref ev); + } + + private void GetAccent(EntityUid uid, ref AccentGetEvent args) { var scale = GetProbabilityScale(uid); args.Message = Accentuate(args.Message, scale); diff --git a/Content.Server/Speech/EntitySystems/StutteringSystem.cs b/Content.Server/Speech/EntitySystems/StutteringSystem.cs index f47bff3523..2c78eb181e 100644 --- a/Content.Server/Speech/EntitySystems/StutteringSystem.cs +++ b/Content.Server/Speech/EntitySystems/StutteringSystem.cs @@ -3,14 +3,13 @@ using System.Text.RegularExpressions; using Content.Server.Speech.Components; using Content.Shared.Speech; using Content.Shared.Speech.EntitySystems; -using Content.Shared.StatusEffect; +using Content.Shared.StatusEffectNew; using Robust.Shared.Random; namespace Content.Server.Speech.EntitySystems { public sealed class StutteringSystem : SharedStutteringSystem { - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; [Dependency] private readonly IRobustRandom _random = default!; // Regex of characters to stutter. @@ -20,19 +19,36 @@ namespace Content.Server.Speech.EntitySystems public override void Initialize() { SubscribeLocalEvent(OnAccent); + + SubscribeLocalEvent>(OnAccent); } - public override void DoStutter(EntityUid uid, TimeSpan time, bool refresh, StatusEffectsComponent? status = null) + public override void DoStutter(EntityUid uid, TimeSpan time, bool refresh) { - if (!Resolve(uid, ref status, false)) - return; - - _statusEffectsSystem.TryAddStatusEffect(uid, StutterKey, time, refresh, status); + if (refresh) + Status.TryUpdateStatusEffectDuration(uid, Stuttering, time); + else + Status.TryAddStatusEffectDuration(uid, Stuttering, time); } - private void OnAccent(EntityUid uid, StutteringAccentComponent component, AccentGetEvent args) + public override void DoRemoveStutterTime(EntityUid uid, TimeSpan timeRemoved) { - args.Message = Accentuate(args.Message, component); + Status.TryAddTime(uid, Stuttering, -timeRemoved); + } + + public override void DoRemoveStutter(EntityUid uid) + { + Status.TryRemoveStatusEffect(uid, Stuttering); + } + + private void OnAccent(Entity entity, ref AccentGetEvent args) + { + args.Message = Accentuate(args.Message, entity.Comp); + } + + private void OnAccent(Entity entity, ref StatusEffectRelayedEvent args) + { + args.Args.Message = Accentuate(args.Args.Message, entity.Comp); } public string Accentuate(string message, StutteringAccentComponent component) diff --git a/Content.Shared/Body/Components/BloodstreamComponent.cs b/Content.Shared/Body/Components/BloodstreamComponent.cs index 0139932262..51814eaba9 100644 --- a/Content.Shared/Body/Components/BloodstreamComponent.cs +++ b/Content.Shared/Body/Components/BloodstreamComponent.cs @@ -198,12 +198,6 @@ public sealed partial class BloodstreamComponent : Component [ViewVariables] public Entity? TemporarySolution; - /// - /// Variable that stores the amount of status time added by having a low blood level. - /// - [DataField, AutoNetworkedField] - public TimeSpan StatusTime; - /// /// Alert to show when bleeding. /// diff --git a/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs b/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs index ac385040a9..182cdb47d3 100644 --- a/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs +++ b/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs @@ -6,7 +6,6 @@ using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reaction; using Content.Shared.Chemistry.Reagent; using Content.Shared.Damage; -using Content.Shared.Drunk; using Content.Shared.EntityEffects.Effects; using Content.Shared.FixedPoint; using Content.Shared.Fluids; @@ -16,7 +15,7 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Popups; using Content.Shared.Random.Helpers; using Content.Shared.Rejuvenate; -using Content.Shared.Speech.EntitySystems; +using Content.Shared.StatusEffectNew; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Prototypes; @@ -27,17 +26,18 @@ namespace Content.Shared.Body.Systems; public abstract class SharedBloodstreamSystem : EntitySystem { + public static readonly EntProtoId Bloodloss = "StatusEffectBloodloss"; + [Dependency] protected readonly SharedSolutionContainerSystem SolutionContainer = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedPuddleSystem _puddle = default!; + [Dependency] private readonly StatusEffectsSystem _status = default!; [Dependency] private readonly AlertsSystem _alertsSystem = default!; [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly DamageableSystem _damageableSystem = default!; - [Dependency] private readonly SharedDrunkSystem _drunkSystem = default!; - [Dependency] private readonly SharedStutteringSystem _stutteringSystem = default!; public override void Initialize() { @@ -100,15 +100,7 @@ public abstract class SharedBloodstreamSystem : EntitySystem // Apply dizziness as a symptom of bloodloss. // The effect is applied in a way that it will never be cleared without being healthy. // Multiplying by 2 is arbitrary but works for this case, it just prevents the time from running out - _drunkSystem.TryApplyDrunkenness( - uid, - (float)bloodstream.AdjustedUpdateInterval.TotalSeconds * 2, - applySlur: false); - _stutteringSystem.DoStutter(uid, bloodstream.AdjustedUpdateInterval * 2, refresh: false); - - // storing the drunk and stutter time so we can remove it independently from other effects additions - bloodstream.StatusTime += bloodstream.AdjustedUpdateInterval * 2; - DirtyField(uid, bloodstream, nameof(BloodstreamComponent.StatusTime)); + _status.TrySetStatusEffectDuration(uid, Bloodloss); } else if (!_mobStateSystem.IsDead(uid)) { @@ -118,12 +110,7 @@ public abstract class SharedBloodstreamSystem : EntitySystem bloodstream.BloodlossHealDamage * bloodPercentage, ignoreResistances: true, interruptsDoAfters: false); - // Remove the drunk effect when healthy. Should only remove the amount of drunk and stutter added by low blood level - _drunkSystem.TryRemoveDrunkenessTime(uid, bloodstream.StatusTime.TotalSeconds); - _stutteringSystem.DoRemoveStutterTime(uid, bloodstream.StatusTime.TotalSeconds); - // Reset the drunk and stutter time to zero - bloodstream.StatusTime = TimeSpan.Zero; - DirtyField(uid, bloodstream, nameof(BloodstreamComponent.StatusTime)); + _status.TryRemoveStatusEffect(uid, Bloodloss); } } } diff --git a/Content.Shared/Drunk/DrunkComponent.cs b/Content.Shared/Drunk/DrunkComponent.cs deleted file mode 100644 index 61c195d27e..0000000000 --- a/Content.Shared/Drunk/DrunkComponent.cs +++ /dev/null @@ -1,6 +0,0 @@ -using Robust.Shared.GameStates; - -namespace Content.Shared.Drunk; - -[RegisterComponent, NetworkedComponent] -public sealed partial class DrunkComponent : Component { } diff --git a/Content.Shared/Drunk/DrunkStatusEffectComponent.cs b/Content.Shared/Drunk/DrunkStatusEffectComponent.cs new file mode 100644 index 0000000000..69ad7c3ad9 --- /dev/null +++ b/Content.Shared/Drunk/DrunkStatusEffectComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Drunk; + +/// +/// This is used by a status effect entity to apply the to an entity. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class DrunkStatusEffectComponent : Component +{ +} diff --git a/Content.Shared/Drunk/DrunkSystem.cs b/Content.Shared/Drunk/DrunkSystem.cs deleted file mode 100644 index 236ce2dcd3..0000000000 --- a/Content.Shared/Drunk/DrunkSystem.cs +++ /dev/null @@ -1,48 +0,0 @@ -using Content.Shared.Speech.EntitySystems; -using Content.Shared.StatusEffect; -using Content.Shared.Traits.Assorted; -using Robust.Shared.Prototypes; - -namespace Content.Shared.Drunk; - -public abstract class SharedDrunkSystem : EntitySystem -{ - public static readonly ProtoId DrunkKey = "Drunk"; - - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; - [Dependency] private readonly SharedSlurredSystem _slurredSystem = default!; - - public void TryApplyDrunkenness(EntityUid uid, float boozePower, bool applySlur = true, - StatusEffectsComponent? status = null) - { - if (!Resolve(uid, ref status, false)) - return; - - if (TryComp(uid, out var trait)) - boozePower *= trait.BoozeStrengthMultiplier; - - if (applySlur) - { - _slurredSystem.DoSlur(uid, TimeSpan.FromSeconds(boozePower), status); - } - - if (!_statusEffectsSystem.HasStatusEffect(uid, DrunkKey, status)) - { - _statusEffectsSystem.TryAddStatusEffect(uid, DrunkKey, TimeSpan.FromSeconds(boozePower), true, status); - } - else - { - _statusEffectsSystem.TryAddTime(uid, DrunkKey, TimeSpan.FromSeconds(boozePower), status); - } - } - - public void TryRemoveDrunkenness(EntityUid uid) - { - _statusEffectsSystem.TryRemoveStatusEffect(uid, DrunkKey); - } - public void TryRemoveDrunkenessTime(EntityUid uid, double timeRemoved) - { - _statusEffectsSystem.TryRemoveTime(uid, DrunkKey, TimeSpan.FromSeconds(timeRemoved)); - } - -} diff --git a/Content.Shared/Drunk/SharedDrunkSystem.cs b/Content.Shared/Drunk/SharedDrunkSystem.cs new file mode 100644 index 0000000000..96aff82fa0 --- /dev/null +++ b/Content.Shared/Drunk/SharedDrunkSystem.cs @@ -0,0 +1,50 @@ +using Content.Shared.Speech.EntitySystems; +using Content.Shared.StatusEffectNew; +using Content.Shared.Traits.Assorted; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Drunk; + +public abstract class SharedDrunkSystem : EntitySystem +{ + public static EntProtoId Drunk = "StatusEffectDrunk"; + public static EntProtoId Woozy = "StatusEffectWoozy"; + + /* I have no clue why this magic number was chosen, I copied it from slur system and needed it for the overlay + If you have a more intelligent magic number be my guest to completely explode this value. + There were no comments as to why this value was chosen three years ago. */ + public static float MagicNumber = 1100f; + + [Dependency] protected readonly StatusEffectsSystem Status = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnLightweightDrinking); + } + + public void TryApplyDrunkenness(EntityUid uid, TimeSpan boozePower) + { + var ev = new DrunkEvent(boozePower); + RaiseLocalEvent(uid, ref ev); + + Status.TryAddStatusEffectDuration(uid, Drunk, ev.Duration); + } + + public void TryRemoveDrunkenness(EntityUid uid) + { + Status.TryRemoveStatusEffect(uid, Drunk); + } + + public void TryRemoveDrunkennessTime(EntityUid uid, TimeSpan boozePower) + { + Status.TryAddTime(uid, Drunk, - boozePower); + } + + private void OnLightweightDrinking(Entity entity, ref DrunkEvent args) + { + args.Duration *= entity.Comp.BoozeStrengthMultiplier; + } + + [ByRefEvent] + public record struct DrunkEvent(TimeSpan Duration); +} diff --git a/Content.Shared/EntityEffects/Effects/Drunk.cs b/Content.Shared/EntityEffects/Effects/Drunk.cs index 5f7f29c342..aa15df8f3d 100644 --- a/Content.Shared/EntityEffects/Effects/Drunk.cs +++ b/Content.Shared/EntityEffects/Effects/Drunk.cs @@ -9,13 +9,7 @@ public sealed partial class Drunk : EntityEffect /// BoozePower is how long each metabolism cycle will make the drunk effect last for. /// [DataField] - public float BoozePower = 3f; - - /// - /// Whether speech should be slurred. - /// - [DataField] - public bool SlurSpeech = true; + public TimeSpan BoozePower = TimeSpan.FromSeconds(3f); protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) => Loc.GetString("reagent-effect-guidebook-drunk", ("chance", Probability)); @@ -24,11 +18,10 @@ public sealed partial class Drunk : EntityEffect { var boozePower = BoozePower; - if (args is EntityEffectReagentArgs reagentArgs) { + if (args is EntityEffectReagentArgs reagentArgs) boozePower *= reagentArgs.Scale.Float(); - } var drunkSys = args.EntityManager.EntitySysManager.GetEntitySystem(); - drunkSys.TryApplyDrunkenness(args.TargetEntity, boozePower, SlurSpeech); + drunkSys.TryApplyDrunkenness(args.TargetEntity, boozePower); } } diff --git a/Content.Shared/Speech/EntitySystems/SharedSlurredSystem.cs b/Content.Shared/Speech/EntitySystems/SharedSlurredSystem.cs index 8718e054ba..aadda6aa09 100644 --- a/Content.Shared/Speech/EntitySystems/SharedSlurredSystem.cs +++ b/Content.Shared/Speech/EntitySystems/SharedSlurredSystem.cs @@ -1,8 +1,11 @@ using Content.Shared.StatusEffect; +using Robust.Shared.Prototypes; namespace Content.Shared.Speech.EntitySystems; public abstract class SharedSlurredSystem : EntitySystem { + public static readonly EntProtoId Stutter = "StatusEffectSlurred"; + public virtual void DoSlur(EntityUid uid, TimeSpan time, StatusEffectsComponent? status = null) { } } diff --git a/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs b/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs index 05358a04bb..90cd8bc4de 100644 --- a/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs +++ b/Content.Shared/Speech/EntitySystems/SharedStutteringSystem.cs @@ -1,26 +1,24 @@ -using Content.Shared.StatusEffect; +using Content.Shared.StatusEffectNew; using Robust.Shared.Prototypes; namespace Content.Shared.Speech.EntitySystems; public abstract class SharedStutteringSystem : EntitySystem { - public static readonly ProtoId StutterKey = "Stutter"; + public static readonly EntProtoId Stuttering = "StatusEffectStutter"; - [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; + [Dependency] protected readonly StatusEffectsSystem Status = default!; // For code in shared... I imagine we ain't getting accent prediction anytime soon so let's not bother. - public virtual void DoStutter(EntityUid uid, TimeSpan time, bool refresh, StatusEffectsComponent? status = null) + public virtual void DoStutter(EntityUid uid, TimeSpan time, bool refresh) { } - public virtual void DoRemoveStutterTime(EntityUid uid, double timeRemoved) + public virtual void DoRemoveStutterTime(EntityUid uid, TimeSpan timeRemoved) { - _statusEffectsSystem.TryRemoveTime(uid, StutterKey, TimeSpan.FromSeconds(timeRemoved)); } - public void DoRemoveStutter(EntityUid uid, double timeRemoved) + public virtual void DoRemoveStutter(EntityUid uid) { - _statusEffectsSystem.TryRemoveStatusEffect(uid, StutterKey); } } diff --git a/Content.Shared/StatusEffectNew/Components/StatusEffectComponent.cs b/Content.Shared/StatusEffectNew/Components/StatusEffectComponent.cs index 25f40718e9..67ff8b3e61 100644 --- a/Content.Shared/StatusEffectNew/Components/StatusEffectComponent.cs +++ b/Content.Shared/StatusEffectNew/Components/StatusEffectComponent.cs @@ -1,4 +1,3 @@ -using Content.Shared.Alert; using Content.Shared.Whitelist; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; diff --git a/Content.Shared/StatusEffectNew/StatusEffectSystem.Relay.cs b/Content.Shared/StatusEffectNew/StatusEffectSystem.Relay.cs index 0c4c5cf1f7..3644bed45e 100644 --- a/Content.Shared/StatusEffectNew/StatusEffectSystem.Relay.cs +++ b/Content.Shared/StatusEffectNew/StatusEffectSystem.Relay.cs @@ -1,6 +1,7 @@ using Content.Shared.Movement.Events; using Content.Shared.Movement.Systems; using Content.Shared.Rejuvenate; +using Content.Shared.Speech; using Content.Shared.StatusEffectNew.Components; using Content.Shared.Stunnable; using Robust.Shared.Player; @@ -23,6 +24,8 @@ public sealed partial class StatusEffectsSystem SubscribeLocalEvent(RefRelayStatusEffectEvent); SubscribeLocalEvent(RefRelayStatusEffectEvent); + + SubscribeLocalEvent(RelayStatusEffectEvent); } private void RefRelayStatusEffectEvent(EntityUid uid, StatusEffectContainerComponent component, ref T args) where T : struct diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml index d2dd761468..909e11e21f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml @@ -19,7 +19,6 @@ group: GenericNumber - type: StatusEffects allowed: - - Stutter - Electrocution - TemporaryBlindness - RadiationProtection diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml index ba4c5e3698..eba25717f3 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml @@ -35,7 +35,6 @@ bodyType: KinematicController # Same for all inheritors - type: StatusEffects allowed: - - Stutter - Electrocution - type: Pullable - type: Tag diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 279dbe9f54..fd700d7a4c 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -15,7 +15,6 @@ bodyType: KinematicController # Same for all inheritors - type: StatusEffects allowed: - - Stutter - Electrocution - type: Repairable doAfterDelay: 8 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml index 11c0f0d21d..4090138b57 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml @@ -19,7 +19,6 @@ baseSprintSpeed : 4 - type: StatusEffects allowed: - - Stutter - Electrocution - TemporaryBlindness - Pacified @@ -93,7 +92,6 @@ baseDecayRate: 0.04 - type: StatusEffects allowed: - - Stutter - Electrocution - TemporaryBlindness - Pacified diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index b6b344d6b5..441751a80b 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -100,7 +100,6 @@ types: {} - type: StatusEffects # Overwriting basesimplemob to remove flash, getting flashed as dragon just feelsbad allowed: - - Stutter - Electrocution - TemporaryBlindness - Pacified diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index 10c39ed7a0..3bb43c26cb 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -120,10 +120,7 @@ - !type:WashCreamPieReaction - type: StatusEffects allowed: - - Stutter - Electrocution - - Drunk - - SlurredSpeech - RatvarianLanguage - PressureImmunity - Muted diff --git a/Resources/Prototypes/Entities/StatusEffects/body.yml b/Resources/Prototypes/Entities/StatusEffects/body.yml new file mode 100644 index 0000000000..3765ebefd4 --- /dev/null +++ b/Resources/Prototypes/Entities/StatusEffects/body.yml @@ -0,0 +1,18 @@ +- type: entity + parent: MobStatusEffectBase + id: BloodstreamStatusEffectBase + abstract: true + components: + - type: StatusEffect + whitelist: + components: + - Bloodstream + +- type: entity + parent: [ BloodstreamStatusEffectBase ] + id: StatusEffectBloodloss + name: bloodloss + components: + - type: StutteringAccent + - type: DrunkStatusEffect + - type: RejuvenateRemovedStatusEffect diff --git a/Resources/Prototypes/Entities/StatusEffects/misc.yml b/Resources/Prototypes/Entities/StatusEffects/misc.yml index 3ce81081c0..14c6b5b649 100644 --- a/Resources/Prototypes/Entities/StatusEffects/misc.yml +++ b/Resources/Prototypes/Entities/StatusEffects/misc.yml @@ -78,3 +78,17 @@ name: hallucinations components: - type: SeeingRainbowsStatusEffect + +# Causes your vision to become blurry and gives me a headache. +- type: entity + parent: MobStatusEffectDebuff + id: StatusEffectWoozy + name: woozy + components: + - type: DrunkStatusEffect + +# Causes you to get drunk +- type: entity + parent: [ StatusEffectWoozy, StatusEffectSlurred ] + id: StatusEffectDrunk + name: drunk diff --git a/Resources/Prototypes/Entities/StatusEffects/speech.yml b/Resources/Prototypes/Entities/StatusEffects/speech.yml new file mode 100644 index 0000000000..17e533b1a8 --- /dev/null +++ b/Resources/Prototypes/Entities/StatusEffects/speech.yml @@ -0,0 +1,27 @@ +- type: entity + parent: MobStatusEffectDebuff + id: SpeechStatusEffectBase + abstract: true + components: + - type: StatusEffect + whitelist: + components: + - MobState + - Speech + requireAll: true + +# Causes you to st-t-u-t-t-t-er randomly when talking. +- type: entity + parent: SpeechStatusEffectBase + id: StatusEffectStutter + name: stutter + components: + - type: StutteringAccent + +# Causes you to schlur your words schwhen talking. +- type: entity + parent: SpeechStatusEffectBase + id: StatusEffectSlurred + name: slurred + components: + - type: SlurredAccent diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index 6ac69c84eb..f0a11706b0 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -12,9 +12,9 @@ - !type:GenericStatusEffect key: Stutter component: ScrambledAccent - - !type:Drunk - slurSpeech: false - boozePower: 20 + - !type:ModifyStatusEffect + effectProto: StatusEffectSlurred + time: 20.0 - type: reagent id: Dylovene @@ -104,8 +104,8 @@ metabolisms: Medicine: effects: - - !type:GenericStatusEffect - key: Drunk + - !type:ModifyStatusEffect + effectProto: StatusEffectDrunk time: 6.0 type: Remove - !type:HealthChange @@ -1353,8 +1353,8 @@ key: Jitter time: 2.0 type: Remove - - !type:GenericStatusEffect - key: Drunk + - !type:ModifyStatusEffect + effectProto: StatusEffectDrunk time: 6.0 type: Remove - !type:PopupMessage # we dont have sanity/mood so this will have to do From 87705e0335620828d11ba95520a72de80bd1e0ee Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 18 Aug 2025 20:27:36 +0000 Subject: [PATCH 062/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 024760194a..c9c1234ca8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: OnyxTheBrave - changes: - - message: Cloth is now able to be made in the Sheet-Meister 2000 - type: Add - id: 8354 - time: '2025-04-26T03:22:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32676 - author: SyaoranFox changes: - message: Pulse Pistol, Pulse Carbine, and Pulse Rifle now share the same sound @@ -3952,3 +3945,10 @@ id: 8866 time: '2025-08-18T18:58:30.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39732 +- author: Princess-Cheeseballs + changes: + - message: Being a Lightweight drunk no longer extends your bloodloss + type: Fix + id: 8867 + time: '2025-08-18T20:26:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38678 From 47cf99fb7e34888a3d4798122620e08f721e8f21 Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Mon, 18 Aug 2025 22:42:40 +0200 Subject: [PATCH 063/194] Fix medipen injectors not respecting entity identity (#39735) * Remove StaminaResistance from places where it should not be * I lost a nukie round because of this bug * Who put the god damn changes on the god damn branch --- Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs | 2 +- .../Locale/en-US/chemistry/components/hypospray-component.ftl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs b/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs index 34bc44f1cb..324858afd7 100644 --- a/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs @@ -144,7 +144,7 @@ public sealed class HypospraySystem : EntitySystem return false; } - _popup.PopupClient(Loc.GetString(msgFormat ?? "hypospray-component-inject-other-message", ("other", target)), target, user); + _popup.PopupClient(Loc.GetString(msgFormat ?? "hypospray-component-inject-other-message", ("other", Identity.Entity(target, EntityManager))), target, user); if (target != user) { diff --git a/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl b/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl index 96ebaa3ed0..36d229e78f 100644 --- a/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/hypospray-component.ftl @@ -8,7 +8,7 @@ hypospray-volume-label = Volume: [color=white]{$currentVolume}/{$totalVolume}u[/ ## Entity -hypospray-component-inject-other-message = You inject {$other}. +hypospray-component-inject-other-message = You inject {THE($other)}. hypospray-component-inject-self-message = You inject yourself. hypospray-component-empty-message = Nothing to inject. hypospray-component-feel-prick-message = You feel a tiny prick! From 020f25139c7a3e22bd80f7936efe5debae861e51 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 18 Aug 2025 20:43:48 +0000 Subject: [PATCH 064/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c9c1234ca8..f50bcb8a21 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: SyaoranFox - changes: - - message: Pulse Pistol, Pulse Carbine, and Pulse Rifle now share the same sound - file. - type: Tweak - id: 8355 - time: '2025-04-26T13:36:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36952 - author: RedBookcase changes: - message: Various changes to edged weapons, including new storage sprites and new @@ -3952,3 +3944,11 @@ id: 8867 time: '2025-08-18T20:26:29.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/38678 +- author: SlamBamActionman + changes: + - message: Auto-injector/medipen pop-ups now show the correct identity when injecting + someone else. + type: Fix + id: 8868 + time: '2025-08-18T20:42:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39735 From 3323a17b3d3f5830e8e7a6c6418019c373b9d017 Mon Sep 17 00:00:00 2001 From: MarkerWicker Date: Mon, 18 Aug 2025 17:49:25 -0600 Subject: [PATCH 065/194] predict StackSystem GetVerbsEvent (#39741) --- Content.Server/Stack/StackSystem.cs | 41 +---------------- Content.Shared/Stacks/SharedStackSystem.cs | 53 ++++++++++++++++++++++ 2 files changed, 54 insertions(+), 40 deletions(-) diff --git a/Content.Server/Stack/StackSystem.cs b/Content.Server/Stack/StackSystem.cs index a24cb2df42..aac5a23902 100644 --- a/Content.Server/Stack/StackSystem.cs +++ b/Content.Server/Stack/StackSystem.cs @@ -16,13 +16,9 @@ namespace Content.Server.Stack { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - public static readonly int[] DefaultSplitAmounts = { 1, 5, 10, 20, 30, 50 }; - public override void Initialize() { base.Initialize(); - - SubscribeLocalEvent>(OnStackAlternativeInteract); } public override void SetCount(EntityUid uid, int amount, StackComponent? component = null) @@ -165,42 +161,7 @@ namespace Content.Server.Stack return amounts; } - private void OnStackAlternativeInteract(EntityUid uid, StackComponent stack, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract || args.Hands == null || stack.Count == 1) - return; - - AlternativeVerb halve = new() - { - Text = Loc.GetString("comp-stack-split-halve"), - Category = VerbCategory.Split, - Act = () => UserSplit(uid, args.User, stack.Count / 2, stack), - Priority = 1 - }; - args.Verbs.Add(halve); - - var priority = 0; - foreach (var amount in DefaultSplitAmounts) - { - if (amount >= stack.Count) - continue; - - AlternativeVerb verb = new() - { - Text = amount.ToString(), - Category = VerbCategory.Split, - Act = () => UserSplit(uid, args.User, amount, stack), - // we want to sort by size, not alphabetically by the verb text. - Priority = priority - }; - - priority--; - - args.Verbs.Add(verb); - } - } - - private void UserSplit(EntityUid uid, EntityUid userUid, int amount, + protected override void UserSplit(EntityUid uid, EntityUid userUid, int amount, StackComponent? stack = null, TransformComponent? userTransform = null) { diff --git a/Content.Shared/Stacks/SharedStackSystem.cs b/Content.Shared/Stacks/SharedStackSystem.cs index 60b93a8da8..b3de1870fe 100644 --- a/Content.Shared/Stacks/SharedStackSystem.cs +++ b/Content.Shared/Stacks/SharedStackSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Interaction; using Content.Shared.Nutrition; using Content.Shared.Popups; using Content.Shared.Storage.EntitySystems; +using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Shared.GameStates; using Robust.Shared.Physics.Systems; @@ -29,6 +30,8 @@ namespace Content.Shared.Stacks [Dependency] protected readonly SharedPopupSystem Popup = default!; [Dependency] private readonly SharedStorageSystem _storage = default!; + public static readonly int[] DefaultSplitAmounts = { 1, 5, 10, 20, 30, 50 }; + public override void Initialize() { base.Initialize(); @@ -40,6 +43,7 @@ namespace Content.Shared.Stacks SubscribeLocalEvent(OnStackInteractUsing); SubscribeLocalEvent(OnBeforeEaten); SubscribeLocalEvent(OnEaten); + SubscribeLocalEvent>(OnStackAlternativeInteract); _vvm.GetTypeHandler() .AddPath(nameof(StackComponent.Count), (_, comp) => comp.Count, SetCount); @@ -432,6 +436,55 @@ namespace Content.Shared.Stacks // Here to tell the food system to do destroy stuff. args.Destroy = true; } + + private void OnStackAlternativeInteract(EntityUid uid, StackComponent stack, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null || stack.Count == 1) + return; + + AlternativeVerb halve = new() + { + Text = Loc.GetString("comp-stack-split-halve"), + Category = VerbCategory.Split, + Act = () => UserSplit(uid, args.User, stack.Count / 2, stack), + Priority = 1 + }; + args.Verbs.Add(halve); + + var priority = 0; + foreach (var amount in DefaultSplitAmounts) + { + if (amount >= stack.Count) + continue; + + AlternativeVerb verb = new() + { + Text = amount.ToString(), + Category = VerbCategory.Split, + Act = () => UserSplit(uid, args.User, amount, stack), + // we want to sort by size, not alphabetically by the verb text. + Priority = priority + }; + + priority--; + + args.Verbs.Add(verb); + } + } + + /// + /// OnStackAlternativeInteract() was moved to shared in order to faciliate prediction of stack splitting verbs. + /// However, prediction of interacitons with spawned entities is non-functional (or so i'm told) + /// So, UserSplit() and Split() should remain on the server for the time being. + /// This empty virtual method allows for UserSplit() to be called on the server from the client. + /// When prediction is improved, those two methods should be moved to shared, in order to predict the splitting itself (not just the verbs) + /// + protected virtual void UserSplit(EntityUid uid, EntityUid userUid, int amount, + StackComponent? stack = null, + TransformComponent? userTransform = null) + { + + } } /// From 8768074706197e2b59795faa125df4f4eebb68e4 Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Mon, 18 Aug 2025 21:36:28 -0400 Subject: [PATCH 066/194] More informative changeline devour armor text (#39745) more informative armor text --- Resources/Locale/en-US/changeling/changeling.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Locale/en-US/changeling/changeling.ftl b/Resources/Locale/en-US/changeling/changeling.ftl index d304385848..57ad3550bf 100644 --- a/Resources/Locale/en-US/changeling/changeling.ftl +++ b/Resources/Locale/en-US/changeling/changeling.ftl @@ -2,7 +2,7 @@ roles-antag-changeling-objective = A intelligent predator that assumes the identities of its victims. changeling-devour-attempt-failed-rotting = This corpse has only rotted biomass. -changeling-devour-attempt-failed-protected = This victim's biomass is protected. +changeling-devour-attempt-failed-protected = This victim's biomass is protected by armor! changeling-devour-begin-windup-self = Our uncanny mouth reveals itself with otherworldly hunger. changeling-devour-begin-windup-others = { CAPITALIZE(POSS-ADJ($user)) } uncanny mouth reveals itself with otherworldly hunger. From a491718be6acd6b30753798fa87c267f2368fb78 Mon Sep 17 00:00:00 2001 From: Nox Date: Mon, 18 Aug 2025 23:19:05 -0700 Subject: [PATCH 067/194] Rebuilt Box Armory (#39733) Rebuilt Box armory Signed-off-by: Nox38 --- Resources/Maps/box.yml | 2368 +++++++++++++++++++++++++++------------- 1 file changed, 1589 insertions(+), 779 deletions(-) diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index c86fde6628..b47c15cf62 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -4,8 +4,8 @@ meta: engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 08/09/2025 20:23:34 - entityCount: 28684 + time: 08/18/2025 19:36:14 + entityCount: 28741 maps: - 780 grids: @@ -170,7 +170,7 @@ entities: version: 7 -1,2: ind: -1,2 - tiles: WQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAQAdAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAACAFkAAAAAAgAdAAAAAAAAHQAAAAACAB0AAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAeQAAAAAAAB0AAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQBZAAAAAAIAeQAAAAAAAB0AAAAAAgB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAAdAAAAAAMAWQAAAAAAAB0AAAAAAQBZAAAAAAAAWQAAAAACAB0AAAAAAQAdAAAAAAIAHQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAB0AAAAAAQBZAAAAAAIAHQAAAAAAAFkAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAACAB0AAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAHQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgB5AAAAAAAAHQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAB0AAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAA== + tiles: WQAAAAAAAFkAAAAAAQB5AAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAHQAAAAACAB0AAAAAAwAdAAAAAAMAHQAAAAACAB0AAAAAAgAdAAAAAAMAHQAAAAADAB0AAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAEAeQAAAAAAAFkAAAAAAgBZAAAAAAEAHQAAAAACAB0AAAAAAAAdAAAAAAIAHQAAAAADAB0AAAAAAQAdAAAAAAEAHQAAAAADAB0AAAAAAgAdAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAABAHkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAAdAAAAAAMAHQAAAAAAAB0AAAAAAQAdAAAAAAIAHQAAAAACAB0AAAAAAgAdAAAAAAIAeQAAAAAAAFkAAAAAAgB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAB0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAAAAHkAAAAAAAAdAAAAAAMAeQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAQAdAAAAAAIAHQAAAAACAHkAAAAAAABZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAMAHQAAAAADAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAMAWQAAAAACAFkAAAAAAQBZAAAAAAAAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAADAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAQB5AAAAAAAAHQAAAAABAB0AAAAAAwAdAAAAAAMAHQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAABAFkAAAAAAQB5AAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAMAeQAAAAAAAB0AAAAAAQBZAAAAAAIAWQAAAAADAFkAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAgAdAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAACAHkAAAAAAAAdAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAB0AAAAAAQAdAAAAAAIAeQAAAAAAAFkAAAAAAwBZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAHQAAAAAAAFkAAAAAAAAdAAAAAAAAWQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwB5AAAAAAAAHQAAAAAAAB0AAAAAAwAdAAAAAAIAeQAAAAAAAHkAAAAAAABZAAAAAAIAeQAAAAAAAFkAAAAAAQAdAAAAAAAAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAIAHQAAAAABAB0AAAAAAAAdAAAAAAIAHQAAAAAAAHkAAAAAAAAdAAAAAAMAWQAAAAACAB0AAAAAAQBZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAACAHkAAAAAAAAdAAAAAAAAHQAAAAADAB0AAAAAAgB5AAAAAAAAHQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAQB5AAAAAAAAHQAAAAAAAB0AAAAAAQAdAAAAAAMAeQAAAAAAAB0AAAAAAAAdAAAAAAEAHQAAAAAAAB0AAAAAAwAdAAAAAAEAHQAAAAAAAB0AAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAgBZAAAAAAIAeQAAAAAAAB0AAAAAAgAdAAAAAAIAHQAAAAADAA== version: 7 0,2: ind: 0,2 @@ -761,16 +761,14 @@ entities: color: '#DE3A3A96' id: BotGreyscale decals: - 6477: -13,42 6480: -13,45 - 6481: -15,45 - 6482: -15,44 6493: -15,41 - 7558: -13,44 7560: -10,44 7561: -9,44 7562: -9,47 7563: -10,47 + 7598: -13,43 + 7622: -14,47 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -793,11 +791,6 @@ entities: 6231: -25,-75 6232: -24,-76 6233: -25,-77 - - node: - color: '#DE3A3A96' - id: BotLeft - decals: - 7559: -11,44 - node: color: '#FFFFFFFF' id: BotLeft @@ -816,8 +809,6 @@ entities: decals: 6490: -14,40 6491: -15,40 - 6500: -12,47 - 6501: -11,47 - node: zIndex: 1 color: '#FFFFFFFF' @@ -837,7 +828,7 @@ entities: id: BotRightGreyscale decals: 6498: -15,47 - 6499: -14,47 + 7623: -11,47 - node: zIndex: 1 color: '#FFFFFFFF' @@ -846,6 +837,14 @@ entities: 6019: -2,-22 6226: -26,-75 6227: -24,-77 + - node: + color: '#DE3A3A96' + id: BoxGreyscale + decals: + 7618: -9,42 + 7619: -10,42 + 7620: -10,40 + 7621: -9,40 - node: color: '#FFFFFFFF' id: BoxGreyscale @@ -862,12 +861,12 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 7557: -14,41 + 7603: -14,42 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 7556: -12,41 + 7617: -12,42 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe @@ -887,8 +886,7 @@ entities: 5989: -24,-10 6466: -14,45 7549: -14,44 - 7550: -14,43 - 7551: -14,42 + 7601: -14,43 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -906,7 +904,7 @@ entities: 5959: -25,-70 5960: -24,-70 5961: -23,-70 - 7555: -13,41 + 7602: -13,42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -948,7 +946,6 @@ entities: 6462: -12,45 7552: -12,44 7553: -12,43 - 7554: -12,42 - node: color: '#9FED584D' id: BrickTileSteelCornerNe @@ -3046,18 +3043,12 @@ entities: 7111: -12,46 7116: -14,46 7117: -15,46 - 7118: -15,44 7119: -15,41 7120: -15,40 7121: -13,40 - 7122: -11,40 - 7123: -11,41 7125: -11,45 - 7126: -11,47 - 7127: -13,47 7128: -15,47 7129: -13,45 - 7130: -13,42 7133: -7,40 7134: -9,40 7135: -9,41 @@ -3295,6 +3286,13 @@ entities: 6259: -25,-26 6260: -27,-26 6261: -28,-24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 7626: -11,46 + 7629: -9,46 - node: cleanable: True zIndex: 5 @@ -4122,10 +4120,8 @@ entities: 7400: -7,48 7401: -5,46 7402: -7,44 - 7403: -11,41 7405: -11,45 7406: -13,46 - 7407: -13,42 7408: -3,37 7409: 2,37 7410: 2,41 @@ -4181,6 +4177,13 @@ entities: 7463: -16,24 7464: -14,24 7465: -15,29 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 7624: -10,45 + 7627: -14,45 - node: cleanable: True zIndex: 5 @@ -4709,7 +4712,6 @@ entities: 7485: -11,52 7486: -13,50 7487: -14,50 - 7488: -14,47 7489: -15,47 7490: -6,44 7491: -6,38 @@ -4717,6 +4719,13 @@ entities: 7493: 0,26 7494: -1,18 7495: -9,17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 7625: -10,46 + 7628: -9,45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7290,6 +7299,7 @@ entities: decals: 1608: 19,-19 3513: 23,17 + 7599: -9,45 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -7297,8 +7307,7 @@ entities: 1615: 21,-21 3517: 25,17 6268: 68,-47 - 6441: -11,40 - 7538: -14,41 + 7608: -14,41 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE @@ -7347,8 +7356,7 @@ entities: 2314: -73,-4 3512: -13,-63 6310: 24,-80 - 7539: -12,42 - 7547: -9,45 + 7614: -12,41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7410,7 +7418,6 @@ entities: 2315: -69,8 2316: -76,8 3699: -38,-10 - 6442: -11,41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7419,11 +7426,6 @@ entities: 5976: -23,-66 6069: 20,-76 6175: -19,-82 - - node: - color: '#FFFFFFFF' - id: WarnEndE - decals: - 7545: -8,45 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN @@ -7469,6 +7471,7 @@ entities: 6967: 10,51 7531: -12,44 7540: -12,43 + 7613: -12,42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7753,12 +7756,10 @@ entities: 6318: 26,-74 6450: -10,40 6451: -9,40 - 6452: -8,40 - 7528: -13,41 - 7529: -12,41 7532: -11,45 7533: -10,45 - 7534: -9,45 + 7606: -13,41 + 7615: -12,41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7842,8 +7843,8 @@ entities: 6961: 11,50 6962: 11,51 7523: -14,44 - 7526: -14,43 - 7530: -14,42 + 7600: -14,43 + 7607: -14,42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7930,10 +7931,8 @@ entities: 6444: -12,46 6445: -11,46 6448: -9,42 - 7541: -11,42 - 7542: -10,42 - 7543: -8,42 7548: -10,46 + 7616: -10,42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8822,7 +8821,8 @@ entities: -3,6: 0: 65423 -3,7: - 0: 51711 + 0: 51615 + 5: 96 -3,8: 0: 7421 -2,5: @@ -8832,7 +8832,8 @@ entities: -2,7: 0: 64733 -2,8: - 0: 20479 + 0: 19967 + 5: 512 -1,8: 0: 50687 4,8: @@ -8886,9 +8887,12 @@ entities: -3,9: 0: 4095 -3,10: - 0: 15291 + 0: 13235 + 5: 2056 -3,11: - 0: 49087 + 0: 8115 + 6: 8192 + 5: 32780 -2,9: 0: 61439 -2,11: @@ -9796,7 +9800,7 @@ entities: 1: 192 3: 49152 3,-17: - 5: 30576 + 7: 30576 4,-16: 1: 240 0: 61440 @@ -10378,7 +10382,7 @@ entities: 0: 255 1: 49152 4,-17: - 6: 30576 + 8: 30576 5,-20: 0: 65535 5,-19: @@ -10958,6 +10962,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14948 + moles: + - 18.472576 + - 69.49208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -11337,6 +11371,21 @@ entities: - 22747 - type: Fixtures fixtures: {} + - uid: 8404 + components: + - type: MetaData + name: Red Armory Air Alarm + - type: Transform + pos: -12.5,48.5 + parent: 8364 + - type: DeviceList + devices: + - 28696 + - 9106 + - 28633 + - 8577 + - type: Fixtures + fixtures: {} - uid: 10705 components: - type: Transform @@ -12632,7 +12681,6 @@ entities: - 9126 - 9127 - 9125 - - 26306 - 26248 - 26256 - 26257 @@ -12671,26 +12719,6 @@ entities: - 26235 - type: Fixtures fixtures: {} - - uid: 26323 - components: - - type: MetaData - name: Armory Air Alarm - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,39.5 - parent: 8364 - - type: DeviceList - devices: - - 28634 - - 26322 - - 28631 - - 28643 - - 28632 - - 28633 - - 28642 - - 28644 - - type: Fixtures - fixtures: {} - uid: 26340 components: - type: MetaData @@ -13101,6 +13129,24 @@ entities: - 28506 - type: Fixtures fixtures: {} + - uid: 28739 + components: + - type: MetaData + name: Blue Armory Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,39.5 + parent: 8364 + - type: DeviceList + devices: + - 28731 + - 28501 + - 9106 + - 28696 + - 28634 + - 28728 + - type: Fixtures + fixtures: {} - proto: AirAlarmFreezer entities: - uid: 26712 @@ -13396,12 +13442,6 @@ entities: parent: 8364 - proto: AirlockArmoryGlassLocked entities: - - uid: 8662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,40.5 - parent: 8364 - uid: 8676 components: - type: MetaData @@ -13410,12 +13450,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,35.5 parent: 8364 - - uid: 8699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,42.5 - parent: 8364 - uid: 8932 components: - type: MetaData @@ -13507,6 +13541,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,34.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8943: + - - DoorStatus + - Close + 8920: + - - DoorStatus + - Close - uid: 7765 components: - type: MetaData @@ -13538,6 +13582,16 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,34.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8920: + - - DoorStatus + - Close + 8943: + - - DoorStatus + - Close - uid: 8920 components: - type: MetaData @@ -13546,6 +13600,16 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,30.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8907: + - - DoorStatus + - Close + 7759: + - - DoorStatus + - Close - uid: 8943 components: - type: MetaData @@ -13554,6 +13618,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,30.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7759: + - - DoorStatus + - Close + 8907: + - - DoorStatus + - Close - proto: AirlockBrigLocked entities: - uid: 55 @@ -14865,7 +14939,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -139849.31 + secondsUntilStateChange: -144181.02 state: Opening - type: DeviceLinkSource lastSignals: @@ -16292,6 +16366,20 @@ entities: - type: Transform pos: -60.5,2.5 parent: 8364 + - uid: 13819 + components: + - type: MetaData + name: glass airlock (Blue Armory) + - type: Transform + pos: -7.5,41.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28735: + - - DoorStatus + - Close - uid: 14151 components: - type: Transform @@ -16304,6 +16392,20 @@ entities: - type: Transform pos: -23.5,-30.5 parent: 8364 + - uid: 28735 + components: + - type: MetaData + name: glass airlock (Blue Armory) + - type: Transform + pos: -10.5,41.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13819: + - - DoorStatus + - Close - proto: AirlockSecurityLawyerGlassLocked entities: - uid: 542 @@ -16576,6 +16678,15 @@ entities: - type: DeviceNetwork deviceLists: - 22699 + - uid: 9106 + components: + - type: Transform + pos: -12.5,41.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28739 + - 8404 - uid: 9450 components: - type: Transform @@ -17146,14 +17257,6 @@ entities: - 26206 - 28498 - 28500 - - uid: 26322 - components: - - type: Transform - pos: -10.5,45.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26323 - uid: 26341 components: - type: Transform @@ -17536,14 +17639,21 @@ entities: - type: DeviceNetwork deviceLists: - 28500 + - 28739 - uid: 28644 components: - type: Transform pos: -11.5,41.5 parent: 8364 + - uid: 28696 + components: + - type: Transform + pos: -11.5,46.5 + parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 + - 8404 + - 28739 - proto: AirSensorFreezer entities: - uid: 28411 @@ -22355,11 +22465,6 @@ entities: - type: Transform pos: -5.5,-76.5 parent: 8364 - - uid: 13622 - components: - - type: Transform - pos: -7.5,45.5 - parent: 8364 - uid: 13849 components: - type: Transform @@ -22824,6 +22929,13 @@ entities: - type: Transform pos: -19.55601,-15.847038 parent: 8364 +- proto: BoxFlashbang + entities: + - uid: 28749 + components: + - type: Transform + pos: -14.479834,46.5225 + parent: 8364 - proto: BoxFolderBase entities: - uid: 8625 @@ -22978,7 +23090,12 @@ entities: - uid: 8397 components: - type: Transform - pos: -0.118038416,43.70481 + pos: 0.014337063,43.815163 + parent: 8364 + - uid: 28727 + components: + - type: Transform + pos: -14.356977,45.6773 parent: 8364 - proto: BoxingBell entities: @@ -23002,6 +23119,22 @@ entities: - type: Transform pos: 24.498875,-36.223793 parent: 8364 +- proto: BoxLethalshot + entities: + - uid: 26309 + components: + - type: Transform + parent: 26317 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26310 + components: + - type: Transform + parent: 26317 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxLightbulb entities: - uid: 1999 @@ -23050,7 +23183,7 @@ entities: - uid: 5078 components: - type: Transform - pos: -3.8724453,34.55979 + pos: -14.497602,45.39605 parent: 8364 - proto: BoxMagazinePistolPractice entities: @@ -23092,6 +23225,18 @@ entities: - type: Transform pos: 7.3923097,47.786827 parent: 8364 +- proto: BoxShotgunSlug + entities: + - uid: 7852 + components: + - type: Transform + pos: -7.2934785,34.60984 + parent: 8364 + - uid: 9144 + components: + - type: Transform + pos: -7.289858,34.610893 + parent: 8364 - proto: BoxSterileMask entities: - uid: 5467 @@ -23104,6 +23249,13 @@ entities: - type: Transform pos: 24.405125,-36.239418 parent: 8364 +- proto: BoxStinger + entities: + - uid: 28700 + components: + - type: Transform + pos: -14.6620245,46.74173 + parent: 8364 - proto: BoxSyringe entities: - uid: 19263 @@ -23118,6 +23270,11 @@ entities: - type: Transform pos: 11.476913,44.679543 parent: 8364 + - uid: 26323 + components: + - type: Transform + pos: -14.229834,46.74125 + parent: 8364 - proto: BoxTrashbag entities: - uid: 13356 @@ -23142,7 +23299,12 @@ entities: - uid: 9112 components: - type: Transform - pos: -4.1121473,34.789116 + pos: -0.0012879372,43.455788 + parent: 8364 + - uid: 28730 + components: + - type: Transform + pos: -14.700727,45.70855 parent: 8364 - proto: BrbSign entities: @@ -23220,12 +23382,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,-86.5 parent: 8364 - - uid: 8623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,44.5 - parent: 8364 - uid: 9041 components: - type: Transform @@ -23287,6 +23443,12 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,47.5 parent: 8364 + - uid: 8419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,44.5 + parent: 8364 - proto: ButtonFrameExit entities: - uid: 3810 @@ -24411,6 +24573,11 @@ entities: - type: Transform pos: -21.5,-76.5 parent: 8364 + - uid: 5072 + components: + - type: Transform + pos: -9.5,41.5 + parent: 8364 - uid: 5086 components: - type: Transform @@ -24906,6 +25073,11 @@ entities: - type: Transform pos: -0.5,23.5 parent: 8364 + - uid: 6332 + components: + - type: Transform + pos: -8.5,46.5 + parent: 8364 - uid: 6348 components: - type: Transform @@ -25561,11 +25733,21 @@ entities: - type: Transform pos: -5.5,12.5 parent: 8364 + - uid: 7292 + components: + - type: Transform + pos: -9.5,46.5 + parent: 8364 - uid: 7297 components: - type: Transform pos: -17.5,18.5 parent: 8364 + - uid: 7314 + components: + - type: Transform + pos: -10.5,46.5 + parent: 8364 - uid: 7346 components: - type: Transform @@ -25581,6 +25763,11 @@ entities: - type: Transform pos: -25.5,5.5 parent: 8364 + - uid: 7379 + components: + - type: Transform + pos: -16.5,40.5 + parent: 8364 - uid: 7510 components: - type: Transform @@ -25671,11 +25858,6 @@ entities: - type: Transform pos: -0.5,26.5 parent: 8364 - - uid: 9067 - components: - - type: Transform - pos: -14.5,45.5 - parent: 8364 - uid: 9068 components: - type: Transform @@ -32901,11 +33083,6 @@ entities: - type: Transform pos: -10.5,41.5 parent: 8364 - - uid: 13735 - components: - - type: Transform - pos: -9.5,41.5 - parent: 8364 - uid: 13743 components: - type: Transform @@ -32951,26 +33128,6 @@ entities: - type: Transform pos: -8.5,41.5 parent: 8364 - - uid: 13816 - components: - - type: Transform - pos: -10.5,45.5 - parent: 8364 - - uid: 13817 - components: - - type: Transform - pos: -9.5,45.5 - parent: 8364 - - uid: 13818 - components: - - type: Transform - pos: -8.5,45.5 - parent: 8364 - - uid: 13819 - components: - - type: Transform - pos: -7.5,45.5 - parent: 8364 - uid: 13820 components: - type: Transform @@ -45181,11 +45338,6 @@ entities: - type: Transform pos: 47.5,-28.5 parent: 8364 - - uid: 28503 - components: - - type: Transform - pos: -15.5,45.5 - parent: 8364 - uid: 28539 components: - type: Transform @@ -45261,11 +45413,6 @@ entities: - type: Transform pos: -16.5,47.5 parent: 8364 - - uid: 28582 - components: - - type: Transform - pos: -17.5,47.5 - parent: 8364 - uid: 28601 components: - type: Transform @@ -45281,6 +45428,26 @@ entities: - type: Transform pos: -18.5,21.5 parent: 8364 + - uid: 28698 + components: + - type: Transform + pos: -14.5,46.5 + parent: 8364 + - uid: 28716 + components: + - type: Transform + pos: -7.5,45.5 + parent: 8364 + - uid: 28729 + components: + - type: Transform + pos: -7.5,46.5 + parent: 8364 + - uid: 28741 + components: + - type: Transform + pos: -15.5,46.5 + parent: 8364 - proto: CableApcStack entities: - uid: 1195 @@ -53402,6 +53569,11 @@ entities: - type: Transform pos: -17.5,18.5 parent: 8364 + - uid: 7348 + components: + - type: Transform + pos: -10.5,46.5 + parent: 8364 - uid: 7380 components: - type: Transform @@ -53417,6 +53589,11 @@ entities: - type: Transform pos: -14.5,16.5 parent: 8364 + - uid: 7415 + components: + - type: Transform + pos: -14.5,46.5 + parent: 8364 - uid: 7567 components: - type: Transform @@ -53487,6 +53664,11 @@ entities: - type: Transform pos: -33.5,10.5 parent: 8364 + - uid: 7787 + components: + - type: Transform + pos: -7.5,42.5 + parent: 8364 - uid: 7799 components: - type: Transform @@ -53565,7 +53747,22 @@ entities: - uid: 8406 components: - type: Transform - pos: -14.5,45.5 + pos: -8.5,46.5 + parent: 8364 + - uid: 8408 + components: + - type: Transform + pos: -14.5,44.5 + parent: 8364 + - uid: 8627 + components: + - type: Transform + pos: -7.5,46.5 + parent: 8364 + - uid: 8645 + components: + - type: Transform + pos: -9.5,46.5 parent: 8364 - uid: 8914 components: @@ -55942,11 +56139,6 @@ entities: - type: Transform pos: -15.5,45.5 parent: 8364 - - uid: 13621 - components: - - type: Transform - pos: -15.5,44.5 - parent: 8364 - uid: 13629 components: - type: Transform @@ -61837,6 +62029,31 @@ entities: - type: Transform pos: -19.5,19.5 parent: 8364 + - uid: 28687 + components: + - type: Transform + pos: -15.5,43.5 + parent: 8364 + - uid: 28695 + components: + - type: Transform + pos: -10.5,42.5 + parent: 8364 + - uid: 28734 + components: + - type: Transform + pos: -7.5,40.5 + parent: 8364 + - uid: 28736 + components: + - type: Transform + pos: -7.5,45.5 + parent: 8364 + - uid: 28738 + components: + - type: Transform + pos: -10.5,40.5 + parent: 8364 - proto: CableMVStack entities: - uid: 1697 @@ -73371,20 +73588,25 @@ entities: parent: 8364 - proto: ClothingHeadHelmetRiot entities: - - uid: 7853 + - uid: 9139 components: - type: Transform - pos: -12.25313,40.561676 + pos: -14.256912,43.71807 parent: 8364 - - uid: 8404 + - uid: 9141 components: - type: Transform - pos: -12.25313,40.71804 + pos: -14.256912,43.6139 parent: 8364 - - uid: 8550 + - uid: 9142 components: - type: Transform - pos: -12.25313,40.42617 + pos: -14.256912,43.377792 + parent: 8364 + - uid: 9143 + components: + - type: Transform + pos: -14.256912,43.502792 parent: 8364 - proto: ClothingHeadsetEngineering entities: @@ -73644,6 +73866,11 @@ entities: parent: 8364 - proto: ClothingOuterArmorBulletproof entities: + - uid: 174 + components: + - type: Transform + pos: -14.700324,42.37941 + parent: 8364 - uid: 7850 components: - type: Transform @@ -73652,7 +73879,7 @@ entities: - uid: 8543 components: - type: Transform - pos: -14.691839,42.479675 + pos: -14.700324,42.50441 parent: 8364 - uid: 8546 components: @@ -73671,6 +73898,11 @@ entities: - type: Transform pos: -14.411459,42.631638 parent: 8364 + - uid: 7843 + components: + - type: Transform + pos: -14.403449,42.332535 + parent: 8364 - uid: 7849 components: - type: Transform @@ -73678,20 +73910,25 @@ entities: parent: 8364 - proto: ClothingOuterArmorRiot entities: - - uid: 7846 + - uid: 9145 components: - type: Transform - pos: -12.607471,40.645073 + pos: -14.65969,43.634735 parent: 8364 - - uid: 7852 + - uid: 9146 components: - type: Transform - pos: -12.607471,40.467865 + pos: -14.65969,43.55835 parent: 8364 - - uid: 8544 + - uid: 9147 components: - type: Transform - pos: -12.607471,40.572105 + pos: -14.65969,43.475014 + parent: 8364 + - uid: 28714 + components: + - type: Transform + pos: -14.65969,43.384735 parent: 8364 - proto: ClothingOuterCardborg entities: @@ -73750,33 +73987,49 @@ entities: - type: Transform pos: 66.509186,-76.72045 parent: 8364 -- proto: ClothingOuterHardsuitSecurity +- proto: ClothingOuterHardsuitEVAPrisoner entities: - - uid: 231 + - uid: 28692 components: - type: Transform - parent: 174 + parent: 26319 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 28694 + components: + - type: Transform + parent: 26320 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSecurity + entities: - uid: 7350 components: - type: Transform - parent: 7349 + parent: 271 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 7416 + - uid: 19947 components: - type: Transform - parent: 7415 + parent: 19941 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 8559 + - uid: 26318 components: - type: Transform - parent: 8558 + parent: 26315 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28719 + components: + - type: Transform + parent: 28717 - type: Physics canCollide: False - type: InsideEntityStorage @@ -75525,6 +75778,11 @@ entities: parent: 8364 - proto: CrateContrabandStorageSecure entities: + - uid: 7846 + components: + - type: Transform + pos: -12.5,47.5 + parent: 8364 - uid: 8988 components: - type: Transform @@ -76191,10 +76449,10 @@ entities: parent: 8364 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 26318 + - uid: 28637 components: - type: Transform - pos: -14.5,44.5 + pos: -12.5,40.5 parent: 8364 - proto: CrateServiceJanitorialSupplies entities: @@ -76584,10 +76842,10 @@ entities: parent: 8364 - proto: DefaultStationBeaconArmory entities: - - uid: 4931 + - uid: 28732 components: - type: Transform - pos: -12.5,44.5 + pos: -11.5,45.5 parent: 8364 - proto: DefaultStationBeaconArrivals entities: @@ -86006,6 +86264,11 @@ entities: parent: 8364 - proto: EmergencyLight entities: + - uid: 8535 + components: + - type: Transform + pos: -12.5,43.5 + parent: 8364 - uid: 17694 components: - type: Transform @@ -86990,6 +87253,12 @@ entities: parent: 8364 - type: Battery startingCharge: 30000 + - uid: 28724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,45.5 + parent: 8364 - proto: EmergencyOxygenTank entities: - uid: 12451 @@ -87306,13 +87575,6 @@ entities: parent: 8364 - type: Fixtures fixtures: {} - - uid: 6332 - components: - - type: Transform - pos: -7.5,39.5 - parent: 8364 - - type: Fixtures - fixtures: {} - uid: 6333 components: - type: Transform @@ -90140,7 +90402,7 @@ entities: pos: 18.5,-13.5 parent: 8364 - type: Door - secondsUntilStateChange: -47080.31 + secondsUntilStateChange: -51412.016 state: Closing - uid: 13388 components: @@ -90148,7 +90410,7 @@ entities: pos: 18.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -47116.008 + secondsUntilStateChange: -51447.715 state: Closing - uid: 13389 components: @@ -90306,7 +90568,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -134037.84 + secondsUntilStateChange: -138369.55 state: Closing - uid: 15010 components: @@ -90958,24 +91220,15 @@ entities: - 1907 - 17159 - 23133 - - uid: 28642 + - uid: 28731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,45.5 + rot: 3.141592653589793 rad + pos: -7.5,41.5 parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 - - uid: 28643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26323 + - 28739 - proto: Fireplace entities: - uid: 8894 @@ -92599,6 +92852,18 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 13622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,45.5 + parent: 8364 + - uid: 13816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,46.5 + parent: 8364 - uid: 13850 components: - type: Transform @@ -94110,6 +94375,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 28689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,45.5 + parent: 8364 - proto: GasPipeFourway entities: - uid: 5316 @@ -94343,13 +94614,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26301 - components: - - type: Transform - pos: -6.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26359 components: - type: Transform @@ -94484,6 +94748,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,42.5 + parent: 8364 - uid: 567 components: - type: Transform @@ -95567,13 +95837,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7843 - components: - - type: Transform - pos: -10.5,44.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8118 components: - type: Transform @@ -95670,28 +95933,28 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8540 - components: - - type: Transform - pos: -13.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,45.5 + pos: -11.5,43.5 parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8549 components: - type: Transform - pos: -10.5,43.5 + rot: -1.5707963267948966 rad + pos: -10.5,42.5 + parent: 8364 + - uid: 8558 + components: + - type: Transform + pos: -11.5,44.5 + parent: 8364 + - uid: 8559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,40.5 parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8587 components: - type: Transform @@ -95708,6 +95971,24 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,46.5 + parent: 8364 + - uid: 8662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,42.5 + parent: 8364 + - uid: 8699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,42.5 + parent: 8364 - uid: 8742 components: - type: Transform @@ -95716,6 +95997,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,42.5 + parent: 8364 - uid: 8770 components: - type: Transform @@ -95734,10 +96021,8 @@ entities: - uid: 8885 components: - type: Transform - pos: -10.5,45.5 + pos: -6.5,40.5 parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8986 components: - type: Transform @@ -95746,6 +96031,24 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,46.5 + parent: 8364 + - uid: 9100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,46.5 + parent: 8364 + - uid: 9102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,46.5 + parent: 8364 - uid: 9221 components: - type: Transform @@ -96030,6 +96333,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10037 + components: + - type: Transform + pos: -13.5,45.5 + parent: 8364 - uid: 10400 components: - type: Transform @@ -96219,6 +96527,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 13621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,42.5 + parent: 8364 - uid: 13661 components: - type: Transform @@ -96234,6 +96548,18 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 13817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,45.5 + parent: 8364 + - uid: 13821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,42.5 + parent: 8364 - uid: 13847 components: - type: Transform @@ -111611,20 +111937,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26284 - components: - - type: Transform - pos: -4.5,40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26285 - components: - - type: Transform - pos: -4.5,41.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26286 components: - type: Transform @@ -111649,14 +111961,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26290 components: - type: Transform @@ -111665,14 +111969,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26292 components: - type: Transform @@ -111713,14 +112009,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,46.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26299 components: - type: Transform @@ -111736,14 +112024,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,46.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26303 components: - type: Transform @@ -111759,78 +112039,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26325 components: - type: Transform @@ -114137,6 +114345,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 28701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,42.5 + parent: 8364 - proto: GasPipeTJunction entities: - uid: 834 @@ -114280,14 +114494,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 7348 + - uid: 7853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,42.5 + rot: 3.141592653589793 rad + pos: -9.5,45.5 parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8203 components: - type: Transform @@ -114295,14 +114507,30 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 8436 + - uid: 8540 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,45.5 + pos: -6.5,45.5 + parent: 8364 + - uid: 8544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,42.5 + parent: 8364 + - uid: 8593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,42.5 + parent: 8364 + - uid: 8626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,46.5 parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8733 components: - type: Transform @@ -114363,6 +114591,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,41.5 + parent: 8364 - uid: 14087 components: - type: Transform @@ -116826,21 +117060,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26305 - components: - - type: Transform - pos: -5.5,42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26331 components: - type: Transform @@ -119723,7 +119942,7 @@ entities: parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 + - 8404 - type: AtmosPipeColor color: '#0055CCFF' - uid: 28634 @@ -119734,7 +119953,7 @@ entities: parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 + - 28739 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentPumpFreezer @@ -119898,6 +120117,20 @@ entities: - 22703 - type: AtmosPipeColor color: '#990000FF' + - uid: 8562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,41.5 + parent: 8364 + - uid: 8577 + components: + - type: Transform + pos: -9.5,46.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8404 - uid: 9375 components: - type: Transform @@ -121231,17 +121464,6 @@ entities: - 26234 - type: AtmosPipeColor color: '#990000FF' - - uid: 26306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,41.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26206 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26333 components: - type: Transform @@ -121704,27 +121926,15 @@ entities: - 28483 - type: AtmosPipeColor color: '#990000FF' - - uid: 28631 + - uid: 28728 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,41.5 + pos: -11.5,41.5 parent: 8364 - type: DeviceNetwork deviceLists: - - 26323 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 28632 - components: - - type: Transform - pos: -10.5,46.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 26323 - - type: AtmosPipeColor - color: '#990000FF' + - 28739 - proto: GasVentScrubberFreezer entities: - uid: 26855 @@ -121927,6 +122137,11 @@ entities: - type: Transform pos: -38.5,17.5 parent: 8364 + - uid: 231 + components: + - type: Transform + pos: -7.5,40.5 + parent: 8364 - uid: 265 components: - type: Transform @@ -126717,11 +126932,6 @@ entities: - type: Transform pos: -15.5,45.5 parent: 8364 - - uid: 8419 - components: - - type: Transform - pos: -15.5,44.5 - parent: 8364 - uid: 8426 components: - type: Transform @@ -126730,7 +126940,7 @@ entities: - uid: 8427 components: - type: Transform - pos: -7.5,41.5 + pos: -10.5,40.5 parent: 8364 - uid: 8430 components: @@ -126742,6 +126952,11 @@ entities: - type: Transform pos: 2.5,39.5 parent: 8364 + - uid: 8436 + components: + - type: Transform + pos: -7.5,46.5 + parent: 8364 - uid: 8442 components: - type: Transform @@ -126792,16 +127007,6 @@ entities: - type: Transform pos: -16.5,46.5 parent: 8364 - - uid: 8626 - components: - - type: Transform - pos: -10.5,43.5 - parent: 8364 - - uid: 8627 - components: - - type: Transform - pos: -9.5,41.5 - parent: 8364 - uid: 8631 components: - type: Transform @@ -126812,11 +127017,6 @@ entities: - type: Transform pos: 6.5,55.5 parent: 8364 - - uid: 8645 - components: - - type: Transform - pos: -12.5,43.5 - parent: 8364 - uid: 8681 components: - type: Transform @@ -128662,11 +128862,6 @@ entities: - type: Transform pos: 43.5,-34.5 parent: 8364 - - uid: 19941 - components: - - type: Transform - pos: -14.5,43.5 - parent: 8364 - uid: 20150 components: - type: Transform @@ -129422,11 +129617,26 @@ entities: - type: Transform pos: -30.5,0.5 parent: 8364 + - uid: 28631 + components: + - type: Transform + pos: -7.5,42.5 + parent: 8364 + - uid: 28632 + components: + - type: Transform + pos: -10.5,42.5 + parent: 8364 - uid: 28638 components: - type: Transform pos: -29.5,0.5 parent: 8364 + - uid: 28643 + components: + - type: Transform + pos: -15.5,43.5 + parent: 8364 - uid: 28653 components: - type: Transform @@ -129437,6 +129647,16 @@ entities: - type: Transform pos: -27.5,0.5 parent: 8364 + - uid: 28686 + components: + - type: Transform + pos: -7.5,45.5 + parent: 8364 + - uid: 28697 + components: + - type: Transform + pos: -14.5,44.5 + parent: 8364 - proto: GrilleBroken entities: - uid: 453 @@ -130023,44 +130243,207 @@ entities: entities: - uid: 7903 components: + - type: MetaData + name: disabler safe (5) - type: Transform + anchored: True pos: -14.5,41.5 parent: 8364 + - type: Lock + locked: False + - type: Physics + bodyType: Static + - type: Label + currentLabel: 5 + - type: NameModifier + baseName: disabler safe - proto: GunSafeLaserCarbine entities: - uid: 26316 components: + - type: MetaData + name: laser safe (4) - type: Transform + anchored: True pos: -8.5,47.5 parent: 8364 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26291 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: laser safe - proto: GunSafePistolMk58 entities: - - uid: 4932 + - uid: 4933 components: + - type: MetaData + name: mk58 safe (4) - type: Transform - pos: -14.5,45.5 + anchored: True + pos: -13.5,47.5 parent: 8364 + - type: Physics + bodyType: Static + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: mk58 safe - proto: GunSafeRifleLecter entities: - uid: 25688 components: + - type: MetaData + name: lecter safe (4) - type: Transform + anchored: True pos: -9.5,47.5 parent: 8364 + - type: Physics + bodyType: Static + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26298 + - 26301 + - 26302 + - 26305 + - 26306 + - 26307 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 4 + - type: NameModifier + baseName: lecter safe - proto: GunSafeShotgunKammerer entities: - uid: 26317 components: + - type: MetaData + name: kammerer safe (3) - type: Transform + anchored: True pos: -8.5,44.5 parent: 8364 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26308 + - 26309 + - 26310 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 3 + - type: NameModifier + baseName: kammerer safe - proto: GunSafeSubMachineGunDrozd entities: - uid: 8594 components: + - type: MetaData + name: drozd safe (3) - type: Transform + anchored: True pos: -9.5,44.5 parent: 8364 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26313 + - 26312 + - 26311 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Label + currentLabel: 3 + - type: NameModifier + baseName: drozd safe - proto: GyroscopeUnanchored entities: - uid: 25012 @@ -130181,33 +130564,12 @@ entities: parent: 8364 - proto: HighSecArmoryLocked entities: - - uid: 346 + - uid: 28705 components: - type: MetaData - name: Armory\ + name: high security door (Red Armory) - type: Transform - pos: -9.5,40.5 - parent: 8364 - - uid: 5072 - components: - - type: MetaData - name: Armory - - type: Transform - pos: -9.5,42.5 - parent: 8364 - - uid: 7292 - components: - - type: MetaData - name: High-Sec Armory - - type: Transform - pos: -13.5,43.5 - parent: 8364 - - uid: 7821 - components: - - type: MetaData - name: High-Sec Armory - - type: Transform - pos: -11.5,43.5 + pos: -11.5,44.5 parent: 8364 - proto: HighSecCommandLocked entities: @@ -130564,10 +130926,10 @@ entities: parent: 8364 - proto: HolopadSecurityArmory entities: - - uid: 19947 + - uid: 28699 components: - type: Transform - pos: -12.5,45.5 + pos: -12.5,42.5 parent: 8364 - proto: HolopadSecurityArrivalsCheckpoint entities: @@ -131368,18 +131730,34 @@ entities: parent: 8364 - proto: JetpackSecurityFilled entities: - - uid: 8562 + - uid: 4931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.395266,46.522804 - parent: 8364 - - uid: 8593 + parent: 271 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26284 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.634968,46.658318 - parent: 8364 + parent: 19941 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26322 + components: + - type: Transform + parent: 26315 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28718 + components: + - type: Transform + parent: 28717 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Jukebox entities: - uid: 28320 @@ -131640,11 +132018,6 @@ entities: parent: 8364 - proto: LandMineExplosive entities: - - uid: 9698 - components: - - type: Transform - pos: -19.547722,47.450706 - parent: 8364 - uid: 9699 components: - type: Transform @@ -131708,65 +132081,6 @@ entities: - type: Transform pos: -28.5095,-5.350807 parent: 8364 -- proto: LockableButtonArmory - entities: - - uid: 8408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,44.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 13622: - - - Pressed - - Toggle - - type: Fixtures - fixtures: {} - - uid: 9150 - components: - - type: MetaData - name: Shutters - - type: Transform - pos: -6.5,35.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 9145: - - - Pressed - - Toggle - 9147: - - - Pressed - - Toggle - 9146: - - - Pressed - - Toggle - 9139: - - - Pressed - - Toggle - 9141: - - - Pressed - - Toggle - 9142: - - - Pressed - - Toggle - 9148: - - - Pressed - - Toggle - 9143: - - - Pressed - - Toggle - 9144: - - - Pressed - - Toggle - 9164: - - - Pressed - - Toggle - 9165: - - - Pressed - - Toggle - - type: Fixtures - fixtures: {} - proto: LockableButtonBrig entities: - uid: 9152 @@ -132712,6 +133026,24 @@ entities: - type: Transform pos: -6.5,34.5 parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: LockerWeldingSuppliesFilled entities: - uid: 1612 @@ -132952,11 +133284,6 @@ entities: parent: 8364 - proto: LootSpawnerSecurity entities: - - uid: 8535 - components: - - type: Transform - pos: -0.5,43.5 - parent: 8364 - uid: 10878 components: - type: Transform @@ -133106,6 +133433,22 @@ entities: - type: Transform pos: 7.4027314,48.74582 parent: 8364 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 26311 + components: + - type: Transform + parent: 8594 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26313 + components: + - type: Transform + parent: 8594 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 965 @@ -133118,6 +133461,36 @@ entities: - type: Transform pos: -1.3689646,53.71386 parent: 8364 +- proto: MagazineRifle + entities: + - uid: 26298 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26301 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26306 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26307 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MailingUnit entities: - uid: 8179 @@ -134470,16 +134843,58 @@ entities: parent: 8364 - proto: NitrogenTankFilled entities: + - uid: 346 + components: + - type: Transform + parent: 271 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 7286 components: - type: Transform pos: -13.543497,50.592064 parent: 8364 + - uid: 19946 + components: + - type: Transform + parent: 19941 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26321 + components: + - type: Transform + parent: 26315 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 27177 components: - type: Transform pos: 26.471306,-83.42229 parent: 8364 + - uid: 28691 + components: + - type: Transform + parent: 26319 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28693 + components: + - type: Transform + parent: 26320 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28720 + components: + - type: Transform + parent: 28717 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: NitrousOxideTankFilled entities: - uid: 21342 @@ -135658,12 +136073,33 @@ entities: parent: 8364 - proto: PlasmaWindoorSecureArmoryLocked entities: - - uid: 28635 + - uid: 28503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,46.5 + rot: 3.141592653589793 rad + pos: -13.5,44.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 26285: + - - DoorStatus + - Close +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 26285 + components: + - type: Transform + pos: -13.5,44.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28503: + - - DoorStatus + - Close - proto: PlasticFlapsAirtightClear entities: - uid: 3067 @@ -135747,6 +136183,11 @@ entities: parent: 8364 - proto: PortableFlasher entities: + - uid: 7349 + components: + - type: Transform + pos: -14.5,47.5 + parent: 8364 - uid: 7631 components: - type: Transform @@ -135767,10 +136208,10 @@ entities: enabled: False - type: Physics bodyType: Dynamic - - uid: 19946 + - uid: 28721 components: - type: Transform - pos: -10.5,44.5 + pos: -10.5,47.5 parent: 8364 - proto: PortableGeneratorJrPacman entities: @@ -141156,10 +141597,10 @@ entities: - type: Transform pos: 3.5,-59.5 parent: 8364 - - uid: 4933 + - uid: 4932 components: - type: Transform - pos: -12.5,40.5 + pos: -14.5,45.5 parent: 8364 - uid: 5105 components: @@ -141662,6 +142103,11 @@ entities: - type: Transform pos: 81.5,-23.5 parent: 8364 + - uid: 26294 + components: + - type: Transform + pos: -14.5,43.5 + parent: 8364 - uid: 26576 components: - type: Transform @@ -143448,11 +143894,6 @@ entities: - type: Transform pos: -17.5,43.5 parent: 8364 - - uid: 7379 - components: - - type: Transform - pos: -9.5,41.5 - parent: 8364 - uid: 7394 components: - type: Transform @@ -143468,16 +143909,6 @@ entities: - type: Transform pos: -15.5,41.5 parent: 8364 - - uid: 7715 - components: - - type: Transform - pos: -15.5,42.5 - parent: 8364 - - uid: 7787 - components: - - type: Transform - pos: -12.5,43.5 - parent: 8364 - uid: 7833 components: - type: Transform @@ -143496,27 +143927,17 @@ entities: - uid: 8398 components: - type: Transform - pos: -7.5,41.5 - parent: 8364 - - uid: 8420 - components: - - type: Transform - pos: -15.5,44.5 - parent: 8364 - - uid: 8577 - components: - - type: Transform - pos: -14.5,43.5 + pos: -7.5,45.5 parent: 8364 - uid: 8813 components: - type: Transform pos: -17.5,41.5 parent: 8364 - - uid: 13821 + - uid: 13818 components: - type: Transform - pos: -10.5,43.5 + pos: -15.5,43.5 parent: 8364 - uid: 15138 components: @@ -143673,6 +144094,41 @@ entities: - type: Transform pos: 14.5,-53.5 parent: 8364 + - uid: 26289 + components: + - type: Transform + pos: -14.5,44.5 + parent: 8364 + - uid: 26314 + components: + - type: Transform + pos: -7.5,40.5 + parent: 8364 + - uid: 28688 + components: + - type: Transform + pos: -15.5,42.5 + parent: 8364 + - uid: 28737 + components: + - type: Transform + pos: -7.5,42.5 + parent: 8364 + - uid: 28740 + components: + - type: Transform + pos: -10.5,40.5 + parent: 8364 + - uid: 28742 + components: + - type: Transform + pos: -10.5,42.5 + parent: 8364 + - uid: 28743 + components: + - type: Transform + pos: -7.5,46.5 + parent: 8364 - proto: ReinforcedWindow entities: - uid: 22 @@ -148316,10 +148772,10 @@ entities: parent: 8364 - proto: SecurityTechFab entities: - - uid: 8749 + - uid: 28690 components: - type: Transform - pos: -12.5,42.5 + pos: -13.5,44.5 parent: 8364 - type: TechnologyDatabase supportedDisciplines: @@ -148672,7 +149128,7 @@ entities: - uid: 28639 components: - type: Transform - pos: -12.519961,42.618675 + pos: -13.474435,44.52028 parent: 8364 - proto: SheetUranium entities: @@ -148709,11 +149165,34 @@ entities: - type: Transform pos: -31.5,-17.5 parent: 8364 + - uid: 9150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,33.5 + parent: 8364 + - uid: 9164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 8364 + - uid: 9165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,31.5 + parent: 8364 - uid: 9243 components: - type: Transform pos: -30.5,-17.5 parent: 8364 + - uid: 9698 + components: + - type: Transform + pos: -4.5,29.5 + parent: 8364 - uid: 11334 components: - type: Transform @@ -148734,6 +149213,58 @@ entities: - type: Transform pos: 54.5,-15.5 parent: 8364 + - uid: 28642 + components: + - type: Transform + pos: -5.5,29.5 + parent: 8364 + - uid: 28706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,33.5 + parent: 8364 + - uid: 28707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,32.5 + parent: 8364 + - uid: 28708 + components: + - type: Transform + pos: -7.5,30.5 + parent: 8364 + - uid: 28709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,35.5 + parent: 8364 + - uid: 28710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,35.5 + parent: 8364 + - uid: 28711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,35.5 + parent: 8364 + - uid: 28712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,46.5 + parent: 8364 + - uid: 28713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,45.5 + parent: 8364 - proto: ShuttersNormalOpen entities: - uid: 1454 @@ -148818,69 +149349,6 @@ entities: - type: Transform pos: 6.5,-23.5 parent: 8364 - - uid: 9139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,33.5 - parent: 8364 - - uid: 9141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,32.5 - parent: 8364 - - uid: 9142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,31.5 - parent: 8364 - - uid: 9143 - components: - - type: Transform - pos: -4.5,29.5 - parent: 8364 - - uid: 9144 - components: - - type: Transform - pos: -5.5,29.5 - parent: 8364 - - uid: 9145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,33.5 - parent: 8364 - - uid: 9146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,32.5 - parent: 8364 - - uid: 9147 - components: - - type: Transform - pos: -7.5,30.5 - parent: 8364 - - uid: 9148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,35.5 - parent: 8364 - - uid: 9164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,35.5 - parent: 8364 - - uid: 9165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,35.5 - parent: 8364 - uid: 9923 components: - type: Transform @@ -150047,6 +150515,104 @@ entities: parent: 8364 - type: Fixtures fixtures: {} +- proto: SignalSwitchDirectional + entities: + - uid: 9148 + components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + pos: -6.5,35.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 28709: + - - On + - Open + - - Off + - Close + 9150: + - - On + - Open + - - Off + - Close + 9165: + - - On + - Open + - - Off + - Close + 9698: + - - On + - Open + - - Off + - Close + 28642: + - - On + - Open + - - Off + - Close + 28711: + - - On + - Open + - - Off + - Close + 28710: + - - Off + - Close + - - On + - Open + 28706: + - - Off + - Close + - - On + - Open + 28707: + - - On + - Open + - - Off + - Close + 28708: + - - On + - Open + - - Off + - Close + 9164: + - - On + - Open + - - Off + - Close + - type: Fixtures + fixtures: {} + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch + - uid: 28635 + components: + - type: MetaData + name: signal switch (Shutters) + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,44.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 28713: + - - On + - Open + - - Off + - Close + 28712: + - - On + - Open + - - Off + - Close + - type: Fixtures + fixtures: {} + - type: Label + currentLabel: Shutters + - type: NameModifier + baseName: signal switch - proto: SignAnomaly entities: - uid: 25994 @@ -151355,6 +151921,22 @@ entities: parent: 8364 - type: Fixtures fixtures: {} + - uid: 28685 + components: + - type: Transform + pos: -8.5,43.5 + parent: 8364 + - type: Fixtures + fixtures: {} +- proto: SignSecureMedRed + entities: + - uid: 7821 + components: + - type: Transform + pos: -12.5,44.5 + parent: 8364 + - type: Fixtures + fixtures: {} - proto: SignSecureSmall entities: - uid: 22440 @@ -155114,11 +155696,63 @@ entities: - type: Transform pos: -10.5,29.5 parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 28691 + - 28692 - uid: 26320 components: - type: Transform pos: -9.5,29.5 parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 28693 + - 28694 - proto: SuitStorageHOS entities: - uid: 5096 @@ -155135,10 +155769,12 @@ entities: parent: 8364 - proto: SuitStorageSec entities: - - uid: 174 + - uid: 271 components: + - type: MetaData + name: suit storage unit (Double, Jetpack) - type: Transform - pos: -14.5,47.5 + pos: -8.5,40.5 parent: 8364 - type: EntityStorage air: @@ -155158,18 +155794,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 231 - - uid: 7349 - components: - - type: Transform - pos: -10.5,47.5 - parent: 8364 - type: ContainerContainer containers: entity_storage: !type:Container @@ -155177,71 +155801,95 @@ entities: occludes: True ents: - 7350 - - uid: 7415 - components: - - type: Transform - pos: -11.5,47.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7416 - - uid: 8558 - components: - - type: Transform - pos: -13.5,47.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8559 + - 346 + - 4931 + - type: Label + currentLabel: Double, Jetpack + - type: NameModifier + baseName: suit storage unit - uid: 16531 components: - type: Transform pos: -8.5,3.5 parent: 8364 + - uid: 19941 + components: + - type: MetaData + name: suit storage unit (Double, Jetpack) + - type: Transform + pos: -8.5,42.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26284 + - 19947 + - 19946 + - type: Label + currentLabel: Double, Jetpack + - type: NameModifier + baseName: suit storage unit + - uid: 26315 + components: + - type: MetaData + name: suit storage unit (Double, Jetpack) + - type: Transform + pos: -9.5,40.5 + parent: 8364 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26318 + - 26321 + - 26322 + - type: Label + currentLabel: Double, Jetpack + - type: NameModifier + baseName: suit storage unit + - uid: 28717 + components: + - type: MetaData + name: suit storage unit (Double, Jetpack) + - type: Transform + pos: -9.5,42.5 + parent: 8364 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 28720 + - 28719 + - 28718 + - type: Label + currentLabel: Double, Jetpack + - type: NameModifier + baseName: suit storage unit - proto: SuitStorageWarden entities: - uid: 9085 @@ -157173,7 +157821,10 @@ entities: pos: -12.5,40.5 parent: 8364 - type: SurveillanceCamera - id: Armory - South + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory - Blue - uid: 28580 components: - type: Transform @@ -157181,7 +157832,10 @@ entities: pos: -12.5,47.5 parent: 8364 - type: SurveillanceCamera - id: Armory - North + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory - Red - uid: 28583 components: - type: Transform @@ -159743,12 +160397,6 @@ entities: - type: Transform pos: -3.5,-24.5 parent: 8364 - - uid: 26321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 - parent: 8364 - uid: 26827 components: - type: Transform @@ -159784,6 +160432,12 @@ entities: - type: Transform pos: -3.5,-23.5 parent: 8364 + - uid: 28723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,47.5 + parent: 8364 - proto: TableReinforcedGlass entities: - uid: 3167 @@ -162195,11 +162849,6 @@ entities: - type: Transform pos: 75.5,-43.5 parent: 8364 - - uid: 7314 - components: - - type: Transform - pos: -12.5,47.5 - parent: 8364 - uid: 14610 components: - type: Transform @@ -162610,6 +163259,11 @@ entities: rot: 3.141592653589793 rad pos: -32.5,1.5 parent: 8364 + - uid: 217 + components: + - type: Transform + pos: -12.5,44.5 + parent: 8364 - uid: 219 components: - type: Transform @@ -168706,6 +169360,11 @@ entities: - type: Transform pos: -18.5,39.5 parent: 8364 + - uid: 7416 + components: + - type: Transform + pos: -15.5,44.5 + parent: 8364 - uid: 7417 components: - type: Transform @@ -170151,6 +170810,11 @@ entities: - type: Transform pos: -18.5,38.5 parent: 8364 + - uid: 8550 + components: + - type: Transform + pos: -10.5,43.5 + parent: 8364 - uid: 8554 components: - type: Transform @@ -170806,11 +171470,6 @@ entities: - type: Transform pos: -42.5,-20.5 parent: 8364 - - uid: 10037 - components: - - type: Transform - pos: -15.5,43.5 - parent: 8364 - uid: 10534 components: - type: Transform @@ -172406,6 +173065,11 @@ entities: - type: Transform pos: 0.5,-25.5 parent: 8364 + - uid: 28636 + components: + - type: Transform + pos: -10.5,44.5 + parent: 8364 - proto: WallShuttle entities: - uid: 2304 @@ -180502,6 +181166,14 @@ entities: - type: Transform pos: 49.5,12.5 parent: 8364 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 28715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,43.5 + parent: 8364 - proto: WardrobeAtmospherics entities: - uid: 15758 @@ -181295,11 +181967,11 @@ entities: - type: Transform pos: -9.5,-15.5 parent: 8364 - - uid: 28637 + - uid: 28722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 + rot: 3.141592653589793 rad + pos: -11.5,47.5 parent: 8364 - proto: WeaponDisablerPractice entities: @@ -181424,15 +182096,6 @@ entities: deviceLists: - 258 - 28663 - - uid: 217 - components: - - type: Transform - pos: -12.5,44.5 - parent: 8364 - - type: DeviceNetwork - deviceLists: - - 271 - - 270 - uid: 269 components: - type: Transform @@ -181442,6 +182105,22 @@ entities: deviceLists: - 258 - 28663 + - uid: 7715 + components: + - type: Transform + pos: -12.5,43.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8420 + - uid: 28582 + components: + - type: Transform + pos: -12.5,45.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8420 - proto: WeaponEnergyTurretSecurityControlPanel entities: - uid: 258 @@ -181453,22 +182132,16 @@ entities: devices: - 203 - 269 - - uid: 270 + - uid: 8420 components: - type: Transform - pos: -9.5,48.5 + rot: 1.5707963267948966 rad + pos: -7.5,39.5 parent: 8364 - type: DeviceList devices: - - 217 - - uid: 271 - components: - - type: Transform - pos: -8.5,43.5 - parent: 8364 - - type: DeviceList - devices: - - 217 + - 7715 + - 28582 - uid: 28663 components: - type: Transform @@ -181479,6 +182152,15 @@ entities: devices: - 203 - 269 +- proto: WeaponLaserCarbine + entities: + - uid: 26291 + components: + - type: Transform + parent: 26316 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponLaserCarbinePractice entities: - uid: 5107 @@ -181491,13 +182173,49 @@ entities: - type: Transform pos: 10.54466,50.378418 parent: 8364 +- proto: WeaponRifleLecter + entities: + - uid: 26302 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26305 + components: + - type: Transform + parent: 25688 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponShotgunEnforcer entities: - uid: 9086 components: - type: Transform - pos: -7.4696865,34.5829 + pos: -7.4221897,34.38881 parent: 8364 + - type: BallisticAmmoProvider + proto: ShellShotgunSlug +- proto: WeaponShotgunKammerer + entities: + - uid: 26308 + components: + - type: Transform + parent: 26317 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 26312 + components: + - type: Transform + parent: 8594 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponSubMachineGunWt550 entities: - uid: 5089 @@ -181747,11 +182465,27 @@ entities: - type: Transform pos: -4.5,29.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 9095: + - - DoorStatus + - Close + 9096: + - - DoorStatus + - Close - uid: 9109 components: - type: Transform pos: -5.5,29.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 9095: + - - DoorStatus + - Close + 9096: + - - DoorStatus + - Close - uid: 9264 components: - type: Transform @@ -181822,6 +182556,63 @@ entities: rot: 3.141592653589793 rad pos: -23.5,39.5 parent: 8364 + - uid: 28702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,31.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9094: + - - DoorStatus + - Close + 9093: + - - DoorStatus + - Close + 9092: + - - DoorStatus + - Close + - uid: 28703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9092: + - - DoorStatus + - Close + 9093: + - - DoorStatus + - Close + 9094: + - - DoorStatus + - Close + - uid: 28704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,33.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9092: + - - DoorStatus + - Close + 9093: + - - DoorStatus + - Close + 9094: + - - DoorStatus + - Close - proto: WindoorAssembly entities: - uid: 13311 @@ -181944,30 +182735,73 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,33.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28703: + - - DoorStatus + - Close + 28704: + - - DoorStatus + - Close + 28702: + - - DoorStatus + - Close - uid: 9093 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,32.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28702: + - - DoorStatus + - Close + 28703: + - - DoorStatus + - Close + 28704: + - - DoorStatus + - Close - uid: 9094 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,31.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28702: + - - DoorStatus + - Close + 28703: + - - DoorStatus + - Close + 28704: + - - DoorStatus + - Close - uid: 9095 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,29.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 9096 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,29.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 - proto: WindoorSecureBrigLocked entities: - uid: 757 @@ -181986,30 +182820,12 @@ entities: rot: 3.141592653589793 rad pos: -10.5,22.5 parent: 8364 - - uid: 9100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,33.5 - parent: 8364 - - uid: 9102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,32.5 - parent: 8364 - uid: 9103 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,33.5 parent: 8364 - - uid: 9106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,31.5 - parent: 8364 - proto: WindoorSecureChemistryLocked entities: - uid: 1758 @@ -182189,12 +183005,6 @@ entities: - type: Transform pos: 79.5,-4.5 parent: 8364 - - uid: 28636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,46.5 - parent: 8364 - proto: Window entities: - uid: 526 From 438090a5054aabf23237ca37a40c282a7eda4243 Mon Sep 17 00:00:00 2001 From: B_Kirill <153602297+B-Kirill@users.noreply.github.com> Date: Tue, 19 Aug 2025 17:42:54 +1000 Subject: [PATCH 068/194] Cleanup warnings: CS0414 (#39748) * Cleanup * Fix --- Content.Client/Inventory/ClientInventorySystem.cs | 1 - Content.Client/Stack/StackSystem.cs | 1 - Content.Server/Animals/Systems/ParrotMemorySystem.cs | 2 -- Content.Server/NPC/Systems/NPCUtilitySystem.cs | 2 -- Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs | 2 -- Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs | 1 - Content.Server/Singularity/EntitySystems/EmitterSystem.cs | 1 - Content.Shared/Movement/Systems/WormSystem.cs | 1 - Content.Shared/Storage/EntitySystems/SecretStashSystem.cs | 2 -- 9 files changed, 13 deletions(-) diff --git a/Content.Client/Inventory/ClientInventorySystem.cs b/Content.Client/Inventory/ClientInventorySystem.cs index 97da176ed2..73f837d0d8 100644 --- a/Content.Client/Inventory/ClientInventorySystem.cs +++ b/Content.Client/Inventory/ClientInventorySystem.cs @@ -21,7 +21,6 @@ namespace Content.Client.Inventory { [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IUserInterfaceManager _ui = default!; - [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly ClientClothingSystem _clothingVisualsSystem = default!; [Dependency] private readonly ExamineSystem _examine = default!; diff --git a/Content.Client/Stack/StackSystem.cs b/Content.Client/Stack/StackSystem.cs index d7d1c34ae2..182daa73a5 100644 --- a/Content.Client/Stack/StackSystem.cs +++ b/Content.Client/Stack/StackSystem.cs @@ -12,7 +12,6 @@ namespace Content.Client.Stack { [Dependency] private readonly AppearanceSystem _appearanceSystem = default!; [Dependency] private readonly ItemCounterSystem _counterSystem = default!; - [Dependency] private readonly SpriteSystem _sprite = default!; public override void Initialize() { diff --git a/Content.Server/Animals/Systems/ParrotMemorySystem.cs b/Content.Server/Animals/Systems/ParrotMemorySystem.cs index a88957913f..6d8192f5d5 100644 --- a/Content.Server/Animals/Systems/ParrotMemorySystem.cs +++ b/Content.Server/Animals/Systems/ParrotMemorySystem.cs @@ -29,12 +29,10 @@ public sealed partial class ParrotMemorySystem : SharedParrotMemorySystem { [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly IAdminManager _admin = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly MobStateSystem _mobState = default!; - [Dependency] private readonly PopupSystem _popup = default!; public override void Initialize() { diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index 6de26cd056..26910d1603 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -42,14 +42,12 @@ public sealed class NPCUtilitySystem : EntitySystem { [Dependency] private readonly IPrototypeManager _proto = default!; [Dependency] private readonly ContainerSystem _container = default!; - [Dependency] private readonly DrinkSystem _drink = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; [Dependency] private readonly HandsSystem _hands = default!; [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly IngestionSystem _ingestion = default!; [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly NpcFactionSystem _npcFaction = default!; - [Dependency] private readonly OpenableSystem _openable = default!; [Dependency] private readonly PuddleSystem _puddle = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutions = default!; diff --git a/Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs b/Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs index 0fa20c27e5..b3075b2274 100644 --- a/Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs +++ b/Content.Server/Objectives/Systems/PickObjectiveTargetSystem.cs @@ -16,8 +16,6 @@ public sealed class PickObjectiveTargetSystem : EntitySystem { [Dependency] private readonly TargetObjectiveSystem _target = default!; [Dependency] private readonly SharedMindSystem _mind = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly TraitorRuleSystem _traitorRule = default!; public override void Initialize() { diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs index c14e81ce8a..082e6776f0 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs @@ -19,7 +19,6 @@ namespace Content.Server.Silicons.Borgs; public sealed partial class BorgSystem { [Dependency] private readonly EmagSystem _emag = default!; - [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!; [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; diff --git a/Content.Server/Singularity/EntitySystems/EmitterSystem.cs b/Content.Server/Singularity/EntitySystems/EmitterSystem.cs index 28d3eedd32..2ccdc10934 100644 --- a/Content.Server/Singularity/EntitySystems/EmitterSystem.cs +++ b/Content.Server/Singularity/EntitySystems/EmitterSystem.cs @@ -28,7 +28,6 @@ namespace Content.Server.Singularity.EntitySystems public sealed class EmitterSystem : SharedEmitterSystem { [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; diff --git a/Content.Shared/Movement/Systems/WormSystem.cs b/Content.Shared/Movement/Systems/WormSystem.cs index 8dc7f86a08..c6f2b7834c 100644 --- a/Content.Shared/Movement/Systems/WormSystem.cs +++ b/Content.Shared/Movement/Systems/WormSystem.cs @@ -12,7 +12,6 @@ namespace Content.Shared.Movement.Systems; public sealed class WormSystem : EntitySystem { [Dependency] private readonly AlertsSystem _alerts = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedStunSystem _stun = default!; public override void Initialize() diff --git a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs index 3691f6e2b6..7e83b50fba 100644 --- a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs @@ -8,7 +8,6 @@ using Content.Shared.Interaction; using Content.Shared.Item; using Content.Shared.Materials; using Content.Shared.Nutrition; -using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Popups; using Content.Shared.Storage.Components; using Content.Shared.Tools.EntitySystems; @@ -26,7 +25,6 @@ namespace Content.Shared.Storage.EntitySystems; /// public sealed class SecretStashSystem : EntitySystem { - [Dependency] private readonly IngestionSystem _ingestion = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; From be2eeb3cb14795cf24862263ff868a53a14ffe71 Mon Sep 17 00:00:00 2001 From: Winkarst-cpu <74284083+Winkarst-cpu@users.noreply.github.com> Date: Tue, 19 Aug 2025 17:40:21 +0300 Subject: [PATCH 069/194] Cleanup: Un-hardcode reagents standout (#39752) --- .../Chemistry/Reagent/ReagentPrototype.cs | 6 +++++ Content.Shared/Fluids/SharedPuddleSystem.cs | 27 ++++++++++++++----- Resources/Prototypes/Reagents/biological.yml | 2 ++ 3 files changed, 28 insertions(+), 7 deletions(-) diff --git a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs index 1a3d17c340..7689a27cd0 100644 --- a/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs +++ b/Content.Shared/Chemistry/Reagent/ReagentPrototype.cs @@ -63,6 +63,12 @@ namespace Content.Shared.Chemistry.Reagent [DataField] public bool Recognizable; + /// + /// Whether this reagent stands out (blood, slime). + /// + [DataField] + public bool Standsout; + [DataField] public ProtoId? Flavor; diff --git a/Content.Shared/Fluids/SharedPuddleSystem.cs b/Content.Shared/Fluids/SharedPuddleSystem.cs index a2f0764ce0..2d0fffa37b 100644 --- a/Content.Shared/Fluids/SharedPuddleSystem.cs +++ b/Content.Shared/Fluids/SharedPuddleSystem.cs @@ -22,11 +22,7 @@ public abstract partial class SharedPuddleSystem : EntitySystem [Dependency] private readonly SharedSolutionContainerSystem _solutionContainerSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; - private static readonly ProtoId Blood = "Blood"; - private static readonly ProtoId Slime = "Slime"; - private static readonly ProtoId CopperBlood = "CopperBlood"; - - private static readonly string[] StandoutReagents = [Blood, Slime, CopperBlood]; + private string[] _standoutReagents = []; /// /// The lowest threshold to be considered for puddle sprite states as well as slipperiness of a puddle. @@ -48,9 +44,26 @@ public abstract partial class SharedPuddleSystem : EntitySystem SubscribeLocalEvent(HandlePuddleExamined); SubscribeLocalEvent(OnEntRemoved); + SubscribeLocalEvent(OnPrototypesReloaded); + + CacheStandsout(); InitializeSpillable(); } + private void OnPrototypesReloaded(PrototypesReloadedEventArgs ev) + { + if (ev.WasModified()) + CacheStandsout(); + } + + /// + /// Used to cache standout reagents for future use. + /// + private void CacheStandsout() + { + _standoutReagents = [.. _prototypeManager.EnumeratePrototypes().Where(x => x.Standsout).Select(x => x.ID)]; + } + protected virtual void OnSolutionUpdate(Entity entity, ref SolutionContainerChangedEvent args) { if (args.SolutionId != entity.Comp.SolutionName) @@ -158,10 +171,10 @@ public abstract partial class SharedPuddleSystem : EntitySystem // Kinda EH // Could potentially do alpha per-solution but future problem. - color = solution.GetColorWithout(_prototypeManager, StandoutReagents); + color = solution.GetColorWithout(_prototypeManager, _standoutReagents); color = color.WithAlpha(0.7f); - foreach (var standout in StandoutReagents) + foreach (var standout in _standoutReagents) { var quantity = solution.GetTotalPrototypeQuantity(standout); if (quantity <= FixedPoint2.Zero) diff --git a/Resources/Prototypes/Reagents/biological.yml b/Resources/Prototypes/Reagents/biological.yml index 1a4fc93426..d6063cd9a7 100644 --- a/Resources/Prototypes/Reagents/biological.yml +++ b/Resources/Prototypes/Reagents/biological.yml @@ -12,6 +12,7 @@ metamorphicFillBaseName: fill- metamorphicChangeColor: false recognizable: true + standsout: true physicalDesc: reagent-physical-desc-ferrous metabolisms: Drink: @@ -64,6 +65,7 @@ flavor: slimy color: "#2cf274" recognizable: true + standsout: true physicalDesc: reagent-physical-desc-viscous viscosity: 0.25 tileReactions: From de240e1739b09940a318b53a1eb067383b4b83ce Mon Sep 17 00:00:00 2001 From: Samuka-C <47865393+Samuka-C@users.noreply.github.com> Date: Tue, 19 Aug 2025 13:23:47 -0300 Subject: [PATCH 070/194] Xenoborgs part 5 (#37068) Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Co-authored-by: Quantum-cross <7065792+Quantum-cross@users.noreply.github.com> Co-authored-by: pathetic meowmeow Co-authored-by: WarPigeon --- .../Audio/Voice/Xenoborg/xenoborg_scream.ogg | Bin 18684 -> 21785 bytes Resources/Locale/en-US/stack/stacks.ftl | 1 + Resources/Locale/en-US/tiles/tiles.ftl | 1 + .../Entities/Mobs/Player/mothershipcore.yml | 48 ++++- .../Circuitboards/Machine/production.yml | 14 ++ .../Devices/Circuitboards/computer.yml | 22 ++ .../Devices/Electronics/door_access.yml | 8 + .../Entities/Objects/Misc/tiles.yml | 14 ++ .../Structures/Doors/Airlocks/access.yml | 22 ++ .../Structures/Doors/Airlocks/airlocks.yml | 10 + .../Structures/Doors/Airlocks/shuttle.yml | 10 + .../Machines/Computers/computers.yml | 50 ++++- .../Machines/surveillance_camera_routers.yml | 16 ++ .../Entities/Structures/Power/apc.yml | 11 + .../Entities/Structures/Walls/walls.yml | 31 ++- .../Entities/Structures/Windows/xenoborg.yml | 14 ++ .../Prototypes/Stacks/floor_tile_stacks.yml | 6 + Resources/Prototypes/Tiles/floors.yml | 12 ++ .../Textures/Objects/Tiles/tile.rsi/meta.json | 3 + .../Objects/Tiles/tile.rsi/xenoborg-floor.png | Bin 0 -> 233 bytes .../shuttle_xenoborg.rsi/assembly.png | Bin 0 -> 352 bytes .../shuttle_xenoborg.rsi/bolted_unlit.png | Bin 0 -> 4972 bytes .../Standard/shuttle_xenoborg.rsi/closed.png | Bin 0 -> 629 bytes .../shuttle_xenoborg.rsi/closed_unlit.png | Bin 0 -> 5035 bytes .../Standard/shuttle_xenoborg.rsi/closing.png | Bin 0 -> 1771 bytes .../shuttle_xenoborg.rsi/closing_unlit.png | Bin 0 -> 6610 bytes .../shuttle_xenoborg.rsi/deny_unlit.png | Bin 0 -> 6524 bytes .../shuttle_xenoborg.rsi/emergency_unlit.png | Bin 0 -> 5301 bytes .../Standard/shuttle_xenoborg.rsi/meta.json | 146 +++++++++++++ .../Standard/shuttle_xenoborg.rsi/open.png | Bin 0 -> 428 bytes .../Standard/shuttle_xenoborg.rsi/opening.png | Bin 0 -> 1811 bytes .../shuttle_xenoborg.rsi/opening_unlit.png | Bin 0 -> 6610 bytes .../shuttle_xenoborg.rsi/panel_closing.png | Bin 0 -> 6400 bytes .../shuttle_xenoborg.rsi/panel_open.png | Bin 0 -> 5073 bytes .../shuttle_xenoborg.rsi/panel_opening.png | Bin 0 -> 6183 bytes .../Standard/shuttle_xenoborg.rsi/welded.png | Bin 0 -> 5638 bytes .../Standard/xenoborg.rsi/assembly.png | Bin 0 -> 401 bytes .../Standard/xenoborg.rsi/bolted_unlit.png | Bin 0 -> 259 bytes .../Airlocks/Standard/xenoborg.rsi/closed.png | Bin 0 -> 395 bytes .../Standard/xenoborg.rsi/closed_unlit.png | Bin 0 -> 259 bytes .../Standard/xenoborg.rsi/closing.png | Bin 0 -> 1541 bytes .../Standard/xenoborg.rsi/closing_unlit.png | Bin 0 -> 521 bytes .../Standard/xenoborg.rsi/deny_unlit.png | Bin 0 -> 496 bytes .../Standard/xenoborg.rsi/emergency_unlit.png | Bin 0 -> 407 bytes .../Airlocks/Standard/xenoborg.rsi/meta.json | 198 ++++++++++++++++++ .../Airlocks/Standard/xenoborg.rsi/open.png | Bin 0 -> 311 bytes .../Standard/xenoborg.rsi/opening.png | Bin 0 -> 1064 bytes .../Standard/xenoborg.rsi/opening_unlit.png | Bin 0 -> 521 bytes .../Standard/xenoborg.rsi/panel_closing.png | Bin 0 -> 494 bytes .../Standard/xenoborg.rsi/panel_open.png | Bin 0 -> 240 bytes .../Standard/xenoborg.rsi/panel_opening.png | Bin 0 -> 488 bytes .../Airlocks/Standard/xenoborg.rsi/sparks.png | Bin 0 -> 697 bytes .../Standard/xenoborg.rsi/sparks_broken.png | Bin 0 -> 315 bytes .../Standard/xenoborg.rsi/sparks_damaged.png | Bin 0 -> 184 bytes .../Standard/xenoborg.rsi/sparks_open.png | Bin 0 -> 281 bytes .../Airlocks/Standard/xenoborg.rsi/welded.png | Bin 0 -> 300 bytes .../Machines/computers.rsi/meta.json | 6 +- .../Machines/computers.rsi/xenorobot.png | Bin 0 -> 646 bytes .../Structures/Walls/xenoborg.rsi/full.png | Bin 0 -> 354 bytes .../Structures/Walls/xenoborg.rsi/meta.json | 46 ++++ .../Walls/xenoborg.rsi/xenoborg0.png | Bin 0 -> 471 bytes .../Walls/xenoborg.rsi/xenoborg1.png | Bin 0 -> 470 bytes .../Walls/xenoborg.rsi/xenoborg2.png | Bin 0 -> 471 bytes .../Walls/xenoborg.rsi/xenoborg3.png | Bin 0 -> 470 bytes .../Walls/xenoborg.rsi/xenoborg4.png | Bin 0 -> 471 bytes .../Walls/xenoborg.rsi/xenoborg5.png | Bin 0 -> 525 bytes .../Walls/xenoborg.rsi/xenoborg6.png | Bin 0 -> 471 bytes .../Walls/xenoborg.rsi/xenoborg7.png | Bin 0 -> 304 bytes .../Walls/xenoborg_diagonal.rsi/meta.json | 19 ++ .../Walls/xenoborg_diagonal.rsi/state0.png | Bin 0 -> 3706 bytes .../Walls/xenoborg_diagonal.rsi/state1.png | Bin 0 -> 3817 bytes .../Structures/Windows/xenoborg.rsi/full.png | Bin 0 -> 401 bytes .../Structures/Windows/xenoborg.rsi/meta.json | 46 ++++ .../Windows/xenoborg.rsi/xenoborg0.png | Bin 0 -> 497 bytes .../Windows/xenoborg.rsi/xenoborg1.png | Bin 0 -> 469 bytes .../Windows/xenoborg.rsi/xenoborg2.png | Bin 0 -> 497 bytes .../Windows/xenoborg.rsi/xenoborg3.png | Bin 0 -> 469 bytes .../Windows/xenoborg.rsi/xenoborg4.png | Bin 0 -> 462 bytes .../Windows/xenoborg.rsi/xenoborg5.png | Bin 0 -> 531 bytes .../Windows/xenoborg.rsi/xenoborg6.png | Bin 0 -> 462 bytes .../Windows/xenoborg.rsi/xenoborg7.png | Bin 0 -> 315 bytes Resources/Textures/Tiles/attributions.yml | 5 + Resources/Textures/Tiles/exoborg.png | Bin 0 -> 235 bytes 83 files changed, 753 insertions(+), 6 deletions(-) create mode 100644 Resources/Prototypes/Entities/Structures/Windows/xenoborg.yml create mode 100644 Resources/Textures/Objects/Tiles/tile.rsi/xenoborg-floor.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/assembly.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/bolted_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/deny_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/emergency_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/meta.json create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/open.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/opening_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_closing.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_open.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_opening.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/welded.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/assembly.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/bolted_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/deny_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/emergency_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/meta.json create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/open.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/opening_unlit.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_closing.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_open.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_opening.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_broken.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_damaged.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_open.png create mode 100644 Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/welded.png create mode 100644 Resources/Textures/Structures/Machines/computers.rsi/xenorobot.png create mode 100644 Resources/Textures/Structures/Walls/xenoborg.rsi/full.png create mode 100644 Resources/Textures/Structures/Walls/xenoborg.rsi/meta.json create mode 100644 Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg0.png create mode 100644 Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg1.png create mode 100644 Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg2.png create mode 100644 Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg3.png create mode 100644 Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg4.png create mode 100644 Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg5.png create mode 100644 Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg6.png create mode 100644 Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg7.png create mode 100644 Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/meta.json create mode 100644 Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state0.png create mode 100644 Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state1.png create mode 100644 Resources/Textures/Structures/Windows/xenoborg.rsi/full.png create mode 100644 Resources/Textures/Structures/Windows/xenoborg.rsi/meta.json create mode 100644 Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg0.png create mode 100644 Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg1.png create mode 100644 Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg2.png create mode 100644 Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg3.png create mode 100644 Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg4.png create mode 100644 Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg5.png create mode 100644 Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg6.png create mode 100644 Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg7.png create mode 100644 Resources/Textures/Tiles/exoborg.png diff --git a/Resources/Audio/Voice/Xenoborg/xenoborg_scream.ogg b/Resources/Audio/Voice/Xenoborg/xenoborg_scream.ogg index bc83ec46ff4aa5e22f427a1f517f8b7d5231a20a..9ac12637fb38372c83b86feda7fdf84028d3c62f 100644 GIT binary patch literal 21785 zcmeFZcT|&2_bB=#1PIjxk{FtXP^1JU(gZ945;{mA!4O^%LJ>k06$_RCiXni~M2aYc zVhD*QO0c4|AQnWV2q=mb3wA|)RdOHn{l4FKe)p_%?pkNv|IV|9S<`2Bo7sEMgtZ$t zh5%6DpKodCpG1{cKn!FNBqKGQm9Tlf2uc?H(`3`1#^)ew=X?J9o9_t$bL&uR&*+3I z{@Yiq^k*o0umvL_Eq>|R^o_Wr1Xk$p32;8R<+jUhZJliGaTdX`FadOV>B02yd03g!T zQoA(H$Fi}k&SFPJnfH83Zktz8mM6zX7Z7{@72)h-&;S4fI2LLL>!16uZ#i$oE;*Q9 z>zoj{;sj2WN1bw3>-u6Iozm3Wl$dhM(hRN@rVOG4AbA__M+MJEEUs}b7K{!UruP}2 zIGV0*C8*6-U*3ny@n8P3p)}CtrJ(+x%PWi4+wK}Rt#^F=i6f!WC)-ul@7jFJdHU!- zk=k!KaNt_pRrF#I?(q5Hxt2{8>EKX*z`_9>5KO?U808~H-H;mg51Ow1NTBLE4BAmb zXaRKa+q!;TM(o{;t#>nahgIwkKes#V-2U*f{p-K(kHY5u6TaOYaFtOUvt(^4iMVRhw`5XjV1;N$t?7Ruwnj0n7BJk81boMS<-S?o_EZk2Ao& zVYjQE3(lj!R9;#264`m$pYi@-i{^-q64fj#mjsuRzvtp`)zV~)PU@9aYY z=@vDH?XAhi?LMf&LK!z1moD0JNV~L_*k{?WsPLetZ*xviu-=l!E!n>z#{s}T#BVPC zSM-~e|8Q|b3D4@f#hIJSZxH4qQTHvE*OG38hb9r^VuAz6#f7rx$2OmI_D*b+jWVqp z%YuC^8~;cYNK{-*k(-L%Zz0L8NWX4*0+fpXB;0$`0i@C3e}sV#hEyFhFbpoY39(y6 zr_tACB!?Z@dhhK1^$o^8{)Wr$RT!!9y^i|JKh!> zes*_Q+dl&HM{FM6-TEJrGcO`|=YvnYOJM&cIkgrCAFnuQ;!|Q8R${)Rd}Cf!bLFv@ z&3yI$COPrE6BWD@T;4SIphaGJLSB{dJU{9B$=4VDx8dKC8Af7IUPhp z4^Wy;69PW{fpOI!h|n#Rh5tza0O%;v^!vS!P=jqof*nSJZRoUB|7(c>Ye(z@hU`Ja z9tHqC0C?KaG`v$=hgIa9=N1q5=`oc53RdCyb19f_U_Em^sfRdq~5-54|pU)5wfP(bv&hP%<*D+{M z(p^Q;rToeMpT*!r_EZ=c{uu_GXpjaOwEt%=aFz}`3dtTkN&e5j|H)ib2gut0n2Tf| zK%xcwpU?DvNBF-O_}^jxWN`?nOhGX2b;j0E&I$-{;0dV&=kwm46CL(`<#v64-6;lU z<$@~Jp?^sSc))(N-@a(&f+n>h`vu2T2XYertuq3+9bm;Vu(9`i#dPPt_!?Zudw<;~ zwZVOC=*ppe30?M4!vFc=H~_$br~({7_d4m{YpVCw0e}@HF=3#7;aw670XVT?$5a8J zBzDK5|M@Wg-%J17gbHgu;^=V9O!<0I=mr31GhqCkaZlKY6`cq43p(lh!u?P=Ojh92=%G zHJ>|80D!3u2!QK=yId2Th8qN&dk>)WPvZeD$O{EgzQjh&XdQR;x+s5lZ{wKYU@OZ; zb$2VX!@+LejSa!eeQg@cgO!aBm-sg08iIo@l>v^?3h<8s-=8aj0UtqaFS?9%(|Ov| z-Iw_M=w=<`Ml7h_G^3*Db)2#iBB&<^`d+I5%a%08fbEW!2D^Y|+MvR*1#Hq#7VQ4w z=w?v=r~#Wm0MZ|9^O6E>b!flQjRrcV=E-$z35af=lBONUmVkOIyQJYyN!7}Mf3Uyf z*grTJHUeuI)7g7Bf>2~olC{I0pad#xxeUtWPb<;?88C)W1%<} zME#T6r2d~)%YWG~|9_^&n2BOpD1g1SUx^g9uh33pT7y2QvQYoD4ggmJsqV%lzA!B- z@%2T!7dTs(9WH0`#O_=oys=@JnMA}4IIGq*lredhZI3|$fn^{l%)c~@8_SsaHf`AI zBx8_jiC|f@ov#cm13^h7_?`#Lq;hOxA;qFPe7-hO>|pt9v!8T?87-2T*B6w`mx*Mf z__E;Ty{Hf{RkhEy_bWD9M4V=p>U4cu6k-E5P6TtK)h3UE5J#^FCbEao*~-{yZ;G?tYG|LzO_ts;Y_=)9(?1M+TJFxYQD zIL9B|8AOOWILGe_U(jSlxvTxDC@TTmHU3ipP6UqsPX#y;ILx0OU}9bcKRn-dKJhzl zo=<_(r=js zEi{Cxv~`r(QjmV#$4BhpssFsTVa!L>SjO;+#kpPg@vX^*TdFkgFR*H?C@putQ4y@k zvL%vi_tSn7n1JE2DWHSs&5VaL69_221 z@P41c(b^E&D-t*l04xHg!0l@sz~lLqPhPzL2B;zRj4g@IZph!&uD~|{@DAp1x$)0e zxU5`FawmIw`}zk4f!iD8_en?sAaM8}gL6I)hyU?`bdZ1d2j+bs^T*=(Raqje^C}k) z4-bX%m+24BU%i=r^6L4c=_hxtOno-oHh28$r*CcW9?TWsCY?ncdRUwJTrl*mET2-fjXgthZG$9<+3)k>>H!w*)^1 za?=N2M}8}Fs&}+AUSiUX1)@iAe7>7W zZS$8!_l-2>j^Ev*J7D(w)wZkIifP%yp3QmZcW!|7-7cprennM>F zb*AsK2mRz$8@wG41fFjz~Z7i1Y|&$*zeK4q-0-}Ba)J=8{306SyvpL?VjXf%Dp^Got+u~{+t z<@&iz-HPLWJ`?C8V;enHVA0;y*K(yf4tC9+5KTkxK?j2wEjgl{Eeb--C-VF(4CKZw5OufLJp%u_T0B2cy;Z)}jNHT@OqF8X%FRFc!&`U_N(zk_pP2ktdzI zC)73-9%(pBdNsqp_-xPFU|MS6kD@kS-L;oLIE^7~6<7B_aP7}8o*D~3v3msp=UQl+ zM~m9I^Vd3B!obDhnA0DqkK#W?{kWX=qwK+VxF2j!?EP<1iUE0Q;HT5@#<1y_yVg&7 z7yQ_}bkF9hBNU5%mn9dM=2q<#7UP5CwwIi?Nc4a+##U=;HwQZ-@`?F*NV|Vvrxmia zEZA}$Hc<-3%F54&RdC)B~F#It{hPUZj*SUqbbiHoSoK-PZXDT z{ba9}1h3=w`rMiV7!NL^U%oL#*Dbli*Ek09_fN&xE@$t$4xy7Rs09Y?eE5x&;@}+Zw%hqHIc$kjb z?Tvqp86g6D#3pLJ{!I>C=r}tDQr1c07g@aD_5BK6_voe+~c3W)k%crj%sD^Q`A`OByJ}u%D4Fj@fi^Xp8(77MEV%1@Wm1-bmhFe)#Sy4Gp(hfG4nT#Cjk>EWgp|p`mn(eTC&nRoG zs$#54fYw#^mr4d{bX&S)DXW=L(Wm^B%;j1@@nibbchw`G)|bCSu*H9;e)a3%;(1a} zI$>`QtjO2q?Ax?ZXkym3Q#+Z;=pd;DZn%p;HtaZP^Ju?&)vz$WlWSF*-8b|jWvs1n zV|hZj1;g&tj!?ynd@l7ran95##3*r3?=Sg_(U0~ExQ6aCGCnr$LF31)* z2!UECCyFT=t7;MyCa70nGKYGDVCPmM6QEu0h$DEKFS$(0D-1>0l8M7sIHnSZfkNab z7Xq9k7veAG;~wrYrmj75(onMXh9Fa8-!?m6hwg3BGDyR(C3n7*T^kSGVpS_0#gA15 z`bzitDqco=pu@i!+poXc;9}wN@rb8r_TA`^^1|^e2agUWCpms9!aZE=<#6TBbZi!xrt4K5paTiR7uug<9F!dax7m#@wi7}r}~xr(plsMur| z;&?bFxj@*2QC9SBee&f%!_hO`jTpOHq=;!k(e{E|lsxxd> zb6%+zXt$CD`MlS0(Shy_7vFoX@H%(2aOS=*am{%eCo1Bp8KAQ0>izgR#rWagWM7^COu_{`rM9HIz5v zS(UcjcFU$H{oMVH6__Tb)SO`#KoqgCY&^dS4)3+lAG8Rrd|}>rZb$l-D{u5lIx%7l zkd&y!MveTU+uDZgD{q^&Ldqa$c>oxn|WzWDKvN6L-03i;Zb+(8xYI3dTq}S zHuO!~zIc&>|1-)bhM%(Ri+#T-NmodT1za~Kj9QMs{E3d1NFvn zfYs&qzkzy1Nq-0a&573F-V%c~KNVr8^%xDm%0jOjpI97~G=F@$Ht3j`W1{0&=5cW) zAlK$<<<``+x2uJAk3I;ZcIs$I8y%!9Rzen<9-=j5Pe?kABGYMwXd9tbuL{LF8*4op z-+0jnr`rM5ufZsDb~aAEE+PGb8NPl{s(kt2r}Va&S2cdy!r1GS*<}DWzf=Dn1@x}B zY&+2Xk!7^&mPn_#YUSLO*gR{@cXhP(CLwf_nzbTN`VvGSpSJP>N+IE(=9!bXM{9W1A8Z66!o?upAy2 z-`k~ve4SgBE3l|CD~9gJ;qi{1InXB*7^^kA&;~kd8MgXwPgu^1gy#750m-W$+nk6M zW?VjXZ1twnM@w!%sBlb4%^Rx+-VZLz4P`cgii;I5z2AQ=hJ6nQ`mJ{+-?@ZIXs_0; zOz8W&zkGPmO6XkSY=5`y)Wpx2yWy|3UTs}jt7d&z@8S{YzQw>?XzJW{wOEQ?(Ip(m?<^z?~zgx|9%oH@z==FOg)H%-CqM>K|=#b>Z(XS#b4)Zucr zJXp@tVrhgk_}K}~ET$Af4A9VcjbTJ$1ebAG zy_iF~zw+;ffpm&%8)ZU4UF<8xuecv5>e%SmsY&s0*4KK!ni z=3ON-_?-N{y@5h;aF=dOs@*Q4Q-81GipfLR_&rUhv817V>BpBvzBh|=u)1d|a^`j2 zd3U^wYm_@8AtooyB+Za*Sg9N7qR=Ew2Qofi#mJhYge+&?E$&-!oF6V!mdH>p*vi0sEth33XuER!Qe#g3B7ax0f zzx7zzkBPyv5X6hLRbz8r#`c}skeuZJxWo2zDyEBeEs)$WkKOz~=1OfRc9+^^3Q=C# z&>mI~OWU8&+w+@iNyL%tDB_5xmNhm5BR$(KIWwVWg~>!n5gsF`p{@%K1QEk2NREI| zsSa%vGKoyUJb9DHbtA)&(u0a|`HzsUHd9e;Es_!hLyk^7tR7{)n_=WNc8`q;g`KS7 zx}#ry+?E~UbIVj7%0h1fz@3rj<_EjAHqD$+{cf?(yDn_x(;aKa{>shEQJx%|EmywZ z@B7*QN+0oPFD^1;Vr%(uJMztmBW^6)Xkd}*WS>Ma5O?3Zy(Goh8M^6qq2>=oQg7j~ z^-D~NNm_KAUCxW}i$g}ijc~4WQ8TC%RK$SP1cZ^%`R!x(7&C;i>ZWGLG2z(wy?Yww zy9j&d&f6w&6xpEfOjh6VvdyuBo z0nHXu(L+aP4OV@BwioSY!V_e(aV0-V;TG0-J3e=sNdP?PCC9d=f0wS{9ZgvRRc1B zBYTRy)c}d}WM}c%7KDj;9C02N@Ltw}&!C!QV{v?U9Nx-pUju_kG%nAwS0@B$fC`R# z(((WekK5QD-l&TxyU-ZVtIOqWy?swD#whFVOZ?*-MW;erRcM|1^%GcR^mW&P@!mEu zhDK=-0C-PYp_OB#33NE{vQ^mK*5Tu?H`A^y4~#6?>s8}(b@I9Eb>CwdF8j+=SW&U6 zQrLr0!-@BbwKiAt|292wLhRi7NO7EbaN!r9zyYo5+kuWtNewH~({LGSX^72{;Av+L zuAal=Mzw@GB$0=EL*dI3d^b z@LJ)jQ_{=gT(p=^ci`*i7*AgcIj!dNY?n#!{svcfLCwnVg3X5)PvV!qPD%9hBBwA4 z1Z8%EZ!To(@3l8s@D+Qln&&Q4B_tI3p!$!Cx4 zm)kk4aGtu}^xT?5OFPXf;NM!FZ&n=lIx?l>4>OGYtP5~7 zDrycI_B3^G!GT(U_xuz=WXV-_PJ%Sjf)oH_(;b4)Efs8ZPOPPM9}-cFy8|=(Rwj+( z8uQKJwOo(~WI_x5LKV>jTxGZ2oDl<3r`eM{RJ24EJjRKuSj&(A@K^=sMDM z1?vy80E|*gl~pbyKuM}R99JZf%3B3|m9e~pRH;5MF9AuSz_7U-^wYf4*$7106obI0 z+p{Qio7KAJhff^UwL^8cnzItrfuJip@1LmB(G9Id!pH#9ZFOF`cNbgSY_FolN7HGr zg_oxp&Fhy`1;wp|H-xue%qQ%#aY-U4n)F)R4V>HsWK{HzDZUQuf|eOwM%{>Vj8;5c z^GPiz<6AIcfE;RN@j8zWdboZ(?=wadU3H@WSvACYO))udOr+9r{w0G&PA&6esA@8TQI0Vqa5YeTBw;Ud-#=h`; ze!Ly`9g-CKMX^R6Dx2Gw((-p4U7-j`qQBnzyiK@)TD>3chQ%rYnvv4bB!e35k6Bzy z&}xxG;Eg>d16ux`zZ7dSE3cSudiDOAK%v;U?9*M-K%)nDl~kO2;ede#ODc7{%?kfs z^seE`r`u0(1=F|Wh7i-xe8m+`#NDOm-`4i9KPVR7em!A!*JumJJvk1)1oX8<(nq*2 zPFhMmy%yX2y1T5~bMW1wQvfaSrQ(3 zp!01UeqA|nK&EUPf99y+k`vNx0L`~uF%WGX@^LT$@VU^&M_VfHCQJ+88+*9a_l|bf4>Jr(^q3|uUpy=2W5nMpS#nv~JXABilm;L<;_Z`eSP zA_qQ~E_M@fdYQI7##V39j398O@ktw zCZB4}ZR;_LJb1P^>hXn_=Be+mn7joxUnF#P%!+%fGQXtN<`&(7I}8Ip=beaB9?}RECu429ZE;JArh%FW}*$3`#v*vrn&aT zZ8p7-4@4%}0Nk-qjmDv!`dSHRowvy*PqgMDB{)x+r;IDL(l4ab!chT%`gqwDIl*Sk zY@N2vu5}+*e2XO8X0xfcK`8U_42N2uO?Zg_v28~>tttyvWOe-WuJ6z4l$Bn5-Eu|y zkeay?$?U=GyhU(I0?q%rBQt+N)Wk7^ds7N@Xyk|0si_}~Z}t}rIf-P>lf@>FD|r>5 z3ufLk0UAF5iH4we_XHV8D%#p|#UuEp!l-3U6OmC2CwXfMU(krA(nb7`11tng$shGP z7p>ueE1-S!xf3j>_XtBZLm|dRFU3~OLX0S~6F8NGcytpDy00l6LO7hq4o3`HsYn?F zY^VMYorIwMKc@$R&RXglne2DmHVMRv2j(T=q zdS5m@xbN1nC%Mxada;FekdEz!fTQZ9twJ$=CXF!h!!qoq;g;^7ij4zZ()f2LVu;6Y z-aO5Wlcgk=g`L$5tEM)Uy(+ua4hcrasv>mPW|(@;TSGTBL6EszN`Zc~#1n;i2nGKl;oP z6yFbem;tug6eS*xN0nG$3h5NWnHc@ zxVcR3w0ghE_mY)I7j-Brk3;(PEo^lvEK;B^N*L$Cr;@uO@)a8m-tJzs>&dk2+upWE z52ibvX1{Q{a>z!0-HPBe2JtOZQ0J{e8jeUwt?{S>i~w(75)ehQTnmz$TspERER zoSOEkdS|xnY)Y?xJ^*ykT)WwcQvEi2|89gIm1eC!!WtA{==ngc_L8b4liz+S5)G~o zX72RGnXSF>;k)9lV_E&z&t;_Rs(MsQ-US(wN)Hh>i7@=W<)3bPMm7aNRaGIX#5gd- zna`_%04%3dXf+zy!=l0RWuvTuS{AhjB|9slBFVN|JuoU7X^qL3W~)f)1&mf+p)x@w z36URIXag`L0i5fb823rj6kpjzrKI)Gk6yF@?;!ZCJ2awUuf)$Xyp+0$ccXGfg( zJ;H?`n-e&~x{TQh_SiU_r`)4rt)5$D&ehM|+I@j>Hl>PNCk&Md(cwWTx``Lnt#vr9 z>1|v$>(^c`4YKmqjhm8Tw0;klj?UK_M;rASP_&HZ_8k1V%vmQAIViwJyS?8zRP@GN zwLNgFQ~QIPlI0hAjAPdC{X1S?8=;Pf{I2AEA25#NAAMS9d}x;@fLNf?wrw)E|I5-Upv)L5>GU+vqEZQ(5>^!l&I%xa zcLVwYp_t+jNgm$ja@Nb_+7=}3y|l>m_OGV(-8O@*Gl56E*5SvNFFw@%?$D7F3-5ed ze8=zNE&K(&fl~Pt`cj5f`}EpIGa)nx@C9O6H-1TF7es4r?}+`cq}f$-+sH^5AgN-@ zWM`OfmmXPszn-4HZuirltyveB`7{0I212gqSJn||?@C8Y6rajIvf?Z>Ml$zC7nepC z0Fnv)vGH+1Hg2>IzE+G_Si3Y^eh7Wzd?|EGO1q-d;>pq_p1sVi|B*IAgoOkhz-jJ- z0DMM)!-uO&0*)!8QH6J1)f#cCyD~HsU&=oFd96Nle6nlrDzjgAiU*$PQHFWmZVUhd z1WBRT#3nV?s}FV*fbv?TF~Pif-YDxBh98LeCnAZDc+qli< z!~tI{%L@DnB{g;P?KHJ2=aj4r?uHM^~vqKFjDmYOI~n~Q>UvY_04t5KpP z+W|r))PlQ){=HgZHpC6R1(6?eadb~L>PS)b#><$erg~-ogVch@Aj1@$LE~!gf$|{rhQTjO{Z~KS6LxA*_dXj4U;$ag=zlhM zoR`RcVS08IT=YC$u~zQju%+bQqWhxB2m|;%Pg5x;CkJbnUu+7@U*&^-+L{DGp`4Yt zF}jL%$OiQCon=X>9jz(#{f^-Rhj1p9*2+XniScx$Y$k)>W={}vn9RfuJO{beA$V)ls}*` z)FH9gqWdSZd1z5cw3t5v;RqPaNak347C*lF%BjN|t#7ZNZ@+u-17(9rh|ghK;udv) zi$#v;=P;CeKKk_N&@Gy2l3FV(eKdmpT@tnPSXzRq;@hQ{x-PqVWLw>wO}%q*Z5K6X z8{j&5z)lX7gCiB;0KoSjXTrVt^#Q+~3G=@Sy8bwgR3+0#g+sq0wTPO?!Q=5n#uqA{;+Z*y`^3| z<@51ts|GW_UC+KFYn|KVD<7b zfy%pgcel(fF7ABHTbAj#y#vqV@{w-JJ0hrSpvE>xJ^bX+I|m|kCozYJE zyf=?MiNM{G%TL3vU`3?dk1hS+h54 zVvq%pd;u$xn&}aMhKN`rl5v%xs{Lqd)?{2#lp4QDxOJ$btLy2~&9J%fd*82jE!G(Q z%j~*}g;lS5JQ7Ci=cQmT*`GHt_N&G410PiDt(|uI2`!46X>=Tf&KtH|L~z!v}-=31xvIF6`^xj z9axG;n2@NR;n*ZD6fl(&B^Wn}MI;&taT~P2J96XYV`HCJIsiCuYX{wVBV0JR^RyLm zEkbW&zYtRB)3>TaPQEu4;(;J;U(!XxQch6dQMH_eofh)UWyS8w3nMu>kQZveqU~Dg ziW3{WuUg#-U%Utw0lH3KF1#b_&S`NY#Bi=3Zn&=fWiXvel|rq z>VC6_Wva#jbv@871ES?t>eZEHX~3CHKU1N4>vL)i;U4@B@Oi1~YVS$hkG*E^RA!dg{#Wunu5UaT z&J8M^X}+V9_7uFH$f~ULL2zv6@s5j3O`O28xe3eIBAGxIi8ARW%Owk8NCbf(ZEe+V zYhB8#s=(m0qZk4Q2T`OY4|G=pN>eR#0D(jzTe<4RtN18-y)Ge=$O0Zy4kvk`)Z-Bd zWYWE|(xOwFcO()Yy$x~EiMg?Hqvy`EdlQ@d!?$!q7)^H`vA$eqEGh;XG~wFwe$aaG zd@+hsTv?tWw|%YxZRws-tm{3A?Y-ZTBXwR?6r0Q4nK%}5r)hzqVX&d0VMQg!7HazY zkOTxwo7pjJZlSoQ2HwjhdWx9^$`0ZTb(R~IAPw@<=)R+(AtjHvuqqsx6}c?s9$F_* zD--BHS{`Kv^s!Wf$GU3@*KP0VnF1Nn(b9jwX^Q;Q3VX8E6Pv(GF zgjU~YbnvsEZ5m)P1->Q(IFrzb?M9C8_byTMICU$N0H;p&6kDc8EsU_$hw*B)+D zgBcn++nzDOm_QI9{eU2vO?FiDGInCB{FdbGIt?~aGu%Kbg|a9_O@C#geIl*%Iuw!9aY_4QS;S8OKh zf<_~qu8e@)r^843J1|~XJ_WZaR!(~@jsF^Bd8I7tWszMgB$_7X;bw1r3C+6!Ma6Be zg?AW4aQjo=?@jGJ{2p;#J0ROVX-|$K)9&QH13?+_IxD?f>j*JrBfep@al;&UzAW#AOv$Aa#>9>@6ct9x&)uR5B!pO1^D@7b0z~j9tH;P0rl4ev^6U4ZsBgNQE$Sui`szf1LAq zyllX1*NL#qO|CzjiZZS&{jvPY^?}j_KW`KIDg6CE$lk72VWcHlYuK)7V@=g-b?(^r ze|<5#EGOd??Z&CW0{}z^biSlO7R67d40W^x>^3=Q zvh5*;&JF32ao}SV=xNXN#Q!w&+J1H!}e1zi0$Ot`I$iX)W8H^*6-^XgPsN{*2^ zg-!kJ`hapFOI?K>U<2Nodf14v_FD>K+9L*ep0Y?elvhJ3t00-w@;F3X`r?&I*KWQg z6$tcO_;iG9(b=V0ypty#jz|ib=YLeSyJjx>tGrh=^-LwMdhka)cXJu;aEZw&j@_yw z!G~9Ls7}F@-z%j?YzJ>=Ht5j+U1RlAl{XdEIqH%49wpP*;^o1i0=d>Nz|ou1Y7TtZ z!YGRUoS|!k^+V>Ej)dosc=G&AZI}_XkDTW zv{rz_L?@COLL$tgHc0Os%{<~bw{|8C9X`TW2RJw^)xm-TZ@!e?_LSh28=^ccNs-e~ zxA70j1==PU4VJe}1_Btyzs~aN>ag~%M!2k*9SS`JRgYQ4*5Wwqi8lgYKlzTLH1A;z znW`#t$4eZPyB$@W+)j?@?@WPnI^6#1Y3>QmBZ5y-|2evCdu-plu`$Q8WxA3xRkLlF zOaskusgy`ZP-RX56j82#Q^ysz=P|{zHv67ee~$c0_V+uNg=-6X9Xdj$YatbFnTr=$ zqF9A=O&l&oTt_pb-x$qo{B~|3LaMC^w5~u_Ri>?UU{U-%BW^jYN5e2UxB`53 zs7CtjxCbBkMCkox$`r@FK^ZTFL!?>BfH|UtQ?4iy2>kV=ychFOls>$0X)(qJ{eNHw^t%& z2ay1!&|@>&MaR0=g!NrB_-0_{@iDknaeTTaRr1zwZ;q^$QvxyPgM46HtGvhCNL{fw zw#~5pQ6A#JaNTRE`=%TV2vBM2xW%}hx^K`({jaQ^c=1ZuSp zZgtRxB;Zlu;7O*?LWb4!706G z>4LtW0~cG;W2^I?&Y}+|UDzM?q~%MX^G0`QH!4ItVVVsctCeCkp-x)X2Q|M3;BPmS z6`6?_J>6n;e9Je~@-Blhoxgzs=)Bdc4_VFVpH{35)(dT1SsW>;8c-Z>ST6G2f$vn! zE{a7t_~M6c=y=PnLZ3)w?Z+4Z*kl!m1Z{Q|2=zzJ|DmTdSrO_Y& zI~Q3PIetsMS&5oatb{gpt0)ScOS69+zgkF4Z`vqU3boDSvXf1L12k=IOHh0PU4%*( zcxwsZ1awiGN@ylgGX#7#)+Anqadq`~br`XwAq=FH83|sXU%=%76``WY3M)s3fGLC4 zGKntsRv5B9-cyqSd_Ol55VKG(_<$KMhg}1}d2oh>s%QG{*Vh>*9h;3}QzNNZB+^75 zRQFm>x#%|79D}NOvj9U99^ia#f&hC|C)36r_MLel|9+_F)1;e|;jGg~!p==|CLeY! z2#tyJ#K@F`VqRwN%Q@$^UWZemly4Jh4&hWv=9ve_(PHU0joh-DWf!6o3-uETYg z{*E|uqNe$|KJ-R!mY|Rg2h^P;xE~8o#VuQ)o`B-Olx=-swV-E-r4{k@rq-^wdke#k zDRvP~oqAho@a<;XvePRS-x(1Pl`MT?je}5io}l9G$nmg}mZ3^a0U!=vX$k=sY&|xH z&0sH^Z7QU9unOqNXt6#!l?l@YJd|njU{SMHs7SvF?HA-=6Ckg`Lxq7TRE8q*ID~R3p|O~+f!BBALZd1e)i^KbKF`&Ccg8QaQju zCGTF+VhhkpfpmJJG#BcS{`n^q9cJ^Z`Qt+X|1$$%`@r-4!ikB&{@!yV52xxpRKzN;OB1Ww<)bIpowSO0JQXoH#KVSm+eGG~R1sAwsN$Ya`u! z$(n!R<*!}@LJYucHCwrf{1%>j#p)P!)4hD zb9MFvE?Wrqe)4_Dl1GiAXb2Lf7c3%Wb)zc6UKbyRuiSMPa`nduBd*UXaOz{rqGU6- zmpb3pxn+T@NFpCl0$`V&jLLuP?YR&w*Bz_YzVT}fYf}1HZ5KS&^p#c^%`{dRLk?Tp zw~brSkS+4Lohp?`++Ni(OVv7z4_6F<&%i6xDolSn8wh+)EjX708X{7RHO3*7CL&@8 z>_TccdBj#CoiGssTuULS&G7i11p-L)h(!c?aI8&RtnB7yGJ)$`PdT_ft*+LMY7?o% zit<^t-;*q>y11c?MD(u~g$vYi)IsZ(7qiNT&aBi6Tef}Z3-wZ)lj2PBf_tylnh!3- z3yo&(Nf(I+KMBpPl7fkn1p#Kwl$=th!mkiCduEfRMveWvNTl)}{ zO1V%|%m1kp(PbD2d3&<~XqF zHls|^8?u;@Y-8@oK~fM>4q%b%kXYV?!{RT-Z>BxvNml#EUix`{2GWGCCMdfhx?zZd z&?F6R0XNuTk!B}?47y&jjk7KDR6SRU-voXrjZ+^j>UrkpD+1dRj~i_!>ge>SNmT~i>?Jc%8poY zLe~Zod~_)Yg}G0Onzyu<1X>~~IVU1NZO@u4Mh{-e3v%)N_ zBa7+ZZ65^bmZ)Sm3ik7Hxn?S(5C?h>bd`^8XV|oQBoaspw-1;&c`z~n?MFlVBdQuU zr0rs+*+sEoyX|y{ngAIeR-H_Oe~5u8=vm>#sfUqC6Y6UR|9jBNq;Ivrdd zDjMv{ZEvT`M{S2kAN1O48ssaZb%$EdcH4p!unVAe19DOTLCg(cooS5fFVAHRvgyb~ zl$-^F3})3*DRk7OlZj_drl<0j8N1U+A|F%!;2Ff^qRp|S!@X;EQxNq-aE>4w z(*tEGrGy6YTz!f@RjKYf%f73+Cl9I&P{BpOjEo-(ML46%cwk2y)kok-eHrm!gz`S!T^~XX}+->fK$V0}Sh)mX06CR6B4T z;D(2Tj{Q^u<`zEtq=@5o#D4ff`emYoAe`0okSmcA%_m zKV@;xZ_Uda?*lF#NF)>4;13^$1p)yv8$zLX^h)&c05p;zjT=!3kDQ2Ptv{hc(TLx| zmbuuw6c&zBI&72OM}i8QN_uugw)6_Hk_^aNI68(+v8$HU3YkI5N>*+0Uly|{){f9f zWB!PjGG~&Mn|@}(zBT`i%bJ)grwR>krSWq$POVw;@#CdA{>tE2aYqjaa!f2rHUV8A zOh9du0|?Yz!@i&36I{;IH}Ud$zHW#;QAy3xpDY)H>2n_Fkjuf=ym9>VZkiI+AxV{Ha3wedcOBl<=Eyv zY`*b_QM;!laCZ>rk@O4QItLIFnFFqyBDlEtS{|a{QHFAEKgv;Z` z`ccYifX6g~x%qPv=mjQp{8le3Fa}DQ^d6KefgR0bCMDZsG)*wwMn*?RVYDEGh96PN zZ$nu()u{;M<#-`Jl8Pn|Ms>2R@wd5a-=5t~_dNQyeZS%w{$*>RGK7AjcT5|K&T3kd z_{(O4{Aqmb?Ol_lOl!TD>m8dGX`)vwc3TTfEk7dlJ>G>sG%8a(5dA2NTe_6d_GrWY zO(KX#Qk{RtJ)DIKz6At~)yk_|!SQY&GL?a2M{eFzJbY@?A$^l}%kTLcMe0Y))L6!f zHMb-1#loL)T7b6?&2`rOaC z=bYc~dy(WY60C37K+IrEj9&*t9$?qvr+z_ff0Jh*(fDOZ#2^fgfXm&K**%wN>qH{8 zu-X0C@MBXw$9s`xkbTgySkWdeAa$JTv~baC_l{F(MK>fbSFUaiGH$!Fwz+wuw{r6x_#BZP0ty~zsQQXoQ&zR(ZSad3fuW2j1Wuq z4AR~;5E6_b4TzcMXdNw-P2Qk!5C~s8NC$6>=Zx)he--98OvufwaXY5W+f|QC(HsF3aIK+>R>&bWlfR;Q)_&#T^TTUaR{dNexz#$eSNoXn z@wOrz_p;VM!Yjv3$gDFwoq}~6xRx}Wd_vj%%+(5o$5|Zbg5l`<-=kv7HX#Io|Fiut zw&l)UIt|P{rbcjir9_y!lmq6VHOCW>l!CVTy1Y5j^C43&?`3 zfn*zRIsEQ6_*Q!Jy;{DQ($`s&w>W2&l$2x$gpyLO6!<=`?$WmO6Frw^7 zp{NK2Y-lb)HE}K;INSC3`ndXPtoi5Z>syMYC;tDqkQWfF8mJKrG6{tlO{Z5x(vG9k z68)z4Ge8=<04AJVnz9;IQqOa+7aJ?9ydbQJs?3%pltVg9o zFthbBXM`i7a##x~4+86GKkfguIZ-nm%;ve6VO9W7(<~;wt4jiOsx1z>i@cxx#`~&{ zMw^u-%}$pay9)HNug1>?e3sft4+vT?9IM=r#Q19A}!cby3Yh|h@NfWP!5 zk>~@)%`GnU{IO9(S!~Fdf@(kH$+AO~JhAuR#WZab#3~{L1b^*hIIi^~XKb_E)+(yi z_P1$XZWMuzr%WE0$hLa@mQG{gJf9iU%5%Klh5R+TV+M|c0U*NHk-tn{#8{g6b%X*L zd%7v=9scIm3mp$puA~onMt6P54Crr*&3)B*LfP~aGIxtrT8ZN1Y6}aEw4;IOGy$d6 zlMN3Z)PB_EXvc(#4r}bK_8j6y73Yd{q~F=m9#&c_5$4%YC>Uv+5s2U{%qB?6#eBZ& z3>IZtCj_`OSSh>FSqTF^Be%6)G*7#c?;?hPa0nAX)`iqQdsW}v`z0uwFV?75j4&5r z0|@t<>&F&3_29ALqXxNZGx}~|{Jqn4Zx~n7UP8Qa)y@Lvq5Y{PcCWOLN8t+arpf7L zwwFfq&afz2tp0#o>Y0LB`uXPKsmRr^!Yyu~r*Yl3>UqOyT5jCwPWNkO$@kQr-tNeX zk?F(-Yc2+uS+WRsgw~MP244kOeO|;nxW-to8)r>p#A#`w%yr>YVTF7OJUWzBTh7GI z%|Qr6aA#;c(R-kuPj|9rR+I>^R6?ySISg6~fwn2)Br1CdtX5NC=4e2BgdK`v)l%fL z>>fahu0s-h?6eB|-I5M$DzVlQ@?UBKFDpj@47h}fiegCIEG=b z*a@Yk$O-*EdZWHzZX3~M%{jN*Kt|hQwm2pwBY%41{GD~uuIgo8`SEUmDb5H9Y~3TT zRj1{8axh6rZ`WtMC=~pyKAKomk^y!??Y zO5vG&|2Q2@b~_1ieOmzH=No^4(c83+R< z8ikQY{ZEPNk6d`;-9GE{p|dFm)N}JLI63M**x$R#i{$^O$w4jS6J9tohvnxgE=6w` zyEM^bo< zCiYoM@Iw#Il_<^{3nRx4wC-rL;_8PthoNG!x@p+E~v#TG~Ed`aTkFQprfPQXzpo^JJ7lOmZyH4(MxC~)16pEnP zHskJ~?r!jU0AOl-90`?;jj7}YSB0hNI-VZShP#(y!ou#vu%*(&HoPK+9BWfj&Jgoc zh_FEsbrrA*kowAW5HL`C$ITj`9J$S|qf2gGRh~^JEseqvfvogaGHbFs^sRGZN1x)= zq($ji($M0c2~l6(zkB%c=}F|5<8pST(dxxRnZ7Rh&xI46TC$gPp9jVDh~2L1I{EAM zonz(`7QQ_m?sYsY4!Ko*V9wCzOKe9D@^0BhttVXj(mvlweS_Q%=nn(~Y=Zvp#6xpw zfooGS0hY;P3EwGi9e_3BYEAfp(_kShu_ zM1MZ!2jL!Sh?(OAL#yblh6veciAMH{n6qb4G4^$~qAXG=8$Qx7w#m)VQfypDabysx zjS(OPpop+u)+US(V{>=ZEbl`zU^x_;=u6FV)H8?j)R=Q$gMb1u26#L5&g??+rWotX zQ5#H$4E!F&Zt)m}&&0ktY7X6ex`wpb_1vVS*>0%bbcgB5*0^6UN3KZs3feqrxPEiw zgU@BFTGLOIA>M;$Jk^jXA`_%bl!(X~p5fBx2>r?}fOQU#p;# z07xKcgO)cLPXHr<4**!8YoP+elC;Kw`|(;MoO|S2N`fU>+T()A6rm%Wh~Go7fkoun z-6zBLG0%4Fmm?V&wTC3&3UoY`W4-B=RWZ(<|f2PT*TD;HfSo^NjKE zYU=2Y;_1%m=&lf|>NeA>;;E`$>*#{;WOWI2XHryko17+itd?|i*9djznypp{1NBq9 zHn>#{p_lVe)N3In;N85FY1;pIsp9|R#izT_%&Y0CtEp>csH1D>ZDn|;t3My03`Mn7 zmk4xqn{}6NoODwHwmfxB^{tlfbPWjujTgeUZUeT6p`1ag3v*sj`2D=q`xdVaM!O6< z`~1@K494>Evhrr9^6Dz%{KNA6@{xL*^6JWw`kIPr#}g=8U0PnxQeMtdQD6B~&T`UR zTHaPQQeT@{U2)QUf!51%(&k!TU0qRs`WJ1hIvH>~Y2)xO296e29JiIVwK<=(xq+LV z$Uz0=$6ZXLziLP7FHYLn8@*^Wb-mV-On3C5mN>oh$u_ew$G}&r{-_(%Ed4oUJcp)ag z{J4#2v+u^;3IdYaLS;>Tn{`c&I7$lP75?+0!J=G7V7c#3~MD zCE_aC0+Xh-kn)N&lpOMs=CvH^if1j(s0#^|>{yegjqJ+?W{sk8EU`gc2ZbNT6;X;B z{~}Oc2f2lqQc6XI_{vJGdSGZc7feeklojG?E0#4uc@-5BDl2g|;~P73&XYrD6yh2y z0tfK5omdAl-V9JfSq=Y{{!hqWS`w61dPstjQdM$-7C0;MFRPGPB}HI!f|3eUEhQyT zU6_`UBjUe`-}V={eX}4M3&S7ZEEf)in`1ICJik zD%n;2m0s3QXdDZbuI<2EJa7LOFm@81&+t&HnxEB*fdZCJopTv}7yq~I7WS+I^A=Tq zr8CtfgA$<9_m_>L1(T*Npu7^aqM=ia9e)(3*h7H~t*EB`We-Q*+gYQ^ze1Fo=8Zh! ze%$B*0Np`w0Er+JtK7->WWe9-mHeVLu4sqt4i;oWkpc@cl)0-&0fD+;No4w_aX}!k ze_jxozKBqniM3zP0SJVe!3qEYa{r|-qUzUv7*q^H6o3pgn+K?&1qhL(h&W`DxDekG zo3@A;x->=jmQeQ+dtgd2kywsPG6F+2l$d~F*h-4@MbKJ_N)7Q+w)gG2w)&C^3`;Lw#E11r3Lyez1{!RpTN^0=X(|o=ce?8V}Z0eQ8F_0Kh3! zqtkx{g&q)(1dt#ufC?70!L|Sk9+LAwYb1FnCeuJx2&NP=0aOoUnozJHw855w0@zZ> zc_GlIC~5jHprv#~4W$8#JpTeoTBra3lPds#T&wxPNjwxrYV}YsN`LMhH}$> zhJz9ma2Wdm0IVV)0czpMWce6~QJ8o>{Iep68tTYs&TxE-NX~;SX=Gr3n#VY>*qPX4 zT<{>tB3keu%Oe_!KraWNh~NSF-zLi=_HXmA_kT1f|9>-}R+K@1W^nW@qB#eM$&jH9 zRG1v@ze`KU|1Jm8EE1q<&8vNG_Pe3 zl_G>()HwTB)S{#UuxQ>WigiE(1Wm`LMT=QHFj&s#+C&KsctHl1AoK?=2Q;mL&!zos^!zkRR(8W;e))IaY*SC~c% z>fGGF>rW%21dWrwt4c&|VUh%YU>aT&R$LXp+|7AcH#RFYqt={`F93{yOa6U>fLL z(0|<`Xw<>|Ew675=?X?@9eK8X!D-kIDFK4e0RXo}`xD^&5Osf6Xo_-ZygRl98;(|_ zpnRQ`0!csdToPvyzP6UbVU|U-ruuhFCC=W;Bt0d@Z=a{#E1SH*&>aUgGJpe{hC5gS z2A_BcDku~l2*|DNp5!!v2f^>+a-pK54u*P6+ra^_Lx<46eKA1C#VZfaw-5ptn3xYC z1);~pG)AEva&;q^u6j|2Qp3}H>4(9O4+_C^{3rsNnQv0rJV#_bf=zbh+=S{%cr%=Qjx^{zQvg{vk&pz|4hFj1)k<1dnPqfx7cxt- zqmgD5IZ5|}I$uXou6uLo}&0tCt9tdY*?rKal>M7=II8snJ0_f94Fye5TpsZWi9g^$_o zg#aB0Xb|6Kl!Xh+Bt5Kdp^fjA0bp=d!qviDM1{p0-HR|Ad=Uj=ZC4!-hEtf`JAz6W z<=0f#gGWC%#()*v3X{6MwPv9ej(|K}@9GO!;Zrh0xkkhJsvTCmm(2L*L_N3+*;U(f zh$3K1q!Q~7xswad(VgW%31j5J+Jge`3GA|c#fK6DwBp((jJM>SFOmD~%LdQ-6;$rG z6l1&Bjrr5=3=U`Rsv~6}l)iJP9a8Iy$*z0maGYO_%hytqJg=E~ad9&< z!$_2^rgt%nU$bCM_?qPOOqVXC!b{D^1h#8gE6=f;Wtx?+K42828LBZ=A87&)3I;3( zIa!?u>3mfxRyk+Rt%i*p^k+Ta5$CA(xZCZPV7h+K<@8zeaH&=Utsic(4h4;A9hEQ% z;iH<#t`1E?w!Q}5!Cq!9Ul_RuNc;|@HN>`s)7AZIQH219o4Azsj)<3XA5(_iR!`h! zf&$YH?1%964{x^(l2Gz;C?0N5FebBS87^u{Luj{G4uwQ~z=^*>xo>z(h$v#pl6~lp z;9MN=XL@CDcu%|?=vx>*eCe4*un(gGTBvZh78gpy1nj&!_bB%Il05JFETfR0&9u9> zKd@+w@-p#$(`&k%ozSzeYe)J{h<>|gkF_E_7eQxS?Qx#nR8>IvzOUYKW7FTj4PCvTAN&A&()9Tv0A zs#opDI7PF7V97O2I?TK=Z#5(o;VM099ydR$ zoDkS~-U7_{R&9SnJh-V$)+bnvAtw(GRqkbQ$!}FH$kD3OVHZ`8!;RY^FVhn%kr|+t zWhtViq^J>PUBr6PxQ^-fjMf@0^iJ{7?-|S@xz*)CT$n{VaL)+-2`zG{T#d!zoG<6@ zyszcL5_!Z8o_{3HUeC$AK@B%=6|*0wmn13ImBxh2n+@;oE8xazn|EM80-JQKM?Z%= zoqWHGsq42JpP%%|;s&(ij=E|PNmn18@X3;@fB3K^J!G{UYACIkLe9PButMnwpnSV} zDEA5iwOzjFrCnL(JTNpN`G6H|`JkI(=unKjes}Ydcl*0x?aIbYjO6h`S{?~$r+&L> zYU<%A0wE^vNJ2|HyAJ-i1kL~?WVfxzKa&JR5@*A}fvuMnKXRhW*T(q*GmiU`!+X&m zdsv_X2Szy*zOUQClzRl9r5Gd8`_9ivm@mnKE>346)VU49G}PB&B^z=v+<;V7Mj*L& z`$~&n$M3EARO;PjbFO57m)p#HS_QgE0Q9)%8ov?e-22j6Vq?THi4S(fU!=SPtyXz@ zAvx0FvF6u9cOoqBja7%eCeb1?f+oO9+Ni`PMC)l|#w2=yPB9-!Cibr`*@ZOe#ZJD1 zs!K1#b}>rBW`%;rR|4%>_{^Rdl!|3Ls7$nsun!DXA`Ee$snKKa!fC9q>8Trv3D?@^;UtFuBz#A0hD^Hh0t92;=GQ;abFyP zzB5Rz>`n$z-FSlAjKGod}F%l@vp4?TCLxV{qngf zl)SjIV#I!%x4dI)0+dSnx0FHVT=sLlRJxUvaMYd$$AVwC*3B%))nYVoE{J77jJ~Jp ziRoHe2<=pD?<$+>leET|DTD+qMq-VevAPrg92MdJo>up=%Pu9An{Di+#nRa4&ix^< z{HrEBQjiz!jSX<8wk5;hiIJA7)^iTi zbT%OU2&81KF8y}Pm8YVw%`0eM)rL$v$E_UR|Dr!}fWp!`d0@IHg7gvJq1R5WI&hqs=+ISggJ_8u7h8T($SIx zj=G)6%_=QS3s8sKYr$WBFx6pD3z;k_!78K#2hgk}Obk?#%#-$Yv?7MlEe#c@Ts&ra zajt>j$jDx;nT4ryBHBT^K50yxwAsL5|1h;pA*}NDo3JoPq)W5LT-J*Eh=WZ7p+Dhy zU#32Jm5OWnW7Lh)M8zW)Q5pq_z|y`+H1YC7_P%wspj2xAKK!mmZEc^p)0X~c-T5iO z!qS|G#Mbp|pVU^fnb=N4o7=`gmk}%#z#JP|kwdp2;)PHBBVr&e^^++U3MN$8U+x() z8@7Z-oE9bn#&&$H5%u$*oSPGFKjs@J{5C@26oEAfQWj_5M9X-5f&199w=`0MRM}b}!25 z)5ICt%Hl-$rIZk{7p=FavA^iujyA+!Qp|vV`g8Q+vtohLwhhga)kv4ArOMtcAgE+% z2nC)aJgMmV++Nb{2wEBJ{1OIp4$`q_3V=>rtgCVVut^X4%Q9Y$u;5w1znXP!nkSr9 z^DooS>U<3gv7GzJIA-dxJ8xRO^Tx{ch9#3bg2gobhmlE>7z6kD<(Tf)@}IJt2CPOh zz96M1E0sl%@H^M|mKuzy=QVe8>=bIjoLo$(G1prVs@glWQ)$;_1`MNB4Ns0@UCnv0 z5qE)Z7xSMe2K}m#8JF)Mw?xJt#23pom|e97#Z2;JBW5Ez@ba+DlE`LvzK?OFb)PqC zk9xX(`R}pB3cizDOt2;_t0Dq#S3+!ZYLrXFYbHTy@5J43mv!uc7hEfn1E_slDOcvSrzA*zH_dq{F=Xv9^pQ$byk4}UqCH+q!rT0ta!!YTfDF@9IdlHv8He091KnKN2K>~hH&>u{u zgVpVoSHa(}h6p`cL0Ybmn`MVMq?pHylPpd>StY7UOV%P@j=1fThRi?6>@}N=3Ug&< z#)ilw0T^-OS%*B@-#W$~<1J05BfK4=uwlOzsznp-WpwZ908_m5*xQ|bCppZo?Ih5d zDGaaI^_Y|d3gQG>nW)@z!m*ijKea4rTb+EDHAW@9P>4q9*B#o9B_ZiGc2LBgW|TNt|&d* zQv=oQdpsj$VFlgU*Iwq|@CAS8fYq%_+UDXX#7*-4Y z@N_q-DI^rLH3so7AFbR^tM#M4@~z$XKuXe9g0B0BKT)R_TgAM~MQ3_1%x2Gj5O^9K0GSULnznWpW0_idCm$&WHGDHgyAvz9gsc9BIcew-rHY`$$nj^j_~Yh26TY-E z=srR)(O9FC*<3KVU%a&T?YKmY$KyF&NWfSogZ9rV7m5Sd_41qa3XoLnT`XpoH~Hcw z1aS2xK#N~+&6A}*2uCQiV#Id39uK|m_o=^lK_~9TGjSTP-^mHPa=qxpOan6$L3zeQ zzt%<1?ngs!*3tcB53khCj@?)m!Ub?;quZ_s>z~3>5am;wD+PxPh4CIbXOt&SvtgRh z<(5IonNy{8R@Y~G6A%N3l31ks%g-JvidPP*y0@0g-JGSu+pF^S#vGJIViU|cA5c54 zs@hl|pK+qPC7GA*wgi3(5o!FHpB}#U@NURwZgbfkaV3ZeyBtEHWLQ(Ug^)QT4#QA7 zetr}k6m$$Hpe7kS1X|}YO7u4ea9CuqV>X}jS6p|Hy*PRWI)LUmDsis6i-%4n|~4=JcTcV83DPsnEs&FvK#OTJv)TQv}q6+7pI z6mWlA{Bm&(M{)fuMo9Zp#Xhnnu2~D*Fr40-qqBHLmE26?HAxDqU!?M6*54%;@tFB0 zH&+93cl9M`y%VJP)TLCb9x<0cnP@Q}ra$7$iV6_>GG+~-O8t=>-hgoW6^U#!y%62s zT#K_Z4F(o46dkEFGZcL#^Ca3QJ{Dj#Y~S}0QmaE>$`Jty)H|tuixKW!#g)EA=u^|( z_;Go4Hhel6KE9737#*e2q%xh&dhE}15Py!D;R7F&tR<*}!@O!?AKqcXTD1C<^_q1N zkgI%JO+5dBC>|p*0$^rCLH-Qt?~sa?T5>L6rVsu^-TfTL1@H_cPfy3?fFtI;9u_5< zsa~6%#B-7tUH)|YaD6ryjm@H>B$mGPUF6 zVo?5}4D5e5d%8>h-;)bCXt!>TJc9OT|8V~pJv|*g3)9FzB?FLwo{^E|ZT`>p)^8mx zi3Meit*`s!q^}T+k=*CiA@YC`kUatZTV1Pyl2BZHTWxvKp(v!0Gt9Y#2dsYLUxP`+ zAsxOW4*6t89y8u6p*X1o-P`c(eG(y@3v9Gft#7RZ#ZsMG5xOG@I*@}L^pTl>8<%@!$aE63}UbT^b6o~Mo{ zzU*;oqdxwri1^WlgH|jCMkJ(Bsc~s}nxM0Wzg=*h z){BPpR#*4bE{`{;>2>MeZcX9oCN6F#MfHbgRg;LI6=l&AZphQOl9tT3jVcTc92?}a zXw;#Oop03k!DDhCQ+z3^E>gUN&ZEVRG6F@`8D8OsQC?z0{PJxNkxxIFQO&3@{9*xW zQ{UujB>%WEoIB9>mo#02!-l4!0)S)pp~;&6^!Q? zo#J9c;XHn>sNK{@chBeawukN>w2C`zV}0X_^BV9CP<9PZ_!#7YYByVIlcb^Qyhp!| zrkVfAp(fBH6Mb;8>9g1&Y39~su9t^jzirj<<0*fcG+rqY(R){g_-e9fvzw<}cV!aK z*!k5+Q>$hL)4(86ekL19S80I{ZdTXxVJ5c)V->Wne8kqStab<@KaE=}Y zyf&4+}e zDvSY*$I0pb76)zCsmN7>!<{FsJEdqvBbCXMsjwyw!1VFdeJi!rvvX5Sb#`^9)~%}QFO zjpFF|vi`+qq(?UUWRDEpE?yJ0(O0~cdo%q%pT;m@u~M@SFcLd)1ESPNskjMLg^}49 zW>5iidNrVj!I|IfxAF(KRvJ>F4qv0}9yc{)$4tIG$|4!y>$55;0Cd!RUedljnYmnJ zS1n0X|MK3*z+FgSb{1;>Q-jdia%0ZAH| zWQ~SoP0N6cvxx&bC~&oP%&&8ALYu0W*enplzYeOu2KHCCb0WaNXu_1u${Ysbso=Hz z@CL}Zj|Q@QEY*I8JuUe zDJkZZ&-BH|{Q!U^h?zICm4rDGuaab^ihbe>$u7wn;N#^#1CeESrnN6_3*^vhhQN00 zMa-93>unO~a)`dqFF~m2!i!{lt1L5`TI;Ris6ng^9QiJgpQ}fcg*=Qze)-_v(+jGI z4i&k}Y+yEK_`(0tF?C6r?e~A9Md?Dd#6~=1&bG`DcRe2`<8kwFBqv4~!@+j8omlXv%TD$iZnAY5Rr99KJcPNOakXv}EF6CW{*W-cj zCMa5Ssvym4vpE$}Vu9%)c;CjF??A!td(NvKbV%!U>TN>M7MXQv`qjel6B*M&QC!k= zjY~L1v=rL=be>c%qagY^0H{FJZEKYDEAj?+{-_ z&F8t*2^{6n!xzQzW!3+6PleCkec*g7WBNym$)@Lqs-#y841i8;6jGACqLd}hRTDB+ z`X0W<=;x4)g0f_+g8oeHp2|{%N0P$mqY#3QStsO*_-m=OtCRTDc74qrxdBu$y zL{;ovvxCL5_PY<8IIth=(I8|X+drw{1#C~&#Q2w@D^4Ri?~Hqk!@amx)Lc}CH;BF= zc$$eq%4~pCGxv_~oETH%U7mdj#xevLoTG~%bJyw^HgZxq`mR7^9c$&+#31m3usD}` zhxHceM;T)OM|-S>Vm?A=@u9&uR@Pr0A|=+4ghywJm> zoN`kqwWcDp*^D{vLT=XS`tyYc@iJ|y@7$`sSPCsHB2PztYXnboY6sOX4_JX79y1-T z<1+);AC;C@vDQ@Hc3${{el=Pf$=XY!)v)QnMKZCHB+ZgTkJU(*xmS^G40gGXNDvo= zX$8U1s_50RWQR8Qwn}Yhu?XMmCD4vt0cX094YT&3rqws**N0|NxXk)N5qk^ zV^OCk3Tfb6#WQ5%hUsCez*!}D=IFSXgOG0at2IZ5r7sWvpNEhAOXxu)ZMG+BiK87F z;(31P-wy}F|A1UU3ym-88V?7U?l)-{fdbWjA9WH82sLdJ&R-Z{s zUka1IFewzrqV^;fs(76Lu~_z%S8`V9>lZOS5rEkv_SCpD{HP{#%_C!S1K2V!$+?$~ zEX&Jn?O=q%|BB-6gSVX5-R?8QvP(~wp_YjLZ4t0eG=>fVE%TH0E2Fqf?CsdDRcX=Y zD)(~YjMsv60a<z_+!pv(){ofZ z2Sj~_if*u>nh@5Z6fBJCs1fNSJQ|t2_{Jog+C7#NY13Uq8lh|kJ{riOys#W5b$lMu zZVB)pxrhuUM`~v`^ITrecgk_igvGPb+s-#;dJFXRG7Mu8L+w-*X2&Nb(&1Dk)o7!c zq>7`h$!FB#)kin{bz)he-+qbV*~a54$jroLjFB2Ht})-DI0=RtsFr^ckp4=p#v$tQ zGc)GeD$(uJdXvTUTiax1xC7HkcUyg=<<`0{>@m8XnD%l%RT2Lz(=a5$1-os3tUIm` z#s346JTwG9@Wx5j>>elWIwdckN`$Y&&|J`8eYa}<;oqRk3IGod$X?(A4x`QMKSfXy zjXC`S4M*?n5r9PGjRf~wYp$i>?C3S6>i!sN1IF2Rn?-+Q+y8|8BnL(NWEV0xi#Jf{ zdA=oF)H!iuv0wSBGmN;oan&vHq!UlUxV#xedV!kWF-jg4bDn$zSJ1N zZF>5>_c`Q`p1 zq-sN>D9jM|toU(w5+7?Le4<36_=Mr_Nho0Sch4yNjM|FU#ku^T_pg|6cKdS?IYuRA1&OzP0NT(9k>GQ}| zk#=Z;kv!!i@{`-{HEEM0dW-ztE{QmwoK)YhxENU@BIx8r4nU~1g z*!)m#dL}Mst{K1@pws>tR;X4uKKH#dk2gWm}HErdCU%tTCID?gGDTJ8qS4By{ ztNz%BSE?TpZeMqfu!e&yy$dR|VU7%9>cC(Xn1hS918@D=g#C{ocmHy%^PgBQeEJC* z!$l~SX!H)JUvKs?d5IrhQ*uF*F^F$21HZ{9mbE+}L=<{1mSkNfa;o3PVtcu1P`~wJ zY9aM~LcwvY$4Fm9SOvzMqiQF7yjtYY#j-^+&fVfx`_oQ`%MrbWtiuD?#KeE;J=Io> z4;!-fITXPIP%@6~z2+pK^)qd>*n}WWzm*AwH`UgR2d5AKzJ^uLtbYNiHkCeddGiGx zU8jmyfkPyv_&i*I!e3xsPcf*Kr)oDYG_Vatxx67v$;XIJzeDrK53dUQ#Llt&^B=hh z-iM!|>SKF+YeHakv)MQ;P5|=n9aDdz=|HYtxld1wB=%OzDI|7_s3uwY-YL!u&iw=E zZuef8T%8|rc%**U=0XXQ+Gnz^#pr>5WuRz;h%bfa+CJUFi!2vQgmVU=OX%j~Rj_aa z7Vip}3!dOKV>2!Mva`~^n~fRGX}fq77EN5a7 zq@io!)x}zLrYbr~2aFG)(YAY%e?ASS44S;J%FJU{tJ{sWoDF3)iX$G#XPqj5gDTB; z4?%VA{t-M#E9nOl52G0NofoWUhbXboAU_57iFBz|WU=+z6n`t_Rf4#^<%@ln5nhFo zAFrM2Y6z2i%rI!VMNO{kz3n38CsuIhgaA4WXPePfoN<-PDicge_>RDZ7axH%UMdR) zeouMlDo$bbU}Jk^3UOCfWBr=8|I^o7oned-Bny)R>5M(z0sQX>0|^H7?-1kf(--j29)$x?m$*Koy|=!! zsIDeABPYG_XJut+S;xRg-vXt=n)xOKCnSMt|Ha#OvjYa51wazt7+|CqnNAXP+jlPe zv@AAOk(l9;{i95ABp54|0g0R6rL;saSsf50FDz9SbwCk`Gno12=-9E6JbUL@HTMQo zcMF))v^5{Bm0Mc_hLWf^tR&X-IqRzia#@Q92<8^W^IjZsv&C?%BOI=-3MA{c#J|1m z&Am0h`4*pQY^!RdS#&=?4lrKfAB!A(onCpA(S@|59SGj;is8+`LUYvR6kz65gW0}cIsxUKxm!8fA_vPre_9uvSVgn;XEHII>Ao2MlFnsk?kM-T8rb9K0D9hN| zm?2p=Rt+L|db`Z$gutQ9&EI(Wg+$66QqH?4L5!eRunAdwsF~-3uDy1~HT;%A_@{Vx z{+j03lqBjnOF#pU6pcm0j!(UX=>jW-4>JL25WFics>A}FCj^kaPu}$hq7JGnH<)!7 zSs8&_DasC!gRx`UvwLq~s~WtTpZB#xr3rqjxcHCR^5XWV+sJC`10&?6;Ljv<(ZbSS zQ^z9V{c|F+w3#{jb$r>uzRgNwrOlEoB^ja2?3~lepGK$5k*CiVi$?ja@FfL5pZ38^ z4bRKDCsl;Y$VZBO>@ou2QHg=VLfuwN3_lEx@x!WXF$=P*sF-RiBghfv+c8?&Wm?DD zDWq(Lsj&C1$ewNIUf>t)*rAdFUiViI2VSY_@_3B={Eqi(3vZ7B+}MSCStvlg4A_uV z=1dn$hnL4>o+n@k*R2JY;eM7nv+9PjUHa9rR-SJO)A#evyV(~!YBid6eg; z7X$!5EU-AkuFJ2v-a|mbW$>Nbw_YLIEJaAtA=Ps9WR~gau&RL_olaEukRj&ucj5to zjbX#lH=hR7+&O&>(Q`Y;B)t;oaD->S!skfo8BZ54GY{+ZJ}(AN$s|1>C#_Mj*DV;h zBL{u=(95tUQ|tK|QSY#~8b(C|GElSts3)jfB-3PU^Y3^!JKBSOPds@#nG{UfU^e#; zRI1FQ1DL}i79LPq>;70*zsBz0%ahOJ}^fD0njzbcbw-o%T=x+@aT zk+XGJq1!1Dn)I@dW8Gy#!1Jk{K;2QIcgN`Vw9tNcS0=TxW0^5K@(L@}3oj<{_tZ(>EoL)x5s(>az0^rGKa6UFM?hcLz0ypLktgE^W0OCgDN~v)z@6gCzb7otheN8 zkxMXQjAJ0ICyR@_w3qAi%s#tvf#tLg4~&(spj-m39quI=NTcjh$|!VcM^3;Uy6*?FR%RWjC)r+3<91!mGuT+E7|W_s88^8xX~kAH#U! zm!?1BItPi-lY2T5?Xv1}1DnUG zvHRdOlOJssOkOCtr^l_&B}hp#PzCPi0`+&SY7!AELe+Co?zi- zX0dvQ`$pBlh!pF>+8!Y75Lv9Y6EE+nHS|lw;p&9SQv4q3XZ8~c@xf=!(+z$Y9)*!; z$vD~X9!hy%AP)oh97FU3yRa<>QJuVU(>}19n%B;^>&t3Y^Ff%uBNtkBaA8X;Mzxeb? zE{Ce@8I?37K-Q1^Nt1wj(PdC0tYjsga`i}aP%$Yt(^(V^UW^cDe&pan3INWPn;(7b z+ZezRz{5CsN0`ZbLBHlg8iW9lcz9j&4|~iR(5U#JgzuyEsdGy6A)lZA^B|#c0*6fr zplbm={6#&1`A;gT%Y?2w%b+8=N)QY+hQPGFRakxy$4#6|W}O%}+bpPkwTUOt`|08W z`zlR{x1xwMTm!WhjFJ~6{vr6HK(VPxhv9HVm5mbR_FaLt&LeEVt?t5n#_qOvYy~jP8xPlC{uBtobycG3?N%M5>Y$5AE|dprX*g~+ zeSS2_R6`3xMeyp$Tg?aQJ=2SZtWX+oOIFjp5{+5C=2++|vb%M3lDwn*l&h2IgeF7d z#G@f;WZW+WMAf*WW_}uYcB}73zjGwOs{z-b2MCZfML5WlOSm{Dc_`1Y@&DO5; zd^227f3N|tAuB75A>#ET*QD@2fWFT0$mE?y@F84QWW}8Yr-uL}JsLA2*DaX&{5~TX z|042oBQAXgd{T8zc#a+qG|j!{YW0*o!#Zk*RDD0#5{m_?#0&9d+VdZpE-MK8Z z42t~pkj2(x?+gzJB-Z7IFoXzi@t1Xq=16=-az_&a{!oP>!B$X&(*S?2n#8Bx9u91K z3XSBxS#YUP%UA&6ihEorlT6(Ng~<5mvRjL6BVTHZCczVGY<@)2rd&@uFw~xz0JKuT z*=@qOGbgqn1YLXTy+sPR82(Dxzj>da4kzB-CbWs%xjrv|t#2@mdUnV)N_>!*fk44E zU{WJ6n7yz9XZm1)BBjJ56z!jf9(HCL-e~Rxo4vT(`;G*pu1VQ;J0X0ULOwV(;)Lr6 z4~M*~!^wTnWDNifZatH+*Keff%)E6EXlVWU+PzQA5@^2!8$(LQL7wD<3(TWEx`}pW zN<@5oWSAV?yYu0Fk5>bWec&yU-nxyPTzVE}uJ_gV!?D<6g;fpygihicQgc{3+PDK-V&!#k=IFeENto$a;5YX^2`xaZwK3!Z zUDLqpXu`vD+oOv0Bpsgv&UOzwM34a&#ajZf9k3TnQSte@D zWsX-zv~ndMN6VFeY}u!}mQgd|qq`HNbFu!KO-QT&%|#dN8OQk8|G5a4E=fq-*$!SrRJo5gc&&Qj8L&1&*p}uj{5&xchyefze>aNUp=iHMbyx%lPqYl+Tfjv~%SgPELz#6v+R4%R2qZuD*}I()ETUYgY7Q_RJg$9A!=SnVT^ zPt!Pv{%3=aGsAMod-NrDU_|(6@YxSy#+nI&--~ods~>?YT*UTDc@C1_9xdtQD^Yf2 zlL4M;ocM6gKRUNBb2)LpiNsMkw%+bxG*e>(Yo~}4Kj^PvK>wN9F40U89rB!GBgh*X zW*#KsioevT(qp>raR?+?agB*aLShj98(U3)K%{O7=VZM@|!W1dS zT^Vr$uEC~@rJBzD7<%b;TxV~I_z({QN=EPN-gc5J{cfeQbeC+8mJiunBLl3sAz3WV z9d#Y_R=JG~`vx@04cIJ##mKq0OzaflKJWj@AJW}pfk-%DS$2PsnQj~D+BCaFiuVcv zHJr*dIsLLODAWb)9Y@Vg7sCVMIX1PCt+GBKm>M%GOa}*Qv|gOHL5?>Q4)6Rrr8rtN z614OLTyhTc88A#YTOoFkfcMo0PKfKBV)C^4 zGG8lX4BAunpCZb$yEd{5nW3*mVd+^Aj|nh)S8mr2jq}lypQfT~J@gzmz7WZ@;IXIfcRuq0U9p9njxSLx zUZ`jYpZB6MRxZ?i0j9w7yFX~40~t|_D&w1HglCJRri+cCfU2RIQghS+(LTdYx6>3m zj*|05?^dS8im%!=72`1dMjW?1rEGO?TxdBFU%IBT>s&({Z3bs-Ls0)T^ zcJ#`XP?b##k~tzZeS``l>bwyQF8xN_k~)|B&eYFLt>d1h2MlrNb|q5~qzI$R)G9CX zbHADiemh^?u6J!7*Y2-f6je6#`=9GZd8l+oowo-D15T$cjJ<_KBe;zX(pj$4eQM8) zL%}h)rA>q70;wdDzk5Kr&*hE*qGT1E#9<8)9jso=c0)CMn)YF6BMR(f?JfE*QxpUv z<}$%(mMu#5F_@O0acP4=4BA8TmUJ)7bzGh>{o1mkFwJu0#n0kf($L4Xva|W4#^c&@ z@{!ZWY+!}}Njyl42~7l2c5+m4=(c>9O?A>ORB&iW86kH>y|)LxUfC0)Lni^O7%{RY zSbdD!`DZR)g*yR@N@hQ`Bo4B_HPT~H$is?oFjNTn)opKQ2R=KwADMv zcX7|+QwNrO6K3XfO$RQAgTwC+>Ps(O!2aH}nEk-wO8bnH-ZB_?e zdUN5PaKeBUYo63aL@O3V*ffT2!-9n&Vq!BuJwmh=l%(d9}n(+9uiePJ3If*Ie^*Sa!4% zpsUAV=zT_u3$d1%vjDo zi+-r8^B^^F>`@jE?Kb2NUb-81**#V) z`)Tu|DSa0aIrS?j{xx1~?bGAttVR~UttJJvQ<2DqAakQNqL?51)$b_CV3~}Py+5^2 z0-5Dxu#lloh4(1F?yXCZ1UJciQ!X(0ZarhVLKVF%n~d;JD4+cf35-?G=2-|>0W@>d zzGpK5OP1#5Y$Aq5o|F3>r^L%-U$D#P?n`EmOle{$d9yl0ebI-Ew@PzO6pzQ+4`*L8 zW$a=Al)3UuWR{PKnqF(fwr4V1*&lDnVbVWpqjk1lU@}ELTi@_00V{T;Z^{d`-lIbw zZkGoeK*+d2C{#v*Vr@;6Vg=14lAs_(gyAksU|v&xu9(xS|I>}%Llu=Zd&6zEGau$7 zr1Ntuke^SB(zUD4?)yFmo!@*K;G?)3j6wKdz|P0!t3y`>d91@)B{TEsmF-$5?N+(7 zV@fz_GJe8o&x^+`5t*Nqm`B-b%W*1(qTZi1#9%MyTcx`_*Los}e1=*bzk|@tPgEy9 z#c`DOSN`yBTWQQV0GYRAe>`el&>!3HiWb<;CNzS)pC{dxrIpx=ux)l;Qe?x|4JlOj zM5QDGyF%+-V?=Ytw*zgw%R?FWSX?Ybz`Ob~E|ySibo?j;YNW^IEjLfOxbdhG#dgU1 zGDlM$`B`aOT$q8zJx!^!Q_xet1WzR%Tkj6RTENILml9ePV#;%?u@Y?kZvxw^u^`fj zEbtBQiS~4@4>D^$edX1BgZRW4$t<6{dC$jj8|=JZ&_uDCK6a61Qs4|L_JWU`x=w*x zdA`I(D@SIQBZein&)%otk;zdTM0EiGH`=14nZ?El?RE6HcLnK5E69q?_IoYvl5N)7 zg#_%Y-0s;}&%N}+?8qOvy)wlM%R0{)+39WoF0hR5ty-ORF?FkR8N=4uO7PW|7%lR_ z!?PYZ1~=Pr2~JNAN#>8?T!#7PU0m>Kf}6s;@g(5}my(=rGmqeyWg3~5+dKp|1JI&F z-8q9lnIf8Colp$!0Ew+;)*JqO!fEw>VBkpu7Un2U76#{8-Aq2Vafd!uIUpVP7&9tr z7%{x=D`$u;%uW`!?;r6>Ha+W)8a(xYTzjl*ygj;Ns&A2EBM|bwQI?2hnX6u#Ha1HvZP$k-tzN%g#T1yscjNsvxgipgF$bfR*g`Duc5+jbZG= zsh^Sos9XI^Nf76tf|l6?%%>V2WLdV&0-}(^Us-nJM8Ea#*gD^CqLYpcaGcI}XnYe( z<0F;e(i^p_Vkq9rGjwJuV;+x}d{@fjUol(JzXq##^~z0l>?W0|h8V`S#bvz27V7)s zh#|2ouFcG;3UssctIIgQFQ(lJ$CR`X<~3}dO_x5?-gYuBfKs~zY75vHGPN71%?7!> z9$=R~78?mNTmJyBdcq*5mV{kN%<=tlIqL~{kxG@G%Gwfw-kSBDmBDT~B^IapCPy*i zjda8drYq0rwJ^(!naTHa*xV)ccg0OBN4n<7IMw@e?GeZ69gP{J#Ph0qFiz)gBZ{MngwIodN(pMYMvym-ry%GA9{5 zm7`i^4FQv;vSWpRm~}BgP3EuN%{}{U-p@^K`k8WYBcDzl{|z;%>6J5K*e?-J_(Mr3 zfc%aybx?m_9clxN%Xu4(CK~w<7a(Q_AR8^2YK!n}82WpQz!ZWD=F2SN{2==QVEfgv zvh+J+n2bbzY3_R^A8V%G3|Qz$c!}w2y-y4{1`o|J)1qi{!aSf|6Zoh~HP@vI+zbV7 zRtJDavynA5qTNeOZfx(+lUiLGJ(ZTbnJZo2Hks0{|?SJvw|ta(z1#%S|(R`DXp?Cx`DyqX3#jx7`2$ diff --git a/Resources/Locale/en-US/stack/stacks.ftl b/Resources/Locale/en-US/stack/stacks.ftl index d83825b614..818ac954c5 100644 --- a/Resources/Locale/en-US/stack/stacks.ftl +++ b/Resources/Locale/en-US/stack/stacks.ftl @@ -234,6 +234,7 @@ stack-asteroid-astro-sand-floor = asteroid astro-sand floor stack-xeno-floor = xeno floor stack-xeno-steel = xeno steel tile stack-xeno-steel-corner = xeno steel corner tile +stack-xenoborg = xenoborg tile stack-xeno-maint = xeno techmaint stack-dark-squiggly = dark steel squiggly tile stack-white-marble-floor = white marble floor diff --git a/Resources/Locale/en-US/tiles/tiles.ftl b/Resources/Locale/en-US/tiles/tiles.ftl index 448e8dbc5f..6295712722 100644 --- a/Resources/Locale/en-US/tiles/tiles.ftl +++ b/Resources/Locale/en-US/tiles/tiles.ftl @@ -139,6 +139,7 @@ tiles-xeno-floor = xeno floor tiles-xeno-steel = xeno steel tile tiles-xeno-steel-corner = xeno steel corner tile tiles-xeno-maint = xeno techmaint +tiles-xenoborg-floor = xenoborg tile tiles-dark-squiggly = dark steel squiggly tile tiles-white-marble = white marble tile tiles-dark-marble = dark marble tile diff --git a/Resources/Prototypes/Entities/Mobs/Player/mothershipcore.yml b/Resources/Prototypes/Entities/Mobs/Player/mothershipcore.yml index 4d729889c2..3535a55e7f 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/mothershipcore.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/mothershipcore.yml @@ -90,6 +90,17 @@ maxIntensity: 100 intensitySlope: 2 totalIntensity: 200 + - type: SurveillanceCameraSpeaker + - type: SurveillanceCameraMonitor + - type: RoboticsConsole + allowBorgControl: false + radioChannel: Xenoborg + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Mothership + transmitFrequencyId: Mothership + - type: WirelessNetworkConnection + range: 10000 # mothership can see them from very far - type: WiresPanel - type: ActivatableUI key: enum.LatheUiKey.Key @@ -101,6 +112,10 @@ requireInputValidation: false enum.RadarConsoleUiKey.Key: type: RadarConsoleBoundUserInterface + enum.RoboticsConsoleUiKey.Key: + type: RoboticsConsoleBoundUserInterface + enum.SurveillanceCameraMonitorUiKey.Key: + type: SurveillanceCameraMonitorBoundUserInterface enum.LatheUiKey.Key: type: LatheBoundUserInterface enum.ResearchClientUiKey.Key: @@ -184,9 +199,38 @@ uis: enum.RadarConsoleUiKey.Key: toggleAction: ActionAGhostShowRadar + enum.RoboticsConsoleUiKey.Key: + toggleAction: ActionXenoborgControlMonitor + enum.SurveillanceCameraMonitorUiKey.Key: + toggleAction: ActionXenoborgCameraMonitor - type: ShowElectrocutionHUD - type: PowerMonitoringCableNetworks - type: RadarConsole -# TODO: add xenoborg control interface action (part 5) -# TODO: add xenoborg camera monitor interface action (part 5) +- type: entity + parent: BaseAGhostAction + id: ActionXenoborgControlMonitor + name: Xenoborgs Control Console + description: View the Xenoborgs Control Console + components: + - type: Action + icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-basic-module } + iconOn: Interface/Actions/actions_borg.rsi/xenoborg-basic-module.png + keywords: [ "Mothership Core", "console", "interface" ] + priority: -6 + - type: InstantAction + event: !type:ToggleIntrinsicUIEvent { key: enum.RoboticsConsoleUiKey.Key } + +- type: entity + parent: BaseAGhostAction + id: ActionXenoborgCameraMonitor + name: Xenoborgs Camera Monitor + description: View the Xenoborgs Camera Monitor + components: + - type: Action + icon: { sprite: Interface/Actions/actions_borg.rsi, state: xenoborg-eye-module } + iconOn: Interface/Actions/actions_borg.rsi/xenoborg-eye-module.png + keywords: [ "Mothership Core", "console", "interface" ] + priority: -6 + - type: InstantAction + event: !type:ToggleIntrinsicUIEvent { key: enum.SurveillanceCameraMonitorUiKey.Key } diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index f645539035..eec282acda 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -1131,6 +1131,20 @@ Cable: 2 Glass: 1 +- type: entity + parent: BaseMachineCircuitboard + id: SurveillanceCameraWirelessRouterXenoborgCircuitboard + name: xenoborg camera wireless router + description: A machine printed circuit board for a xenoborg camera wireless router. + components: + - type: Sprite + state: generic + - type: MachineBoard + prototype: SurveillanceCameraWirelessRouterXenoborg + stackRequirements: + Cable: 2 + Glass: 1 + - type: entity id: SurveillanceWirelessCameraMovableCircuitboard parent: BaseMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index 82a149bf27..459030d8a9 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -260,6 +260,17 @@ state: cpu_service - type: ComputerBoard prototype: ComputerSurveillanceWirelessCameraMonitor + +- type: entity + parent: BaseComputerCircuitboard + id: XenoborgCameraMonitorCircuitboard + name: xenoborg camera monitor board + description: A computer printed circuit board for a xenoborg camera monitor. + components: + - type: Sprite + state: cpu_science + - type: ComputerBoard + prototype: ComputerSurveillanceWirelessXenoborgCameraMonitor - type: entity parent: BaseComputerCircuitboard @@ -528,6 +539,17 @@ - type: ComputerBoard prototype: ComputerRoboticsControl +- type: entity + parent: BaseComputerCircuitboard + id: ComputerXenoborgsControlCircuitboard + name: xenoborg control console board + description: A computer printed circuit board for a xenoborg control console. + components: + - type: Sprite + state: cpu_science + - type: ComputerBoard + prototype: ComputerXenoborgsControl + - type: entity parent: BaseComputerCircuitboard id: StationAiUploadCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml index 6176b6b2ea..1e5cf63b74 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Electronics/door_access.yml @@ -318,3 +318,11 @@ components: - type: AccessReader access: [["Security"], ["Command"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsXenoborg + suffix: Xenoborg, Locked + components: + - type: AccessReader + access: [["Xenoborg"]] diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml index fcd25b80bf..6670114bdf 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml @@ -1768,6 +1768,20 @@ - type: Stack stackType: FloorTileXenoMaint +- type: entity + id: FloorTileItemXenoborg + parent: FloorTileItemBase + name: xenoborg floor + components: + - type: Sprite + state: xenoborg-floor + - type: FloorTile + outputs: + - Plating + - FloorXenoborg + - type: Stack + stackType: FloorTileXenoborg + - type: entity parent: FloorTileItemDark id: FloorTileItemDarkSquiggly diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index 47bc6c96d0..879018d038 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -1133,6 +1133,17 @@ containers: board: [ DoorElectronicsNukeop ] +- type: entity + parent: AirlockXenoborg + id: AirlockXenoborgLocked + suffix: Xenoborg, Locked + components: + - type: StationAiWhitelist + enabled: false + - type: ContainerFill + containers: + board: [ DoorElectronicsXenoborg ] + # Shuttle airlocks - type: entity parent: AirlockShuttle @@ -1161,6 +1172,17 @@ containers: board: [ DoorElectronicsNukeop ] +- type: entity + parent: AirlockShuttleXenoborg + id: AirlockGlassShuttleXenoborgLocked + suffix: External, Docking, Xenoborg, Locked + components: + - type: StationAiWhitelist + enabled: false + - type: ContainerFill + containers: + board: [ DoorElectronicsXenoborg ] + - type: entity parent: AirlockGlassShuttle id: AirlockExternalGlassShuttleLocked diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml index 67e46649ef..76d98f96d2 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/airlocks.yml @@ -160,6 +160,16 @@ - type: Paintable group: null +- type: entity + parent: Airlock + id: AirlockXenoborg + name: xenoborg airlock + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Standard/xenoborg.rsi + - type: Paintable + group: null + - type: entity parent: Airlock id: AirlockHatchMaintenance diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index cad40324c8..5f80b94250 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -117,3 +117,13 @@ components: - type: Sprite sprite: Structures/Doors/Airlocks/Standard/shuttle_syndicate.rsi + +- type: entity + parent: AirlockShuttle + id: AirlockShuttleXenoborg + suffix: Docking + name: external airlock + description: Necessary for connecting two space craft together. + components: + - type: Sprite + sprite: Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 6635e5698f..f6538ba64e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -665,7 +665,7 @@ - type: CommunicationsConsole title: comms-console-announcement-title-station - type: DeviceNetwork - deviceNetId: Wireless + deviceNetId: Wireless transmitFrequencyId: ShuttleTimer - type: ActivatableUI key: enum.CommunicationsConsoleUiKey.Key @@ -1374,6 +1374,21 @@ enum.WiresUiKey.Key: type: WiresBoundUserInterface +- type: entity + parent: ComputerSurveillanceWirelessCameraMonitor + id: ComputerSurveillanceWirelessXenoborgCameraMonitor + name: xenoborg camera monitor + description: A wireless xenoborg camera monitor. You're watching them. Maybe. + components: + - type: Computer + board: XenoborgCameraMonitorCircuitboard + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Mothership + transmitFrequencyId: Mothership + - type: WirelessNetworkConnection + range: 2000 + - type: entity id: ComputerPalletConsole parent: BaseComputerAiAccess @@ -1541,6 +1556,39 @@ - type: Lock unlockOnClick: false +- type: entity + parent: ComputerRoboticsControl + id: ComputerXenoborgsControl + name: xenoborgs control console + description: Used to remotely monitor all xenoborgs. + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: xenorobot + - map: ["computerLayerKeys"] + state: rd_key + - map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + state: generic_panel_open + - type: RoboticsConsole + allowBorgControl: false + radioChannel: Xenoborg + - type: ActiveRadio + channels: + - Xenoborg + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Mothership + transmitFrequencyId: Xenoborg + - type: Computer + board: ComputerXenoborgsControlCircuitboard + - type: AccessReader # only used for dangerous things + access: [["Xenoborg"]] + - type: entity id: StationAiUploadComputer parent: BaseComputer diff --git a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml index 977adfd79c..a14ae6cb7c 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/surveillance_camera_routers.yml @@ -195,3 +195,19 @@ components: - type: SurveillanceCameraRouter subnetFrequency: SurveillanceCameraEntertainment + +- type: entity + parent: SurveillanceCameraWirelessRouterBase + id: SurveillanceCameraWirelessRouterXenoborg + name: xenoborg camera wireless router + components: + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: Mothership + transmitFrequencyId: Mothership + - type: WirelessNetworkConnection + range: 2000 # longer range to get xenoborgs even when the mothership is far away + - type: SurveillanceCameraRouter + subnetFrequency: Xenoborg + - type: Machine + board: SurveillanceCameraWirelessRouterXenoborgCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml index 75f61e7534..0addb34704 100644 --- a/Resources/Prototypes/Entities/Structures/Power/apc.yml +++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml @@ -235,3 +235,14 @@ - type: Battery maxCharge: 200000 startingCharge: 200000 + +- type: entity + parent: BaseAPC + id: APCXenoborg + suffix: Basic, 50kJ, Xenoborg + components: + - type: Battery + maxCharge: 50000 + startingCharge: 50000 + - type: AccessReader + access: [["Xenoborg"]] diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index f3c2eaafe4..0063b0ad5a 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -1192,6 +1192,33 @@ graph: Girder node: reinforcedWallChitin +- type: entity + parent: WallPlastitanium + id: WallXenoborg + name: xenoborg wall + components: + - type: Sprite + sprite: Structures/Walls/xenoborg.rsi + - type: Icon + sprite: Structures/Walls/xenoborg.rsi + - type: IconSmooth + key: walls + base: xenoborg + +- type: entity + parent: WallPlastitaniumDiagonal + id: WallXenoborgDiagonal + name: xenoborg wall + suffix: diagonal + components: + - type: Sprite + drawdepth: Walls + sprite: Structures/Walls/xenoborg_diagonal.rsi + state: state0 + - type: Icon + sprite: Structures/Walls/xenoborg_diagonal.rsi + state: state0 + - type: entity parent: BaseWall id: WallUranium @@ -1696,6 +1723,6 @@ - type: IconSmooth key: cards base: card - - type: Occluder + - type: Occluder - type: BlockWeather - - type: SunShadowCast \ No newline at end of file + - type: SunShadowCast diff --git a/Resources/Prototypes/Entities/Structures/Windows/xenoborg.yml b/Resources/Prototypes/Entities/Structures/Windows/xenoborg.yml new file mode 100644 index 0000000000..9704ffee91 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Windows/xenoborg.yml @@ -0,0 +1,14 @@ +- type: entity + id: XenoborgWindow + parent: PlastitaniumWindow + name: xenoborg window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/xenoborg.rsi + - type: Icon + sprite: Structures/Windows/xenoborg.rsi + state: full + - type: IconSmooth + key: windows + base: xenoborg diff --git a/Resources/Prototypes/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Stacks/floor_tile_stacks.yml index dab0faded2..6e1ccd45bc 100644 --- a/Resources/Prototypes/Stacks/floor_tile_stacks.yml +++ b/Resources/Prototypes/Stacks/floor_tile_stacks.yml @@ -665,6 +665,12 @@ spawn: FloorTileItemXenoSteelCorner maxCount: 30 +- type: stack + id: FloorTileXenoborg + name: stack-xenoborg + spawn: FloorTileItemXenoborg + maxCount: 30 + - type: stack id: FloorTileDarkSquiggly name: stack-dark-squiggly diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 6e3a588ab4..7c1f39aa54 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -2063,6 +2063,18 @@ itemDrop: FloorTileItemWoodLarge heatCapacity: 10000 +- type: tile + id: FloorXenoborg + name: tiles-xenoborg-floor + sprite: /Textures/Tiles/exoborg.png + baseTurf: Plating + isSubfloor: false + deconstructTools: [ Prying ] + footstepSounds: + collection: FootstepHull + itemDrop: FloorTileItemXenoborg + heatCapacity: 10000 + - type: tile id: FloorXeno name: tiles-xeno-floor diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json index 749093b344..2b01db5ab5 100644 --- a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json +++ b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json @@ -579,6 +579,9 @@ { "name": "xeno-techmaint" }, + { + "name": "xenoborg-floor" + }, { "name": "dark-squiggly" }, diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/xenoborg-floor.png b/Resources/Textures/Objects/Tiles/tile.rsi/xenoborg-floor.png new file mode 100644 index 0000000000000000000000000000000000000000..65ef33aab357868807bdb14033194d302178390c GIT binary patch literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|j01c^T!FNZ zkc6_Ly0M|Do3ndJP)I~rL{>&teSJL_m#ZLOrVw|(BJWLC-Ct*qpMGmo8aQP87S%Q>Eak-(VLtg!K%?9D4K9;vq3Wh_ncz^2hN;fX*p9M70f6s zaVYbRnt|cr%r$BTj=l%hF{tnvGVW$-+ULNoY$C(4tUZyB;Uf!E*|LD*TR2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/assembly.png new file mode 100644 index 0000000000000000000000000000000000000000..9629d9f2a99fd0b2fbefd7b08257303dc527a7d7 GIT binary patch literal 352 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|_Qf2KS2dyX-# zsXOiPE!ugKE@RI6EsW_7ft!7%$n04aDq5kYw84an!}q|MH%bBhJU3n{DaSZH;l1;J zdh<_B7u{(;g&0;o{l>PN@lUXn8uPt`olk`t8nQ35F+7}q>mS>j1IjPy* ol_9%-zDZSKMW)@M5BpwlPxKIyKCxh~9MG2xp00i_>zopr0O19PB>(^b literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/bolted_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..844bd201f1004c8edc847d6c63f14162e048f7c3 GIT binary patch literal 4972 zcmeHKc~}!?6JHPk5fqfe52%Kq)`Lwp2f0j81SC-+DWKfSX0w5nT;w2tP!GIXX)Ac) z2`G319%!keSPN1W#RIj1rCJo!s(^x}MFQU@pyKoOAD`#ze{P=L?9My$o0;FtJIQ_} znjdIq<7xu{fSrKvAA)}qjHk6Fe$}L?p7`}&SS!=QKPe4C!9Od z^vvHb;)pX0dL`(&XX!zg)l2)>wbc!S0CpPjzA0?q#PlPbPKk_0S!v?&#YSl)2LRYT5H!u();G zT@l3%GxL`}_1fk(j<8@nlvBnxW7bt9_KLNK zj#H~gsAbZ)*~cnve+?V4VRM$ijyKNnJhygm<|E^S>1 z#&9drk~H0ad~wQ#AuK71dL5N$(PK-n>Kir1pRTy6uD><6thMC(C%Ha6{fnaL?nO&& z$5W3k%c9EuI^a237*w=ve;rlcQ%rN-*O+tS)y)N4z{R=?8&B@ILw@R3eB-KXUXVOs z>2b@04Z~LcnY?EQ&Aw*p*m31Tv&nR2-KhOLQ)%Vw8PkvjQ>yq)JM9{?R-EU4rMrRe`jT# zYEct_n8DJ=SZ zjKkjYNr~>Y&ve(Xd4#^X{~c(ceO?@bL}3}tWoujS?u{z&aTf1Ew>V$QPsLOh0ty4a zIKm^Z;;buZ))J?$MIN_oN;tVOJ;Q~rIgT!Y=TAO(@U!^#`3sTZ zR^h((y+D#i6Qa!?)4$a*syapW>v#I@@%naP+1V>$Wr(}TyOuwxdG_RrX%>qeW;1&z ztJYNqWz2Wn*x|moyW{0+Qcc;JYX)}O=AD;-yjk2@Z58o1!tUQrXzSio!wWY#Hfx$G znIwMiMO{M+vu^lW1D7T%4DGCj#Rb=E)NW;a3dRIG1UfC)o4%|DUES#%e=-KWy7ZOH z8g=7k>Mz(R&lLe)zN>)$EZ8JkvwB>K>(t31Cnj`v1iGK&leWc7g4AC5=1w^et@<(g@~MM=Q=^*&D>dy3PEX?eb+4?j=98u;va6kE&gKa2PGG@Rz8lF6$@vEJ>x& z+s|0Vv;mpHrzQMv9rK@Fd%U8X*0awGQjP2?K6Tc+JE;dKJb3t#ol0e$hF25#P*7FL;@z^5yQQOkWl4^CSd$DH5!^WKMYArMA#DIOdlI=3I_*}qgt4dB9|#N zoD?3>gv-J2jbbv9U{cX0@`w>a5y4NXMhSEhodkgaDOfU<=wn0RswGlRi2s~H2>gjh zOwejo95Pw2*OT-#l2RQ{rm)#;GDIa)sUWTaYEl(iI0aN_JdF?o82+dRQDZ7Crc@A& zn6Ox>)AEQ!e4X$%KDkOLdeL7tkc=v{oNLEkth*N!ZF=4 zSah+J%A|lyI$jPs1@#8mkhd6Qv&2*hn?{2e63P%LfkLB&6$omC!of)xj)TAwIs>M% zKstlL0O?dZ6@(>-6l6g(s+bO=EDD=G1R_|C;av&KhDK$ClHgEGgvFphcnmO%Kp>sP zpn+nRm=3a0Dus=Ty~R|P!~|um1IJe+;1Q`L=)FWFgSAqnTFxT|VG3Q!`-Lz}j)rPs zBWV-{jSVpwOeVyjQy8ov)(cU!25&ecCIuou zyxDlYVFaY%1!vK{8FZAvFs1PhU89t0^{^WCjmI;^v%wq4lnr5uiQ}msYU>kFBY_Z= z0#c|T#15l)b07wX0)Y^n13^UcV8UeMu6~;_m;67Ra7_wB#sF?NAj8KCKCQ^_#?>Ha zMjHRcW3U$gq6ZxMlar6)_Y+;8==vxIK1%shcYUJkqZs%o%AxPZtTFaD!B~*V+7BAo^$PtPqQfYr^8J z+e3rTRP1EgI~b4bbI+pIKchQ+Z?`;Gqf@+iW4^rGzieMq>Fec`IVwHxaa#PiQhW2< qmw%XP<{oXowhKM=Q&Re4tNGEOQ;&z$=;OF^KoBtBzjSuo%Krk1BzZ&t literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed.png new file mode 100644 index 0000000000000000000000000000000000000000..06c3cf5c6c4b2fa0c2a23dd30954ff5f486666fc GIT binary patch literal 629 zcmV-*0*d{KP)Px%FG)l}R9J<@S8a;hFccgIH)~}>?B-95VOjPBrO^AIpip{(QWi{H3XVb&E6GCo z!#q`zCHrZi=|CWs^fY7XeK}dL%Nzb9QULh!`4j58xhrv1ZSeKm_g(;z%fsm|XR-GU1)?R0jaKyz$*? zHnqSd3z2izl1R1yA0Dy~`bWlA=)?8E=0z)sJ0v)-?1nOox zn4c8j-eU|*TOxmXe!{Qck}m-0-=dXrdZAOn-9}wFUj0zxUGs#0$&WwzylFb(2i`7t_H%stT$z}`iC5q6- zoD<-{azct#jw5mU01m7Z;B>KL;$qekq8bv4@5|u?rCL2cOJp5{fA;*H+q62z`QPz3A9qO?KNk!?N5Mh^$+j|pA}qviKoxG P00000NkvXXu0mjf)TR~C literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closed_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..7c80bc210c483696c4f2080e80390e9c71960329 GIT binary patch literal 5035 zcmeHKc~}$I79Rlx5fl^%1*$P1Dkb|y0zr^1QG$`hAWLyF8A2c%$p8US9)kN;q!pxC z5fut8TFcU>7N`ZaB34n+2e?%Vlt)2Z@Zrvz2`Koz{^R$({%7W!WbQfV{?0kSd+y2H z?V^w%OLGTv001lneE(4N7mwX$Gth5cM#cyLm{@0oMGi9`1mQU-?_a5iL#I&@8RJGXJ%cA>%3l_)8?|ICu2mrH>>7)*bfnm z8zVSh@1Z@fYLE0rH#C}^w!K)F5KUG4KDKkoOu0%diM`HUk@7snd_!zcW^3~a&%xFK z`6av5$Ms&aoYAu7dnx3FoKLEsFa!T16gY70pDwgD7K~InaVqA&dI|qE|5K~ zxL|$g-il)8t^v`>i1nM~(`mCjlpUTCE*C22N16}Y2L(BVZ_oZ{$@Qawz60*2mW74s zi&)`>re;Hdxb7A|R^#{craRh)B!Bba52S>iaw1Y$b%9^b+S)6yZ!rPab6$8HJJeux z@;jrpUslDPCG`#}3Qt}fbZYX+eUMuD#q5noZzbt$t!@nV)CagZb&;)O`%mQigk0T} zz2nc$9OW!$%h!eGSGY(qrbG)mvzZ%s?;-v}ek%7BOYU4|?Uk@L#aP6vC+ zn{X&DdFB2_O?TD`k`h_wGJ3GfGf|hd<-Fkc&dpsFTi1;q&Ps>W&m&)~DQg^fB7bT< zGI@>7vx!|XdXrF4_x1fgQbO;Z6Ak@QtYcPOqwH73tQifLPutu>Mp8W=UH-UOF(OLN z4>exhxO-csf_Gc|_+QJ6zq|SJcInM_@dDXq>suC_Wj*`3?OsNCf$qE4eAjZVmXL_A zbqf&&?dmAyKQz-+wK_Yswb(7#@RM8mz>2ZWJL_cE`W*^SRef9~uIW{MWR>Ob5uJ0w z#gySEYg>Pk<&Rg|6LlrJ()8Nl$Ha{`xw)yq z^DkPijx;GAw97HczT=j%P-Hy1$a;<#XxNo8?Oa@M(t#oKyM@e`Gp(X*Uy^=FHUofZ zxpF^0k-*RIb#p*lLh*(?9>2-Q>0Dg&F*jRZPkzczqJ!?+c6cP(?hq}!VP3^8jCnR) z=&;WQ7j(Av{{0J*_Os{KicQ77Rxf~Loh}r~n>$uu6Vn>E#%IMBfkQrCmyjmH zUHlh!YmlFxH-l?FwRxa>K+PfXU;LEP(Zl|E`qr0Tbj8uI;bu^B`09DBV|D4_xvQ*$ zY$J|jW}SyO58KIVW8ll{|HN(4cDB%N$!9xf2e|v@0v|+tD%!HyzRF>#YiP}a(MLf} zjeOF9m_-z=dx??lzHZa8oO^eQo?e{EUTR~?jZ-{_Ow5Lib{8qL7IdX{o0xeSi=!^Z zRT$F`9laG5HDdN#*9_9}=%VjUV}^j7Ri~x=JvJr%SNgI?>CejCDVkX$U!SUHjwU|? zj#hm2tEEO`w##nG`a9isVh8JAt}pAjHz%}AThvhCl#DiU2RYiTBZa|SNUbD+Qndso z>6IF^nFD~=GQ9?bl3)Zcfn{hL0Y*6k*igB3=@>7QxG13fa>wD<5Oyc!Z+|L-2@9LA7nkKAyY{dvQkN& zIzxv9q@o}b0sZ9+T{!xmM-GK`>J%*m2c*I(#Ca-2kU%JUgMg(ZlPfibq)_tSawdh| z*lAL<3WJRlBEt$;iGu3T_^5B$Bl7r3vfhdf(-_j38VKs{4gOo!uX8sTqgFy8*Ix~# zU`_@8JOUOkSE`2OQm)~VLWdwWhr%FA;dmyI0nsExiGaR3?22lt86J zKotaIP$)P_j^aoe9vlXRNhi|T6qv}Mai~N|Je5YIFg)liHjPf@(Br2-tkTNSsst5N zqr#x1C=>$?hr{pyi6EN_5*ZRH`b1@cL^hQTg7K7iND5I6P}n+feMJHufkvWCN<<0} ziC1ftJVLNsm7VwBRsIDuqPzFleL@ zHxNYx(ZZ1{K^aWesAL8Owk%vU8I)KMt5X!&AV+iI`e|VhQES81Y6Xvg#frxu4dspZ z8ebH?T!&huV--J9^I>rE_-K3!DC7ne9&adHE(nb~(SfP3)Zhr6H?D#bK$Q$e_xD6W zy_U=WVzHcq9$f!oD&zQ#2d2 zfDGB-ml!x+`gSa72{1+=g+?V}CBO-%GPx8Em(E1XflHwf$P)>Zv0eQ-V=wamaN=b! zn9>H&dE+v)y`bHS{H9$^aE8(NH-0A8;&1eTLce$NPW-;7>pflX#K1clzpt+MbiES; z?_~VGy8dr;nNJ>gU={inl!hK>ENVPb(4)`{$;u#qU<|uT>dW&{$xID@tquTY&Bg9% z*Y0e5feK9#fiS?d$71HZna*+RBGB_LfWG1ShDSC*>+Gi=S!c6r(`t%&;MpaUgKZ{b zt6X1Y-8=VaYy++-D<*N>pO|3r%^17VSiJN+zC>r#a%xY+_J8bgjUgI0Wx9FZzq549 m9P#n)2%~(Ql{XV9wF9gcIOc4p7OPN)fFK~m|M>ECoBj*1VuGRo literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing.png new file mode 100644 index 0000000000000000000000000000000000000000..8c45050ba39429a90af59dca66d34e7348da0cd8 GIT binary patch literal 1771 zcmV;P)Px*rAb6VRCt{2oZ)WUHWY=A4NJ1)z;d##$+BfZo?sZTC)tl-4?SSm6LeiSBN>V~ zGOXB^0%Skjt5Gy1l9EWumOdb8?1(xPFRv|%=XP*;dHseSXN&;gryqa7V)1BI_~zyc zzy1CPx~@M0kcmg@7c1i7`C0CQyR1K=H>33n!t*n1wi_g`Z;0a+F2WF#@dUxx!)}{u ziBOxx<3nL5Sh}h|V&4>r7oETaUDVG7KqUV3^f0I+pz|f)#Kn7Ffb+94)-PM6=}xO{ zQ-kk$fwK0HebMyb1JF806Z&bo!!nAr2VbPGisuFJya3bb4AbchzQ2F1LM{WE9(>~I z>0zLf2_k))8OZCawxwXF=`PE_BvI4MWx#wsYkcqtm2;ZV*EtujZzBV98SvrbCnJMT z$Yzx(ebw14(l?!fxePEl_$nHvgWtq4P3sQJ{&;HGm|(iPoeBWZz94ii04@;)p$~v% z_#pHFa7-Tn$MgYkOdkLS7rTRf061(1p;ZBB%l@>@ezYn8K=*=>3xEw#6%CX9&^fn> ze(>iUi4HKeT)(`$e!IWB#lN2;rDL1!hmJnmrj90i4I+KvN06z=-&|ee`FW+)#-%>t zc>ylMPpS->y`Qkw1>8kz+*c(L`i^sxF@Wk;d69<6Fc!FgVDYwrwzj$xD ztgq~S=`lm=9z}GGzCOUQeqSHpSU>v+B7b~%eg=QEUwg&z3h&>Ah-3ZbJGG^A#_=lq z5nX7JKD7k^e>BLBDf$t$jpJ3;R#%_BemckdcVYHJuT{p5`Von4L(8}bLo6fp2UygG zXwqZ9*={QJqpID!s4!!)LAr$U6MYZ;geK%EK^ z0Py|%^K#uFbTI=cflC-foqjEte z`cY*do9Ks3*Qzs42bY<^_oJ>RtLw}eSB19pqX}mmuyVyGgU~_9g<|1ZSJJ$PHUav)EU?I8K{agXB<%9o5>nvtIk07UtQ`9evvayhPE?K z#;MLgS=(Uj;rV%0>2WkI?AXEQQ3}8*&%iQWqDsG)QH1$i-bOhCPIU&B^_hnp4>IWb zR3=SjceIRSnSml*>N9|Ypvi)$yJuV)fG*5HmixQg>{_SOS)m__wW5$tl}QSe1VAuY%ah$60_xU0cH;to z_7^PKxHEfrhxPmV0LS`$eSl-EZpgHeUw`@8=>x~UKEN@3eSl-6^#M)z^Vzn%KVGKq zj|P?N6WF$F-)#k2g-YK6?ES6IB7~f0RiVHXE$CO$(U1P-P08UnTfJ{R}jLGyr8KIzV{_6qV>SfvpTQO{I?@ zwnRr%uEWEZ=;+YK3~UnZFX2-wl5>qT0H|)?F-51!RIA!zOwxFn zs?0+qn}Mb>u&yn}6pfUrvXm9+$!4Ib3~cM*1Kc{mtj9Ip6l`)GQd>6(n7gRQ8$v75k zplgHy=#n+iH3tE3IRka9fou?DkF48FZXIxccdK-}$nHex?n;#*x>qlH&d+Cnh-1iz zTmY)fz@lTy-Y-IRp`@yR4CDgfdIsv;tMj{Z$1vMP*9Wx1oZDr8zH2&PAK*Fz{sU$9A`G`Qv{nEB N002ovPDHLkV1hkkX_5c{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/closing_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..51ae8ad362371005930db55fd3917cc175d3bc7d GIT binary patch literal 6610 zcmeHMXH-*J*A5~eT@*!%8iF7qA)OK_(i1Qkx*~`nxd{%pT9Z*3LX^OlzSZ96jpIPgB|9P`++xt1s+50*Bo^{U3QL=-rtdxor z1OkyI60DrS`##~hLL9vIr}GUV5Xq)+mt9;Z3LhH84x}^v0Vp>t2!H~iOgaP-`s_{m zp5%c>S?fj4n!Oe`Pj1)SoU70qlQto0=Q>_d5o{Il+g$~XI6}N&`=$*ud$qHo7TzC@ zdaLu)<7`1!xL=a{n=2!AF%8{*#yyI!DkJy4i99-CmMx#FggztnadLkDg!JgZfqCrP zXR;>-B`mM@Dh;x?@N@4F@Yp(;PwTdA$5cHKk~w|!$8vc>O~nVZk~ zoo|nSxTj<=T|GS%;aX4?H*zX#CsFg#qlUdRii-lWxDvW&7v7*4){=3@?Y`}f6^;Dh z`2#%T>hb*x)5W=$Cc{qMG~0NSUOGGjAF@B$GxE9Ty?WEk?l6nR`jpa|#L1QsV#9&3 zDb4xM*Z4h=T@Q6^Scj@>ls+iq%wCu#xI|qR^Yn9^TcI@-#_zRpMc7g9HLTuz&je`W zIg_>>=eCDUZ-sl7%^fOJ8@$n&mwUP3+K8)hRA=8P9bWU=XD}pb`u5XLqxRt&dIqFg z+7mWU+$lGrJbdu7s_!K~D(HNbh23LQYMi%G#D(B`%*dVq4UN&8u{t}W&3e7PbGj|W z8wy{;+azBf$VgBA9J_po$bD%;Ssbeqd}KwheCJ!IJfEj^$;MrfS}|v*2kh<{rlT|y%FZJPQZCGu>4g%Ay% z+CsTn(oWB%I+~X1?PiT$>g;|JmL~h#>#Mw;@rW$0c9C;pR>;(oQHH18o7A9Jr+X^) zUSBxTQdZMG|KOv+rPSWt4|W!RvRQbj!f-X)vFZ2K@3N9EsO^UhjBUxws~pkwIERZE zHfCI8R9m1O;z#^9x2#hx+YDSA)!?h&LXTy9bPkjDh`PV$vo}V`n0G7Vn)mx@udb`@ zt>NhDF$?+qy4;Q3iO2oxo5s^3XA7loU0>{JT|AwCtvpK*Q$1ExcbFftt*UBI_kN_n zEA-qOlSFczdp8r42nYC~e*Pe=fzlkRr|H04j<&Mb;!?fiS^M9Kz4>8{~q z|Hqv1v*GdzwYNnikKnY`c~gMlYw0~7--)gz)(-~j++BPPq!f8Zr(%1CwvyQ_6#|lI zRo9&5ta>tr*>G)r#qom374NFL^z8)qFE)!?ZQFn8Onz$PQ%wet-Nd(uF(XYvCdA#$ z8#{B0NDyLZKw4P2{Jvuojf#0PBERWCWfH>8acy@wA0K_#ve{GDi?hpuZ7PNBnVuKq zoo%5r9ObT59FUx_USBiD>CNw82VdtM3i6cr0Q`#2`f{n)|t6%Z|(EKzPve47& z{j60DxObGhG31e5(Ylth^%ovoI~=gJ8{ce~GMdmvnEd`m3t|W{|%f~mRB|NTKW~`j)N-KwhE`HFv<|9~A zP5B3LDYB->GO4Sq3~JgQnZ$Ht#UIfd$0+z?s+*ok=Upy}whfQDI5jV-6ZP8Bt@uu) zL}v=n?V037+x)Dg(_i+9EU%iJ9ZzpyuFg=MCGhix6^}Iiu5?NeEl)m{x+88>Mq?q% zG2v7v`bY@<@}F&Eo9IAlaf67*%7~IWL_c#|{Gi6CEiPL1P6ur2+c2{Z$hlQTFH>I> zD$h*m{Oz@VhzH5}+w+bg#JIYjo}@5*uF9(P@%+`N=YVXaa=%-bf_8d_!pN2T{!I*%R3De!WT zm`4qlOAJuF9L3R6QPGyl=?BC?bVtTJX)*buZ&LCGMAkbV3_q|7$4}XAN4d23EW_h0 zYgS_XiKI`l{iE2t#uH6twbwgRJ$VTicB@p#PDKvSj*6iFy190vr&sPJ;EnCTO;vdZ zVt03A*f5S=aI;nG^bkX3gp8!`eQK&$I~t(rRrS)Iqq@+3w+DiGoLL# zVARH)(5P!S>bfi~5@DJc;;p%w{Q5L=SdHzdOw);X%ox96)A-6+V{e4SY<}hK9(Bd- zk@pXUSgMe5WI7kRpPfm$|K9ywbn{#k!24ZZ2iRQU$6hG)pP zPbl!Tv|x>eUf8IjbRQ|A8hy4-6#YQVgdFAkZurSb)+@cIl-aACF(_lzE2IJTbiNuP z!EO77SZdb(ebKbH$_kD;E=rw{I8~;mR+`+yT3yk1C@siS56?^y21ym^x=*ho#y>~4 z*QC-n`~H#E_I)`=arDJX@nnIQdYm|VE?1e?+Tw05LMV~TSeQ~YmO=4h=mCKxKR{GoQq_l>`ipDsuQjPeLD|S#NvnLu8r!#MQ_MKF?{W3=L z;QbvC9ff<#(-UPOCQ+|Hh@BjSjOPF8GpT+RoqK%9euwFC8l_p45Q9;+bHhe_W`x8& zJ|9H&xvWySYQDXGc-}`qMRtg|-ne((`^ZCKEKDJW1 z=}C6hD`No%sv>cPux1=Z_A;8N%<;S8cu89%6h4>hwxf+;wPsi_Xd$;uBIuS}?PB@P z+bvd{m%8)AeNZm-;i~%=??NCVhnSX@WTK_zw?!Sel*@`tG9lD&S8MRzQ>3%Td>et+ zNY2(h5^uPFO*~n>L#iB~?l~_;Qb|@+vaP%F;>A6m&bo%(?h@|iD?dSkIUFZ$(yGNY zMUOk7L4PIkXEyLBAW=0BT`H++WZVOSX1|5jb)Dtj3KjMjuXel6pQC-5j@Qt2@J*?n|3Q%)nsTG#v# zMA`Ke`EcC2a+NJwPM0^%ytP%kMbOLe)I_p%^Omhi9*|g!?R%a%*Cc7MMNtCp?f;Rw ze8u>(GheKW43eHIyHf@;@#4W}p&0># zECh zWAp;q3~swiNRzAEhPnt_m9qK)bF?;9@~EjL!%-9e}Dy&a=`dd|G;yZ z^dDmVBQ~LDDV?7K0lWLo{}1%H+?T*0ibTR&1yXs!PKj0~Fk!rSS|F84!!JGRW9ddz zeVjhr2y18r$D(nDa0);%grf}&aWp!Trmt^E{fUYgz~NE?sDO|PB-dktJTxi>jYj&Q z;RYxJ3LHx}#K0*ODjja9kD&r+8ihv3>HkErlg$LHlH&h!R6;5mNTqK`qXK||51e9% z1K?OJg$lChQ{Xf-fHMS1k#wrh5|wZq@aANq2@I`={9z&cQ@Hd%Hp>LIgBidJ{o!z7 zvH)i;MJO6dA7g|xFhHS@81QC*{Q+_V*c`Cngq$d(9@=opL!;ttKt>8!I7}9W0U&|` z7)uV}u;9UDKw&AuIt7`R>|ic25ML8U2*2uY85<-1k0!=TfS;xT zu-z9MIK6sb5`djP3_b@H$D{Uz5gx&D;`{|fx8x_-&^uN3%K z;9u4C|0b8zj|~qH0Iq`g;CAMGor(;&6%zNcx3z*S3V(SuXHr0mWDsFD2Lh2^B|Jsi zp8xg^LLITbEa zm1#CsUF)}y>U=_parFZunU;I2_tsd=i0C(V2n0SQD&E{Jzs}Ix?1kN=$ahEd+If-g iNytpE{48Q#q&B+whIUsWX(Ed)L=deVtST(_9sCc|UZ*br literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/deny_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/deny_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..dfe4d406edae31f1130011576be62680489d511b GIT binary patch literal 6524 zcmeHMc{o&U8y{LMrIa?fzDu^D>@jAJF_^{7V6r47TUk;Rkt~UNDTxqi zk;qmrl5CZVBE6Q7$ahA|Ti5sf^Iq5Y{nwdm=A3gczx%#_&;2~t^IQ{WYi%YbDklno zK*TJ}jfvphlm8W74gS776O4yIL}Ei6oVY|%FqFk+dei&?DE9yhfC4<4Hw40a_Wq1( zib9o`$x@XlGIG1QpwqhS4Fi#Nl$_D~a`5gT z&wO&@?!A5kF0brrc;jJL=R&53b?#5r=q1hEs$bH}TAwY0xfqpK^QCX#ZQtZR`3_HW~FLCiPgY-s|l4;SCR( z^N^40u5i+_sO@99r%elcL+!KeZf>nyuVAALf9`VZ;bkww?2A*_OCdy2wKiUNW|RF6 zccs+pL>r~|!}yN+`zgVV4`VWwHq|IuVMEWcryR#Mvi^8^t-kT~_V;&t7T#Khqt z3$F}T6N?YLpdergeNMM5r=+afi>th?h1ynlQ*w7pDB=)VlvHBTR=BCyN7eF97uPP| zEu=ra4p366o_|YDnkj4}2|8!#%<;TB*FhHp+0lK_6VS^)c0HXOXJYxQaR**b{o60)kiV+uOJN#qr5x9)uF{P59@VikE~nsJ+0@zto2zGK zkL9=Q|8qqBkrY}LL%aFxv-Z7kpJ%D=1xCBJ(y?@A=uVkxmQr=ei1_@RsY>vvAvMnz z7aOyr9UpHV-UBg|FY4AQb`xX8iu8xJnTK}4FT&z)T25j2Wo>-3BdDxR~J6{U$H z{uNbjKEna2fILCSwdn0w5m`~b+^)~J`rOQx1w>RM-otIN$v)ZZ-rYi(aowg~r)%M_ zwQL^RyLxP#DWL}%hZfs+pB&PC*EZ`{*g_Uld|2RT-((S<=KBd^82)b4naz1``n4O) zS4eT{Pb;6=MIVwmJ2vqoeFJ;S?oP*BC`(YUsrUhKHny)-{=KdXYqx#A+A4vM1J82j z+j3#TU6s2sb_ZV(!kMWNyuiJwwWzE93*eS5QX5Bw3T;wb6C-ZLAG0%l#tHLn$P(GnC){WECeWX{g=iDV5KZ7# zh)g`Qma@hXzl5b0l_b`mV=jsBlM_s8>-g0FPIldu3gDm=V{6Ddx#n@fH4oNOEt77X z@7^^oHXh*?TN>RRlYh}|!S?!85I(tBG^{02^ypAiK@(=z1vQ?AaR*&ca>6(wIBoqg zkt_LC3Koy=!ySfR&k5v}#Sp1dr!>;_Z=Aep=r`T46c?gI@~Tfgpnm(>?LI465~55> z_Q3ku`6D|H#9zQ(5=gGjx#oP%B`3kcCGAD$!`yx2PhKXt_sP^dY_1H2+3a0d$BkLq z5Vrt~EOkFRbeQUZ1cGT;Awh@pc1U$JB3q2-8!lKIi8$P@U= zk(BNVRKtcIl%?J9=O##D!tF|ZAy%w<%>I@Q8$%mJFF~(wim-)@_SECuduMFzV4l8B z`X*`59{-73$x=TwDcW}Ed|mV!j0b$H_?jJ+IxS}uPp-~;E2i!0+l|mpj?CB8U%6Vy zAZ2Zc_MIrtrY|ojj(6drT#N=x` zAr+CyL)#N7A$v_swkWG1>KC1ETL9Q2`2r1(Bclbz-rtK82sG%K(@M9y&F-@Dz4Oqe z{@v>1Cs=zVZC!&hVeL|ciq2+n@}wt9>q4e``{Z-!_4cJUPRBO7T<#xDS22DwW)43u zXJ9CRj?X;Yd{v^4&qBX(44sN{m zwcX$Z>>$#xS}!3yY%cFX-P*+}G5EAhuJ+rJ(_c0nRVcf+rSVA*G5U-Kyu(Y-im|t% z#sN4&^$vLK*JxBAcD+l^Q}XVU7==^_OgtqeX27lln*_PMqQAFbTCJE3wAJa=rP>#0 zl+3;m#_I#+EpahH#VAyg_5xUxrArSFqk-jm^#+7e!kvd%l`2XwToX2lXQhFtaLo8Bk`JpDhf6A?_(Ml+s#aOK1vUoQwkO& z%5LLj6+<8bQ8XhXTMHwj?|U+ECzct0LdX1`zWjX;*9)pr2D{7y8*Q`HW8?9@Qt`Ii zIz@{KXWZsjS;?hH%9!0LfByV|SJ$2U&W=Kk2I32l01k)9J+X1=w4_TtkJXnHJi8_M z10!mCuK3b$$4%9h9vcjC^XRD9`aR*+k|+O?_n7@_;v=G=tfqZYDLE{(~6@-azX%s{RV3(GdSN^ z0Qo@jNGv28fkM*h$e%qpT$3OWz9yO3efWr)AlL3<;fWcMx8N$rM%Jv5W zza%P+&RQ-CB=47C6!H%{Rv_Dd*@i+!0{#FU1m%GFp?|UG(!BpB>zCa4n&onSP6Q11 z1OFH6@3k)*gH~2n1Y;&SkRQ~-SO><>mq1~XX%xcpBMyzz^!C#9hVKOLa4cHO8&1Li zC^#PF4PdZ1GKE6g`4f}{gTo~;$N(P-1V_+794}3r7N9{U!vT~Q9)$45!SP-I4z8i; ztwq9mqsZP~n4chQ*fg*!N&Y`)#fPGRP-F@Yjr9Vw;Aj$<1D5O!z_q;b8gNalHx7?M z;WW`Wtz{_wI1mhMEp%WQ1nO^ztv`wD&1BPcV0&ncK;GX92O1r)=aTrOp?7L%p>VjJ zSQJ(Zt)cOg_dbBl0UM5wiAEtX_+@trnP3VclEB8H(MePQ$zo8K75rf#fW?5slK6cJ zA}`CqS_npLfW&389hgji9T-1XC?9gUy`kD)2gRJm0WA*jJN{eG+XDe#-@Z-(f7-GN z3SDkn0*U-J2!|8|P?iIMeqU8&9}xzP#F8{HJHeTU#%f{USWP?z zPQp_#a2!U{3qz)$HN7aCZ*DM&4H!_tO2KNt23oELs=Umx%CFYJJ^-IU6b21P zW8f$)2ec*ugCby2a1@q+Lcx&V3P$p0_4kUkk^jMo_OiiG%K+&2RR%6E;A(~Zv0Q!Q zj8EhL@%lCv|HlX*^zR`5h~M9I{if?5G4PL!e|Oh!y8aOZ|H$}vcm2=k68-zY12Di{ zP%wC$v7C7(4jzS8ds&(pLzeiT^R*XGf)Wvyxibd>S+kM<75KCN-~uQV;#ydl2)$k_ zA|a`a8+e`xis~$k4IIEf8+uE{4(rRVdQQD-TOsYR9g`&S9MWQNcVz|l_-$nuA6nGm zs6&H}?h_sZibDOhD?!h%*P%Q-eDfId26ao)b_<=g9h`1UzeShh;@Z0@C$0_TsGTE1UiuBp61$0XKKtH*246m&&&MYIcjM}c0>q&thibI>`1^(5s{%P|nUUvJoTFB0}E177{9Z$Z2g^9IsiJ|A=e*=Po Bd?x?^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/emergency_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/emergency_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..31f7a5f9f06cb09551eadf4c25a7a0ac4b86c2fc GIT binary patch literal 5301 zcmeHLX;>5I77ieSC>B)2veXzCK$v8bOcIh3*_CJm$SP=+Niu;zHj)7Xiddk%g22fc zF=5@67Ch$cZTY9uq(jg5;pL=6sr$D;XTa6XnYR;@E3~S0zq?Xatg6f)jzqOR>*dtt zf467w1hDxQZS-lr;jg&{>K+C?axoL-2Rt`QVbV8Cqn8De@^U zh-y!o{mIqZ1?FZ~lkPq&xkWTEj3Hs9+o+w#5=YDr}o6^nG3~=ntI5n@LbY2p}Us;`Jl4OKz}g(X*VJLr_l{= zfn%hFjdOy*jT^UZ&lGoS8xg(^SmLU!U9h&u?>;D8?t-_)(GFhQSCxc2`7}A}h;B{e zxu*epz0$6oEKM6q-noLB>21Rc>2Jo_hBl0y-g5ej!>K}lAUwFO(!{1J%%-8qGxe8x z1*MWFZ0ia>aJZ!1r>uRjl39ZnePha~80t1d=^oPO)v!xMUd>1s?T_ZNn?rSmc1N@R zl}-`2_7-#VDOrxfL-YqD9g6|G;|FrezZJLLEz!*m_DHobTWJ@r`p&A-{6WsRVL0mB zzrQs<%q#ppZTs$mJWrIW19~2E>Y{7gg>_#|U(bBD>ia{M*KV0Kfj*2goZKb)_uNaJ zKZs5t73FqK_GQ~8^j&gXnM1E;{2YIG)UvWF!L@%y^rH)wt*)oW!5_l=J4de%ZOD5G zJ(f<`-VeM{QE*g$Fv8-@h{dhaLInkA+p1{2g|m$JLyUqi(?7n=$<15hE{1E;%axRAbRNV^7b`^ zzbKzJrumi@`3{_YEU#pr^E!KWZHCW{jD&>8$%&s217GY@^o`%FkAw*2T}S zHkL`|J|^D3u_bh^kJ9?!%Ge$|ahdLX#_l;?bF7#AT9(}MaKW0Qo#eU54^oQ9-hR)&H^q6wfV*`@No-Y66y+^e&B30S*LlcqM z+?07?1y4p|fra+^(1ecJZNB-n0$p2AI-IM2%iA({-^I!`zqoT#ecIYfDk=V11I8!s zcV`ZsKe0D{>|z3RGa@T_zD3|~eMZ-4V$|4gz+uinpuRRyL9k&lRN%daVYEZ^HxMfV2YqoEZ>ALfk zJw2CsZRZ<;0`&r&jb7j)QH2khwO}%5QE+{nyelK-&yQk;afJcA!);`(uxiPwelj^P z$V8{Y=*H(;-N@F|D+l)>c*!_J7*8X z_ZitXu71LNa*kuVV&|Rez9;4bwO6#S&pUMTjzi?`O;^7^)qJ5eB)q<*9`Fq}R&}ApzTh?y-I`u0OqdrH4^rK_X%ODdR$as|J^SqkPGWi{;x0IWFad zCCtU%U(D|KBWd#du(YhJ^;piLG_5>R`ZKb@tmx0;+9H3*uspF-`}xt&Z0mj}-Q0D^ ztGR>=?3gto(=olt<#y;0V|Eo+%yKtebD*e!}9*Bt%#s;~_+qM2>ZP z9L~W}C5QPD2#V(+p&}`pFkJH^0WT7;34t^&$d$VyVIq$>1>zg$>Bo5kK5X52<(bY2t!dhi$scvi6O>Ni84hfiOgg&Ng#zpp#Yc#pp2EGunLeWm#ZPB zFx(I&Um=pCBAFDg#)NsYD3nbgVDtD_`AOtl?rV6da+(E<50VO&lgLDnB$1G2dMHu% zXbfaJp}+M|`e8qcBp*a6i&F3r_h>|lE}sb@;J@~lM=8Xbas+%5B1R;bsS=Ayek>KRQrGZVqwU*o=I{i=42F=oZ(vfO0+D0O-q zH#R{XpCyp-MFN)Q6r}R`3?>Kx0z^myAU=f$@OTUcKxZIKhJXQ5$u#N=D2`N#!csn> zhQh#!A`C}BP{mDpS4z|kigh-iX?C-LXt~EH4|#W zS0A>oA>PtSI0@G*=`cxUO(UmeG8Urg3=TNLttQt%}nriUY z8Y*qx&Lt)cQS$^+$N-rFfJ{F!jRi7UR2l$6ED$7+{`nGl3>YNyg&<(h7YG0d!4UeCcW;+)10Z5@(*s)a{C7(V9@V_yc56g>3UDsJ2CK1#_!ejp00Od;GK-$ ztLy(pm%*E7Iz)>7(Tl;J*v_7`GR2CS=L>9559M&(_3mlUo=dmx&)@wB8;an#Is1imKWaHWXBTL+w)aQ*t^!~E_Mv_j zv6r=~G80HMKeE?&uE}qWq%HHCt~Ff7$l9UQge$6U5<@hbFbQklag_gnbYJZNqr(3y8NaBA0p4{`8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/meta.json new file mode 100644 index 0000000000..5e40ab7363 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/meta.json @@ -0,0 +1,146 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from CEV-Eris at commit https://github.com/discordia-space/CEV-Eris/commit/14517938186858388656a6aee14bf47af9e9649f - then modified by Samuka-C (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/open.png new file mode 100644 index 0000000000000000000000000000000000000000..a47d6aa446cd23407e99f8c90a4de220c74af5e1 GIT binary patch literal 428 zcmV;d0aN~oP)Px$W=TXrR9J=Wm)}Z+Kop06ij}jwtlLCrLPSpxLGS+rLG%O>ktoFOj`%MV?83&J zNz-U_Z#-9eX3qIOMla@QlsY927zO~`-QK|Sf=R)yYvcamu@c~L7A2Fwt<|Dt8a&CO z1lDSSG)s{eCE_^5sbztf1SjSZ-m{NCL3oW9_?;4h0Dx9_R|8cc2(-bsTVMMRpzkNw zn=h*20D5}}0;=IdBm{xYX006FCm{$tJ->_s|4l;g+c36--nDV6m<48mSzs2J1q6X9 zZpbp@#|exnL8((-UtJ2h)=w~o1f@>t+79;nuwOv61c#?tiXCIa1XM}L@a1wXtQ#G5 z$|Pj?v7sR^zFYPRxVFsTq6CPw_|OhLo__+F Wlfgke0^zIx0000Px*%}GQ-RCt{2o%wF#HV}t@4lLiW9Cy2R-KIgFU{Rp&{{#h!K0$9cDR%A1uoGJf z;QkSeO46i6>L3YA9}sLJiyUeWN+M^xo%wuuMvF7L0Py1vpRis(SrxomE%4LNzo6;z zy8u$*(f-AX@NhEXF1X3^Z|GpOe?d4IA)JiR>vjMDhrosq^7rDE<8P_zD1s-|D@s z^anxu`{|gVKL~I-Cb{iikFUmKQ}s)7Nw#bZ?B9pO4!2>5*=&k`KS$~D8{{A=Tcv#6 zbIC|$p^IY`kVpJ>E)>lw*{5T|{jP$PKO7A4>+gSZpBY5}VbcRuilyUO^4Yee{M#@r z6``gMbQ^{M-kov%^my@kZUm^X<$+mKK%RWn6kvjAM4cbD?Qk$uDj(2@0N*^2WU~K? zzl(@dz<6wCgxfI0Hj4636xt9fBZ zd0~LMJaDyG;`R87Z4@c*0aYlU6tI6eNvQf!%!cx5JxNBL(+)chU8>kC$ul4q z0W#&U7EA4=1{P`~Dt|Z_B33N>icdc26|Y@^6{-9?7Y2+SgW zJEPa@qu1*rj{kq^(P2Jco>fuE8Gu#3?1d|9{uT!dWWOEjU^@a;u#cHV$eIE#9z(^O zmC1epP~CdJFA+#orF?M;il}N3ruY(pG?u!jK+XWNFj1}Z%OXI;)N6c+K)~J<$QdB-MTyXj08@O3K)~)4 z$QgjbL??`OHls~(9f5%TDUe%=(8*%R5@2$!j3N;T6!&zIhxh&8Xh~Pr7P#E(5pP&3`49JZh0+PBExjv< z+ng%-vVHL~i*c&$Rg&K(W-)k~8D}#!5OABA##Hd1hP_J&=Wx z5-5wodS+Y`J&=V}K4CR8u8ao;K_BDs^!;(Q*H69D1lq!5Jyv_Y0Gxd>>Y2iih4j*G;srg@<2an!yV>bnQpMjXe50qXD+UoYMVq!HlC2sWk( z-;AJ~g09&JK9PA3aHWhU$<1AitD-`L?JKWLl|9$RbYWYr)>BXr^l=-8h2Cz-fRz4{ zRV1fsTO~Su+KdG44Vk(sM0DC}pDe-m2-J#zBsn3DPdFTQI2?9Jl9SP!ZkZxE;JPDF zI|Aye5YgpYBQVzhJ`~B-S)-*x6;+a|2+TBqFGX^|^+ur50KOE-U3&yd4d6?WToWR& zaG9!@A5Z!Dw#roV>J#dYK-KjVx)Ipc2RN4B)(1G2@5N40lPUDAiPyxJFaJ2*A86|X z9MjeZIOd{0z;=GTFY;aCRc@$j`7WqDH?+*cl}!FM)X8_k1Z$m-88NupT z75H}XK4AU3B3dKxv|rZYnAQM}X$|0*)&P!a4d9s80FG%5;26#TzAji@Gghi3Thv&q zlGN$jhVgxKFsoIPlpmjWPStWv%pT9Z*3LX^OlzSZ96jpIPgB|9P`++xt1s+50*Bo^{U3QL=-rtdxor z1OkyI60DrS`##~hLL9vIr}GUV5Xq)+mt9;Z3LhH84x}^v0Vp>t2!H~iOgaP-`s_{m zp5%c>S?fj4n!Oe`Pj1)SoU70qlQto0=Q>_d5o{Il+g$~XI6}N&`=$*ud$qHo7TzC@ zdaLu)<7`1!xL=a{n=2!AF%8{*#yyI!DkJy4i99-CmMx#FggztnadLkDg!JgZfqCrP zXR;>-B`mM@Dh;x?@N@4F@Yp(;PwTdA$5cHKk~w|!$8vc>O~nVZk~ zoo|nSxTj<=T|GS%;aX4?H*zX#CsFg#qlUdRii-lWxDvW&7v7*4){=3@?Y`}f6^;Dh z`2#%T>hb*x)5W=$Cc{qMG~0NSUOGGjAF@B$GxE9Ty?WEk?l6nR`jpa|#L1QsV#9&3 zDb4xM*Z4h=T@Q6^Scj@>ls+iq%wCu#xI|qR^Yn9^TcI@-#_zRpMc7g9HLTuz&je`W zIg_>>=eCDUZ-sl7%^fOJ8@$n&mwUP3+K8)hRA=8P9bWU=XD}pb`u5XLqxRt&dIqFg z+7mWU+$lGrJbdu7s_!K~D(HNbh23LQYMi%G#D(B`%*dVq4UN&8u{t}W&3e7PbGj|W z8wy{;+azBf$VgBA9J_po$bD%;Ssbeqd}KwheCJ!IJfEj^$;MrfS}|v*2kh<{rlT|y%FZJPQZCGu>4g%Ay% z+CsTn(oWB%I+~X1?PiT$>g;|JmL~h#>#Mw;@rW$0c9C;pR>;(oQHH18o7A9Jr+X^) zUSBxTQdZMG|KOv+rPSWt4|W!RvRQbj!f-X)vFZ2K@3N9EsO^UhjBUxws~pkwIERZE zHfCI8R9m1O;z#^9x2#hx+YDSA)!?h&LXTy9bPkjDh`PV$vo}V`n0G7Vn)mx@udb`@ zt>NhDF$?+qy4;Q3iO2oxo5s^3XA7loU0>{JT|AwCtvpK*Q$1ExcbFftt*UBI_kN_n zEA-qOlSFczdp8r42nYC~e*Pe=fzlkRr|H04j<&Mb;!?fiS^M9Kz4>8{~q z|Hqv1v*GdzwYNnikKnY`c~gMlYw0~7--)gz)(-~j++BPPq!f8Zr(%1CwvyQ_6#|lI zRo9&5ta>tr*>G)r#qom374NFL^z8)qFE)!?ZQFn8Onz$PQ%wet-Nd(uF(XYvCdA#$ z8#{B0NDyLZKw4P2{Jvuojf#0PBERWCWfH>8acy@wA0K_#ve{GDi?hpuZ7PNBnVuKq zoo%5r9ObT59FUx_USBiD>CNw82VdtM3i6cr0Q`#2`f{n)|t6%Z|(EKzPve47& z{j60DxObGhG31e5(Ylth^%ovoI~=gJ8{ce~GMdmvnEd`m3t|W{|%f~mRB|NTKW~`j)N-KwhE`HFv<|9~A zP5B3LDYB->GO4Sq3~JgQnZ$Ht#UIfd$0+z?s+*ok=Upy}whfQDI5jV-6ZP8Bt@uu) zL}v=n?V037+x)Dg(_i+9EU%iJ9ZzpyuFg=MCGhix6^}Iiu5?NeEl)m{x+88>Mq?q% zG2v7v`bY@<@}F&Eo9IAlaf67*%7~IWL_c#|{Gi6CEiPL1P6ur2+c2{Z$hlQTFH>I> zD$h*m{Oz@VhzH5}+w+bg#JIYjo}@5*uF9(P@%+`N=YVXaa=%-bf_8d_!pN2T{!I*%R3De!WT zm`4qlOAJuF9L3R6QPGyl=?BC?bVtTJX)*buZ&LCGMAkbV3_q|7$4}XAN4d23EW_h0 zYgS_XiKI`l{iE2t#uH6twbwgRJ$VTicB@p#PDKvSj*6iFy190vr&sPJ;EnCTO;vdZ zVt03A*f5S=aI;nG^bkX3gp8!`eQK&$I~t(rRrS)Iqq@+3w+DiGoLL# zVARH)(5P!S>bfi~5@DJc;;p%w{Q5L=SdHzdOw);X%ox96)A-6+V{e4SY<}hK9(Bd- zk@pXUSgMe5WI7kRpPfm$|K9ywbn{#k!24ZZ2iRQU$6hG)pP zPbl!Tv|x>eUf8IjbRQ|A8hy4-6#YQVgdFAkZurSb)+@cIl-aACF(_lzE2IJTbiNuP z!EO77SZdb(ebKbH$_kD;E=rw{I8~;mR+`+yT3yk1C@siS56?^y21ym^x=*ho#y>~4 z*QC-n`~H#E_I)`=arDJX@nnIQdYm|VE?1e?+Tw05LMV~TSeQ~YmO=4h=mCKxKR{GoQq_l>`ipDsuQjPeLD|S#NvnLu8r!#MQ_MKF?{W3=L z;QbvC9ff<#(-UPOCQ+|Hh@BjSjOPF8GpT+RoqK%9euwFC8l_p45Q9;+bHhe_W`x8& zJ|9H&xvWySYQDXGc-}`qMRtg|-ne((`^ZCKEKDJW1 z=}C6hD`No%sv>cPux1=Z_A;8N%<;S8cu89%6h4>hwxf+;wPsi_Xd$;uBIuS}?PB@P z+bvd{m%8)AeNZm-;i~%=??NCVhnSX@WTK_zw?!Sel*@`tG9lD&S8MRzQ>3%Td>et+ zNY2(h5^uPFO*~n>L#iB~?l~_;Qb|@+vaP%F;>A6m&bo%(?h@|iD?dSkIUFZ$(yGNY zMUOk7L4PIkXEyLBAW=0BT`H++WZVOSX1|5jb)Dtj3KjMjuXel6pQC-5j@Qt2@J*?n|3Q%)nsTG#v# zMA`Ke`EcC2a+NJwPM0^%ytP%kMbOLe)I_p%^Omhi9*|g!?R%a%*Cc7MMNtCp?f;Rw ze8u>(GheKW43eHIyHf@;@#4W}p&0># zECh zWAp;q3~swiNRzAEhPnt_m9qK)bF?;9@~EjL!%-9e}Dy&a=`dd|G;yZ z^dDmVBQ~LDDV?7K0lWLo{}1%H+?T*0ibTR&1yXs!PKj0~Fk!rSS|F84!!JGRW9ddz zeVjhr2y18r$D(nDa0);%grf}&aWp!Trmt^E{fUYgz~NE?sDO|PB-dktJTxi>jYj&Q z;RYxJ3LHx}#K0*ODjja9kD&r+8ihv3>HkErlg$LHlH&h!R6;5mNTqK`qXK||51e9% z1K?OJg$lChQ{Xf-fHMS1k#wrh5|wZq@aANq2@I`={9z&cQ@Hd%Hp>LIgBidJ{o!z7 zvH)i;MJO6dA7g|xFhHS@81QC*{Q+_V*c`Cngq$d(9@=opL!;ttKt>8!I7}9W0U&|` z7)uV}u;9UDKw&AuIt7`R>|ic25ML8U2*2uY85<-1k0!=TfS;xT zu-z9MIK6sb5`djP3_b@H$D{Uz5gx&D;`{|fx8x_-&^uN3%K z;9u4C|0b8zj|~qH0Iq`g;CAMGor(;&6%zNcx3z*S3V(SuXHr0mWDsFD2Lh2^B|Jsi zp8xg^LLITbEa zm1#CsUF)}y>U=_parFZunU;I2_tsd=i0C(V2n0SQD&E{Jzs}Ix?1kN=$ahEd+If-g iNytpE{48Q#q&B+whIUsWX(Ed)L=deVtST(_9sCc|UZ*br literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_closing.png new file mode 100644 index 0000000000000000000000000000000000000000..6afe206992a4a5f8c1b8881316a259f3b09488d2 GIT binary patch literal 6400 zcmeHLc{o(<`=8<^OG-)dDq~cZ8nc*TW*B2%s?k`=RxxJIjKP>`W~>=0m6W_hDqGf& zqNrqvgeXc)q7bE|Buf-p_?}U{Z(YCdKks$@zW;URI&;pspU?Ao?)&rH&vV`9#8B*Q z7R##2LLiXEcD9y|;MGffE|LQO`%eYqAdp4zVa~1sM`|#X%i}Ou{s2@E$_1c62#W!M zgmk?-<;Gi!SFoH5J%TsqO6+^V#isr_IXQK=%MM5=*c|-Y zRJ(P0<(cp+%Qmrf*Yn18wr>p7n+!AgYI3Wnr|Gk1iN*-Yc*&?ljLm6&M8F5^(!PwQ zDVYqX!E>|7gnOMgrg2^a*xHB`ZDRhg^2~=YGQA{*7bey3x4+lZ1H~o$t7+PHmzQ1qkJvXIEN`$ghoaG1wLBcI{rzOk(+k{`fO9Z@$u8 z1wHNWAD%SHd>^r5@2qjSby05ThMB~~fv;a44r+94m6#ExPrkTg<>~U~#YDmxAGuDg z(a(MO&2872K@W~T^9^MWu{TVu7+st^mWTC9*>SA)j?%kXRZk$@PW!yyuBg#i<>lOT z*Zw2KjBBG4vCEfl?$W^OIi^5gFTs}6S&XKVX~T^6(t#5z{IxDJGtLHk^j|-}Q@^K3 zXG2MIkq-KFbbWd4^C}Xq$w}kZ=04%UojMg|sQQEn&60h##)$lm?mA9in|c#A$}14D z=ZH$&>NcgETXSf$ntk`GUGXHmN_QAJ@~CU2_m);D#23}6J?^V>MP+yHLQ2zQ(q>iY zQa`esrqgY=8`g=4yIb9>J;~T{+?X0#B4$%E_Tr_U1w~1lzFf|3pp;Z3yBD=@zvBMx zc%JQwg!T4Et^+EikJewnvO6jnaQAJO3(v92>8nKN*LQ5Wdp@{hxV2{{aPVNSjcRC; zLw)>%LkfQimzk8c5`e3P4;h}Ufj{eD4zK|I_*yJr4s zV$dfeUxaIIc`8?Y(w&>+Z#ZfzHl$jZnrbx-i(EJHUaFO~ zEOT>MZoR$9-^xZ_vL&uCWBSle+a=j?J)Gyt?lX}dpNg9Qh#pC87B;?P7QhFqLN!0q zvy496p{u{}*drQg9BILS@qJb`*q71#X{hC+LY3(;N4Y)CT2XiIuo*k^(ifl&iU}?x zhE3P)#Bi14n$hW3GT51}OgEj$QkPfCC*4;;`OyAK@6~SvlQFUP(nOuQUBHP@1rgA2 zxTR~C->NT}PUiRgf}cu0k$m36Ji7kP5ELd|A6od}dXRc?Pj9M_fEwr#pX zVo}WLwm4?&iv_JPNe`Z3L8GnL>B5^I2D&B)xOF>rvI7>Hyh}-;Nari^{2UdeKCqRK z*LS(WlKwas|6~_sXL+oqZ)w((qq#ZBtrYzedppb9vOPNSyGmm$YYUbezB-)xH7=a8 zich;dToc!TwT?T-EKcN;giNl{?&4&$*_oS)n-k<~!!Fqhrq=8h*zBT`+^*T4zhupd z)OEO3@Gjo8^ey#sWwMWIp{?!bbDM3NG+L|u>6i3%ikaT(g?WJ=D_?yqA0NTGvWNAC zl2aLo%Chu}gWOK`%?16DtAbRw19|2fKT6m6e`HjETGB`pG7Keio1U0T{7l4)!tS1h-|lYg2Ws|yF~FA|KlZ(g`eaT8?HP%s=p+H zT5>XKU2B2A$|kiF(^E{1WLBH<<2g=R{iyv|o8{iln9{WU9Xr-S0{y0HQnE{8%@Nqe zqR^`pYRiN4a6hg0L%sQ}r(^?-!f58aF#i^9ruFgOGQs76b{Ey84FoKwBEHFTQb$Lh zabHRX-)WthSQl-12rKAFmcxsx8TFDm?7K;WS~$X#(aqm8H2a5c<>d(ed< z?U3c%e2MKVkM^;smmwsjwaTnJ{7`#9D)IStK}@Q!(j{Bs!nW1ZOYd4!ntA4BCYrL% zT`F=^+qomijT@$6(dLy8x=d~xhVQtS8a1|c`hnRg`^1+M!;c75^R*S%2cQ?fqSxo3)!C3pa;0X!=-7mEvsU5S9EUu9j`!u~ z8%S=jfltdwq>TC!shT~r%!+}3Vt3T1l$cxVgzdY(x->R4P-1ES*z-Q&J1m$6- zW><{hTC5^YsGZ*G*OMK*mF7wh5+-&XW=rl|8Fl-%yZT)p-K|rmoYJMxg5izAn@!Pc zn4z$2!Exq-SHSBVLHmHECKmBQ2eOp9*x48RZm((A6kZIf=^|?^*176a7se(Y4;45@ z9k^<*sRIxdGEZz)uP26>0Dm$4({#s3g2OHCJS*>Dc*3iIoRav6A?u@Z1nu>zUE8Xo8J_VXhtBh6Zj(M0 zQx!!7l%u4Mp-3JG6Wv_ez(TDhTAZvUYMU+{qp3ll(Gt2rIa#MY3bq$Ku_L1sV^8J9 ztUcPjM&Q`q>hylV*+ugyvo5MCy_C9i~L-ZpUmR57t)fX_whIeRz3@ za$giYVMMq{_!xOnaaBdMUI`4~V2613&gaVOHTpMDwANDKf)9hLwMhJzh~Bxq_L769 z5K8@Ch}w&>$4L2y{Se5411t**ik*eUkJ<#RNYaD}MB92(wMI{;JYBc~T)RI$i{Q3& z#qM@pr7ZJ;74Ct^ib=T?%vv42xcz>0b$>OUi#l3XtWdlkI=!I()vMgsuywNt_~pan z&#tMDju1zB7nomf#T5Ce-4}FkS=aBqzDieWm!c)&ri!U8BN?S-XBQGzvS)faY~>5L z-oaTl4J;FNLu*+Zy8d#E;o*EkcGQH)?gJ};6VquSt+{f`NW7h__kRxVZ&}zDd+JTQ z@$Lhz8wD3db?1G28=M*(wmsDGY{s|^R5!Y9aB+K^@#SD$T1{zdU`oBMm*VDlsJYpS zbxBlB>mvIj2bJD65x-azd%{kd7cW!6D^vDKJ^2tdS2r4P;mb=)eH|6)N>8;xn&hJ4 zg~w7}gsU6bzmOawNw|b{dlpLQpULg)a-UrEx=%{4xI3j(ddCPPYU?5YJH;>abzV-~ z_`FK!q`ataq0sMculr}55F%>d_Ff8yleCsgx;`>Kl5wwhmiTaJR9aWWJEBbw)(2}y zRTfw)x{|jLXdJd4mCo@7^g`HNu$F{Cj7cF}D$NfNK)nGbD}V?at*V7VS#%=I1xrSf zxfXyA%QlP$IEC3e)582{csh(^B5NE%014QDfC>#^`v>p|Aw<|bF9Ez4n-MVRJVf9} zgt?L_Pzw$ZfMWD8dPulc2rCE;Gm(WF^XLqMqowtC3h;>t^AQNR1Oy^DI9M-OUys9M zB2aid9)Uz7&}cY_fb&BG1k@0C0AEu~@r}b0;L~_4u7Je}fQmV(-kd-I5e5U>p+Ed% zbIIht=>z!RRRHxsgiyH%lpYenW+Q&?!53Hsfh6A@`ma6s&S1%na0K|AKpqXS3IYNI znm<$6*pVrJGl)ZCve?}Dpg{3{8H`T*8^;ag`OjnMGz8!eut8Ej=pX7Aynw~{N336b z6SvHV^Rpx1aDVgvg8mWvJQzfg$plLdEl@nDoh1<__Lo5C&{%ZB{4K!H#{vKifa9nD z1CBwW7;rq5ih?CmB#|JlIs7nS7ItUNCg-mX$-s}1I|EFk#Gzai-+To z3>xSh24?`EQAjimIZq{?2Z9;JjtE2R{bZr|Qw0nTk4=PaVFd(+`~!7nu>mImRV*6H zKp&69p>Rkn8i&PU@c)3e13W&MaAHmrQV;#jX*!Ky4Kh-}#9^_iOaQ?RV9s|DPYVGI z1{9Vm&Qp+i-VVk>u;2ky0f*gOTNBNP8o&g=_5D4ee%M+6WwNkHjJLi%-4Kq$ z&@pg~fguu3HK5bsD8L(Sh(h8)3-(ubK8GO)rt$zYCKxFg4VXal(LlB5HP-nR9qa>$ z1w^7za1M6@5(`IS2uLIh@jYOKcvb(1*ckDDG%=nB{Im^#{l3}2?FHPe z5Pxr1-!&7<_&+?p&&B_61d#goApc6=-*Wwy>t8AGufV^v>$hD0N`Zd`{+(U_Z*s~0 z^TGoJfK^a1_&O5{7m7c%OL=d$v4qTtf0@_w6G4j%*Vc^>fygZvp9>%)=Ok{>0g3lF_bbt`{zuPP$soq9ERZI%Bz z94kNQ>&>vKIYYc9Pqu7$I-+|;vvvpBNq@4;sg0^V$^zOhq?;KLV5PlF$|4v1#5p(S zp^nbUCnc$2v5JaEKaAVh)C75!!t?$#kLy~mn7>k~X7BjNuv3@woQ)!{CXE2&Yo6eJ zQ?1fI%~VCNSAP3qW@7duh1g2r<@QOeYU_z$1jQv8L1E>ZbC2>!6LUKvqts^>&IfRf Zex~r!8H2=<(Ma*Lot3?1vANg&{{ZLBMoj5I7RLi3I|3DyO&Wu!Q6`z}iv%i!CB;BkL{KYCk_kk}LJ}nAs%TggsuV?0 zf!hLtSS^TKs})5+)G8<-RzWMbg5nhgR8&N++(|&i=k|-wbNkKAlVs+7&-**){NFPt znJiv#fR(wEISPfc;smn8kZ-i^ZEB2sDm9uR6v}9pCL&4|2Bo0o3Ykcp2%}YNWKiTL*4z z7@?{UFMMhHVD=nm%?xk5+!tZF+Nu7v9Ah_5{T{zpZ}*$IJi8onGq0p|<-rTPm!uq6 z>84?Q>DrpT?&zhoyz723S54YBPd)YW&%=uXyaPtTF6tt(X7H`1_pw(>A>@~3Ruxdv6OZVyOjBIs+`R6FuunM2N3&GBm0}gAAsFr)2 zZC2*tF6=Gz7`?Ze+%YF;rb)I{wT0+)TgFSt^WW>w77BWUV_|Kz{WRGxgZ;6;aG2rZ2QXFYV{;*cWI>y_%3P%0GVWC~^Ok z2cbw-^z`AQ z-lXUcWUwu7JA!K{T#CIO>N^=L4--P6L5}|7l*s zPaRyNN=2y!36&Y1zVRerYSU5!-Y(+zWZbDwyt4HtUgnNp!M@`*Q?yAoePzyTHd(W0 zDr)P2sG5dtso5)|TFzwMAxRJO`uZGJFX9Kxz*R`Kj~hk?>sS2_y<#`i0yRP2S}*O{ zF<;<}{K<)k^Qokgy=6BDBc|8={q_VL+9eO3S9m?w!}rjOj@wO+7=OnTw5lVsL;Bju zDyKBtXu?gb%ysbe-D7VSN{jf5+)8dO+nK#-)MM&W=zMn16Bpy0=bjYno)wQSt!m6j zaI8OZVXx%&#goyaCRSZ=P3WfGVY`nmT79eRkt9F6J3g{K*DJ_%`i#)V@{(r9ax=xO z6Xr}s&`Hm&ZPvB*m5n_2zWw_MXOo+3F$3wQL-?Px9?T#>gSwsZP_9x2Vte%YWcZy8+XYVEzW*X^P1 z7_(1T9_byVIgJeEmwGLBL!k`P#lF5gj<4^#MuD`4qV?NZfel}|G{%INF94{3$DY>8_FxECG z7wxmy-hC(J=6@(SJHzhDMb@ZqRSaggPt_L=j2XO5#vL!x#_9&7m7_gu64t@w*BF;x zfsyHB!)*oK>%LqR+-)@IJ!P5ZcFd1cNI#U_>|8!%`moCwS9QDKsL9HHR9Z-8;^nHI z3T)5wb8j5ihtDwWGF+d~e0TX9`g&Ab`_gB|bh?qh#m+PRPy4^WdiO2s`lA7p1#OD# z`N9+u($Jm6NaK#;E@28}5*#Fy@nM`=B1alK3gzjomP3LBScT@pabhV8GjO^VgBA-} zm}L|$$d&uT@!~*@0uI*%M+h_t0)`Od?Pcz%W+DIytb)*LNupHARI@O8E)zM|4dXFr zy@@J;g^A+w(7rMSj3(pAI1unti`Nh_Ugl^|g;2x{WBX4akSi7@UZs*V@%WUK6kG}k zCsV}X2@D1U4-)Z2B7j%`%C%Azqz0r)HyvV}!G@Irg;=f<%cN)>6XMH~RV)k!nMc2i zPa@}X-{Ymq2^A1M@M=hoC*VN5M1r5ZLaFjwgFq$%`pXr{2;}z<9|kLB$qE7Nw+5D~ z+$JLeI9%R)f-a>vu|%#<3K8!kXF|byJ9)AqQEwv@;Ne7Afe1wneRbtTxu|A4T zH=|Eyav+Gi_xz8n-{r11My$A8CR-**);Z;{Sr}csOrcC57BcmxFeo5WMGPXqpwb8c znL_3Rd=iBLF!%&IM1}Yy29Y!g#gQsikW>KcPzW3+MmR7X5>jB00zhOs4Io2&GJ>Gd z0gw;DB$z=E!ZdgiB19oZsuD_^9F-0wL{NMINF<41GQgmL5I`mh1xO$ef}$}Y5Z#Z7DyE9r_gA9*)k!) zxDzF`1{UfaA?wDc1o4nG4o2?piGq4JF8+(n0*QPfnLy*pFjLiHCIpfw zDNG_60Le@c#Na0q#_R6tcNu%)|3?!~y}_h5fUFxIL)r_{t?=*L)r4j`8UM!D#9sW3 z9uV|rC!eJ6XSqJh^+^hRlJV#2`YhKcDey_gpR4QtCYSk#2Oe08{0mA!9%pK9Y&An3 zg^c+@0c_Nm?kGM}k%x?!$pfR6D3rx?-P-_FP~?CNny5HjKa=~GW_FGaB@a#xBSWbi z_Tq@B20^UD)P1pbTeYDZjSA?DF~RhPxxv7>^u+BKo~2rjWO|G(lf;f$@9R688dp|c z;kbQPb!0a!Q~Pc27)VW0v^CB4xK#8=Bg%B%zQoe$%2?gMt2cTNZAb_ pCl`emEsS?H9QOj6``67crXi8j0r@(OI0gv?#qkSfSNX(h{|hX=qALIZ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_opening.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/panel_opening.png new file mode 100644 index 0000000000000000000000000000000000000000..e6c87d740e2af2651c01d77129428b36a0fcc384 GIT binary patch literal 6183 zcmeHLc{r5q_aBv#!YdLX(@2O}%`h{Jvc4wSN%SUT<{1XFm>D}Qq$pY1L?mUYgoGAS zyo5?`iIDXbLPEBz@qI@7_51$Qb^X5o_008b=RWu6obx&7zMuP^C~M0<#Y8uXLLd+^ zvYD|hcy|??A}hh`oAds72xL`Tko_LMEyW+o;j-xrZve^<ustBQf72cb87q#1SuXhox7U!aNmT` z*`|H-2lPWsHJsxy;qfrSO6~9#;p}j!2x;4_urd8De&7Q%#<) zcWlbCVQ04a-;nqAxy=%K^)6$6gK>Z8Mt5o|S#27ZS5CNMB9yDhn`rKi8QkQaeDypa zY{N3%Dsu7hIs097;&d;s3ZA4H=;^9^n1t3q?t4?3vrnt71n2j$#x_bsx9dZ<*8D_7 zsnxd1fTD!F7v?>9d7L=6?+NCQsJVd#uI}{Ee2BtdQX=QNdr!lTQmc(B)kY<@n(4fV ziijAE54ZWG4%v|JYmj(;2c*GmTYir#Xc!g+=t73wy$_Cmig&=#9F;ep~!IhBf;`Ys{2m*O@93TW;2=c4>`k7Feb* zTizosDlB|>_wL!Vx#K6SodeH0B;?-qp0v0+B<!G?s%*J)tRo6K;@4$e|I-%#E0tb&oLj&Y7UjF z$lEl}pSLq;EG@|?!qhsNn?5R(vYblS!aXlu6>|rbiz#In?DNec-;Yg#C7gAB{dC8* z+V?NV$10I}^uT|o#h%N=0yV>hN@+1MFIw7pgRjQhE;Q0ABhC5uO5zupjb}n8Z%3xB zK6K6Mg`1`C0@hgFh`qHNjxYtw8@2smUh<6``x=+czuKK(2qAOdZ+UT_KP2O<) z?HspZWo?9LAp7Q%lvn1Jdh3*(1|hn)A3aAL8_fYQWSOrufl&MfV&6dD&mZ z&CHw0qTxQo`^L}TY(*I3Lo2tGzrFatTr{In|8kmFzEX3ehE4Q)%c?c6h{p!aDqU}t zk@vWM$P5;Jkj;>qY>uucS7dlfb|Ur%djJZ|Sjy>>b0SBp^AB{(?R6~v^fK#CvWx>d ze~TZp(Y((0+HiaNsrM1sy!#WG(`$JP+cu^oMY~I_jr@R%nYzA~<1C(iHz`jF3fxFE zeX(<15=(V}U-0(*8|t+G-l^0Ge>Kf}rnBwRs~OiTEAKSDLqQr9$7G9!Q0W$N**#v$ zC93-QlB--0IGuohH!6F|RVx0G=}a2Bea4(rxIfq6lEgS?cb46Bvt`$s_ht#3s7GJ6 z;%`J8?BAST6f;h@+5G92N}=Yw;_fS!N5{L1cZS3`i)~fc_?S|)C1&=}(K3&JbPGk= zaWZjX&Gxl=1E$=#Pl_`q))J%@Rz0|I@bLqV{PfAttc{c|rjkg9Os1tl+Q`rmna%BF zsmC2Gp5cJ0X0gb_YqJVO!`v*yCgVn3P%jP{ zL61FfWo5}1FyVuTcJbHf-RkDAciZcMmWtlg-Zez>?^WN&RJ^xoGInbC?$*n3b$#(3 zYCcZH^g672NVEA79O1>7-2D@VQVWV9p;et>3)_VQ<)@lN5>>Nm%IpE0u2|~&mSY5k z+!KdI@4CZOMHY58p6qB*Lr??tCows80lN2s43l@h9c+-^7p}j0xHUa6ui?P62CJaU zfi~%z17&d)g9rLaD$3K!MWSw!?Gt^&!8YR|Kno#$R~Ko&ar-h2Tqf?4YtU}}TB6EP zqFrK|4veZbR3_Y;d?RbQq3x>)Gd2mB@R9GxnAey*R$t~gl+hy1Z2AkFf7T&~vPEN} zZkx3k*2*hq!tm)0r=0h&BTgb0vpesMmMX{w zXU&_O`ox^a2k@76$?JZQ3B`)#s62SeQ7RJqcx?U#S^JG`PvPB$wg@eT6g1RV-nwTp z8gb@inxtuXO8>2bOBRH7`6D%>YPN+#W5UfF%6zw*)25vbcUGN_(C@Jq*B8B}fTb+d zCMGSag^g5mSYr#qS1Our+|s|qx)SlIXvV^2P7QfqDrA{Y4tF-+?q+U@l5U53pI6~z z{o;lS;S+8d%iekw>D=oIHaV!jATyyPEp0MzXQr*0VSZgBE||$YAD1VTbbVyDsLesb z@x!F~`Hu@V10DMOe-}$fioj}V3i}upJt(@kf?)N)`W`9h3Irl_gkfZ4O*S(6`ke>A z?#ZF?B(sVg3Xk^NWo(0s!`0rzr4gO}Snt!YO*+l+>Uw8i)V+x{N!Tswh?p?1^77b6 z*TYW~}D_ zuP4J7%STu_^F78|>awef_bc>KSBSh{b~33uL`m1Od&P(C%N>JS_g`DCm73nv;yfYJ z-?V_^+7Vsil~7J)^e;3feKKMYJ?6spIi z(TTRkre7eyHxkT)&*u=4NPmBSgufPo&2>kj2?PQXg+XF4a8Luz3uN&r0dN*iSpe}F z!x-RExeN}U!Dc}Pm=rg*FP{X1f$h+*{xLZg7T@4mye}+(d>{iT93&cnLNb}iAA9il zCVn8u7l;0951u`^d_~#CmW1z#CwKpghn&^iTSH2K_r(KlvtTSqkSzM?iDm@PE?&8vBwmsAXY6G-gwM z1xCrnB$&WoB8^RD(1=TqS_BH9O~n)7ZU9OLj-^pCaDq042B%N}EgW7OkEQ|WAE3xA z9-qRZ0s<%y9Kir_@DvJ_j>e+k+B7r;j-}vq-~_rG9gZgu=r}wc58x<2LRfJbU{zAQ zfAmTKMFXL*bc_~-uB{EnX#p5G7OMk7;m|bjqN7d26EIXA9B#=QK^}+()?^Y4gFtU;I4)0f8tC8ji-mQ3QLmHc<;jL~FrOSRx7qLw*Su zDHzpXBi2LyA5Qd^6n>Znz*JD)fdhLH2x2dFS+<1S^%Mc8~G)Ef7A7w zu3uu{my~~3*KfLhiGg2I{#{-FZ*+-%-|zq|a24baZf8ykS!aSuB{+p3Ny)OHa220yVX~@s?P}>wV&Oqg8o>Ro4B6Pg9{dBl&A{{T z9ny!o60V+UtK2tWA!?ZBF1c-ekW5;3M>;>@!rlBT6Y^@e2*fGX$5YIsE4orq#A4ZK z5cJUFmfa4#fsTwhYQM{c=hj2Fg7e!HyB8=O_Ybz=hNf?IZV0u4Ww$=@-q0sSI9T4) zm)5-7A@B5)cMGqSZjnY@Zs-(TO?|p&IObt@eRtZFzrpT1Mb|elhO*~I7HDdd&fPN$A22KRLfyFs@89AUZ-HuOEqL!4OQqnN|{J|!=j2+^l2ZNvSnY8Cwf-IcP8(8xJL#l OkdRF*jdKlM!~O#m;QPJ+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/shuttle_xenoborg.rsi/welded.png new file mode 100644 index 0000000000000000000000000000000000000000..eed2758c7955fd7fce7a0d156810bf5b795ffe37 GIT binary patch literal 5638 zcmeHKc{r478y}G*2`!dX)5u!0kJ&V6tb?&NWjPhEnRl4XW@a$7I4Pne)oF8-wN0fI zQW=r7QYpnz;Y7$5rR_`k-WjdecmCd0ZGw-ZBut zi0LHiJb5*Pk_a=~58xdt?x;=gd-;mtM#=83eLJJFE$v9R2HR?5SKs|!#V4${kEUT%#SNb{{^RK% z2b>p@64n4R&)d0v6?gvhyJ!qnTJ&(+n~Kw0yb|o`A%+LG?`nSSIc)W2`9N%&b{}&? zR$T?|nYz#I80(AGqcJO9=I(VxKiuBddjCxvH|w%z(y_jEN3Z$a zCY|Wh)6YXLDb+qW)1H$PMS84xYOXjbE-k-fZexmC(_#9qEaJ&sx+cEGLmnsOz+6X+ zCUPNZE@fz8)O~I}@($lo0(+C@x4xHtq&X%{=7D!Vxap8r=&Zq^XLjqNYg+ZSoj212 z6BYYvntjbOwp#8{({DNF_lz*qv0gEuNk_x{gz5Zyq0Q@yd*}|hCH5O`2U_I>=+u=t+E^eY<_Wj&XF)>4s#VgK>z2I%;$a z|Gpuz{GN^H@|73(rO##;l}TH`TSdQ}8z}pj+A_88;)f|m8@8EbyVug!~xOlm^GagunNc zR8(&pTPU&4`GAnTi29&aY79nXrL6Qba;4$&roFnARiEFi$bX(~QR#8XcpW|--(YEG zQ+V3SKk{5xWE9Eejo@QS^y9kLVvpjPuOg26Qe0*us<-by9=*ub&|<-H#(tDX`-NT< z-33?JXFW3x5efS2Uw+8KeGaoL^SXBWN3GMnY((Z(vom+C8&_4BooEtYccjdnF~8YP zlDNB?k?!reV?pDTLYKj9hU|&W*Ni+c1)wZ4emk;#OYTnZ+OLyrTB(h@mAi!tyvBNOJ;O4=)C=0LTDqmKf1TGm zJNXe#Cnm{tg`t6-86|Hw(%sR%EZpT&S=<%7mc3JV&37SP9GM*x<%WKp^E|r!usip$ zTga0Qd)2i%6&0(~Z<<&&?Ki%G);*kF@FP~|r{)pRw!aI2xyjW_e%-UX4!ZC7`k*p1BzaHI9k zvB?ZD?avqrG~ey#tC#$m7g-co%(&bfL3|WA-7?WIpg)oK8$Zb=qwK7m$ELm8_S8}r zt$)86Q2%I9I!`w6Y^avzd8%|yRY6wKB=*^Suk>4pl+uv*BbV}@pPd*nnbX61GEr}7 z%;mq%M-Hg}ooKOQ5Gr{6ZF#yqr;J@>t-1d(J~#4P<9qH%eNXU(Cu=}Tss{{fh}9{1jo zG-KczZPckK1hJQ1WMD*@<-0-iuh$#Ls$U3Cj&?fZt&JvK2r=zuYiRXP*p}I`cAlMg zhsKbDdO-Z6kYnoj?1HA2;1R8!HceE~qs%jtRt&;6`Xuvj7Ihx6?tE4C!Fb)$Sz2uq z){D$(3S>+Eq0KL0d^!PgNK3PJRuG7;^HL)oX4Rd0&JNWrq~IL;JL?3 zz@_otEOvY(o5Ddj*lRDAQy~HYCu#uEwQN=_h56fL765Kue(i+=(!llhfiDE+Jg zqz76Kh|yRS1}zYvzwaTHxx_#upB?(g9#R&x^P~MisVG{)23=x6q0H=i3O5GR_bY=k zq;Q@O~n;wcys8IQw3)EF}1 z8)!KwkwOWlkLWnqJ#(&QFrC`+f+xQaT^Hfc6xGHU_0DF88 zDG&pWYXJ2dZ(>IP!f+5;-=7oei=FomlSQ^AkZ}N>h$L}{wnzdIi$MY;4hf0F;JH{l zk&Cru6IEe+WtWP$vRFU@E(wPsg`$BHNEHp-N~N*&kLcJ4P$?h=hecv>NDPIAwWZ>5 zR1EY?pkgox^yh%l%2oX(;>GCy(PXg-@Ld^z`i@K|Kjy|F8;+4 zAnIR({FJ`G<4=9BG1;s+g87#B^aui2)L6*s4_aG?@Hf6f#ey)&wLO1hZNDD8e-TNj-%fm){Qz(%xo`jU8Nr(txgabu84vgrd^y zr#{`>T3h<)boH*Dqvb8|$I=h?)?c4CJX)8QqGee>z4D;lrM`VIEGrO>g<3 z6Kne%fv6?HhPrM8=<=5Kk1d)1`QYWIo@BZ8OvRaA#@bJOMrK+4^S9D|*Nvl{Y>(xs zC-!%guL_SVJxY9|Yh-MKFxd9;a3Cw-LBIhWj=!~^m5x&f8FiymeXurc?de6b1$4yR z@VEEVEmxftIB$~s{L!>fbm~FF0pTf^eFu!Xy#se-8+DJ|J?vm$K{K#yXxgk$45S7W zE=$fo*R!nGb$E7m=rLct?pOM-^uC=H4pk2yy0x^SFeQg$9>XKM$dR^j!!LJFkO$a| z-9ERz-tmZT$a5jE+TUQ>JmBQ1rLB)yPfS@p!+Z;~V}CCpuD%%fps@E1NkLFQUyNlO zxzFk?LqDCXUVKrJHK#vTG0=o_pdpo_j*3P#N-Fbsf%yh^poxVsT)dr&=%I=K1=()B As{jB1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/assembly.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/assembly.png new file mode 100644 index 0000000000000000000000000000000000000000..fd765e671e87e9b55e54282cc924caf4c5c417ea GIT binary patch literal 401 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|>;rs4T!FNZ zkc7CnysWI6vZA_arCv?RzcnBhMfm^N)1!-=K6SwIE%JzX3_EP87vzZPQ=;Am-m_E)}g>FH^ye~Z%W zL|0ynO8#8y?9%lBEBXp@QoW_k_zf`V7g6+yS%m4|u5@*!G|C41WTf z!Sl6joH?2er*%~{%oq&h8^U-Otys9MVE5L#y=gbtUYJf~*skm}jpKeTL*$|@<_xZ< zs+m`XTxYwtZLjmxPxs=rR9btmtBYaQ#km^=d}5s_F`ThMJ1nKl}%d|7WgO W=E}R4=9dHXDubu1pUXO@geCx(OQ28y literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/bolted_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/bolted_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..afcc4809e53bbf4d6cdfe3b1443f3469cf464a09 GIT binary patch literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|qyv0HT!Hj| z7in~4XZQdA|Es}2+kn!XB|(0{3?dpfQ56gR|KHEaavLbv=;`7ZV$nNya-h%w0Uj6E z75Dxhxyn_y>1JPz;rs4T!FNZ zkc7CnysWI6vZA_arCv?RzcnBhMfm<9wFPwtimD!A$C;uvDl+d4T=sKtQ8IoEr~|B2g0G&gSAU1!l( zsoJR=KKr`FUgz0P3z+tQw`p)Ctx`oc3Y1^*7o~3wSIL>r?&my(CY#-MBoZ@iTPY z{C{t7XWQQKkh>!7!-R)#D>a$LZ{I)Dw4C+iOmp2$GwN3{pF literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closed_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..7df73f082cea0291aa93181aef714ab15f655b26 GIT binary patch literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|qyv0HT!Hle zjr>^9|Np0@7cB=$bCv}81v7|f*hEz<`2T-DC(CW1V56stV~9oX+{uAL2LyOrTvy!t zf8;7x-KLv;HIl#IsB}+RD4|JLXbd)Dsg zUWR85)d|5DWPaIs7Kt;~R4PW;S$^KWQlO(r`qOk-rm$Z(4!q-+IwRh|Sna%=uaLil kYu;hMOVeNao2BT<*S%(1dC7`pI?yo;p00i_>zopr08qGM=l}o! literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing.png new file mode 100644 index 0000000000000000000000000000000000000000..a41c0818b1ecaf472d76369d78d360df9cd6a6f2 GIT binary patch literal 1541 zcmV+g2KxDlP)Px)zez+vRCt{2TU}2ZI}klc3E8D6q>)+>Y82(MQXl&N{|rJ@sPsx)sM3%$54jI? z7RPw(u|4+YR-C6QZ1;@Mj6c>sKAKK1b};bn-53Dy`}YO_@L~EMqh^S!>l@tPe?LMb z&d=vN060D#0RVpe`ssZ>mw!6F*e&KWY}Q*mt)H-5tx=NS=4+c4qh^SQho5Mh7XRG; z>*XH+z~%V`9+#_E!~igAhM_ilad&rp1iU1I8hCbkg4?_A;P_8Znk-%d3Ha^y2V(d? zU4F#FgFjhPezOp4{s90yE?2DZSJyWHkW~F9w%ZLB^I0dv@UB42iXeUxezV^0#i0$3pW6SlegXirO)CrUBCsXH6(KHwfVIc0bGyc_^Tx#Bxo(+L&#YKNQAdheF);9y$H|}K6WUI zP5i+mKocqZR=JCS)E@WOB_Ovar3#rkg#L92NJY*fAa$o0cuPQs)C$h+ac>FugIYTQ z_W8?O0un(&N)t!VFXl4<=(eTb5)cVfNE)`J&jYVN`2IHuh^@F%{3K-T^S1DWgHJ$g z#g*g-WP3$)PHa9;uyc1KiShL)OK zW8j+vYr(q=Jw6^`xmshnTJKo{bHE92npL;kP4{o&Cx@CQOz}B>`dzyR*uqoKC;kEO zY!oH0;i^*i%@wZLe4J(WJ4DZj*b~*g){Q#{lXuE;?xF6v2=X3nM-4CFK zYfnaYAe=wHB)`j_Z}azdKcG~@LxI%hw|gY<_kKU1rZ3)AUA2ArHhRAwU)%fW55=Qe(6?6?E>f$plQ$c5pwS>!B6P>egM7SdqG3{j#kK~ zZGUZR^2hk|34Ij+I|t-+y%>MIHh-)?pU_tUyqW`28ZIHEhI8iuwGtmXk0@OLtTC%} z#f8oTY9-!x9+4UcK_Yz6m=&`MND)4?FE8a!O}yrrucQFP#;nv;fVS`w{t}6|<8X1= z&!tp6dmqQx3(o_(Q^T{8|NI+IpglS+T1CuHj}PVh+Wn{1V|~1R&%V0B7qF z8?)^H;2RUo8zCV>SL~s9h(A>Esr;!0AaU@Cj9JoKg3^Xd1Bl`05)Y&cAdSO}!Nu!? z$e1O)C79yf^aY^B?}LP2S^y~yz9?gs_NpQjfChh#0QT=(9I2jBu`#Pe!zBS|@aG5+ zibMPRfgOUh8!inXh2KQ30EC!|Px)vIE<I?g#t_h|pSuj(h{u00000NkvXXu0mjf_uJsH literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing_unlit.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/closing_unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..f7700a06185315c54143fc431130f54a140925e2 GIT binary patch literal 521 zcmeAS@N?(olHy`uVBq!ia0vp^2|()Yw4r!_0^ zI5=)O_rLz*0tem+;vBQ(Vz%C!(cLsjVzJGeQiDGQw~x6fC|IZFs-E~aXZ~Ihhkc1@ z+2#jce`J35P5Ie&iSIoEJN}-2&2eJx=bzo`U!Gbqo_~M%oamKelc0o+t_E=q9|D;s z^$Qx*a864ApWZH|6>7j zxhdy*2bM4L+l2al+NaMAs{SywMnI-Fe5HlC#+q$851sxygdW$GS?&8+f91aLf|WJP zt)@(Ic$CEa=(@Cy355>oaNXDPL+SzxjHvC&o(b*?XNb|J;5}qa#m4L0Lz!c zb$VJ%QI(69EZ}+Zpz@(AtI4Ma`}f!HSiqI>eBp;r@daKJ*h@ZcU^iqExN!9Oy@Piw zXYA{G^?kvb|MM9xADu5QIM12sjP^Ov+e~7WVWuaq;Bul_K$`_5oJ&=RaD(TW3|0Rkj|; zK5X)K+9iQ!zWEG%bI+OPpYoX4|gdpxhkr*P+a2R{E@$`n$0Xu_B0 z(h-~*pSLLfZ+pS0|1*EhfinIx{uh5#2ZSDetY#Hu&%nF)ly&4}Rpq%gw$_*R@(;57 zuGi=P_CHSUt?gc$J9pR^HoW87{+yBF&HuytYYx-^bx-_j+wjl+z~6eAhRf^>6|!ts zR%tqfynpyFpQU2|wF7&PGbv=%6?`{gIC0DT&j0^~tlO#+>bjnMXL$dA@1DazPx$QAtEWRA_&OzIq-GJ+u3f+ippjrKk3Kof zq~OeLY~>_*Pb1A|qQlqo%^|-}kDqJr`{y!^2=9JmXym#gEXB=tE%}LnB3!aDVikoe z@qQ@YOG7PlCI+O?4BVxsD%`pwe=(57?}4ZElqSrhphaK?jy!w-9Mjqj&A4sW`^AN5Yuw-O2E(S*WL^g8P9k38CF*Q)3nbKwkl-+C5*cCdh8Cftq+?Yh5arSw> zn5py@j|j-&r8V5R8IW{`8*c;M;l?8kb6f8XH-J$D8ogpoqHmfw_!Xkz;l{KVRMK%% z3Cn0*q7<)CKPLBX=s8OSK@bE%5ClOG1VQjW_y&G(Xxjnn7ytkO002ovPDHLkV1mwh BtB?Qy literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/meta.json b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/meta.json new file mode 100644 index 0000000000..cd619f7948 --- /dev/null +++ b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/meta.json @@ -0,0 +1,198 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Samuka-C (github).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "panel_open", + "delays": [ + [ + 1 + ] + ] + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "emergency_unlit", + "delays": [ + [ + 0.4, + 0.4 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/open.png new file mode 100644 index 0000000000000000000000000000000000000000..3f21f58c8365edb98dad6a307463fa48ec31d9d1 GIT binary patch literal 311 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|>;rs4T!FNZ zkc7CnysWI6vZA_arCv?RzcnBhMPVE8``2uyhet^*acdb&7G4a1QpTaqfx}>RE z+rEp4?P2*;Px#KTu3mMF0Q*5)v2}7atuRCLg?ro(yVDQ&>q4fUe84L9NG;6+z#)(;0B- z@@#M%ttEQj^x<>_=&|YFOPs?-~=ng`at=lyK zDpSCZ9qbHx>Oz^i+bx9#V4cepqHnE*GWEB&Sf)Xj+(7MXr81@4lQIpuWCr@*{yCK? z-L3&(nW`?JOEl=Kj?3Q8KzF$8T>x07stf4C1{baa+!^Q@&FDFRRi*085vN7tjR_jsu>#e()0FPwHI& z5l>}`B1Q;hdK*B*bD4%$J(cNG00GZsx&@2~9|DMYD$||8`Z9Y8U<=R`U5#s&f@8IY zy8u?}m;&l(9kqE)s>C(7NdTy4XE2-J*?yBjXwRQ?0$BSF{k>c-qtP@b{r|lBnmfH; z*?iytS^tlK=2AG{2aNFZ0RgQ4pD%R}xOS;UFut(;RSupH0-*ZdGyqz~_dx`V_T4(O z9MBr>FamOW0E~w&0-*ml-K}Z!eXs#g<3#}L|Lvs?fTid50I<%?M~CgZPlNS<_W+&` zC^~E3Im^}q-UE0(py+1*9}m%*$Xh^|4=B3+SAK}A2fYQTE_{d<-QJ))=mhYGXwlsO z9`pb}%i=QrZ14g=C0P7|e*o;B#D4?q<@-AS6Tm0y{z?4<;F?ar{{Fk>*MKpdfV~G~ zXY~ufnoh1iaEgq(`vU-`69u^T-0#k=H$@=6|Hp4Uo(~vcMX)dQFn|Dn=K}&*5#-4O z08J+o;O7JXQg%gq9I$0@l^8vRNPy{h~4Di#*0Kk0UwWZrn2|K`iqxr@a0Atcm z0agTc1F+wVHh>x724FuWqyYQ9h&yA5aJ7aRpxe*ZGI>HS`#2w9nY!jSNfGMoKkVat iU;u8<8NfOLmi_~!d_zgW-5^x}0000)YwklUfvb zT!k-`ecS&iGh|ie6W0s&KZ5*U-P7RUJYXvzxTI0TT|;Ig_li8H8IKeL7$v;wTzC8s z+u5+=uFbIu)`}gD3VGG17M(kAhL`E~^B;E@`SJvA^zTnDFK#~YI{(8jnLYcuuB7S| zEoS(td~1g*!^*WsPQ7Jf(908LC@7lk;LUC!J3%MjWQW~M6@vr68*HBLIUtbEbLmnl z%N7=?d#ovyHxHcCY-ZWNn_YK->V;2c4<0@LcbqGOGh~i|$FJvnew-PcC3DPnoKtXf z@LurDj#0O<$=dGV9qEk87PjouQZ2T1?OQ7Uc`?Judd>(-lc_qTzXUjYK9mU@ch)vI zv-?nXK&WKM!>cE~<9ko6*zt^Oea*?aH(AwrPW^Mx-m~mnj`u^;TD8}$*OxE`P5!Z` zG5A2%1F;XHai8n=Ef2@cMtem|OF* zFWOcj3o80HPVajj`$!J#-ehE+&jBsN&4Pm;Ey~RwD9Kq6B9w4)yI_i7v8+R+PTth#)*GLD}V7W zl4@u_w)hJFghlIK$L+40JbAkM*PE;Cd-gLvdRYE?>$g8ClRpNE+c!M5-Ew8}@7KM| bN=lzN<#(T+UUXjW6UhCZu6{1-oD!M<^ljbm literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/panel_open.png new file mode 100644 index 0000000000000000000000000000000000000000..3b98c91e747a5400988a3a0dc61d392216820715 GIT binary patch literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}t2|vCLn2z= zUf#%i$Uva=;r$6ril=lMGz7X{>^acue3U_?qp4M*>69$1@RBZXZ6}TtF0&5{TORHE zH+TNL6oX?D$vuYl3QCbKMV{L(+3{RBeqztM?mQn8R)(_Q+6?!8Kjf}>Z#n;-&8q5; zykD8xA5XcNZ5-FQKO&(}`~2!U#v1ViZpD^Gd$Jk@nyMI=Ybq%1?4LMeo=NO$Jx$(d mhJ>v#&zEJ(I(RY~@8Y*hG~8*u^ISF1)eN4lelF{r5}E*u`a<@sF#^1UjR`+k-ZAlyF=8H&?%Z_$0f4Ap7!5(?7Brap;|Wc0pZ$#kfsr z(Gf?cqeo4?zmHvY|NOl>FYh`s|Lp`C4h274ITms$hTN;oS-kJr;ji|!ks_PyC62uG zxadAD)pomD)UAtl4<3CAbaA<45^BDA-LFs6TodD}x9)o;xr%W~rdIj(`Jb-EXUHvn zw2{G(ef_?M)w5%7{4?;xDu#RF4?t4#PnjmEm&&iL)OA>M(0yk^kSbW0sN_D*h$&5*V@4n)m5i5W4^g|E6XT_i2KbXfYko{p5V@l*T?NjBJ zm9=HnjGrPJW;Ea5Wqy3V+u_1c{R6d;v#zYU&-m);z*_K=!ln3*6F1wUf5nSm|G~6ovBSKV-rl|J36iX@ zoPJ$86(yb^+48|BJ}T-plg?s?m;+p|H7=A`y{$|?Z>8E2FxOA*YKFzSbCZwk*_P>; Y96!C`^z^EVfOe3zp00i_>zopr0J)geH~;_u literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks.png new file mode 100644 index 0000000000000000000000000000000000000000..dd67e88a315f674a061fb3b27660b8c761c88f38 GIT binary patch literal 697 zcmV;q0!ICbP)7E0M--(oM3v-T6o|50rvB z?(X|$_9K~q!b>Jme`5^XKVF&j%`2QtMsN-@c!MQ;uYX{&xPXV-MV4h*a7^*H)mTo% z^duKBlw8QrI7#Az6a!+!k42gRM*{jVXw(2^)BtAG0A@rO5W6r+TTo*dR0c>itn&u= ziYhf*#29dhKzXbye)sb`x`T#9jF|@skRQx^J~1)&r}u;k?=m8#VH_qLszE1c7I|*U z-vi17+kNaSpCz%9yQ#rS&sN2x0`#dRVZ$Zo3 z(YozxD(tDJ*Nd^#9ngM11*`#hZL|qqUX-aA#5S}G^!n=WLLU@GQ4~c{6dSK|xP5Tx z!-H@vnhtn%y49-Lc3NyR!WG{&^FjpmIbAy+o5nPrx)V}}E%fz`bB+BtcI@^)8^rTf zBx((Ky3EXU1aLM2IGxVm^KA+58-UdY;QHA(FXNaPN!aD?zV8}<6&DioA6qwm%&S`B zG(?rf)v;@BC^IYu=$f%ZGhhqXw5SF!qXsa;V!%*uXSl{qZh&O*G5ePMUQntINQ83i z$upoRb}H)fv5TKDu*ZP$-hvmY3!Atq6ENBh(WYFFM67|7l05p#?E1nmayZKasmvEs z4%uF#@2=U$hCc&#<3^>qaoRUjD5t(Q@!@5>eLn%YPa&y@Wk6F&Jf;Amr=S&p`TF~H zKQmyzZBbK@-3j_NfaCqFrZteLVgLD`ViBgsl+FQ!832*%0DhkaTq4i015y-4Q4~c{ f6h%=KHvsSpwHV1KmpgiI00000NkvXXu0mjf++aJ5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_broken.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_broken.png new file mode 100644 index 0000000000000000000000000000000000000000..c41fa18ca1a5201b580b0194415c120f2980ad94 GIT binary patch literal 315 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sDEfH31!Z9ZwB-~~??$B>G+x3?U*4jBlrUYO^z=YQuNR}pT- zBWy>`xct87wfm=W{jN74OBfgq^lLtiinBjCrM4q_XUp^LGankKO#7F2v&Y%y%Ff{Q z3~%|r^L0N9BrdH_`lfiRRhipD%PysF@10#wUYOUjy0=@j2J7*HO#%`BwVxio(s#yR z& dN}IerjGt7Q1>7HnEC$-e;OXk;vd$@?2>`@EK-2&L literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_open.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/sparks_open.png new file mode 100644 index 0000000000000000000000000000000000000000..40d559f7a3312504e49f41ccd899850ca59b3980 GIT binary patch literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^2|(Nn{1`IRkt`T>t-f`0?Kk$m_OstpifbB|(0{|Nk>wKgA1F%fMOS5n0T@z;_sg z8IR|$NC66VdAc};M7Y15X2^BGK;UrE&;N_7IVHPIx5Rc$QDkj)wW>VRAK0MbAfmt} zz}ms&!nlax=iUc9=SyjmInTllg8=T*qkh)`CG2`A1pH*)B{#SEUB%$(>gTe~ HDWM4fZCPKD literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/welded.png b/Resources/Textures/Structures/Doors/Airlocks/Standard/xenoborg.rsi/welded.png new file mode 100644 index 0000000000000000000000000000000000000000..08a09d48e31bbc7f819aeff0353fc762b698f93b GIT binary patch literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|@f2C){`9ecO-f2ietm%y-BKL4cbmcQ@#)-o(fZW9un5G7j` nBK0YD&4eJ8g$#G*KVX_wp?Ku@oPvu$7c+Re`njxgN@xNAeExPM literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/Structures/Machines/computers.rsi/meta.json index 65cba1211e..28b6b7fb79 100644 --- a/Resources/Textures/Structures/Machines/computers.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/computers.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/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm. generic_panel_open made by Errant, commit https://github.com/space-wizards/space-station-14/pull/32273, comms_wizard and wizard_key by ScarKy0, request- variants transfer made by EmoGarbage404 (github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bd6873fd4dd6a61d7e46f1d75cd4d90f64c40894. comm_syndie made by Veritius, based on comm. generic_panel_open made by Errant, commit https://github.com/space-wizards/space-station-14/pull/32273, comms_wizard and wizard_key by ScarKy0, request- variants transfer made by EmoGarbage404 (github), xenorobot by Samuka-C (github)", "size": { "x": 32, "y": 32 @@ -2027,6 +2027,10 @@ "name": "service_keys", "directions": 4 }, + { + "name": "xenorobot", + "directions": 4 + }, { "name": "wizard_key", "directions": 4 diff --git a/Resources/Textures/Structures/Machines/computers.rsi/xenorobot.png b/Resources/Textures/Structures/Machines/computers.rsi/xenorobot.png new file mode 100644 index 0000000000000000000000000000000000000000..15004ef02426ad45ced8a66cc2ad2f3aa984da9e GIT binary patch literal 646 zcmV;10(t$3P)Px%KuJVFRCt{2nlVemKorOSR&fXv+`1YqIAstW1aXpcarHAemCk;I&f?V1(6tUa zi#SLJr=p^3HbHO*wC5mKFX2*?yEIAh|C^Fa$b0v{_g->$0SF<45b|GHF*SOgkge6L zLJftJ4!*u_jrOX<=#bwW%l4)Z0O<8cv1=FSyHDFOhyI*?a@!|h?_)Vg~;#o_i4Ks-YA<23toQ{du!H?;`rMopuh zbUY904U{#tlpl(;fiqzgAe?m2#_vOQMNK4~GC3JeI+>kPsPst_IB6$q&C*GYfVcFnA%qY@2qAQ?2CjkJUz3EpHf}SU4JJ>E* zFB2!juFPd;wQR0)`?PLl+bIInI(>4zz6^@8?VJM3j*|d&_y@q%he9G??|Hw7$K;|Y z@vQ~u^+&UPxMV>p6WtFRoFd@tWW&k0E4}_`wi9fNlK^V_xe5`K&B4uw^`C1_c%G0V zh~(q_gA_p|%lsIs(sm3HL^DUq7C?30Wgbun%84o>pbnEU06z|uEkK>7;{eK?lh>~E ggb+dqA%rX+-^vIn;p{0AQvd(}07*qoM6N<$g8KC){Qv*} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/full.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/full.png new file mode 100644 index 0000000000000000000000000000000000000000..d85d8587c3a43eed7068ea7939fc3254e8f3ec93 GIT binary patch literal 354 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|ECYN(T!FNZ zkc7CnysWI6vZA_OWP!0}aWAv!fdLG~e}2h*zDl^8K+Q zG0xCw%}=A1<(ruk=k0v>S}svgrX)@;<=u~xf`*cW#~Zw!@a0Y1dHBw|GG3F$D+{%4 z*_rcl&nIfww;$Uae5sg0(A$MwIVxgFxy1fzQ|-b659zl3+wW}5RDD@lmRrBW;`r+F deS6;jVl?>4?OQOhwF&4422WQ%mvv4FO#n!CiKqYo literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/meta.json b/Resources/Textures/Structures/Walls/xenoborg.rsi/meta.json new file mode 100644 index 0000000000..fdebe0d8d6 --- /dev/null +++ b/Resources/Textures/Structures/Walls/xenoborg.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Samuka-C (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "xenoborg0", + "directions": 4 + }, + { + "name": "xenoborg1", + "directions": 4 + }, + { + "name": "xenoborg2", + "directions": 4 + }, + { + "name": "xenoborg3", + "directions": 4 + }, + { + "name": "xenoborg4", + "directions": 4 + }, + { + "name": "xenoborg5", + "directions": 4 + }, + { + "name": "xenoborg6", + "directions": 4 + }, + { + "name": "xenoborg7", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg0.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg0.png new file mode 100644 index 0000000000000000000000000000000000000000..fd6951dda95ea93ac93fb805a401c044c7fbab5f GIT binary patch literal 471 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`SO)lnxB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^GrVRPyy zg#$GUmjw9*GyF#b)28jqyJ`=#PuJ7MF(jh(>U2+`Lk2u7j@l{D%H-8f5|Ep(vax?6=TtU4Y!>a&2H-=IjrQ__3t`cnw7g-Ln*EX8S9NXvA z^7djwL*c!>9084Ae{vkR(`ayy>pCE+(O@6E;dyjwPw1}+8!DrP*Iedj*d~6NWz~aA zVJvGBR!dnoXhy6%Afn@!!j&eWyPzr1e4CPj#)h?Bh3eZ%O#~9Iy>DpP+BxF^^X!Wk z7_LU{XM6EBhV?}Fgt;2+hW$Q^X0BMa>CcR5&wXAW3=CM%WXS$tmc?_1IAM4GCtO?# zUt6DY8E~1aU$U{dWgYy%>7u{7h`8v5#A>EfEUa=B4?AkFlk44ofy`glX(f`SO)lnxB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^GrVRPyy zg#$GUmjw9*GyF#b)28jqyJ`=#Psh{6F(jh(=(O8>hYWa}x0~JmUvI=Y`}S6ko*Nv8 zgoSK(tSpY4HalYZj^BU1r)bvk-&l5nIp@z3Ml)9_h35`+$4dA9vuD;=x~;%TO5pj# z0}4+V>+0;4Iam(N>YQ_c@!MlIE(N0%j9x!QCfFIc%QBksI&7M-$K=5L-Hc}cC$Sx= zw$}~kXI{d%K}Tl}+k%V$mrRCJVySc3{?zlG@GW`u=!i@J`^o?552w#Fta*}pa?8iO z)b*-t4M~ec7yQ4>b>V*|Yewc4CX>)8$CZnk7HO?m)#NRdDWAb*ATA<*;M5xaD8q?% zFP@&!oN@ShxBAiiBk#BwH}IY4-xbJcsJ@PCMeRauh3~D)8t#fOXt)Q&_r(`DFwUrI w_4Qpe_xz4*JA=Gk44ofy`glX(f`SO)lnxB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^GrVRPyy zg#$GUmjw9*GyF#b)28jqyJ`=#PuJ7MF(jh(>U2+`Lk2u7j@l{D%H-8f5|Ep(vax?6=TtU4Y!>a&2H-=IjrQ__3t`cnw7g-Ln*EX8S9NXvA z^7djwL*c!>9084Ae{vkR(`ayy>pCE+(O@6E;dyjwPw1}+8!DrP*Iedj*d~6NWz~aA zVJvGBR!dnoXhy6%Afn@!!j&eWyPzr1e4CPj#)h?Bh3eZ%O#~9Iy>DpP+BxF^^X!Wk z7_LU{XM6EBhV?}Fgt;2+hW$Q^X0BMa>CcR5&wXAW3=CM%WXS$tmc?_1IAM4GCtO?# zUt6DY8E~1aU$U{dWgYy%>7u{7h`8v5#A>EfEUa=B4?AkFlk44ofy`glX(f`SO)lnxB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^GrVRPyy zg#$GUmjw9*GyF#b)28jqyJ`=#Psh{6F(jh(=(O8>hYWa}x0~JmUvI=Y`}S6ko*Nv8 zgoSK(tSpY4HalYZj^BU1r)bvk-&l5nIp@z3Ml)9_h35`+$4dA9vuD;=x~;%TO5pj# z0}4+V>+0;4Iam(N>YQ_c@!MlIE(N0%j9x!QCfFIc%QBksI&7M-$K=5L-Hc}cC$Sx= zw$}~kXI{d%K}Tl}+k%V$mrRCJVySc3{?zlG@GW`u=!i@J`^o?552w#Fta*}pa?8iO z)b*-t4M~ec7yQ4>b>V*|Yewc4CX>)8$CZnk7HO?m)#NRdDWAb*ATA<*;M5xaD8q?% zFP@&!oN@ShxBAiiBk#BwH}IY4-xbJcsJ@PCMeRauh3~D)8t#fOXt)Q&_r(`DFwUrI w_4Qpe_xz4*JA=Gk44ofy`glX(f`SO)lnxB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^GrVRPyy zg#$GUmjw9*GyF#b)28jqyJ`=#PuJ7MF(jh(==9rshYWa}x5xbYKmSb7tf`?M!8u0` zar3`;pqlqM_qOj_rFUw(S5z8L-F?5F^#+Ru%M7kF8m#xCltow$%7zQDd=YeVRM)t1 zBtW1=BZiUL;G5u_+(o^HX6M-NvbFF_Xj@m$SW`6T{^h=nvwwbE`lrA4hU0|AnH&mf zcR5!y%_tQ}U^RT5A-3j0MH5Q`S4eNLf|r&+SmP!xyICB+8-fMwB;1;6Cxp4x7Raex zVE=59%=K-l1MB90{2!LSV%S}GiXnOx&w^@)e#2r1sa1RumI}JDY$<#voI}}rWG4J( zWVn&3q#>QocVaa!iwnDD!-0?go;&PidL^hno3nk*9pMkZo!)W&s8!VEb-%k){lJFW xcbpdQ?Dwg^@Gjf=w9)pU-mK^4Pwz^^KUmA-`R9bpabUPIc)I$ztaD0e0st6Kx+VYs literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg5.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg5.png new file mode 100644 index 0000000000000000000000000000000000000000..4e1df9aa5763aa2cb52bd9dc11e0c3f32876912c GIT binary patch literal 525 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`SO)lnxB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^GrVRPyy zg#$GUmjw9*GyF#b)28jqyJ`=#FWJ+@F(jh(?sU(xBL*BU(F!I1mCc(cKK-)Dd17c* z?!Uu5kG}p=QWTnL(y@Ha$uDnz^Y8r2`@qV<@4%eYh8cPdYqq{>SlO1upxiNq@zvKW z4tz#TpSYh$9p>a=Da>KzVz}U3df;i*DxMP$mcC-x8sE;)u)Lm|Y0U>Y?WZ|PZL?oy zJ&xaAeDlHbADk<8%N+D#5HRum%9ikVJr~2h|BMd5?VCBi*DvFL_g`8-i+RUuN4CJX ztXxUg4tDeg`7eGiXm;Spulskxs+oVdX)@dV+{Pi(u%u95Xgj;x4c-|74}P#V)-9BE znf-UI$upY{r%6?++q`$)^{HO7`0bp>Hm?`*JlK0`k=&_k46J`FC;U5Jeb9STvA#?8!S}5)n_g5a9=EB}H{tL5cJi{_ zu98jfH}mfjmupuq(J%3jSF&9Hy-MJyc?gr;k44ofy`glX(f`SO)lnxB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^GrVRPyy zg#$GUmjw9*GyF#b)28jqyJ`=#PuJ7MF(jh(==9rshYWa}x5xbYKmSb7tf`?M!8u0` zar3`;pqlqM_qOj_rFUw(S5z8L-F?5F^#+Ru%M7kF8m#xCltow$%7zQDd=YeVRM)t1 zBtW1=BZiUL;G5u_+(o^HX6M-NvbFF_Xj@m$SW`6T{^h=nvwwbE`lrA4hU0|AnH&mf zcR5!y%_tQ}U^RT5A-3j0MH5Q`S4eNLf|r&+SmP!xyICB+8-fMwB;1;6Cxp4x7Raex zVE=59%=K-l1MB90{2!LSV%S}GiXnOx&w^@)e#2r1sa1RumI}JDY$<#voI}}rWG4J( zWVn&3q#>QocVaa!iwnDD!-0?go;&PidL^hno3nk*9pMkZo!)W&s8!VEb-%k){lJFW xcbpdQ?Dwg^@Gjf=w9)pU-mK^4Pwz^^KUmA-`R9bpabUPIc)I$ztaD0e0st6Kx+VYs literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg7.png b/Resources/Textures/Structures/Walls/xenoborg.rsi/xenoborg7.png new file mode 100644 index 0000000000000000000000000000000000000000..231c5fda379415c4b56741c087326207a0b8b423 GIT binary patch literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`SO)lnxB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^GrVRPyy zg#$GUmjw9*GyF#b)28jqyJ`=VZu4|;42fucJLN3b0R^7sqyP5&SLS~nBGDuCDmA+3 zrK|l0HBHqC9kW(nsXF`OkFdkB7RFU?9|`dkJscX e$nU$&&pt0qkk?$}+5(`97(8A5T-G@yGywpY^l`NS literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/meta.json b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/meta.json new file mode 100644 index 0000000000..f680988301 --- /dev/null +++ b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Samuka-C (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "state0", + "directions": 4 + }, + { + "name": "state1", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state0.png b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state0.png new file mode 100644 index 0000000000000000000000000000000000000000..b83968aa6b2f277bf731d79f0a80aab80888eac3 GIT binary patch literal 3706 zcmV-=4u$cFP)uJ@VVD_U zC<6{NG_fI~0ue<-1QkJoA_k0xBC#Thg@9ne9*`iQ#9$OrQF$}6R&?d%y_c8YA7_1Q zpS|}zXYYO1x&V;8{kgn!SPFnNo`4_X z6{c}T{8k*B#$jdxfFg<9uYy1K45IaYvHg`_dOZM)Sy63ve6hvv1)yUy0P^?0*fb9UASvow z`@mQCp^4`uNg&9uGcn1|&Nk+9SjOUl{-OWr@Hh0;_l(8q{wNRKos+;6rV8ldy0Owz z(}jF`W(JeRp&R{qi2rfmU!TJ;gp(Kmm5I1s5m_f-n#TRsj}B0%?E` zvOzxB2#P=n*a3EfYETOrKoe*ICqM@{4K9Go;5xVgZi5G41dM~{UdP z6d+Yd3o?MrAqM0Kc|iV92owdyL5UC#5<>aVCa44|hpM4Es0sQWIt5*Tu0n&*J!lk~ zf_{hI!w5`*sjxDv4V%CW*ah~3!{C*0BD@;TgA3v9a1~q+AA{TB3-ERLHar49hi4Ih z5D^-ph8Q6X#0?2VqLBoIkE}zAkxHZUgRb+f=natP#6>iMMoK->`~sRLq)(kHo*Vn{;LcG6+e zdD1=7D>9j^O?D{Qg|tCDK{ym)H7&wDr6*;uGTJg8GHjVb znL{!cWyUB7MT6o-VNo_w8Yq`2<5Ub)hw4L3rj}5@qxMs0WMyP6Wy582WNT#4$d1qu znl{acmP#w5ouJ*Jy_Zv#bCKi7ZIf$}8dZdVy&)LYdbX%I9R8VMQ|8r>Q*nyQ)sn)#Z|n)kKvS`4iutvy=3T65Yu+7a4Yv^%sX zb>ww?bn(=Yu(!=O6^iuTp>)p_Y^{w=i^lS773}6Fm1Fpe-gF!>I zp{*g$u-szvGhed; zvo5pW&GpS$<~8QGEXWp~7V9lKEnZq0SaK{6Sl+dwSOr*ZvFf(^Xl-N7w{EeXveC4O zv)N}e%%C!Y7^RFWwrE>d+x51mZQt2h+X?JW*!^a2WS?Sx)P8cQ&Qi|OhNWW;>JChY zI)@QQx?`Nj^#uJBl~d&PK+RZLOLos~K(b5>qmrMN0})tOkySZ3_WICNY@+|jrX%s^&6b2i>5 zeqa0y%Z;^%^_=a@u3%4b9605ii3Ep)@`TAmhs0fpQ%O!ql}XcFH*PieWwLj2ZSq`7 zV9Mc?h17`D)-+sNT-qs~3@?S(ldh7UlRlVXkWrK|vf6I-?$tAVKYn8-l({mqQ$Q8{ zO!WzMg`0(=S&msXS#Pt$vrpzo=kRj+a`kh!z=6$;cwT88(J6|n-WB%w`m$h~4 zpmp)YIh_3ETV2tjiAU!0h1dxU-n=E9e!)6|Z;4?!H=SSy{V>ut&IOq{_dlbFb#!9eY1iCsp6Bajj|H zr?hX|zPbJE{X++w546-O*Ot`2Kgd0Jx6Z4syTu9enWavU5N9)I?I-1m1* z_?_rJ$vD~agVqoG+9++s?NEDe`%Fht$4F;X=in*dQ{7$mU2Q)a|9JSc+Uc4zvS-T9 z63!N$T{xF_ZuWe}`RNOZ7sk3{yB}PPym+f8xTpV;-=!;;JuhGEb?H5K#o@~7t9DmU zU1MD9xNd#Dz0azz?I)|B+WM{g+Xrk0I&awC=o(x)cy`EX=)z6+o0o6-+`4{y+3mqQ z%kSJBju{@g%f35#FZJHb`&swrA8dGtepviS>QUumrN{L@>;2q1Vm)$Z)P1z?N$8UY zW2~{~zhwUMVZ87u`Dx{Z>O|9|`Q+&->FRy-Sjp7DHsy69KwU-!MxeeuI@&cF4| zM9z%AJ8-$Y-uT~b+XDc8U48-prg_50=ZtMz(6&9g zu19xjFb*U7p~d_AU#wp@tm}epTfE=bwmqJo1^~b~jQD;10|3~z1*f8s1#r2%-Y8%W z555-TFdkm}QSI9VLW8I5mw;y*z1+ATV z3La3X04aEWp5H6;^mkPOTxI|9Iq%-9oq3{~0ItlJ%r++`^F$Q^e3_Smm)s$S*vu2f z1xU#}y}#?yL`cazQB;7O%v12)Nj_F-h@t;a$vja^fShxl2X6}$z-|mCQZr8!5g;Y= zCOr6lXvO#N;MaA@$~=)RK{3fG_i@UhX2t=Y2#8;LE(v%U#s+c^|<7gl4`wH8`JNq7P)5 zw<cC1qktZv)fB$9D`Qo39A4l zd|vW#A6l6wL;*_reCR+_yW8712%zQjrhwX+Cw2nV^m&e%ZH{K}0282u&xhEbxlJ|A z(_J!8G=TfQz2x&Qrg_@g8SepR@SJ-D4*;jqKF@>aNWq)iRDf>qfYAd=`8)+LUCBLC z@POa~F}t%apO@^<4BmW?cJP4m?(idW5Wv^uI9=C^3y=pTsxCU!+P2><^T7!Xb^`G8 z^7&~HgIMMb=kp7?QzI?_2NAYy`EIDD2%LL}kZgmYx2_-E2EV@~W)KS9ypW#ZdB{PC zh^YjL(1)08qcDGf3D6N?*8{HCw}v0E*%Qe2*00-P#XvoQFM{_5jh-N?>#GEl+{f4e z`=e|?-AWMW0AD50L4`h}CoL216o6hOSO+0VgmD-#4x`l~O=9N+5@DJrO!K57f^!n| zRYIvbfumgsLFbj$oWRlQ3BeztH79UtZix|5AD}fSaB5dV)YYKYoWQBw6QVDNeeSTX z%VFhG(;brT2WZR*(%ev^60*)8Ur+G;;2{ORbylJ$WOvb!o2py@;ITGOi+E|tIl+Z( z`#h%-id|roniE`@r%#DWD0+pJJ14j>Pam2i0Ay7{(YwMqbAoT#ZrA6|301DKWA7*U z2)W;oIx$w+7l@e?d@GdHN~pFm5^_Jmb%P{@l!>wG&XBJX_$n;|;S-_y)|jgjfdAdS zh6o{*pt3h;s{{=Z2%8A1yRj)hoz4C6w9g$>cZbbNAk2!;ss!K;+v6mHX?3OuHIRm> Yf0K5*x!U3XJ^%m!07*qoM6N<$f)|7^0RR91 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state1.png b/Resources/Textures/Structures/Walls/xenoborg_diagonal.rsi/state1.png new file mode 100644 index 0000000000000000000000000000000000000000..60832b5cd0e21e6d4f9d40558b2ddd0ec0e3d8fc GIT binary patch literal 3817 zcmVuJ@VVD_U zC<6{NG_fI~0ue<-1QkJoA_k0xBC#Thg@9ne9*`iQ#9$OrQF$}6R&?d%y_c8YA7_1Q zpS|}zXYYO1x&V;8{kgn!SPFnNo`4_X z6{c}T{8k*B#$jdxfFg<9uYy1K45IaYvHg`_dOZM)Sy63ve6hvv1)yUy0P^?0*fb9UASvow z`@mQCp^4`uNg&9uGcn1|&Nk+9SjOUl{-OWr@Hh0;_l(8q{wNRKos+;6rV8ldy0Owz z(}jF`W(JeRp&R{qi2rfmU!TJ;gp(Kmm5I1s5m_f-n#TRsj}B0%?E` zvOzxB2#P=n*a3EfYETOrKoe*ICqM@{4K9Go;5xVgZi5G41dM~{UdP z6d+Yd3o?MrAqM0Kc|iV92owdyL5UC#5<>aVCa44|hpM4Es0sQWIt5*Tu0n&*J!lk~ zf_{hI!w5`*sjxDv4V%CW*ah~3!{C*0BD@;TgA3v9a1~q+AA{TB3-ERLHar49hi4Ih z5D^-ph8Q6X#0?2VqLBoIkE}zAkxHZUgRb+f=natP#6>iMMoK->`~sRLq)(kHo*Vn{;LcG6+e zdD1=7D>9j^O?D{Qg|tCDK{ym)H7&wDr6*;uGTJg8GHjVb znL{!cWyUB7MT6o-VNo_w8Yq`2<5Ub)hw4L3rj}5@qxMs0WMyP6Wy582WNT#4$d1qu znl{acmP#w5ouJ*Jy_Zv#bCKi7ZIf$}8dZdVy&)LYdbX%I9R8VMQ|8r>Q*nyQ)sn)#Z|n)kKvS`4iutvy=3T65Yu+7a4Yv^%sX zb>ww?bn(=Yu(!=O6^iuTp>)p_Y^{w=i^lS773}6Fm1Fpe-gF!>I zp{*g$u-szvGhed; zvo5pW&GpS$<~8QGEXWp~7V9lKEnZq0SaK{6Sl+dwSOr*ZvFf(^Xl-N7w{EeXveC4O zv)N}e%%C!Y7^RFWwrE>d+x51mZQt2h+X?JW*!^a2WS?Sx)P8cQ&Qi|OhNWW;>JChY zI)@QQx?`Nj^#uJBl~d&PK+RZLOLos~K(b5>qmrMN0})tOkySZ3_WICNY@+|jrX%s^&6b2i>5 zeqa0y%Z;^%^_=a@u3%4b9605ii3Ep)@`TAmhs0fpQ%O!ql}XcFH*PieWwLj2ZSq`7 zV9Mc?h17`D)-+sNT-qs~3@?S(ldh7UlRlVXkWrK|vf6I-?$tAVKYn8-l({mqQ$Q8{ zO!WzMg`0(=S&msXS#Pt$vrpzo=kRj+a`kh!z=6$;cwT88(J6|n-WB%w`m$h~4 zpmp)YIh_3ETV2tjiAU!0h1dxU-n=E9e!)6|Z;4?!H=SSy{V>ut&IOq{_dlbFb#!9eY1iCsp6Bajj|H zr?hX|zPbJE{X++w546-O*Ot`2Kgd0Jx6Z4syTu9enWavU5N9)I?I-1m1* z_?_rJ$vD~agVqoG+9++s?NEDe`%Fht$4F;X=in*dQ{7$mU2Q)a|9JSc+Uc4zvS-T9 z63!N$T{xF_ZuWe}`RNOZ7sk3{yB}PPym+f8xTpV;-=!;;JuhGEb?H5K#o@~7t9DmU zU1MD9xNd#Dz0azz?I)|B+WM{g+Xrk0I&awC=o(x)cy`EX=)z6+o0o6-+`4{y+3mqQ z%kSJBju{@g%f35#FZJHb`&swrA8dGtepviS>QUumrN{L@>;2q1Vm)$Z)P1z?N$8UY zW2~{~zhwUMVZ87u`Dx{Z>O|9|`Q+&->FRy-Sjp7DHsy69KwU-!MxeeuI@&cF4| zM9z%A&l8AtEW34h?B_9&aQVyTBpJW*zX_C^tx#}v~7pBt}yfiy1v2j_=@@S zjCq~_!1}omlk<8_)8Xd22LKHHfPaT)0Duq^>Kq2zu-`wNo2FZi+qScOJ1vHOxOlH9 z0jlu;(AHJfYs%gSuy~(Pi~!a6`~4jNpzE9Ey=fFluSv#}=VjxCm~c2eRYeFe8Gjm2 z7vH7(I~F$2lkq@-2+$cX8?KT-#!~_e0mt)noRt8R=KPSn*f*RbFA-U z>bwhH1h_m;#)qu&bJckl*aUDr-_{kow#(4f`JA37un6$+{Ll}<8yh;2L&#w~z#zco zc>);^z*@^~$WiBAuoA$j^J=!&$yFbuuJbM!2}n`rLw0pad7hvpAZ48=qDO7s#Hn+6r2`d6})Opo-b#7bttK*W!0}=r#>b$A^+2$UPubX(DPy=P^ylL*1 z#sff|vd)|2tPFLod<~$i@qm&8V(PrF{@3Y*(#8XtDxhmunIN~XL!h>|OB)XWSEVob z({Mom=RPL1Z5OrvZ`%${^F8DTCrV*OfSieMu6wO|n?`}%?iOubt%fgj^R^(N0_^Q; zT^R({eSLzurq?~xMU<~b$}}p z=tpt;{G7c5A*M|t!OE&D5=bhWB7lSU_w|~hbR<}npequ5bb@K9C>;qbHdE;Y9Ug!E z*1lgV64)p4*)Z{u(|`Ux89yu081XtmN}WJ>etEH8Gj}9-tp-!-1ebmw83@_L27+Vj>~wu5gS_a1GOT zeXLH%vc?Y42{v%|8$u!>OJ5+xegb#DLH>S7BxGxh=tvm)0Yg75OX+1VK^gR;eL*Cg z#uHBCiA6%z&X6k-ZmxUn{y+*62rd$`x5jLd0DS#lKprXyA@GTWBE3OVB+&B$@{mc0 z0XGtg{d4qic&g;;KqSZyMuiF_6TV3JKEB`IE!QOyigt(9NC5cz0->-)0;rs4T!FNZ zkc7CnysWI6vZA_arCv?RzcnBhMfm<9wFPwtimD!A|I;uvDl+dG+2s6~Op_3}n$or3?H^-j2JX2&j@ zdF-EXU5ES4BZ23F;+>B!UQxHNMTl$0y>r`I>P(y%T}xxvFI}zZWs$&{^>c~Ag5?Ys zO2xR-YCp4U$~Z6uFYsQ%zz}QtLdnC>OCv#PqMZt3k5H`m<>rL)k1Q928QLcsXuIh& z2>WdFYWUxD!;R}uZ5+cgmlI3}>WvPDJN)*4n7|k%aKq-yAMq=UZ{&JU^v-ILzjeuz zU2S5cwP3DSJ8MJDoI{Uv8XFf%?66o>CcV?5YvzOZ3-9*)efKD5{k?ym{`KiQ_9(^g T=+Ec`dX>S`)z4*}Q$iB}MxdWj literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/meta.json b/Resources/Textures/Structures/Windows/xenoborg.rsi/meta.json new file mode 100644 index 0000000000..80f4c3f703 --- /dev/null +++ b/Resources/Textures/Structures/Windows/xenoborg.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Samuka-C (github).", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "xenoborg0", + "directions": 4 + }, + { + "name": "xenoborg1", + "directions": 4 + }, + { + "name": "xenoborg2", + "directions": 4 + }, + { + "name": "xenoborg3", + "directions": 4 + }, + { + "name": "xenoborg4", + "directions": 4 + }, + { + "name": "xenoborg5", + "directions": 4 + }, + { + "name": "xenoborg6", + "directions": 4 + }, + { + "name": "xenoborg7", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg0.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg0.png new file mode 100644 index 0000000000000000000000000000000000000000..7d733f13a4505fd5d58a0d507795331f00ced02e GIT binary patch literal 497 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`*a!H8xB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^IB%&qkGky{uplTf zP3&uv=w}I@kLkDLlIoA#{(HZn*#21r`;LEel4J#b6-^UlI3WM}5c4@l^MW^~%*;#T zbeR}Sn59@+8Dif9iL(vep)4f=Ror_|)HB#Ndp=<3V!Wkpa9)9x<9}VHsD~RzR@U_S z8eYs_E{Sspw4AVD?r;{a61c!&;2^!=rC@{j+=)(S9DSXP8Pq=-HCU}U%)s>G>TXE~ zhH!RIW`=~kqEeZwk44ofy`glX(f`*a!H8xB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^IB%&qsz%l3~qU-P=Vt)0W$=I?*qZ>o0=>}-*?m{!1C!n;oOPQ$8WGG#qn4411IW?cWx zD0uPD7i``hU?k44ofy`glX(f`*a!H8xB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^IB%&qkGky{uplTf zP3&uv=w}I@kLkDLlIoA#{(HZn*#21r`;LEel4J#b6-^UlI3WM}5c4@l^MW^~%*;#T zbeR}Sn59@+8Dif9iL(vep)4f=Ror_|)HB#Ndp=<3V!Wkpa9)9x<9}VHsD~RzR@U_S z8eYs_E{Sspw4AVD?r;{a61c!&;2^!=rC@{j+=)(S9DSXP8Pq=-HCU}U%)s>G>TXE~ zhH!RIW`=~kqEeZwk44ofy`glX(f`*a!H8xB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^IB%&qsz%l3~qU-P=Vt)0W$=I?*qZ>o0=>}-*?m{!1C!n;oOPQ$8WGG#qn4411IW?cWx zD0uPD7i``hU?k44ofy`glX(f`*a!H8xB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^IB%&qfFbk&Lvcg=K|Tl8B`T+)4?K48R}wkE z$|_)W@ifOi;r_5=i&Ot>pL%w6DA$C`yOw^vVtbF3HHeLk17A(gc)_GqK$f`)x{TI|z{56k44ofy`glX(f`*a!H8xB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^IB%&qidAEo`M`Nqp7 zF@I0`+q#Bax&C_L(sI8eE=LaCnpgM#YFfRSBF_`;i3Q9XII{jL9pYhL$>==6!Xd;f zQqV(U#s9e0W<`?+D(s7xxcSb!S?F1EG1>EpZwK>i1_tdv!3#JgHiUgLJ`l}s@?@qZ zgT=XBxBvd{`6(^Ybih(TUxA@}&O1A14{0_FMn;|LnAZZ0&Kr0#OxcwtC}tQgpYlkM z=U{_2-MEUMlrV&<$vqRd}jJhI~uKIBmQ ztyBEafvI5}7rf2@4LSCBc2zGI^S3|$W9980?R53}6K%T{7#j?pu6{1-oD!M<#|73p literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg6.png b/Resources/Textures/Structures/Windows/xenoborg.rsi/xenoborg6.png new file mode 100644 index 0000000000000000000000000000000000000000..96aa56b31be2f70948efd99d2aacaaa8015da35c GIT binary patch literal 462 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`*a!H8xB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^IB%&qfFbk&Lvcg=K|Tl8B`T+)4?K48R}wkE z$|_)W@ifOi;r_5=i&Ot>pL%w6DA$C`yOw^vVtbF3HHeLk17A(gc)_GqK$f`)x{TI|z{56k44ofy`glX(f`*a!H8xB_V* zAqjDDd0AOCWkq!zO#@>?Q#WV#h_HyPjI8?ldM++kLB32O?tVqyo36UQ&K^IB%&qO?JGUe&D{EHI) z|0S|(%hr_GZ7$_y|F|c#HZUB~TinnZz-}W{!20*&17}HtFV&)@tha2{uQ2K}F-UCn zXX2W%m%*1ue&ITWKTH=~>f;@R*S6mE^l(&o!f?+1c|7Bs|H{wn*%Rap_-C-6X|`AR h-1zfAjfIkY-sPztR}UF+{RcXV!PC{xWt~$(698^9b_M_d literal 0 HcmV?d00001 diff --git a/Resources/Textures/Tiles/attributions.yml b/Resources/Textures/Tiles/attributions.yml index 4999508701..e1318a223e 100644 --- a/Resources/Textures/Tiles/attributions.yml +++ b/Resources/Textures/Tiles/attributions.yml @@ -155,3 +155,8 @@ license: "CC0-1.0" copyright: "Created by SeaWyrm" source: "https://github.com/space-wizards/space-station-14/pull/38007" + +- files: ["exoborg.png"] + license: "CC0-1.0" + copyright: "Created by Samuka-C (github) for space-station-14." + source: "https://github.com/space-wizards/space-station-14/pull/37068" diff --git a/Resources/Textures/Tiles/exoborg.png b/Resources/Textures/Tiles/exoborg.png new file mode 100644 index 0000000000000000000000000000000000000000..6f086e185cb93b60f52bebaa84be0e0f6987e4b4 GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|j01c^T!FNZ zkc6_Ly0M|Do3ndJP)I~rL{>&teSJL_m#ZLOrVw|(BJWLC-Ct*qpMGmo8aQP87S%L>Eak-(fjt2As^5M&VfHF{u{sUi1kQsUCCL=-5XjPmer?q z3rJ`e^QlxbDJ5`qG-xU?EoLm50>{an^L HB{Ts5*f3BN literal 0 HcmV?d00001 From 021adbe1e1e5df2146ec51fc2fdaa5bd0d9e08d7 Mon Sep 17 00:00:00 2001 From: Winkarst-cpu <74284083+Winkarst-cpu@users.noreply.github.com> Date: Tue, 19 Aug 2025 20:56:36 +0300 Subject: [PATCH 071/194] New Feature: Kitchen spike rework (#38723) * Start * Wow, text * Ultra raw * More stuff * Wow, DOT and gibbing!!! * More stuff * More * Update * Yes * Almost there * Done? * I forgot * Update * Update * Update * Update * Update * Update * Update * Update * Update * Beck * Unhardcode --- Content.Client/Kitchen/KitchenSpikeSystem.cs | 8 - .../Botany/Systems/BotanySystem.Seed.cs | 2 +- Content.Server/Botany/Systems/LogSystem.cs | 2 +- .../Botany/Systems/PlantHolderSystem.cs | 2 +- .../Kitchen/Components/SharpComponent.cs | 15 - .../EntitySystems/KitchenSpikeSystem.cs | 292 ------------ .../Kitchen/EntitySystems/SharpSystem.cs | 2 +- .../Components/KitchenSpikeComponent.cs | 145 +++++- .../Components/KitchenSpikeHookedComponent.cs | 10 + .../Components/KitchenSpikeVictimComponent.cs | 10 + .../Kitchen/Components/SharpComponent.cs | 26 ++ .../Kitchen/SharedKitchenSpikeSystem.cs | 438 +++++++++++++++++- .../Components/ButcherableComponent.cs | 67 ++- .../components/kitchen-spike-component.ftl | 43 +- .../Entities/Structures/meat_spike.yml | 5 +- .../SoundCollections/kitchenspike.yml | 9 + 16 files changed, 688 insertions(+), 388 deletions(-) delete mode 100644 Content.Client/Kitchen/KitchenSpikeSystem.cs delete mode 100644 Content.Server/Kitchen/Components/SharpComponent.cs delete mode 100644 Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs create mode 100644 Content.Shared/Kitchen/Components/KitchenSpikeHookedComponent.cs create mode 100644 Content.Shared/Kitchen/Components/KitchenSpikeVictimComponent.cs create mode 100644 Content.Shared/Kitchen/Components/SharpComponent.cs create mode 100644 Resources/Prototypes/SoundCollections/kitchenspike.yml diff --git a/Content.Client/Kitchen/KitchenSpikeSystem.cs b/Content.Client/Kitchen/KitchenSpikeSystem.cs deleted file mode 100644 index 3627a29fa9..0000000000 --- a/Content.Client/Kitchen/KitchenSpikeSystem.cs +++ /dev/null @@ -1,8 +0,0 @@ -using Content.Shared.Kitchen; - -namespace Content.Client.Kitchen; - -public sealed class KitchenSpikeSystem : SharedKitchenSpikeSystem -{ - -} diff --git a/Content.Server/Botany/Systems/BotanySystem.Seed.cs b/Content.Server/Botany/Systems/BotanySystem.Seed.cs index fd65c141aa..6b26ce7119 100644 --- a/Content.Server/Botany/Systems/BotanySystem.Seed.cs +++ b/Content.Server/Botany/Systems/BotanySystem.Seed.cs @@ -1,5 +1,4 @@ using Content.Server.Botany.Components; -using Content.Server.Kitchen.Components; using Content.Server.Popups; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Botany; @@ -16,6 +15,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.Administration.Logs; using Content.Shared.Database; +using Content.Shared.Kitchen.Components; namespace Content.Server.Botany.Systems; diff --git a/Content.Server/Botany/Systems/LogSystem.cs b/Content.Server/Botany/Systems/LogSystem.cs index 3d415635be..08190af708 100644 --- a/Content.Server/Botany/Systems/LogSystem.cs +++ b/Content.Server/Botany/Systems/LogSystem.cs @@ -1,7 +1,7 @@ using Content.Server.Botany.Components; -using Content.Server.Kitchen.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; +using Content.Shared.Kitchen.Components; using Content.Shared.Random; using Robust.Shared.Containers; diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index d8381b2a79..e38c742fa2 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Botany.Components; using Content.Server.Hands.Systems; -using Content.Server.Kitchen.Components; using Content.Server.Popups; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Atmos; @@ -26,6 +25,7 @@ using Robust.Shared.Timing; using Content.Shared.Administration.Logs; using Content.Shared.Containers.ItemSlots; using Content.Shared.Database; +using Content.Shared.Kitchen.Components; using Content.Shared.Labels.Components; namespace Content.Server.Botany.Systems; diff --git a/Content.Server/Kitchen/Components/SharpComponent.cs b/Content.Server/Kitchen/Components/SharpComponent.cs deleted file mode 100644 index c67c3b8a4d..0000000000 --- a/Content.Server/Kitchen/Components/SharpComponent.cs +++ /dev/null @@ -1,15 +0,0 @@ -namespace Content.Server.Kitchen.Components; - -/// -/// Applies to items that are capable of butchering entities, or -/// are otherwise sharp for some purpose. -/// -[RegisterComponent] -public sealed partial class SharpComponent : Component -{ - // TODO just make this a tool type. - public HashSet Butchering = new(); - - [DataField("butcherDelayModifier")] - public float ButcherDelayModifier = 1.0f; -} diff --git a/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs b/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs deleted file mode 100644 index 4ed05a3f16..0000000000 --- a/Content.Server/Kitchen/EntitySystems/KitchenSpikeSystem.cs +++ /dev/null @@ -1,292 +0,0 @@ -using Content.Server.Administration.Logs; -using Content.Server.Body.Systems; -using Content.Server.Kitchen.Components; -using Content.Server.Popups; -using Content.Shared.Chat; -using Content.Shared.Damage; -using Content.Shared.Database; -using Content.Shared.DoAfter; -using Content.Shared.DragDrop; -using Content.Shared.Humanoid; -using Content.Shared.IdentityManagement; -using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; -using Content.Shared.Kitchen; -using Content.Shared.Kitchen.Components; -using Content.Shared.Mobs.Components; -using Content.Shared.Mobs.Systems; -using Content.Shared.Nutrition.Components; -using Content.Shared.Popups; -using Content.Shared.Storage; -using Robust.Server.GameObjects; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Player; -using Robust.Shared.Random; -using static Content.Shared.Kitchen.Components.KitchenSpikeComponent; - -namespace Content.Server.Kitchen.EntitySystems -{ - public sealed class KitchenSpikeSystem : SharedKitchenSpikeSystem - { - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - [Dependency] private readonly IAdminLogManager _logger = default!; - [Dependency] private readonly MobStateSystem _mobStateSystem = default!; - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly TransformSystem _transform = default!; - [Dependency] private readonly BodySystem _bodySystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly MetaDataSystem _metaData = default!; - [Dependency] private readonly SharedSuicideSystem _suicide = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnInteractUsing); - SubscribeLocalEvent(OnInteractHand); - SubscribeLocalEvent(OnDragDrop); - - //DoAfter - SubscribeLocalEvent(OnDoAfter); - - SubscribeLocalEvent(OnSuicideByEnvironment); - - SubscribeLocalEvent(OnButcherableCanDrop); - } - - private void OnButcherableCanDrop(Entity entity, ref CanDropDraggedEvent args) - { - args.Handled = true; - args.CanDrop |= entity.Comp.Type != ButcheringType.Knife; - } - - /// - /// TODO: Update this so it actually meatspikes the user instead of applying lethal damage to them. - /// - private void OnSuicideByEnvironment(Entity entity, ref SuicideByEnvironmentEvent args) - { - if (args.Handled) - return; - - if (!TryComp(args.Victim, out var damageableComponent)) - return; - - _suicide.ApplyLethalDamage((args.Victim, damageableComponent), "Piercing"); - var othersMessage = Loc.GetString("comp-kitchen-spike-suicide-other", - ("victim", Identity.Entity(args.Victim, EntityManager)), - ("this", entity)); - _popupSystem.PopupEntity(othersMessage, args.Victim, Filter.PvsExcept(args.Victim), true); - - var selfMessage = Loc.GetString("comp-kitchen-spike-suicide-self", - ("this", entity)); - _popupSystem.PopupEntity(selfMessage, args.Victim, args.Victim); - args.Handled = true; - } - - private void OnDoAfter(Entity entity, ref SpikeDoAfterEvent args) - { - if (args.Args.Target == null) - return; - - if (TryComp(args.Args.Target.Value, out var butcherable)) - butcherable.BeingButchered = false; - - if (args.Cancelled) - { - entity.Comp.InUse = false; - return; - } - - if (args.Handled) - return; - - if (Spikeable(entity, args.Args.User, args.Args.Target.Value, entity.Comp, butcherable)) - Spike(entity, args.Args.User, args.Args.Target.Value, entity.Comp); - - entity.Comp.InUse = false; - args.Handled = true; - } - - private void OnDragDrop(Entity entity, ref DragDropTargetEvent args) - { - if (args.Handled) - return; - - args.Handled = true; - - if (Spikeable(entity, args.User, args.Dragged, entity.Comp)) - TrySpike(entity, args.User, args.Dragged, entity.Comp); - } - - private void OnInteractHand(Entity entity, ref InteractHandEvent args) - { - if (args.Handled) - return; - - if (entity.Comp.PrototypesToSpawn?.Count > 0) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-knife-needed"), entity, args.User); - args.Handled = true; - } - } - - private void OnInteractUsing(Entity entity, ref InteractUsingEvent args) - { - if (args.Handled) - return; - - if (TryGetPiece(entity, args.User, args.Used)) - args.Handled = true; - } - - private void Spike(EntityUid uid, EntityUid userUid, EntityUid victimUid, - KitchenSpikeComponent? component = null, ButcherableComponent? butcherable = null) - { - if (!Resolve(uid, ref component) || !Resolve(victimUid, ref butcherable)) - return; - - var logImpact = LogImpact.Medium; - if (HasComp(victimUid)) - logImpact = LogImpact.Extreme; - - _logger.Add(LogType.Gib, logImpact, $"{ToPrettyString(userUid):user} kitchen spiked {ToPrettyString(victimUid):target}"); - - // TODO VERY SUS - component.PrototypesToSpawn = EntitySpawnCollection.GetSpawns(butcherable.SpawnedEntities, _random); - - // This feels not okay, but entity is getting deleted on "Spike", for now... - component.MeatSource1p = Loc.GetString("comp-kitchen-spike-remove-meat", ("victim", victimUid)); - component.MeatSource0 = Loc.GetString("comp-kitchen-spike-remove-meat-last", ("victim", victimUid)); - component.Victim = Name(victimUid); - - UpdateAppearance(uid, null, component); - - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-kill", - ("user", Identity.Entity(userUid, EntityManager)), - ("victim", Identity.Entity(victimUid, EntityManager)), - ("this", uid)), - uid, PopupType.LargeCaution); - - _transform.SetCoordinates(victimUid, Transform(uid).Coordinates); - // THE WHAT? - // TODO: Need to be able to leave them on the spike to do DoT, see ss13. - var gibs = _bodySystem.GibBody(victimUid); - foreach (var gib in gibs) { - QueueDel(gib); - } - - _audio.PlayPvs(component.SpikeSound, uid); - } - - private bool TryGetPiece(EntityUid uid, EntityUid user, EntityUid used, - KitchenSpikeComponent? component = null, SharpComponent? sharp = null) - { - if (!Resolve(uid, ref component) || component.PrototypesToSpawn == null || component.PrototypesToSpawn.Count == 0) - return false; - - // Is using knife - if (!Resolve(used, ref sharp, false) ) - { - return false; - } - - var item = _random.PickAndTake(component.PrototypesToSpawn); - - var ent = Spawn(item, Transform(uid).Coordinates); - _metaData.SetEntityName(ent, - Loc.GetString("comp-kitchen-spike-meat-name", ("name", Name(ent)), ("victim", component.Victim))); - - if (component.PrototypesToSpawn.Count != 0) - _popupSystem.PopupEntity(component.MeatSource1p, uid, user, PopupType.MediumCaution); - else - { - UpdateAppearance(uid, null, component); - _popupSystem.PopupEntity(component.MeatSource0, uid, user, PopupType.MediumCaution); - } - - return true; - } - - private void UpdateAppearance(EntityUid uid, AppearanceComponent? appearance = null, KitchenSpikeComponent? component = null) - { - if (!Resolve(uid, ref component, ref appearance, false)) - return; - - _appearance.SetData(uid, KitchenSpikeVisuals.Status, component.PrototypesToSpawn?.Count > 0 ? KitchenSpikeStatus.Bloody : KitchenSpikeStatus.Empty, appearance); - } - - private bool Spikeable(EntityUid uid, EntityUid userUid, EntityUid victimUid, - KitchenSpikeComponent? component = null, ButcherableComponent? butcherable = null) - { - if (!Resolve(uid, ref component)) - return false; - - if (component.PrototypesToSpawn?.Count > 0) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-collect", ("this", uid)), uid, userUid); - return false; - } - - if (!Resolve(victimUid, ref butcherable, false)) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-butcher", ("victim", Identity.Entity(victimUid, EntityManager)), ("this", uid)), victimUid, userUid); - return false; - } - - switch (butcherable.Type) - { - case ButcheringType.Spike: - return true; - case ButcheringType.Knife: - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-butcher-knife", ("victim", Identity.Entity(victimUid, EntityManager)), ("this", uid)), victimUid, userUid); - return false; - default: - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-butcher", ("victim", Identity.Entity(victimUid, EntityManager)), ("this", uid)), victimUid, userUid); - return false; - } - } - - public bool TrySpike(EntityUid uid, EntityUid userUid, EntityUid victimUid, KitchenSpikeComponent? component = null, - ButcherableComponent? butcherable = null, MobStateComponent? mobState = null) - { - if (!Resolve(uid, ref component) || component.InUse || - !Resolve(victimUid, ref butcherable) || butcherable.BeingButchered) - return false; - - // THE WHAT? (again) - // Prevent dead from being spiked TODO: Maybe remove when rounds can be played and DOT is implemented - if (Resolve(victimUid, ref mobState, false) && - _mobStateSystem.IsAlive(victimUid, mobState)) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-deny-not-dead", ("victim", Identity.Entity(victimUid, EntityManager))), - victimUid, userUid); - return true; - } - - if (userUid != victimUid) - { - _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-begin-hook-victim", ("user", Identity.Entity(userUid, EntityManager)), ("this", uid)), victimUid, victimUid, PopupType.LargeCaution); - } - // TODO: make it work when SuicideEvent is implemented - // else - // _popupSystem.PopupEntity(Loc.GetString("comp-kitchen-spike-begin-hook-self", ("this", uid)), victimUid, Filter.Pvs(uid)); // This is actually unreachable and should be in SuicideEvent - - butcherable.BeingButchered = true; - component.InUse = true; - - var doAfterArgs = new DoAfterArgs(EntityManager, userUid, component.SpikeDelay + butcherable.ButcherDelay, new SpikeDoAfterEvent(), uid, target: victimUid, used: uid) - { - BreakOnDamage = true, - BreakOnMove = true, - NeedHand = true, - BreakOnDropItem = false, - }; - - _doAfter.TryStartDoAfter(doAfterArgs); - - return true; - } - } -} diff --git a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs index 0275e4d1a7..ab6e1db494 100644 --- a/Content.Server/Kitchen/EntitySystems/SharpSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/SharpSystem.cs @@ -1,5 +1,4 @@ using Content.Server.Body.Systems; -using Content.Server.Kitchen.Components; using Content.Shared.Administration.Logs; using Content.Shared.Body.Components; using Content.Shared.Database; @@ -8,6 +7,7 @@ using Content.Shared.DoAfter; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Kitchen; +using Content.Shared.Kitchen.Components; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Shared.Nutrition.Components; diff --git a/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs b/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs index 3057a75a4c..b4fdc5ed3c 100644 --- a/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs +++ b/Content.Shared/Kitchen/Components/KitchenSpikeComponent.cs @@ -1,40 +1,143 @@ +using Content.Shared.Damage; +using Content.Shared.FixedPoint; +using Content.Shared.Nutrition.Components; using Robust.Shared.Audio; +using Robust.Shared.Containers; using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Shared.Kitchen.Components; +/// +/// Used to mark entity that should act as a spike. +/// [RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState, AutoGenerateComponentPause] [Access(typeof(SharedKitchenSpikeSystem))] public sealed partial class KitchenSpikeComponent : Component { - [DataField("delay")] - public float SpikeDelay = 7.0f; + /// + /// Default sound to play when the victim is hooked or unhooked. + /// + private static readonly ProtoId DefaultSpike = new("Spike"); - [ViewVariables(VVAccess.ReadWrite)] - [DataField("sound")] - public SoundSpecifier SpikeSound = new SoundPathSpecifier("/Audio/Effects/Fluids/splat.ogg"); + /// + /// Default sound to play when the victim is butchered. + /// + private static readonly ProtoId DefaultSpikeButcher = new("SpikeButcher"); - public List? PrototypesToSpawn; + /// + /// ID of the container where the victim will be stored. + /// + [DataField, AutoNetworkedField] + public string ContainerId = "body"; - // TODO: Spiking alive mobs? (Replace with uid) (deal damage to their limbs on spiking, kill on first butcher attempt?) - public string MeatSource1p = "?"; - public string MeatSource0 = "?"; - public string Victim = "?"; + /// + /// Container where the victim will be stored. + /// + [ViewVariables] + public ContainerSlot BodyContainer = default!; - // Prevents simultaneous spiking of two bodies (could be replaced with CancellationToken, but I don't see any situation where Cancel could be called) - public bool InUse; + /// + /// Sound to play when the victim is hooked or unhooked. + /// + [DataField, AutoNetworkedField] + public SoundSpecifier SpikeSound = new SoundCollectionSpecifier(DefaultSpike); - [Serializable, NetSerializable] - public enum KitchenSpikeVisuals : byte + /// + /// Sound to play when the victim is butchered. + /// + [DataField, AutoNetworkedField] + public SoundSpecifier ButcherSound = new SoundCollectionSpecifier(DefaultSpikeButcher); + + /// + /// Damage that will be applied to the victim when they are hooked or unhooked. + /// + [DataField, AutoNetworkedField] + public DamageSpecifier SpikeDamage = new() { - Status - } + DamageDict = new Dictionary + { + { "Piercing", 10 }, + }, + }; - [Serializable, NetSerializable] - public enum KitchenSpikeStatus : byte + /// + /// Damage that will be applied to the victim when they are butchered. + /// + [DataField, AutoNetworkedField] + public DamageSpecifier ButcherDamage = new() { - Empty, - Bloody - } + DamageDict = new Dictionary + { + { "Slash", 20 }, + }, + }; + + /// + /// Damage that the victim will receive over time. + /// + [DataField, AutoNetworkedField] + public DamageSpecifier TimeDamage = new() + { + DamageDict = new Dictionary + { + { "Blunt", 1 }, // Mobs are only gibbed from blunt (at least for now). + }, + }; + + /// + /// The next time when the damage will be applied to the victim. + /// + [AutoPausedField, AutoNetworkedField] + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan NextDamage; + + /// + /// How often the damage should be applied to the victim. + /// + [DataField, AutoNetworkedField] + public TimeSpan DamageInterval = TimeSpan.FromSeconds(10); + + /// + /// Time that it will take to put the victim on the spike. + /// + [DataField, AutoNetworkedField] + public TimeSpan HookDelay = TimeSpan.FromSeconds(7); + + /// + /// Time that it will take to put the victim off the spike. + /// + [DataField, AutoNetworkedField] + public TimeSpan UnhookDelay = TimeSpan.FromSeconds(10); + + /// + /// Time that it will take to butcher the victim while they are alive. + /// + /// + /// This is summed up with a 's butcher delay in butcher DoAfter. + /// + [DataField, AutoNetworkedField] + public TimeSpan ButcherDelayAlive = TimeSpan.FromSeconds(8); + + /// + /// Value by which the butchering delay will be multiplied if the victim is dead. + /// + [DataField, AutoNetworkedField] + public float ButcherModifierDead = 0.5f; +} + +[Serializable, NetSerializable] +public enum KitchenSpikeVisuals : byte +{ + Status, +} + +[Serializable, NetSerializable] +public enum KitchenSpikeStatus : byte +{ + Empty, + Bloody, // TODO: Add sprites for different species. } diff --git a/Content.Shared/Kitchen/Components/KitchenSpikeHookedComponent.cs b/Content.Shared/Kitchen/Components/KitchenSpikeHookedComponent.cs new file mode 100644 index 0000000000..c255db986e --- /dev/null +++ b/Content.Shared/Kitchen/Components/KitchenSpikeHookedComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Kitchen.Components; + +/// +/// Used to mark entities that are currently hooked on the spike. +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedKitchenSpikeSystem))] +public sealed partial class KitchenSpikeHookedComponent : Component; diff --git a/Content.Shared/Kitchen/Components/KitchenSpikeVictimComponent.cs b/Content.Shared/Kitchen/Components/KitchenSpikeVictimComponent.cs new file mode 100644 index 0000000000..dc37592a87 --- /dev/null +++ b/Content.Shared/Kitchen/Components/KitchenSpikeVictimComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Kitchen.Components; + +/// +/// Used to mark entity that was butchered on the spike. +/// +[RegisterComponent, NetworkedComponent] +[Access(typeof(SharedKitchenSpikeSystem))] +public sealed partial class KitchenSpikeVictimComponent : Component; diff --git a/Content.Shared/Kitchen/Components/SharpComponent.cs b/Content.Shared/Kitchen/Components/SharpComponent.cs new file mode 100644 index 0000000000..3dd5e01af7 --- /dev/null +++ b/Content.Shared/Kitchen/Components/SharpComponent.cs @@ -0,0 +1,26 @@ +using Content.Shared.Nutrition.Components; +using Robust.Shared.GameStates; + +namespace Content.Shared.Kitchen.Components; + +/// +/// Applies to items that are capable of butchering entities, or +/// are otherwise sharp for some purpose. +/// +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState] +public sealed partial class SharpComponent : Component +{ + /// + /// List of the entities that are currently being butchered. + /// + // TODO just make this a tool type. Move SharpSystem to shared. + [AutoNetworkedField] + public readonly HashSet Butchering = []; + + /// + /// Affects butcher delay of the . + /// + [DataField, AutoNetworkedField] + public float ButcherDelayModifier = 1.0f; +} diff --git a/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs b/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs index 2f740f99ad..57b08569f5 100644 --- a/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs +++ b/Content.Shared/Kitchen/SharedKitchenSpikeSystem.cs @@ -1,38 +1,456 @@ +using Content.Shared.Administration.Logs; +using Content.Shared.Body.Systems; +using Content.Shared.Damage; +using Content.Shared.Database; +using Content.Shared.Destructible; using Content.Shared.DoAfter; using Content.Shared.DragDrop; +using Content.Shared.Examine; +using Content.Shared.Hands; +using Content.Shared.IdentityManagement; +using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; +using Content.Shared.Inventory.Events; +using Content.Shared.Item; using Content.Shared.Kitchen.Components; +using Content.Shared.Mobs.Systems; +using Content.Shared.Movement.Events; using Content.Shared.Nutrition.Components; +using Content.Shared.Popups; +using Content.Shared.Throwing; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Random; using Robust.Shared.Serialization; +using Robust.Shared.Timing; namespace Content.Shared.Kitchen; -public abstract class SharedKitchenSpikeSystem : EntitySystem +/// +/// Used to butcher some entities like monkeys. +/// +public sealed class SharedKitchenSpikeSystem : EntitySystem { + [Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!; + [Dependency] private readonly SharedContainerSystem _containerSystem = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly DamageableSystem _damageableSystem = default!; + [Dependency] private readonly ExamineSystemShared _examineSystem = default!; + [Dependency] private readonly MobStateSystem _mobStateSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; + [Dependency] private readonly ISharedAdminLogManager _logger = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly SharedBodySystem _bodySystem = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly IRobustRandom _random = default!; + public override void Initialize() { base.Initialize(); + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnInsertAttempt); + SubscribeLocalEvent(OnEntInsertedIntoContainer); + SubscribeLocalEvent(OnEntRemovedFromContainer); + SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnCanDrop); + SubscribeLocalEvent(OnDragDrop); + SubscribeLocalEvent(OnSpikeHookDoAfter); + SubscribeLocalEvent(OnSpikeUnhookDoAfter); + SubscribeLocalEvent(OnSpikeButcherDoAfter); + SubscribeLocalEvent(OnSpikeExamined); + SubscribeLocalEvent>(OnGetVerbs); + SubscribeLocalEvent(OnDestruction); + + SubscribeLocalEvent(OnVictimExamined); + + // Prevent the victim from doing anything while on the spike. + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); + SubscribeLocalEvent(OnAttempt); } - private void OnCanDrop(EntityUid uid, KitchenSpikeComponent component, ref CanDropTargetEvent args) + private void OnInit(Entity ent, ref ComponentInit args) { - if (args.Handled) + ent.Comp.BodyContainer = _containerSystem.EnsureContainer(ent, ent.Comp.ContainerId); + } + + private void OnInsertAttempt(Entity ent, ref ContainerIsInsertingAttemptEvent args) + { + if (args.Cancelled || TryComp(args.EntityUid, out var butcherable) && butcherable.Type == ButcheringType.Spike) + return; + + args.Cancel(); + } + + private void OnEntInsertedIntoContainer(Entity ent, ref EntInsertedIntoContainerMessage args) + { + EnsureComp(args.Entity); + _damageableSystem.TryChangeDamage(args.Entity, ent.Comp.SpikeDamage, true); + + // TODO: Add sprites for different species. + _appearanceSystem.SetData(ent.Owner, KitchenSpikeVisuals.Status, KitchenSpikeStatus.Bloody); + } + + private void OnEntRemovedFromContainer(Entity ent, ref EntRemovedFromContainerMessage args) + { + RemComp(args.Entity); + _damageableSystem.TryChangeDamage(args.Entity, ent.Comp.SpikeDamage, true); + + _appearanceSystem.SetData(ent.Owner, KitchenSpikeVisuals.Status, KitchenSpikeStatus.Empty); + } + + private void OnInteractHand(Entity ent, ref InteractHandEvent args) + { + var victim = ent.Comp.BodyContainer.ContainedEntity; + + if (args.Handled || !victim.HasValue) + return; + + _popupSystem.PopupClient(Loc.GetString("butcherable-need-knife", + ("target", Identity.Entity(victim.Value, EntityManager))), + ent, + args.User, + PopupType.Medium); + + args.Handled = true; + } + + private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) + { + var victim = ent.Comp.BodyContainer.ContainedEntity; + + if (args.Handled || !TryComp(victim, out var butcherable) || butcherable.SpawnedEntities.Count == 0) return; args.Handled = true; - if (!HasComp(args.Dragged)) + if (!TryComp(args.Used, out var sharp)) { - args.CanDrop = false; + _popupSystem.PopupClient(Loc.GetString("butcherable-need-knife", + ("target", Identity.Entity(victim.Value, EntityManager))), + ent, + args.User, + PopupType.Medium); + return; } - // TODO: Once we get silicons need to check organic - args.CanDrop = true; + var victimIdentity = Identity.Entity(victim.Value, EntityManager); + + _popupSystem.PopupPredicted(Loc.GetString("comp-kitchen-spike-begin-butcher-self", ("victim", victimIdentity)), + Loc.GetString("comp-kitchen-spike-begin-butcher", ("user", Identity.Entity(args.User, EntityManager)), ("victim", victimIdentity)), + ent, + args.User, + PopupType.MediumCaution); + + var delay = TimeSpan.FromSeconds(sharp.ButcherDelayModifier * butcherable.ButcherDelay); + + if (_mobStateSystem.IsAlive(victim.Value)) + delay += ent.Comp.ButcherDelayAlive; + else + delay *= ent.Comp.ButcherModifierDead; + + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, + args.User, + delay, + new SpikeButcherDoAfterEvent(), + ent, + target: victim, + used: args.Used) + { + BreakOnDamage = true, + BreakOnMove = true, + NeedHand = true, + }); + } + + private void OnCanDrop(Entity ent, ref CanDropTargetEvent args) + { + if (args.Handled) + return; + + args.CanDrop = _containerSystem.CanInsert(args.Dragged, ent.Comp.BodyContainer); + args.Handled = true; + } + + private void OnDragDrop(Entity ent, ref DragDropTargetEvent args) + { + if (args.Handled) + return; + + ShowPopups("comp-kitchen-spike-begin-hook-self", + "comp-kitchen-spike-begin-hook-self-other", + "comp-kitchen-spike-begin-hook-other-self", + "comp-kitchen-spike-begin-hook-other", + args.User, + args.Dragged, + ent); + + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, + args.User, + ent.Comp.HookDelay, + new SpikeHookDoAfterEvent(), + ent, + target: args.Dragged) + { + BreakOnDamage = true, + BreakOnMove = true, + NeedHand = true, + }); + + args.Handled = true; + } + + private void OnSpikeHookDoAfter(Entity ent, ref SpikeHookDoAfterEvent args) + { + if (args.Handled || args.Cancelled || !args.Target.HasValue) + return; + + if (_containerSystem.Insert(args.Target.Value, ent.Comp.BodyContainer)) + { + ShowPopups("comp-kitchen-spike-hook-self", + "comp-kitchen-spike-hook-self-other", + "comp-kitchen-spike-hook-other-self", + "comp-kitchen-spike-hook-other", + args.User, + args.Target.Value, + ent); + + _logger.Add(LogType.Action, + LogImpact.High, + $"{ToPrettyString(args.User):user} put {ToPrettyString(args.Target):target} on the {ToPrettyString(ent):spike}"); + + _audioSystem.PlayPredicted(ent.Comp.SpikeSound, ent, args.User); + } + + args.Handled = true; + } + + private void OnSpikeUnhookDoAfter(Entity ent, ref SpikeUnhookDoAfterEvent args) + { + if (args.Handled || args.Cancelled || !args.Target.HasValue) + return; + + if (_containerSystem.Remove(args.Target.Value, ent.Comp.BodyContainer)) + { + ShowPopups("comp-kitchen-spike-unhook-self", + "comp-kitchen-spike-unhook-self-other", + "comp-kitchen-spike-unhook-other-self", + "comp-kitchen-spike-unhook-other", + args.User, + args.Target.Value, + ent); + + _logger.Add(LogType.Action, + LogImpact.Medium, + $"{ToPrettyString(args.User):user} took {ToPrettyString(args.Target):target} off the {ToPrettyString(ent):spike}"); + + _audioSystem.PlayPredicted(ent.Comp.SpikeSound, ent, args.User); + } + + args.Handled = true; + } + + private void OnSpikeButcherDoAfter(Entity ent, ref SpikeButcherDoAfterEvent args) + { + if (args.Handled || args.Cancelled || !args.Target.HasValue || !args.Used.HasValue || !TryComp(args.Target, out var butcherable) ) + return; + + var victimIdentity = Identity.Entity(args.Target.Value, EntityManager); + + _popupSystem.PopupPredicted(Loc.GetString("comp-kitchen-spike-butcher-self", ("victim", victimIdentity)), + Loc.GetString("comp-kitchen-spike-butcher", ("user", Identity.Entity(args.User, EntityManager)), ("victim", victimIdentity)), + ent, + args.User, + PopupType.MediumCaution); + + // Get a random entry to spawn. + var index = _random.Next(butcherable.SpawnedEntities.Count); + var entry = butcherable.SpawnedEntities[index]; + + var uid = PredictedSpawnNextToOrDrop(entry.PrototypeId, ent); + _metaDataSystem.SetEntityName(uid, + Loc.GetString("comp-kitchen-spike-meat-name", + ("name", Name(uid)), + ("victim", args.Target))); + + // Decrease the amount since we spawned an entity from that entry. + entry.Amount--; + + // Remove the entry if its new amount is zero, or update it. + if (entry.Amount <= 0) + butcherable.SpawnedEntities.RemoveAt(index); + else + butcherable.SpawnedEntities[index] = entry; + + Dirty(args.Target.Value, butcherable); + + // Gib the victim if there is nothing else to butcher. + if (butcherable.SpawnedEntities.Count == 0) + { + _bodySystem.GibBody(args.Target.Value, true); + + _logger.Add(LogType.Gib, + LogImpact.Extreme, + $"{ToPrettyString(args.User):user} finished butchering {ToPrettyString(args.Target):target} on the {ToPrettyString(ent):spike}"); + } + else + { + EnsureComp(args.Target.Value); + + _damageableSystem.TryChangeDamage(args.Target, ent.Comp.ButcherDamage, true); + _logger.Add(LogType.Action, + LogImpact.Extreme, + $"{ToPrettyString(args.User):user} butchered {ToPrettyString(args.Target):target} on the {ToPrettyString(ent):spike}"); + } + + _audioSystem.PlayPredicted(ent.Comp.ButcherSound, ent, args.User); + + _popupSystem.PopupClient(Loc.GetString("butcherable-knife-butchered-success", + ("target", Identity.Entity(args.Target.Value, EntityManager)), + ("knife", args.Used.Value)), + ent, + args.User, + PopupType.Medium); + + args.Handled = true; + } + + private void OnSpikeExamined(Entity ent, ref ExaminedEvent args) + { + var victim = ent.Comp.BodyContainer.ContainedEntity; + + if (!victim.HasValue) + return; + + // Show it at the end of the examine so it looks good. + args.PushMarkup(Loc.GetString("comp-kitchen-spike-hooked", ("victim", Identity.Entity(victim.Value, EntityManager))), -1); + args.PushMessage(_examineSystem.GetExamineText(victim.Value, args.Examiner), -2); + } + + private void OnGetVerbs(Entity ent, ref GetVerbsEvent args) + { + var victim = ent.Comp.BodyContainer.ContainedEntity; + + if (!victim.HasValue || !_containerSystem.CanRemove(victim.Value, ent.Comp.BodyContainer)) + return; + + var user = args.User; + + args.Verbs.Add(new Verb() + { + Text = Loc.GetString("comp-kitchen-spike-unhook-verb"), + Act = () => TryUnhook(ent, user, victim.Value), + Impact = LogImpact.Medium, + }); + } + + private void OnDestruction(Entity ent, ref DestructionEventArgs args) + { + _containerSystem.EmptyContainer(ent.Comp.BodyContainer, destination: Transform(ent).Coordinates); + } + + private void OnVictimExamined(Entity ent, ref ExaminedEvent args) + { + args.PushMarkup(Loc.GetString("comp-kitchen-spike-victim-examine", ("target", Identity.Entity(ent, EntityManager)))); + } + + private static void OnAttempt(EntityUid uid, KitchenSpikeHookedComponent component, CancellableEntityEventArgs args) + { + args.Cancel(); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = AllEntityQuery(); + + while (query.MoveNext(out var uid, out var kitchenSpike)) + { + if (kitchenSpike.NextDamage > _gameTiming.CurTime) + continue; + + kitchenSpike.NextDamage += kitchenSpike.DamageInterval; + Dirty(uid, kitchenSpike); + + _damageableSystem.TryChangeDamage(kitchenSpike.BodyContainer.ContainedEntity, kitchenSpike.TimeDamage, true); + } + } + + /// + /// A helper method to show predicted popups that can be targeted towards yourself or somebody else. + /// + private void ShowPopups(string selfLocMessageSelf, + string selfLocMessageOthers, + string locMessageSelf, + string locMessageOthers, + EntityUid user, + EntityUid victim, + EntityUid hook) + { + string messageSelf, messageOthers; + + var victimIdentity = Identity.Entity(victim, EntityManager); + + if (user == victim) + { + messageSelf = Loc.GetString(selfLocMessageSelf, ("hook", hook)); + messageOthers = Loc.GetString(selfLocMessageOthers, ("victim", victimIdentity), ("hook", hook)); + } + else + { + messageSelf = Loc.GetString(locMessageSelf, ("victim", victimIdentity), ("hook", hook)); + messageOthers = Loc.GetString(locMessageOthers, + ("user", Identity.Entity(user, EntityManager)), + ("victim", victimIdentity), + ("hook", hook)); + } + + _popupSystem.PopupPredicted(messageSelf, messageOthers, hook, user, PopupType.MediumCaution); + } + + /// + /// Tries to unhook the victim. + /// + private void TryUnhook(Entity ent, EntityUid user, EntityUid target) + { + ShowPopups("comp-kitchen-spike-begin-unhook-self", + "comp-kitchen-spike-begin-unhook-self-other", + "comp-kitchen-spike-begin-unhook-other-self", + "comp-kitchen-spike-begin-unhook-other", + user, + target, + ent); + + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, + user, + ent.Comp.UnhookDelay, + new SpikeUnhookDoAfterEvent(), + ent, + target: target) + { + BreakOnDamage = user != target, + BreakOnMove = true, + }); } } [Serializable, NetSerializable] -public sealed partial class SpikeDoAfterEvent : SimpleDoAfterEvent -{ -} +public sealed partial class SpikeHookDoAfterEvent : SimpleDoAfterEvent; + +[Serializable, NetSerializable] +public sealed partial class SpikeUnhookDoAfterEvent : SimpleDoAfterEvent; + +[Serializable, NetSerializable] +public sealed partial class SpikeButcherDoAfterEvent : SimpleDoAfterEvent; diff --git a/Content.Shared/Nutrition/Components/ButcherableComponent.cs b/Content.Shared/Nutrition/Components/ButcherableComponent.cs index 4fce45422a..486026d259 100644 --- a/Content.Shared/Nutrition/Components/ButcherableComponent.cs +++ b/Content.Shared/Nutrition/Components/ButcherableComponent.cs @@ -1,34 +1,51 @@ +using Content.Shared.Kitchen; using Content.Shared.Storage; using Robust.Shared.GameStates; -namespace Content.Shared.Nutrition.Components +namespace Content.Shared.Nutrition.Components; + +/// +/// Indicates that the entity can be butchered. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ButcherableComponent : Component { /// - /// Indicates that the entity can be thrown on a kitchen spike for butchering. + /// List of the entities that this entity should spawn after being butchered. /// - [RegisterComponent, NetworkedComponent] - public sealed partial class ButcherableComponent : Component - { - [DataField("spawned", required: true)] - public List SpawnedEntities = new(); + /// + /// Note that spawns one item at a time and decreases the amount until it's zero and then removes the entry. + /// + [DataField("spawned", required: true), AutoNetworkedField] + public List SpawnedEntities = []; - [ViewVariables(VVAccess.ReadWrite), DataField("butcherDelay")] - public float ButcherDelay = 8.0f; + /// + /// Time required to butcher that entity. + /// + [DataField, AutoNetworkedField] + public float ButcherDelay = 8.0f; - [ViewVariables(VVAccess.ReadWrite), DataField("butcheringType")] - public ButcheringType Type = ButcheringType.Knife; - - /// - /// Prevents butchering same entity on two and more spikes simultaneously and multiple doAfters on the same Spike - /// - [ViewVariables] - public bool BeingButchered; - } - - public enum ButcheringType : byte - { - Knife, // e.g. goliaths - Spike, // e.g. monkeys - Gibber // e.g. humans. TODO - } + /// + /// Tool type used to butcher that entity. + /// + [DataField("butcheringType"), AutoNetworkedField] + public ButcheringType Type = ButcheringType.Knife; +} + +public enum ButcheringType : byte +{ + /// + /// E.g. goliaths. + /// + Knife, + + /// + /// E.g. monkeys. + /// + Spike, + + /// + /// E.g. humans. + /// + Gibber // TODO } diff --git a/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl b/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl index aaa1779f53..b620fdff8c 100644 --- a/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl +++ b/Resources/Locale/en-US/kitchen/components/kitchen-spike-component.ftl @@ -1,18 +1,37 @@ -comp-kitchen-spike-deny-collect = { CAPITALIZE(THE($this)) } already has something on it, finish collecting its meat first! -comp-kitchen-spike-deny-butcher = { CAPITALIZE(THE($victim)) } can't be butchered on { THE($this) }. -comp-kitchen-spike-deny-butcher-knife = { CAPITALIZE(THE($victim)) } can't be butchered on { THE($this) }, you need to butcher it using a knife. -comp-kitchen-spike-deny-not-dead = { CAPITALIZE(THE($victim)) } can't be butchered. { CAPITALIZE(SUBJECT($victim)) } { CONJUGATE-BE($victim) } not dead! +comp-kitchen-spike-begin-hook-self = You begin dragging yourself onto { THE($hook) }! +comp-kitchen-spike-begin-hook-self-other = { CAPITALIZE(THE($victim)) } begins dragging { REFLEXIVE($victim) } onto { THE($hook) }! -comp-kitchen-spike-begin-hook-victim = { CAPITALIZE(THE($user)) } begins dragging you onto { THE($this) }! -comp-kitchen-spike-begin-hook-self = You begin dragging yourself onto { THE($this) }! +comp-kitchen-spike-begin-hook-other-self = You begin dragging { CAPITALIZE(THE($victim)) } onto { THE($hook) }! +comp-kitchen-spike-begin-hook-other = { CAPITALIZE(THE($user)) } begins dragging { CAPITALIZE(THE($victim)) } onto { THE($hook) }!a -comp-kitchen-spike-kill = { CAPITALIZE(THE($user)) } has forced { THE($victim) } onto { THE($this) }, killing { OBJECT($victim) } instantly! +comp-kitchen-spike-hook-self = You threw yourself on { THE($hook) }! +comp-kitchen-spike-hook-self-other = { CAPITALIZE(THE($victim)) } threw { REFLEXIVE($victim) } on { THE($hook) }! -comp-kitchen-spike-suicide-other = { CAPITALIZE(THE($victim)) } threw { REFLEXIVE($victim) } on { THE($this) }! -comp-kitchen-spike-suicide-self = You throw yourself on { THE($this) }! +comp-kitchen-spike-hook-other-self = You threw { CAPITALIZE(THE($victim)) } on { THE($hook) }! +comp-kitchen-spike-hook-other = { CAPITALIZE(THE($user)) } threw { CAPITALIZE(THE($victim)) } on { THE($hook) }! -comp-kitchen-spike-knife-needed = You need a knife to do this. -comp-kitchen-spike-remove-meat = You remove some meat from { THE($victim) }. -comp-kitchen-spike-remove-meat-last = You remove the last piece of meat from { THE($victim) }! +comp-kitchen-spike-begin-unhook-self = You begin dragging yourself off { THE($hook) }! +comp-kitchen-spike-begin-unhook-self-other = { CAPITALIZE(THE($victim)) } begins dragging { REFLEXIVE($victim) } off { THE($hook) }! + +comp-kitchen-spike-begin-unhook-other-self = You begin dragging { CAPITALIZE(THE($victim)) } off { THE($hook) }! +comp-kitchen-spike-begin-unhook-other = { CAPITALIZE(THE($user)) } begins dragging { CAPITALIZE(THE($victim)) } off { THE($hook) }! + +comp-kitchen-spike-unhook-self = You got yourself off { THE($hook) }! +comp-kitchen-spike-unhook-self-other = { CAPITALIZE(THE($victim)) } got { REFLEXIVE($victim) } off { THE($hook) }! + +comp-kitchen-spike-unhook-other-self = You got { CAPITALIZE(THE($victim)) } off { THE($hook) }! +comp-kitchen-spike-unhook-other = { CAPITALIZE(THE($user)) } got { CAPITALIZE(THE($victim)) } off { THE($hook) }! + +comp-kitchen-spike-begin-butcher-self = You begin butchering { THE($victim) }! +comp-kitchen-spike-begin-butcher = { CAPITALIZE(THE($user)) } begins to butcher { THE($victim) }! + +comp-kitchen-spike-butcher-self = You butchered { THE($victim) }! +comp-kitchen-spike-butcher = { CAPITALIZE(THE($user)) } butchered { THE($victim) }! + +comp-kitchen-spike-unhook-verb = Unhook + +comp-kitchen-spike-hooked = [color=red]{ CAPITALIZE(THE($victim)) } is on this spike![/color] comp-kitchen-spike-meat-name = { $name } ({ $victim }) + +comp-kitchen-spike-victim-examine = [color=orange]{ CAPITALIZE(SUBJECT($target)) } looks quite lean.[/color] diff --git a/Resources/Prototypes/Entities/Structures/meat_spike.yml b/Resources/Prototypes/Entities/Structures/meat_spike.yml index 5825cec6ad..b8714d9d5e 100644 --- a/Resources/Prototypes/Entities/Structures/meat_spike.yml +++ b/Resources/Prototypes/Entities/Structures/meat_spike.yml @@ -50,7 +50,7 @@ enum.KitchenSpikeVisuals.Status: base: Empty: { state: spike } - Bloody: { state: spikebloody } + Bloody: { state: spikebloody } # TODO: Add sprites for different species. - type: Construction graph: MeatSpike node: MeatSpike @@ -58,3 +58,6 @@ guides: - Chef - FoodRecipes + - type: ContainerContainer + containers: + body: !type:ContainerSlot diff --git a/Resources/Prototypes/SoundCollections/kitchenspike.yml b/Resources/Prototypes/SoundCollections/kitchenspike.yml new file mode 100644 index 0000000000..e8d8dc79a6 --- /dev/null +++ b/Resources/Prototypes/SoundCollections/kitchenspike.yml @@ -0,0 +1,9 @@ +- type: soundCollection + id: Spike + files: + - /Audio/Effects/Fluids/splat.ogg + +- type: soundCollection + id: SpikeButcher + files: + - /Audio/Weapons/bladeslice.ogg From dcbbce52b6c8b64302cb8730fd53fb358f100bb4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 19 Aug 2025 17:57:44 +0000 Subject: [PATCH 072/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f50bcb8a21..db2f74d203 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: RedBookcase - changes: - - message: Various changes to edged weapons, including new storage sprites and new - storage options. - type: Add - id: 8356 - time: '2025-04-26T20:45:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36564 - author: archee1, Beck changes: - message: Inflatable walls no longer instantly deconstruct if canceled. @@ -3952,3 +3944,10 @@ id: 8868 time: '2025-08-18T20:42:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39735 +- author: Winkarst-cpu + changes: + - message: Meat spikes got an overhaul. + type: Tweak + id: 8869 + time: '2025-08-19T17:56:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38723 From 5cd9ba6016fb82bc7214fd9cb9e1a9014f5e44ca Mon Sep 17 00:00:00 2001 From: Samuka-C <47865393+Samuka-C@users.noreply.github.com> Date: Tue, 19 Aug 2025 15:28:52 -0300 Subject: [PATCH 073/194] Xenoborgs part 6 (#39595) --- Resources/Maps/Shuttles/mothership.yml | 2703 ++++++++++++++++++++++++ 1 file changed, 2703 insertions(+) create mode 100644 Resources/Maps/Shuttles/mothership.yml diff --git a/Resources/Maps/Shuttles/mothership.yml b/Resources/Maps/Shuttles/mothership.yml new file mode 100644 index 0000000000..b958c47401 --- /dev/null +++ b/Resources/Maps/Shuttles/mothership.yml @@ -0,0 +1,2703 @@ +meta: + format: 7 + category: Grid + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/14/2025 23:46:23 + entityCount: 435 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 1: Space + 3: FloorBlueCircuit + 4: FloorXenoborg + 2: Lattice + 0: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: mothership + - type: Transform + pos: -0.49999905,-0.4677186 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AwAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAwAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAADAAAAAAAAAAAAAAAAAAQAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#0000FFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 43: 4,0 + 50: 4,-4 + 51: -4,4 + 57: -4,-1 + - node: + color: '#0000FFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 44: -4,0 + 49: -4,-4 + 52: 4,4 + 58: 4,-1 + - node: + color: '#0000FFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 45: 4,0 + 48: 4,4 + 55: -4,1 + - node: + color: '#0000FFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 46: -4,0 + 47: -4,4 + 56: 4,1 + - node: + color: '#0000FFFF' + id: WarnLineGreyscaleE + decals: + 1: 4,3 + 2: 4,2 + 3: 4,1 + 4: 4,-1 + 5: 4,-2 + 6: 4,-3 + 8: -1,-4 + 9: -1,-5 + 10: -1,-7 + 11: -1,-8 + 12: -1,-9 + 13: -1,-10 + 14: -1,-11 + 53: -4,0 + - node: + color: '#0000FFFF' + id: WarnLineGreyscaleN + decals: + 15: 5,0 + 16: -5,0 + 17: -3,4 + 18: -2,4 + 19: -1,4 + 20: 0,4 + 21: 1,4 + 22: 2,4 + 23: 3,4 + - node: + color: '#0000FFFF' + id: WarnLineGreyscaleS + decals: + 26: 5,0 + 27: -5,0 + - node: + color: '#0000FFFF' + id: WarnLineGreyscaleW + decals: + 29: -4,3 + 30: -4,2 + 31: -4,1 + 32: -4,-1 + 33: -4,-2 + 34: -4,-3 + 36: 1,-4 + 37: 1,-5 + 38: 1,-7 + 39: 1,-8 + 40: 1,-9 + 41: 1,-10 + 42: 1,-11 + 54: 4,0 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockGlassShuttleXenoborgLocked + entities: + - uid: 107 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 +- proto: AirlockXenoborgLocked + entities: + - uid: 104 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: APCXenoborg + entities: + - uid: 148 + components: + - type: MetaData + name: west APC + - type: Transform + pos: -8.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 240 + components: + - type: MetaData + name: docking APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 424 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: BlastDoor + entities: + - uid: 253 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: BorgCharger + entities: + - uid: 347 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + - uid: 394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 261 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 +- proto: CableApcStack + entities: + - uid: 345 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableHV + entities: + - uid: 139 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 +- proto: CableHVStack + entities: + - uid: 343 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableMV + entities: + - uid: 149 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 +- proto: CableMVStack + entities: + - uid: 339 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableTerminal + entities: + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 +- proto: ComputerIFFSyndicate + entities: + - uid: 278 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 279 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 273 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: ComputerSurveillanceWirelessXenoborgCameraMonitor + entities: + - uid: 276 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: ComputerXenoborgsControl + entities: + - uid: 277 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 +- proto: CrateGenericSteel + entities: + - uid: 425 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 339 + - 341 + - 343 + - 342 + - 345 + - 344 + - 340 + - 346 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DisposalBend + entities: + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 +- proto: DisposalJunctionFlipped + entities: + - uid: 376 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 325 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 326 + components: + - type: MetaData + name: external launch unit + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 369 + components: + - type: MetaData + name: external launch unit + - type: Transform + pos: -3.5,-3.5 + parent: 1 +- proto: FloorDrain + entities: + - uid: 396 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 397 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 398 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 399 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: GeneratorBasic15kW + entities: + - uid: 133 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 132 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 +- proto: Grille + entities: + - uid: 212 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 +- proto: MachineArtifactCrusher + entities: + - uid: 372 + components: + - type: MetaData + name: body crusher + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 373 + components: + - type: MetaData + name: body crusher + - type: Transform + pos: 2.5,-4.5 + parent: 1 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 252 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: PoweredlightBlue + entities: + - uid: 127 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 +- proto: Recycler + entities: + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 +- proto: SheetGlass + entities: + - uid: 341 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasteel + entities: + - uid: 342 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlastic + entities: + - uid: 344 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetSteel + entities: + - uid: 340 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 346 + components: + - type: Transform + parent: 425 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SignDoors + entities: + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignEngine + entities: + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SignSpace + entities: + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: SMESAdvanced + entities: + - uid: 129 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 135 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 +- proto: SurveillanceCameraGeneral + entities: + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: front + - uid: 271 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: docking + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: core + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: starboard + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: port + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: engineering + - uid: 435 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: stern +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 327 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 +- proto: SurveillanceCameraWirelessRouterXenoborg + entities: + - uid: 395 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 +- proto: Thruster + entities: + - uid: 111 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,1.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 5 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 251: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 250: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 249: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 248: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 247: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 246: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 245: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 244: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 243: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + - uid: 328 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 253: + - - Left + - Open + - - Right + - Open + - - Middle + - Close + - uid: 415 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 370: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off +- proto: WallXenoborg + entities: + - uid: 2 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 +- proto: WallXenoborgDiagonal + entities: + - uid: 88 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 +- proto: XenoborgWindow + entities: + - uid: 3 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +... From 9de76e70c71097241b3b2a2720eef0c1d34aba89 Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Tue, 19 Aug 2025 11:35:09 -0700 Subject: [PATCH 074/194] EVENT BASED WEIGHTLESSNESS (#37971) * Init Commit * Typos * Commit 2 * Save Interaction Test Mob from failing * ssss * Confident I've gotten all the correct prototypes * Whoops forgot to edit those * aaaaa * Better solution * Test fail fixes * Yaml fix * THE FINAL TEST FIX * Final fix(?) * whoops * Added a WeightlessnessChangedEvent * Check out this diff * Wait I'm dumb * Final optimization and don't duplicate code * Death to IsWeightless * File scoped namespaces * REVIEW * Fix test fails * FIX TEST FAILS REAL * A * Commit of doom * borgar * We don't need to specify on map init apparently * Fuck it * LOAD BEARING COMMENT --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- .../Tests/Doors/AirlockTest.cs | 1 + .../Tests/Gravity/WeightlessStatusTests.cs | 1 + .../Tests/GravityGridTest.cs | 6 +- .../Tests/Interaction/InteractionTest.cs | 1 + .../Systems/AdminVerbSystem.Smites.cs | 6 + .../Fluids/EntitySystems/SpraySystem.cs | 2 +- Content.Server/Gravity/GravitySystem.cs | 4 +- .../AntiGravityClothingSystem.cs | 13 + Content.Shared/Clothing/MagbootsComponent.cs | 7 +- Content.Shared/Clothing/MagbootsSystem.cs | 10 +- .../DoAfter/SharedDoAfterSystem.Update.cs | 5 +- .../Friction/TileFrictionController.cs | 2 +- .../Gravity/FloatingVisualsComponent.cs | 7 +- .../Gravity/GravityAffectedComponent.cs | 17 + Content.Shared/Gravity/GravityComponent.cs | 22 +- .../Gravity/SharedFloatingVisualizerSystem.cs | 53 +-- Content.Shared/Gravity/SharedGravitySystem.cs | 367 +++++++++++------- .../MovementIgnoreGravityComponent.cs | 23 +- .../Systems/FrictionContactsSystem.cs | 2 +- .../Systems/MovementIgnoreGravitySystem.cs | 24 +- .../Movement/Systems/SharedMoverController.cs | 6 +- .../Systems/SpeedModifierContactsSystem.cs | 2 +- .../Controllers/SharedConveyorController.cs | 2 +- .../StepTrigger/Systems/StepTriggerSystem.cs | 2 +- Content.Shared/Throwing/ThrowingSystem.cs | 2 +- .../Weapons/Ranged/Systems/SharedGunSystem.cs | 2 +- Resources/Prototypes/Entities/Mobs/base.yml | 1 + .../Entities/Objects/Fun/immovable_rod.yml | 4 +- .../Entities/Objects/Specific/Mech/mechs.yml | 1 + .../Prototypes/Entities/Objects/base_item.yml | 1 + .../Entities/Structures/base_structure.yml | 1 + 31 files changed, 329 insertions(+), 268 deletions(-) create mode 100644 Content.Shared/Gravity/GravityAffectedComponent.cs diff --git a/Content.IntegrationTests/Tests/Doors/AirlockTest.cs b/Content.IntegrationTests/Tests/Doors/AirlockTest.cs index e47c73611a..69fe66039b 100644 --- a/Content.IntegrationTests/Tests/Doors/AirlockTest.cs +++ b/Content.IntegrationTests/Tests/Doors/AirlockTest.cs @@ -21,6 +21,7 @@ namespace Content.IntegrationTests.Tests.Doors components: - type: Physics bodyType: Dynamic + - type: GravityAffected - type: Fixtures fixtures: fix1: diff --git a/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs b/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs index 6aa2763888..0951e7e260 100644 --- a/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs +++ b/Content.IntegrationTests/Tests/Gravity/WeightlessStatusTests.cs @@ -19,6 +19,7 @@ namespace Content.IntegrationTests.Tests.Gravity - type: Alerts - type: Physics bodyType: Dynamic + - type: GravityAffected - type: entity name: WeightlessGravityGeneratorDummy diff --git a/Content.IntegrationTests/Tests/GravityGridTest.cs b/Content.IntegrationTests/Tests/GravityGridTest.cs index b32d6c2b8d..8257035de6 100644 --- a/Content.IntegrationTests/Tests/GravityGridTest.cs +++ b/Content.IntegrationTests/Tests/GravityGridTest.cs @@ -76,8 +76,8 @@ namespace Content.IntegrationTests.Tests Assert.Multiple(() => { Assert.That(generatorComponent.GravityActive, Is.True); - Assert.That(!entityMan.GetComponent(grid1).EnabledVV); - Assert.That(entityMan.GetComponent(grid2).EnabledVV); + Assert.That(!entityMan.GetComponent(grid1).Enabled); + Assert.That(entityMan.GetComponent(grid2).Enabled); }); // Re-enable needs power so it turns off again. @@ -94,7 +94,7 @@ namespace Content.IntegrationTests.Tests Assert.Multiple(() => { Assert.That(generatorComponent.GravityActive, Is.False); - Assert.That(entityMan.GetComponent(grid2).EnabledVV, Is.False); + Assert.That(entityMan.GetComponent(grid2).Enabled, Is.False); }); }); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index 79756ea5b4..0ed42d3476 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -144,6 +144,7 @@ public abstract partial class InteractionTest - type: Stripping - type: Puller - type: Physics + - type: GravityAffected - type: Tag tags: - CanPilot diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index 1bc4b65999..3703c8c1ac 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -29,6 +29,7 @@ using Content.Shared.Damage; using Content.Shared.Damage.Systems; using Content.Shared.Database; using Content.Shared.Electrocution; +using Content.Shared.Gravity; using Content.Shared.Interaction.Components; using Content.Shared.Inventory; using Content.Shared.Mobs; @@ -675,6 +676,11 @@ public sealed partial class AdminVerbSystem grav.Weightless = true; Dirty(args.Target, grav); + + EnsureComp(args.Target, out var weightless); + weightless.Weightless = true; + + Dirty(args.Target, weightless); }, Impact = LogImpact.Extreme, Message = string.Join(": ", noGravityName, Loc.GetString("admin-smite-remove-gravity-description")) diff --git a/Content.Server/Fluids/EntitySystems/SpraySystem.cs b/Content.Server/Fluids/EntitySystems/SpraySystem.cs index d8da0cde3d..2a6b0644be 100644 --- a/Content.Server/Fluids/EntitySystems/SpraySystem.cs +++ b/Content.Server/Fluids/EntitySystems/SpraySystem.cs @@ -166,7 +166,7 @@ public sealed class SpraySystem : EntitySystem if (TryComp(user, out var body)) { - if (_gravity.IsWeightless(user, body)) + if (_gravity.IsWeightless(user)) { // push back the player _physics.ApplyLinearImpulse(user, -impulseDirection * entity.Comp.PushbackAmount, body: body); diff --git a/Content.Server/Gravity/GravitySystem.cs b/Content.Server/Gravity/GravitySystem.cs index 6807b9df4a..7958071a31 100644 --- a/Content.Server/Gravity/GravitySystem.cs +++ b/Content.Server/Gravity/GravitySystem.cs @@ -18,7 +18,7 @@ namespace Content.Server.Gravity /// public void RefreshGravity(EntityUid uid, GravityComponent? gravity = null) { - if (!Resolve(uid, ref gravity)) + if (!GravityQuery.Resolve(uid, ref gravity)) return; if (gravity.Inherent) @@ -61,7 +61,7 @@ namespace Content.Server.Gravity /// public void EnableGravity(EntityUid uid, GravityComponent? gravity = null) { - if (!Resolve(uid, ref gravity)) + if (!GravityQuery.Resolve(uid, ref gravity)) return; if (gravity.Enabled || gravity.Inherent) diff --git a/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs index c5b2ee3dfc..636a21533e 100644 --- a/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs @@ -6,10 +6,13 @@ namespace Content.Shared.Clothing.EntitySystems; public sealed class AntiGravityClothingSystem : EntitySystem { + [Dependency] SharedGravitySystem _gravity = default!; /// public override void Initialize() { SubscribeLocalEvent>(OnIsWeightless); + SubscribeLocalEvent(OnEquipped); + SubscribeLocalEvent(OnUnequipped); } private void OnIsWeightless(Entity ent, ref InventoryRelayedEvent args) @@ -20,4 +23,14 @@ public sealed class AntiGravityClothingSystem : EntitySystem args.Args.Handled = true; args.Args.IsWeightless = true; } + + private void OnEquipped(Entity entity, ref ClothingGotEquippedEvent args) + { + _gravity.RefreshWeightless(args.Wearer, true); + } + + private void OnUnequipped(Entity entity, ref ClothingGotUnequippedEvent args) + { + _gravity.RefreshWeightless(args.Wearer, false); + } } diff --git a/Content.Shared/Clothing/MagbootsComponent.cs b/Content.Shared/Clothing/MagbootsComponent.cs index 4bef74fd33..c0a8b40866 100644 --- a/Content.Shared/Clothing/MagbootsComponent.cs +++ b/Content.Shared/Clothing/MagbootsComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Alert; +using Content.Shared.Inventory; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -16,10 +17,4 @@ public sealed partial class MagbootsComponent : Component /// [DataField] public bool RequiresGrid = true; - - /// - /// Slot the clothing has to be worn in to work. - /// - [DataField] - public string Slot = "shoes"; } diff --git a/Content.Shared/Clothing/MagbootsSystem.cs b/Content.Shared/Clothing/MagbootsSystem.cs index fd5a2cc336..58bc2f0796 100644 --- a/Content.Shared/Clothing/MagbootsSystem.cs +++ b/Content.Shared/Clothing/MagbootsSystem.cs @@ -32,14 +32,8 @@ public sealed class SharedMagbootsSystem : EntitySystem private void OnToggled(Entity ent, ref ItemToggledEvent args) { - var (uid, comp) = ent; - // only stick to the floor if being worn in the correct slot - if (_container.TryGetContainingContainer((uid, null, null), out var container) && - _inventory.TryGetSlotEntity(container.Owner, comp.Slot, out var worn) - && uid == worn) - { + if (_container.TryGetContainingContainer((ent.Owner, null, null), out var container)) UpdateMagbootEffects(container.Owner, ent, args.Activated); - } } private void OnGotUnequipped(Entity ent, ref ClothingGotUnequippedEvent args) @@ -58,6 +52,8 @@ public sealed class SharedMagbootsSystem : EntitySystem if (TryComp(user, out var moved)) moved.Enabled = !state; + _gravity.RefreshWeightless(user, !state); + if (state) _alerts.ShowAlert(user, ent.Comp.MagbootsAlert); else diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs index 31ff034809..c70c7ab61e 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.Update.cs @@ -164,12 +164,11 @@ public abstract partial class SharedDoAfterSystem : EntitySystem if (args.Target is { } target && !xformQuery.TryGetComponent(target, out targetXform)) return true; - TransformComponent? usedXform = null; - if (args.Used is { } @using && !xformQuery.TryGetComponent(@using, out usedXform)) + if (args.Used is { } @using && !xformQuery.HasComp(@using)) return true; // TODO: Re-use existing xform query for these calculations. - if (args.BreakOnMove && !(!args.BreakOnWeightlessMove && _gravity.IsWeightless(args.User, xform: userXform))) + if (args.BreakOnMove && !(!args.BreakOnWeightlessMove && _gravity.IsWeightless(args.User))) { // Whether the user has moved too much from their original position. if (!_transform.InRange(userXform.Coordinates, doAfter.UserPosition, args.MovementThreshold)) diff --git a/Content.Shared/Friction/TileFrictionController.cs b/Content.Shared/Friction/TileFrictionController.cs index 36e971862a..4b29b9a9de 100644 --- a/Content.Shared/Friction/TileFrictionController.cs +++ b/Content.Shared/Friction/TileFrictionController.cs @@ -73,7 +73,7 @@ namespace Content.Shared.Friction // If we're not touching the ground, don't use tileFriction. // TODO: Make IsWeightless event-based; we already have grid traversals tracked so just raise events - if (body.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(uid, body, xform) || !xform.Coordinates.IsValid(EntityManager)) + if (body.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(uid) || !xform.Coordinates.IsValid(EntityManager)) friction = xform.GridUid == null || !_gridQuery.HasComp(xform.GridUid) ? _offGridDamping : _airDamping; else friction = _frictionModifier * GetTileFriction(uid, body, xform); diff --git a/Content.Shared/Gravity/FloatingVisualsComponent.cs b/Content.Shared/Gravity/FloatingVisualsComponent.cs index 67650baecd..c0064ebf78 100644 --- a/Content.Shared/Gravity/FloatingVisualsComponent.cs +++ b/Content.Shared/Gravity/FloatingVisualsComponent.cs @@ -10,20 +10,17 @@ public sealed partial class FloatingVisualsComponent : Component /// /// How long it takes to go from the bottom of the animation to the top. /// - [ViewVariables(VVAccess.ReadWrite)] [DataField, AutoNetworkedField] public float AnimationTime = 2f; /// /// How far it goes in any direction. /// - [ViewVariables(VVAccess.ReadWrite)] [DataField, AutoNetworkedField] public Vector2 Offset = new(0, 0.2f); - [ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] - public bool CanFloat = false; + [DataField, AutoNetworkedField] + public bool CanFloat; public readonly string AnimationKey = "gravity"; } diff --git a/Content.Shared/Gravity/GravityAffectedComponent.cs b/Content.Shared/Gravity/GravityAffectedComponent.cs new file mode 100644 index 0000000000..2da7458b07 --- /dev/null +++ b/Content.Shared/Gravity/GravityAffectedComponent.cs @@ -0,0 +1,17 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Gravity; + +/// +/// This Component allows a target to be considered "weightless" when Weightless is true. Without this component, the +/// target will never be weightless. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class GravityAffectedComponent : Component +{ + /// + /// If true, this entity will be considered "weightless" + /// + [DataField, AutoNetworkedField] + public bool Weightless = true; +} diff --git a/Content.Shared/Gravity/GravityComponent.cs b/Content.Shared/Gravity/GravityComponent.cs index bbe3de69ea..ede8f74c7a 100644 --- a/Content.Shared/Gravity/GravityComponent.cs +++ b/Content.Shared/Gravity/GravityComponent.cs @@ -5,34 +5,20 @@ using Robust.Shared.Serialization; namespace Content.Shared.Gravity { [RegisterComponent] + [AutoGenerateComponentState] [NetworkedComponent] public sealed partial class GravityComponent : Component { - [DataField("gravityShakeSound")] + [DataField, AutoNetworkedField] public SoundSpecifier GravityShakeSound { get; set; } = new SoundPathSpecifier("/Audio/Effects/alert.ogg"); - [ViewVariables(VVAccess.ReadWrite)] - public bool EnabledVV - { - get => Enabled; - set - { - if (Enabled == value) return; - Enabled = value; - var ev = new GravityChangedEvent(Owner, value); - IoCManager.Resolve().EventBus.RaiseLocalEvent(Owner, ref ev); - Dirty(); - } - } - - [DataField("enabled")] + [DataField, AutoNetworkedField] public bool Enabled; /// /// Inherent gravity ensures GravitySystem won't change Enabled according to the gravity generators attached to this entity. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("inherent")] + [DataField, AutoNetworkedField] public bool Inherent; } } diff --git a/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs b/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs index 6ca974f2ed..ae5c73b498 100644 --- a/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs +++ b/Content.Shared/Gravity/SharedFloatingVisualizerSystem.cs @@ -8,15 +8,14 @@ namespace Content.Shared.Gravity; /// public abstract class SharedFloatingVisualizerSystem : EntitySystem { - [Dependency] private readonly SharedGravitySystem GravitySystem = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnComponentStartup); - SubscribeLocalEvent(OnGravityChanged); - SubscribeLocalEvent(OnEntParentChanged); + SubscribeLocalEvent(OnWeightlessnessChanged); } /// @@ -24,48 +23,28 @@ public abstract class SharedFloatingVisualizerSystem : EntitySystem /// public virtual void FloatAnimation(EntityUid uid, Vector2 offset, string animationKey, float animationTime, bool stop = false) { } - protected bool CanFloat(EntityUid uid, FloatingVisualsComponent component, TransformComponent? transform = null) + protected bool CanFloat(Entity entity) { - if (!Resolve(uid, ref transform)) - return false; - - if (transform.MapID == MapId.Nullspace) - return false; - - component.CanFloat = GravitySystem.IsWeightless(uid, xform: transform); - Dirty(uid, component); - return component.CanFloat; + entity.Comp.CanFloat = _gravity.IsWeightless(entity.Owner); + Dirty(entity); + return entity.Comp.CanFloat; } - private void OnComponentStartup(EntityUid uid, FloatingVisualsComponent component, ComponentStartup args) + private void OnComponentStartup(Entity entity, ref ComponentStartup args) { - if (CanFloat(uid, component)) - FloatAnimation(uid, component.Offset, component.AnimationKey, component.AnimationTime); + if (CanFloat(entity)) + FloatAnimation(entity, entity.Comp.Offset, entity.Comp.AnimationKey, entity.Comp.AnimationTime); } - private void OnGravityChanged(ref GravityChangedEvent args) + private void OnWeightlessnessChanged(Entity entity, ref WeightlessnessChangedEvent args) { - var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var floating, out var transform)) - { - if (transform.MapID == MapId.Nullspace) - continue; + if (entity.Comp.CanFloat == args.Weightless) + return; - if (transform.GridUid != args.ChangedGridIndex) - continue; + entity.Comp.CanFloat = CanFloat(entity); + Dirty(entity); - floating.CanFloat = !args.HasGravity; - Dirty(uid, floating); - - if (!args.HasGravity) - FloatAnimation(uid, floating.Offset, floating.AnimationKey, floating.AnimationTime); - } - } - - private void OnEntParentChanged(EntityUid uid, FloatingVisualsComponent component, ref EntParentChangedMessage args) - { - var transform = args.Transform; - if (CanFloat(uid, component, transform)) - FloatAnimation(uid, component.Offset, component.AnimationKey, component.AnimationTime); + if (args.Weightless) + FloatAnimation(entity, entity.Comp.Offset, entity.Comp.AnimationKey, entity.Comp.AnimationTime); } } diff --git a/Content.Shared/Gravity/SharedGravitySystem.cs b/Content.Shared/Gravity/SharedGravitySystem.cs index e20771d603..b54f9b21c8 100644 --- a/Content.Shared/Gravity/SharedGravitySystem.cs +++ b/Content.Shared/Gravity/SharedGravitySystem.cs @@ -1,171 +1,254 @@ using Content.Shared.Alert; using Content.Shared.Inventory; -using Content.Shared.Movement.Components; -using Robust.Shared.GameStates; +using Content.Shared.Throwing; +using Content.Shared.Weapons.Ranged.Systems; +using Robust.Shared.Map; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Events; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Timing; -namespace Content.Shared.Gravity +namespace Content.Shared.Gravity; + +public abstract partial class SharedGravitySystem : EntitySystem { - public abstract partial class SharedGravitySystem : EntitySystem + [Dependency] protected readonly IGameTiming Timing = default!; + [Dependency] private readonly AlertsSystem _alerts = default!; + + public static readonly ProtoId WeightlessAlert = "Weightless"; + + protected EntityQuery GravityQuery; + private EntityQuery _weightlessQuery; + private EntityQuery _physicsQuery; + + public override void Initialize() { - [Dependency] protected readonly IGameTiming Timing = default!; - [Dependency] private readonly AlertsSystem _alerts = default!; + base.Initialize(); + // Grid Gravity + SubscribeLocalEvent(OnGridInit); + SubscribeLocalEvent(OnGravityChange); - public static readonly ProtoId WeightlessAlert = "Weightless"; + // Weightlessness + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnEntParentChanged); + SubscribeLocalEvent(OnBodyTypeChanged); - private EntityQuery _gravityQuery; + // Alerts + SubscribeLocalEvent(OnAlertsSync); + SubscribeLocalEvent(OnWeightlessnessChanged); + SubscribeLocalEvent(OnAlertsParentChange); - public bool IsWeightless(EntityUid uid, PhysicsComponent? body = null, TransformComponent? xform = null) - { - Resolve(uid, ref body, false); + // Impulse + SubscribeLocalEvent(OnShooterImpulse); + SubscribeLocalEvent(OnThrowerImpulse); - if ((body?.BodyType & (BodyType.Static | BodyType.Kinematic)) != 0) - return false; + GravityQuery = GetEntityQuery(); + _weightlessQuery = GetEntityQuery(); + _physicsQuery = GetEntityQuery(); + } - if (TryComp(uid, out var ignoreGravityComponent)) - return ignoreGravityComponent.Weightless; + public override void Update(float frameTime) + { + base.Update(frameTime); + UpdateShake(); + } - var ev = new IsWeightlessEvent(uid); - RaiseLocalEvent(uid, ref ev); - if (ev.Handled) - return ev.IsWeightless; + public bool IsWeightless(Entity entity) + { + // If we can be weightless and are weightless, return true, otherwise return false + return _weightlessQuery.Resolve(entity, ref entity.Comp, false) && entity.Comp.Weightless; + } - if (!Resolve(uid, ref xform)) - return true; + private bool GetWeightless(Entity entity) + { + if (!_physicsQuery.Resolve(entity, ref entity.Comp2, false)) + return false; - // If grid / map has gravity - if (EntityGridOrMapHaveGravity((uid, xform))) - return false; + if (entity.Comp2.BodyType is BodyType.Static or BodyType.Kinematic) + return false; + // Check if something other than the grid or map is overriding our gravity + var ev = new IsWeightlessEvent(); + RaiseLocalEvent(entity, ref ev); + if (ev.Handled) + return ev.IsWeightless; + + return !EntityGridOrMapHaveGravity(entity.Owner); + } + + /// + /// Refreshes weightlessness status, needs to be called anytime it would change. + /// + /// The entity we are updating the weightless status of + public void RefreshWeightless(Entity entity) + { + if (!_weightlessQuery.Resolve(entity, ref entity.Comp)) + return; + + UpdateWeightless(entity!); + } + + /// + /// Overload of which also takes a bool for the weightlessness value we want to change to. + /// This method is LOAD BEARING for UninitializedSaveTest. DO NOT REMOVE IT. + /// + /// The entity we are updating the weightless status of + /// The weightless value we are trying to change to, helps avoid needless networking + public void RefreshWeightless(Entity entity, bool weightless) + { + if (!_weightlessQuery.Resolve(entity, ref entity.Comp)) + return; + + // Only update if we're changing our weightless status + if (entity.Comp.Weightless == weightless) + return; + + UpdateWeightless(entity!); + } + + private void UpdateWeightless(Entity entity) + { + var newWeightless = GetWeightless(entity); + + // Don't network or raise events if it's not changing + if (newWeightless == entity.Comp.Weightless) + return; + + entity.Comp.Weightless = newWeightless; + Dirty(entity); + + var ev = new WeightlessnessChangedEvent(entity.Comp.Weightless); + RaiseLocalEvent(entity, ref ev); + } + + private void OnMapInit(Entity entity, ref MapInitEvent args) + { + RefreshWeightless((entity.Owner, entity.Comp)); + } + + private void OnWeightlessnessChanged(Entity entity, ref WeightlessnessChangedEvent args) + { + if (args.Weightless) + _alerts.ShowAlert(entity, WeightlessAlert); + else + _alerts.ClearAlert(entity, WeightlessAlert); + } + + private void OnEntParentChanged(Entity entity, ref EntParentChangedMessage args) + { + // If we've moved but are still on the same grid, then don't do anything. + if (args.OldParent == args.Transform.GridUid) + return; + + RefreshWeightless((entity.Owner, entity.Comp), !EntityGridOrMapHaveGravity((entity, args.Transform))); + } + + private void OnBodyTypeChanged(Entity entity, ref PhysicsBodyTypeChangedEvent args) + { + // No need to update weightlessness if we're not weightless and we're a body type that can't be weightless + if (args.New is BodyType.Static or BodyType.Kinematic && entity.Comp.Weightless == false) + return; + + RefreshWeightless((entity.Owner, entity.Comp)); + } + + /// + /// Checks if a given entity is currently standing on a grid or map that supports having gravity at all. + /// + public bool EntityOnGravitySupportingGridOrMap(Entity entity) + { + entity.Comp ??= Transform(entity); + + return GravityQuery.HasComp(entity.Comp.GridUid) || + GravityQuery.HasComp(entity.Comp.MapUid); + } + + /// + /// Checks if a given entity is currently standing on a grid or map that has gravity of some kind. + /// + public bool EntityGridOrMapHaveGravity(Entity entity) + { + entity.Comp ??= Transform(entity); + + // DO NOT SET TO WEIGHTLESS IF THEY'RE IN NULL-SPACE + // TODO: If entities actually properly pause when leaving PVS rather than entering null-space this can probably go. + if (entity.Comp.MapID == MapId.Nullspace) return true; - } - /// - /// Checks if a given entity is currently standing on a grid or map that supports having gravity at all. - /// - public bool EntityOnGravitySupportingGridOrMap(Entity entity) + return GravityQuery.TryComp(entity.Comp.GridUid, out var gravity) && gravity.Enabled || + GravityQuery.TryComp(entity.Comp.MapUid, out var mapGravity) && mapGravity.Enabled; + } + + private void OnGravityChange(ref GravityChangedEvent args) + { + var gravity = AllEntityQuery(); + while(gravity.MoveNext(out var uid, out var weightless, out var xform)) { - entity.Comp ??= Transform(entity); + if (xform.GridUid != args.ChangedGridIndex) + continue; - return _gravityQuery.HasComp(entity.Comp.GridUid) || - _gravityQuery.HasComp(entity.Comp.MapUid); - } - - - /// - /// Checks if a given entity is currently standing on a grid or map that has gravity of some kind. - /// - public bool EntityGridOrMapHaveGravity(Entity entity) - { - entity.Comp ??= Transform(entity); - - return _gravityQuery.TryComp(entity.Comp.GridUid, out var gravity) && gravity.Enabled || - _gravityQuery.TryComp(entity.Comp.MapUid, out var mapGravity) && mapGravity.Enabled; - } - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnGridInit); - SubscribeLocalEvent(OnAlertsSync); - SubscribeLocalEvent(OnAlertsParentChange); - SubscribeLocalEvent(OnGravityChange); - SubscribeLocalEvent(OnGetState); - SubscribeLocalEvent(OnHandleState); - - _gravityQuery = GetEntityQuery(); - } - - public override void Update(float frameTime) - { - base.Update(frameTime); - UpdateShake(); - } - - private void OnHandleState(EntityUid uid, GravityComponent component, ref ComponentHandleState args) - { - if (args.Current is not GravityComponentState state) - return; - - if (component.EnabledVV == state.Enabled) - return; - component.EnabledVV = state.Enabled; - var ev = new GravityChangedEvent(uid, component.EnabledVV); - RaiseLocalEvent(uid, ref ev, true); - } - - private void OnGetState(EntityUid uid, GravityComponent component, ref ComponentGetState args) - { - args.State = new GravityComponentState(component.EnabledVV); - } - - private void OnGravityChange(ref GravityChangedEvent ev) - { - var alerts = AllEntityQuery(); - while(alerts.MoveNext(out var uid, out _, out var xform)) - { - if (xform.GridUid != ev.ChangedGridIndex) - continue; - - if (!ev.HasGravity) - { - _alerts.ShowAlert(uid, WeightlessAlert); - } - else - { - _alerts.ClearAlert(uid, WeightlessAlert); - } - } - } - - private void OnAlertsSync(AlertSyncEvent ev) - { - if (IsWeightless(ev.Euid)) - { - _alerts.ShowAlert(ev.Euid, WeightlessAlert); - } - else - { - _alerts.ClearAlert(ev.Euid, WeightlessAlert); - } - } - - private void OnAlertsParentChange(EntityUid uid, AlertsComponent component, ref EntParentChangedMessage args) - { - if (IsWeightless(uid)) - { - _alerts.ShowAlert(uid, WeightlessAlert); - } - else - { - _alerts.ClearAlert(uid, WeightlessAlert); - } - } - - private void OnGridInit(GridInitializeEvent ev) - { - EnsureComp(ev.EntityUid); - } - - [Serializable, NetSerializable] - private sealed class GravityComponentState : ComponentState - { - public bool Enabled { get; } - - public GravityComponentState(bool enabled) - { - Enabled = enabled; - } + RefreshWeightless((uid, weightless), !args.HasGravity); } } - [ByRefEvent] - public record struct IsWeightlessEvent(EntityUid Entity, bool IsWeightless = false, bool Handled = false) : IInventoryRelayEvent + private void OnAlertsSync(AlertSyncEvent ev) { - SlotFlags IInventoryRelayEvent.TargetSlots => ~SlotFlags.POCKET; + if (IsWeightless(ev.Euid)) + _alerts.ShowAlert(ev.Euid, WeightlessAlert); + else + _alerts.ClearAlert(ev.Euid, WeightlessAlert); + } + + private void OnAlertsParentChange(EntityUid uid, AlertsComponent component, ref EntParentChangedMessage args) + { + if (IsWeightless(uid)) + _alerts.ShowAlert(uid, WeightlessAlert); + else + _alerts.ClearAlert(uid, WeightlessAlert); + } + + private void OnGridInit(GridInitializeEvent ev) + { + EnsureComp(ev.EntityUid); + } + + [Serializable, NetSerializable] + private sealed class GravityComponentState : ComponentState + { + public bool Enabled { get; } + + public GravityComponentState(bool enabled) + { + Enabled = enabled; + } + } + + private void OnThrowerImpulse(Entity entity, ref ThrowerImpulseEvent args) + { + args.Push = true; + } + + private void OnShooterImpulse(Entity entity, ref ShooterImpulseEvent args) + { + args.Push = true; } } + +/// +/// Raised to determine if an entity's weightlessness is being overwritten by a component or item with a component. +/// +/// Whether we should be weightless +/// Whether something is trying to override our weightlessness +[ByRefEvent] +public record struct IsWeightlessEvent(bool IsWeightless = false, bool Handled = false) : IInventoryRelayEvent +{ + SlotFlags IInventoryRelayEvent.TargetSlots => ~SlotFlags.POCKET; +} + +/// +/// Raised on an entity when their weightless status changes. +/// +[ByRefEvent] +public readonly record struct WeightlessnessChangedEvent(bool Weightless); diff --git a/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs b/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs index 77c468e871..1723600ad1 100644 --- a/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs +++ b/Content.Shared/Movement/Components/MovementIgnoreGravityComponent.cs @@ -1,34 +1,17 @@ -using Content.Shared.Clothing; -using Content.Shared.Gravity; -using Content.Shared.Inventory; using Robust.Shared.GameStates; -using Robust.Shared.Map; -using Robust.Shared.Physics; -using Robust.Shared.Physics.Components; -using Robust.Shared.Serialization; namespace Content.Shared.Movement.Components { /// /// Ignores gravity entirely. /// - [RegisterComponent, NetworkedComponent] + [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class MovementIgnoreGravityComponent : Component { /// - /// Whether or not gravity is on or off for this object. + /// Whether gravity is on or off for this object. This will always override the current Gravity State. /// - [DataField("gravityState")] public bool Weightless = false; - } - - [NetSerializable, Serializable] - public sealed class MovementIgnoreGravityComponentState : ComponentState - { + [DataField, AutoNetworkedField] public bool Weightless; - - public MovementIgnoreGravityComponentState(MovementIgnoreGravityComponent component) - { - Weightless = component.Weightless; - } } } diff --git a/Content.Shared/Movement/Systems/FrictionContactsSystem.cs b/Content.Shared/Movement/Systems/FrictionContactsSystem.cs index 44fc3933e3..3ffdd6ec26 100644 --- a/Content.Shared/Movement/Systems/FrictionContactsSystem.cs +++ b/Content.Shared/Movement/Systems/FrictionContactsSystem.cs @@ -84,7 +84,7 @@ public sealed class FrictionContactsSystem : EntitySystem var frictionNoInput = 0.0f; var acceleration = 0.0f; - var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(entity, physicsComponent); + var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(entity.Owner); var remove = true; var entries = 0; diff --git a/Content.Shared/Movement/Systems/MovementIgnoreGravitySystem.cs b/Content.Shared/Movement/Systems/MovementIgnoreGravitySystem.cs index 52cdf219e5..93f6650fa9 100644 --- a/Content.Shared/Movement/Systems/MovementIgnoreGravitySystem.cs +++ b/Content.Shared/Movement/Systems/MovementIgnoreGravitySystem.cs @@ -1,33 +1,35 @@ -using Content.Shared.Movement.Components; +using Content.Shared.Gravity; +using Content.Shared.Movement.Components; using Content.Shared.Movement.Events; -using Robust.Shared.GameStates; namespace Content.Shared.Movement.Systems; public sealed class MovementIgnoreGravitySystem : EntitySystem { + [Dependency] SharedGravitySystem _gravity = default!; public override void Initialize() { - SubscribeLocalEvent(GetState); - SubscribeLocalEvent(HandleState); SubscribeLocalEvent(OnWeightless); + SubscribeLocalEvent(OnIsWeightless); + SubscribeLocalEvent(OnComponentStartup); } - private void OnWeightless(EntityUid uid, MovementAlwaysTouchingComponent component, ref CanWeightlessMoveEvent args) + private void OnWeightless(Entity entity, ref CanWeightlessMoveEvent args) { args.CanMove = true; } - private void HandleState(EntityUid uid, MovementIgnoreGravityComponent component, ref ComponentHandleState args) + private void OnIsWeightless(Entity entity, ref IsWeightlessEvent args) { - if (args.Next is null) - return; + // We don't check if the event has been handled as this component takes precedent over other things. - component.Weightless = ((MovementIgnoreGravityComponentState) args.Next).Weightless; + args.IsWeightless = entity.Comp.Weightless; + args.Handled = true; } - private void GetState(EntityUid uid, MovementIgnoreGravityComponent component, ref ComponentGetState args) + private void OnComponentStartup(Entity entity, ref ComponentStartup args) { - args.State = new MovementIgnoreGravityComponentState(component); + EnsureComp(entity); + _gravity.RefreshWeightless(entity.Owner, entity.Comp.Weightless); } } diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs index f8495fcd18..b3c84aed4d 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.cs @@ -195,8 +195,7 @@ public abstract partial class SharedMoverController : VirtualController } // If the body is in air but isn't weightless then it can't move - // TODO: MAKE ISWEIGHTLESS EVENT BASED - var weightless = _gravity.IsWeightless(uid, physicsComponent, xform); + var weightless = _gravity.IsWeightless(uid); var inAirHelpless = false; if (physicsComponent.BodyStatus != BodyStatus.OnGround && !CanMoveInAirQuery.HasComponent(uid)) @@ -624,8 +623,7 @@ public abstract partial class SharedMoverController : VirtualController if (!TryComp(ent, out var physicsComponent) || !XformQuery.TryComp(ent, out var xform)) return; - // TODO: Make IsWeightless event based!!! - if (physicsComponent.BodyStatus != BodyStatus.OnGround || _gravity.IsWeightless(ent, physicsComponent, xform)) + if (physicsComponent.BodyStatus != BodyStatus.OnGround || _gravity.IsWeightless(ent.Owner)) args.Modifier *= ent.Comp.BaseWeightlessFriction; else args.Modifier *= ent.Comp.BaseFriction; diff --git a/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs b/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs index 8a0b085a83..2dda244163 100644 --- a/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs +++ b/Content.Shared/Movement/Systems/SpeedModifierContactsSystem.cs @@ -85,7 +85,7 @@ public sealed class SpeedModifierContactsSystem : EntitySystem var sprintSpeed = 0.0f; // Cache the result of the airborne check, as it's expensive and independent of contacting entities, hence need only be done once. - var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(uid, physicsComponent); + var isAirborne = physicsComponent.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(uid); bool remove = true; var entries = 0; diff --git a/Content.Shared/Physics/Controllers/SharedConveyorController.cs b/Content.Shared/Physics/Controllers/SharedConveyorController.cs index c2c88b2742..b1ccb3be2a 100644 --- a/Content.Shared/Physics/Controllers/SharedConveyorController.cs +++ b/Content.Shared/Physics/Controllers/SharedConveyorController.cs @@ -216,7 +216,7 @@ public abstract class SharedConveyorController : VirtualController return true; if (physics.BodyStatus == BodyStatus.InAir || - _gravity.IsWeightless(entity, physics, xform)) + _gravity.IsWeightless(entity.Owner)) { return true; } diff --git a/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs b/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs index 14703f3177..d1443e5da2 100644 --- a/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs +++ b/Content.Shared/StepTrigger/Systems/StepTriggerSystem.cs @@ -139,7 +139,7 @@ public sealed class StepTriggerSystem : EntitySystem // and the entity is flying or currently weightless // Makes sense simulation wise to have this be part of steptrigger directly IMO if (!component.IgnoreWeightless && TryComp(otherUid, out var physics) && - (physics.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(otherUid, physics))) + (physics.BodyStatus == BodyStatus.InAir || _gravity.IsWeightless(otherUid))) return false; var msg = new StepTriggerAttemptEvent { Source = uid, Tripper = otherUid }; diff --git a/Content.Shared/Throwing/ThrowingSystem.cs b/Content.Shared/Throwing/ThrowingSystem.cs index 4e44901c57..db68c3517c 100644 --- a/Content.Shared/Throwing/ThrowingSystem.cs +++ b/Content.Shared/Throwing/ThrowingSystem.cs @@ -242,7 +242,7 @@ public sealed class ThrowingSystem : EntitySystem RaiseLocalEvent(user.Value, ref pushEv); const float massLimit = 5f; - if (pushEv.Push || _gravity.IsWeightless(user.Value)) + if (pushEv.Push) _physics.ApplyLinearImpulse(user.Value, -impulseVector / physics.Mass * pushbackRatio * MathF.Min(massLimit, physics.Mass), body: userPhysics); } } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 61ee8cdada..31f86d0236 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -391,7 +391,7 @@ public abstract partial class SharedGunSystem : EntitySystem var shooterEv = new ShooterImpulseEvent(); RaiseLocalEvent(user, ref shooterEv); - if (shooterEv.Push || _gravity.IsWeightless(user, userPhysics)) + if (shooterEv.Push) CauseImpulse(fromCoordinates, toCoordinates.Value, user, userPhysics); } diff --git a/Resources/Prototypes/Entities/Mobs/base.yml b/Resources/Prototypes/Entities/Mobs/base.yml index cfd9c13631..90bb90e663 100644 --- a/Resources/Prototypes/Entities/Mobs/base.yml +++ b/Resources/Prototypes/Entities/Mobs/base.yml @@ -9,6 +9,7 @@ noRot: true drawdepth: Mobs - type: MobCollision + - type: GravityAffected - type: Physics bodyType: KinematicController - type: Fixtures diff --git a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml index e57223e1b4..15f67245f1 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/immovable_rod.yml @@ -6,11 +6,13 @@ - type: Clickable - type: InteractionOutline - type: MovementIgnoreGravity + weightless: true - type: Sprite sprite: Objects/Fun/immovable_rod.rsi state: icon noRot: false - type: ImmovableRod + - type: GravityAffected - type: Physics bodyType: Dynamic linearDamping: 0 @@ -78,8 +80,6 @@ damage: types: Blunt: 190 - - type: MovementIgnoreGravity - gravityState: true - type: InputMover - type: MovementSpeedModifier baseWeightlessAcceleration: 5 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 4c4e44c28c..bda5901378 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml @@ -64,6 +64,7 @@ - type: Pullable - type: Physics bodyType: KinematicController + - type: GravityAffected - type: Clickable - type: WiresPanel - type: Fixtures diff --git a/Resources/Prototypes/Entities/Objects/base_item.yml b/Resources/Prototypes/Entities/Objects/base_item.yml index bb67d3f4cf..8490ba0042 100644 --- a/Resources/Prototypes/Entities/Objects/base_item.yml +++ b/Resources/Prototypes/Entities/Objects/base_item.yml @@ -24,6 +24,7 @@ soundHit: collection: MetalThud - type: CollisionWake + - type: GravityAffected - type: Physics bodyType: Dynamic fixedRotation: false diff --git a/Resources/Prototypes/Entities/Structures/base_structure.yml b/Resources/Prototypes/Entities/Structures/base_structure.yml index 71971a6624..d4936c859c 100644 --- a/Resources/Prototypes/Entities/Structures/base_structure.yml +++ b/Resources/Prototypes/Entities/Structures/base_structure.yml @@ -7,6 +7,7 @@ - type: Transform anchored: true - type: Clickable + - type: GravityAffected - type: Physics bodyType: Static - type: Fixtures From da23bc9dcc0965b59d3ec8152c3f134952164a3d Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Tue, 19 Aug 2025 12:18:05 -0700 Subject: [PATCH 075/194] Crawling Fixes Part 4: Can't crawl when weightless. (#39099) * Init Commit * Typos * Commit 2 * Save Interaction Test Mob from failing * ssss * Confident I've gotten all the correct prototypes * Whoops forgot to edit those * aaaaa * Better solution * Test fail fixes * Yaml fix * THE FINAL TEST FIX * Final fix(?) * whoops * Added a WeightlessnessChangedEvent * Check out this diff * Wait I'm dumb * Final optimization and don't duplicate code * Death to IsWeightless * Moth directed targeted attack * A * Bugfixes and such * Grrr * Death * Cleanup * Cleanup 2 --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- .../Stunnable/Systems/StunOnCollideSystem.cs | 2 +- .../Stunnable/SharedStunSystem.Knockdown.cs | 30 +++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs b/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs index 2257812da1..c1757b1c2d 100644 --- a/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs +++ b/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs @@ -22,7 +22,7 @@ internal sealed class StunOnCollideSystem : EntitySystem private void TryDoCollideStun(Entity ent, EntityUid target) { - _stunSystem.TryKnockdown(target, ent.Comp.KnockdownAmount, ent.Comp.Refresh, ent.Comp.AutoStand, ent.Comp.Drop); + _stunSystem.TryKnockdown(target, ent.Comp.KnockdownAmount, ent.Comp.Refresh, ent.Comp.AutoStand, ent.Comp.Drop, true); if (ent.Comp.Refresh) { diff --git a/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs b/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs index 7917f10bd5..098e3176d9 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs @@ -4,6 +4,7 @@ using Content.Shared.Damage; using Content.Shared.Damage.Components; using Content.Shared.Database; using Content.Shared.DoAfter; +using Content.Shared.Gravity; using Content.Shared.Hands.EntitySystems; using Content.Shared.Input; using Content.Shared.Movement.Events; @@ -60,6 +61,9 @@ public abstract partial class SharedStunSystem // Crawling SubscribeLocalEvent(OnKnockdownRefresh); SubscribeLocalEvent(OnDamaged); + SubscribeLocalEvent(OnWeightlessnessChanged); + SubscribeLocalEvent(OnKnockdownAttempt); + SubscribeLocalEvent(OnGetStandUpTime); // Handling Alternative Inputs SubscribeAllEvent(OnForceStandup); @@ -488,6 +492,32 @@ public abstract partial class SharedStunSystem args.SpeedModifier *= entity.Comp.SpeedModifier; } + private void OnWeightlessnessChanged(Entity entity, ref WeightlessnessChangedEvent args) + { + // I probably don't need this check since weightless -> non-weightless you shouldn't be knocked down + // But you never know. + if (!args.Weightless) + return; + + // Targeted moth attack + CancelKnockdownDoAfter((entity, entity.Comp)); + RemComp(entity); + } + + private void OnKnockdownAttempt(Entity entity, ref KnockDownAttemptEvent args) + { + // Directed, targeted moth attack. + if (entity.Comp.Weightless) + args.Cancelled = true; + } + + private void OnGetStandUpTime(Entity entity, ref GetStandUpTimeEvent args) + { + // Get up instantly if weightless + if (entity.Comp.Weightless) + args.DoAfterTime = TimeSpan.Zero; + } + #endregion #region Action Blockers From 32ad429b8ff7174726350a5e73fbb5c1bdb6e550 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 19 Aug 2025 19:19:15 +0000 Subject: [PATCH 076/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index db2f74d203..f63a2c7803 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: archee1, Beck - changes: - - message: Inflatable walls no longer instantly deconstruct if canceled. - type: Fix - id: 8357 - time: '2025-04-26T20:56:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36937 - author: ScarKy0 changes: - message: Deliveries now have a random multiplier added to them, slightly modifying @@ -3951,3 +3944,10 @@ id: 8869 time: '2025-08-19T17:56:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/38723 +- author: Princess-Cheeseballs + changes: + - message: You can no longer crawl while weightless. + type: Fix + id: 8870 + time: '2025-08-19T19:18:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39099 From 325f0e45fa44b100271e69d89c26e6d162a42dab Mon Sep 17 00:00:00 2001 From: Nox Date: Tue, 19 Aug 2025 13:31:02 -0700 Subject: [PATCH 077/194] Viable Canesword (#39586) * Buffed canesword damage to 16, cost to 3. Signed-off-by: Nox38 * Increased sale price from 1 to 2 TC, increased damage from 16 to 17 to match cap saber. Signed-off-by: Nox38 --------- Signed-off-by: Nox38 --- Resources/Prototypes/Catalog/uplink_catalog.yml | 2 +- Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index ebeae71d99..c499f54db6 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -2202,7 +2202,7 @@ discountDownTo: Telecrystal: 2 cost: - Telecrystal: 5 + Telecrystal: 3 categories: - UplinkJob conditions: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml index 2847b723d8..29ce5fa8c8 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml @@ -41,7 +41,7 @@ attackRate: 1.5 damage: types: - Slash: 14 + Slash: 17 soundHit: path: /Audio/Weapons/bladeslice.ogg - type: Item From f2d512e19a8f61ee7c2efb0bf0481b93751e3143 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 19 Aug 2025 20:32:09 +0000 Subject: [PATCH 078/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f63a2c7803..c851f1d086 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: ScarKy0 - changes: - - message: Deliveries now have a random multiplier added to them, slightly modifying - their earnings. - type: Add - - message: Deliveries now show how many spesos they grant on examine. - type: Tweak - id: 8358 - time: '2025-04-26T21:42:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36918 - author: sowelipililimute changes: - message: Medical and security techfab will no longer announce more than five recipes @@ -3951,3 +3941,11 @@ id: 8870 time: '2025-08-19T19:18:06.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39099 +- author: Nox38 + changes: + - message: Buffed the Librarian cane sword's damage and price to be more competitive. + Damage 15 -> 17 slash, TC cost 5 -> 3 + type: Tweak + id: 8871 + time: '2025-08-19T20:31:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39586 From e90fac14eb9d8ecd7267ea7d7381ad0f3abc8886 Mon Sep 17 00:00:00 2001 From: Winkarst-cpu <74284083+Winkarst-cpu@users.noreply.github.com> Date: Wed, 20 Aug 2025 01:30:55 +0300 Subject: [PATCH 079/194] Fix: Untoggle removed actions (#39526) * Fix * Update Content.Shared/Actions/SharedActionsSystem.cs Co-authored-by: LaCumbiaDelCoronavirus <90893484+LaCumbiaDelCoronavirus@users.noreply.github.com> --------- Co-authored-by: LaCumbiaDelCoronavirus <90893484+LaCumbiaDelCoronavirus@users.noreply.github.com> --- Content.Shared/Actions/SharedActionsSystem.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index c4581cfbff..c0a32e6038 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -832,7 +832,8 @@ public abstract class SharedActionsSystem : EntitySystem performer.Comp.Actions.Remove(ent.Owner); Dirty(performer, performer.Comp); ent.Comp.AttachedEntity = null; - DirtyField(ent, ent.Comp, nameof(ActionComponent.AttachedEntity)); + ent.Comp.Toggled = false; + DirtyFields(ent, ent.Comp, null, nameof(ActionComponent.AttachedEntity), nameof(ActionComponent.Toggled)); ActionRemoved((performer, performer.Comp), ent); if (ent.Comp.Temporary) From 2659e421c03f20a67765cf5152241433d89d89d5 Mon Sep 17 00:00:00 2001 From: M4rchy-S <89603088+M4rchy-S@users.noreply.github.com> Date: Wed, 20 Aug 2025 01:39:25 +0300 Subject: [PATCH 080/194] Fixing foam dart sprite in hands (#39758) --- .../Weapons/Guns/Ammunition/Projectiles/toy.yml | 2 +- .../Objects/Fun/Foam/foam_crossbow.rsi/meta.json | 3 --- .../foamdart.png | Bin .../Objects/Fun/Foam/foam_dart.rsi/meta.json | 14 ++++++++++++++ 4 files changed, 15 insertions(+), 4 deletions(-) rename Resources/Textures/Objects/Fun/Foam/{foam_crossbow.rsi => foam_dart.rsi}/foamdart.png (100%) create mode 100644 Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/meta.json diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml index cfe080da6d..3e4235f677 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/toy.yml @@ -24,7 +24,7 @@ - Trash - type: Ammo - type: Sprite - sprite: Objects/Fun/Foam/foam_crossbow.rsi + sprite: Objects/Fun/Foam/foam_dart.rsi layers: - state: foamdart - type: EmbeddableProjectile diff --git a/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/meta.json b/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/meta.json index b245d7e77d..79a6ec3509 100644 --- a/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/meta.json @@ -10,9 +10,6 @@ { "name": "icon" }, - { - "name": "foamdart" - }, { "name": "foambox" }, diff --git a/Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/foamdart.png b/Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/foamdart.png similarity index 100% rename from Resources/Textures/Objects/Fun/Foam/foam_crossbow.rsi/foamdart.png rename to Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/foamdart.png diff --git a/Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/meta.json b/Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/meta.json new file mode 100644 index 0000000000..a7e64d408b --- /dev/null +++ b/Resources/Textures/Objects/Fun/Foam/foam_dart.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "foamdart" + } + ] +} From 3f14ceec0fa9aad8526bc4ced17fa6880bd81874 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Wed, 20 Aug 2025 00:40:52 +0200 Subject: [PATCH 081/194] fix performer's suit sprites (#39722) --- .../Misc/performer-wig.rsi/equipped-HELMET.png | Bin 792 -> 1145 bytes .../Boots/performer.rsi/equipped-FEET.png | Bin 875 -> 854 bytes .../Shoes/Boots/performer.rsi/icon.png | Bin 396 -> 375 bytes 3 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Clothing/Head/Misc/performer-wig.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Misc/performer-wig.rsi/equipped-HELMET.png index 4d5e75107dbf77405642901544546fabbd6ba429..0f243264bd747a9f69a8c12db2bdc35b8dd77a99 100644 GIT binary patch delta 1135 zcmV-#1d#if2Kfk(8Gi-<0063Kaozv`010qNS#tmY4#5Bb4#5Gqk!$S$00b*ZL_t(| zUhP`FYZO5gpG}k)gyf9D{~*R90Sm=Wu+c_D#KJ<17A9ihN0lguh#;|wu@JQ~Y9WXq zSZSpeeqahqLyBM{LDXDM#wEU9ZsNn(jdk^3a2R zmKKK(o2$FJ)bHhAx;L8?KbC-~*;|~Q)d2(W!^>&)c;9{xJsQSwKiq7yAP(QmzP9#N z8jiBi20xYnu)kDZ)N7k&^3K43_haF!2JPL{U)N(C_kS@6dA(QE^lh^s3O`IPG9ao+ z@FNN6KRi_TD0@A2RtL6m_a62B#Z!e~m&@OD7NEy9#&I8wxnB)c5^)C}MR+AJ9fsc}C3*97E2 zydxlX^Qo=>JR0^9n`WyQ#!9o3m;qTfKsb_BA2w`Xthjoy1XSneZ6@v?9a}rLdSM6B z>_iff$L?x6BDH7ABZaxMNtlo~Q$GnmHUp$i$A6`ZtsPsvupeo5TKXwqrY|=OOu4l5 z2U#sm0A>$Cr0wKUJ3sW&W?w`A_l1Tl$K7Fx1oMA>k}l-9!E=3Za*hGVfMdWh;23ZW zI0hU8j)4`(0Q*xl#g0$S!;@Fly(<#|9jFnaEEO(D6vY=+jHx;eoCBv$tD7fJh`&OK z-hT$^J39bTut4BwbXI`-%9@3kaPaVfiYKT+NNbU70x0;Q3m4VY`E$YHi11l~EWvSg z!{-uEiH1+`O-cfr0Mj{oKR3??U?zG72gRSSxIse>vkwfK^}2HkmS3OQ1W>IW>+H#q zqjh@+O5=}q?D8gk-z#z-fNfv^i^}vwAb)&B)@CO$1rXD-mOGW?y002ovPDHLkV1mWx B6bAqR literal 792 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`032l#}zns>BK!1G!q&Q20{DS{O z0Yk8Vg%C)vz$3Dlfr0NJ2s7@OnEe(gC{f}XQ4*Y=R#Ki=l*$m0n3-3i=jR%tV5(=R zXCiceSu;@0w$upEG*3@01`Z&Hl|hP;m4Ok+@&aOMC>!Jx4Mt|LI1`X<$jHPX0HmXU zIJ2DvES?2qgTT!)Murza55s6QOBsMt6WAG8fGQ1)j13qUKuiVM$hrVx(i9*Y1ek#4 zGJ#bFSy}*DP+f)w1|Zp)(x12YXns-x25Gmai(^QH``c-^Hyu{sa251@^}oK*G4P=G zt1nL;`l#;~@01R|!p{0geksEPrK%4Scjs7rkLI~o>GIFYURmdll$yN2OLNsVe}q^a zUa3vDyQj$VQa|b!D}$ZOvnsx1iDeUNZTgxSZcSGxaB3}Vn(OpUkk95t{BI);rc!f8 zw!a#7%zZ2Yb$R|?9*%;lbA&c+@{i^)nHPWc57&$PH<(Y@C*N|(ni|izGFOU0b<($N zhl~H2TND)~4&2gjxRUX;VNL{#twVbH%ypk-7>-W=$LVluO&(V+6YGaSW`{+&3~LuI zWm@ZSD3?K4IN7-pab+ zagV9u?sGC1wJiJ3m*0+h`3UiqxdoLkb=Oj2Zvfa^sXp*EzX?OW|BGUWX1U&M`_V# z_c8-M$VjyPw)p=0UA~cdw=n~|Z~~K01E&F_+5wgs3}8+@3J=2hC(JbKjGcS>Go9S} zGkzQ6_PRg%v%{?D=`2x+SH-{X=_nf(hGqGN{{3{x+h&)=%3i;-QBm*pQfv43G+ud= z`=;l+!t6*#wXI3Z*PT-rh^%Ow<{@rZSE0Lk&X+q+uJ9iD{w?>S|G9fEOZIw4-mh1G zyeK5b{o$3sj9GlVep+`|`u;VEJ8y8-=)q+H4wmgNe*a~Y47@a*X~Xh#hKE00O}3Zh z+*IGXa{jT`lDMf&iiU+d}_CRC)C$8`J(*!QoY&-zEnU9r-4)9(5| zHp$g^`?%Sm8P199Bbg#};<+a(}zU^|dL-^{? zDKA!q2>hMHG|#^9W6WLOpSOR#i}|F32x%+<4UB_&V2nJ7S6>ivN^a)7jTaIejF}Af zF9|#;zM24bX?yvgrULp0pjf?Y&z={l4yXlRQVpEe_3qqyW#Fj6fA>K55ky99>sG9O)b&(}| zmrhX2oXq~oseWFF6DI>_VCRIci6W~nZx7jG`!vM#By(jTZz@Bm<9xli)`yCrwNGs> zspPJID9JFF`L+M_f(I8m+Mg?I=e?xld+D3hJjMx)eHmx=vGvQWw`RGt;#K8co2S}; z+nm~eCmtzVAhRUDc;Ele9c!iY?=yCP-+uVI{B;Ai>cD&3Z~s$MKEYSW&|>CwVYOV1FT6;Nt4eBtgN*gbCS_5?>OMJiY`3@=tY%yMDLyV(j&qmUE4@x49iW z_vYNbIiDL7&&|1Od;fmTvuy>(cn?lwQm_bOU~%Vac;LY(Afs8&(4@@jP_Tr7qfdkZ zUDliF)^9eAo6*_ZULJqX5%)qVcl)~lfA8c~?@yaF-A(6^QL>Gn{i9*}^>q`z&8zd0 zD!XxRyNbe<|17s(zY^>{qbM}X`1drn<`4b83$Mht&bPNa?D?!(Zc$$O<7t0>{&W8@ zJ^W@pNXN_w*FR4bC+v1sD41DWOFJ#@=eCK|2R&oNZ(}H_*CG|^8SRs_cr{rRa1Ok|DDlp-Sy|U@7(-S<9z+>w(T2E z6xF#g{a7&7v@~t@dzDinwe{Ov7$o}(B#|@L`Pi%N~PFTV8 zsZMWf`IK4SH)A9!KJ%n5?_&yWyfX1&cjAI7HI^qIf(nf6l^K<%>;Jo+_Tf_Hak=WB zC#Ki8K%=1^8V|Ump{(x8wcGB23z}BQz2Hui&@SwW-T&&x9|xd)tB?cQv%WDa&yy3vRd5o~?UvxqiR{?G#g%4MN=x*G-}y-w@g` zEuwMz0)Z*@QqPVo+5g(&LmA7@mh^RY6?xYdWWQdcR?U9!n{C4^<1H&Ke=WUt{Dis9 z=nH@SUGB9@bR}0HZ zo=;A<`sOZu*ebb4TE6T{=7pLK&1_oPMP~DK8TT>!24rt{{JhGdJ}x}*`odpdr48(O x)B|TrFL--1bD!{(Q%gUrRbA-wf74gLL-~4t#NsOrcfDc&0#8>zmvv4FO#mpBi4Xt) diff --git a/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Boots/performer.rsi/icon.png index 7619c7fd2e5c152838bd699b5b41cc2b1106620b..dddc65638738f41aad72e16f9d60d18ca1a7f44c 100644 GIT binary patch delta 327 zcmeBS{?0VPvR>2E#W5tpJvl*wb+Mv>6cda%pm@Ne>+ihJV*k=ZCNpRMtbfaR_}dm2 zx9j&h|3{wvs*to@&M?QnOZ}veSdh$zvVT!*l9jw|{qk`}H5I>w)_lD?>n#t{@AHNq zxI2t(Dl3{r9v{e>>2dMn>*MBa?-Q@_^z@wJ=?Pd{uOM}Vy|ej=C##C3L*(HZjn!uh z+3e~BMXDWYCRljP3vt-O%;OXLul~=6u7|7F8yt@>yiPIeCMW&aT*0of)6l@s*!huw&wuvr<|mG?JPKI?I|G#TrZffyNn}W0*!#ax zjwNZ~^!Jhy4t)7Z0$m?c69mLrSXo*A|30qp@sBR^;g_~cSdOf?bx}Zqw-HPT$}lmw W*@sG53m?D500f?{elF{r5}E)`*@<%i delta 329 zcmV-P0k;140*nKYIWj&;L_t(|oMT}aU@+={Q3s4VVAKJl4j6U7r~^hFFzSF&2aGy^ zBnNoTTlk+*O%BZdkzp5qXQY_}-p*gkAS18A@bSY-h7WIFg2mpg+0G!a{~QCqfH=dG zhc_5V1tdA(*N<-u-@~jK7-w%}U}Rtdi-BlHMrN@1ujX^Kb%3&lF$3e8;|%}!MHoK3 zc>x#a1M-=G;vo48r}xmt0S2Zn|37|s#lRZp#qekG4xq0gQ4OMhKYx15z!K}h@O#lV zusWb4h)xGYIRIp+sH8lY4YC}V+!&acnZbMr{U7QmCI*l?QXD~)10>=?85kvnfwlqT z{r`V37JB)ff#L8b2B8RF1_p6KP*6bdzkdu8&)+gI5E&IjIbcU_I!@ng&rT&N+mYn} bS^@ym>0xFIVT?lz00000NkvXXu0mjfZ=a9s From a26a18243f0bcbefdf75c830d38ec0183a38e43f Mon Sep 17 00:00:00 2001 From: Samuka-C <47865393+Samuka-C@users.noreply.github.com> Date: Tue, 19 Aug 2025 20:04:24 -0300 Subject: [PATCH 082/194] fix upload console (#39756) * fix upload console * make it smaller * even smaller * revert last commit * Update --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- Content.Server/Silicons/Laws/SiliconLawSystem.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs index e672cb5005..653ed6bac2 100644 --- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs +++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs @@ -294,15 +294,16 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem protected override void OnUpdaterInsert(Entity ent, ref EntInsertedIntoContainerMessage args) { // TODO: Prediction dump this - if (!TryComp(args.Entity, out SiliconLawProviderComponent? provider)) + if (!TryComp(args.Entity, out var provider)) return; - var lawset = GetLawset(provider.Laws).Laws; + var lawset = provider.Lawset ?? GetLawset(provider.Laws); + var query = EntityManager.CompRegistryQueryEnumerator(ent.Comp.Components); while (query.MoveNext(out var update)) { - SetLaws(lawset, update, provider.LawUploadSound); + SetLaws(lawset.Laws, update, provider.LawUploadSound); } } } From d0b0a4a92611663bdb76150488e4908cc27cffaf Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 19 Aug 2025 23:05:31 +0000 Subject: [PATCH 083/194] Automatic changelog update --- Resources/Changelog/Admin.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 60e38dc6e3..d2a9c7b436 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -1338,5 +1338,12 @@ Entries: id: 163 time: '2025-08-15T14:06:51.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/37783 +- author: Samuka + changes: + - message: edited law boards now work correctly + type: Fix + id: 164 + time: '2025-08-19T23:04:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39756 Name: Admin Order: 2 From b317d7514f34c56a989c661668290857fdef6f57 Mon Sep 17 00:00:00 2001 From: Perry Fraser Date: Wed, 20 Aug 2025 02:52:52 -0400 Subject: [PATCH 084/194] fix: don't do emergency shuttle stuff in lobby (#38732) --- Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index 53714c846a..e0bbc9d090 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -7,6 +7,7 @@ using Content.Server.Administration.Managers; using Content.Server.Chat.Systems; using Content.Server.Communications; using Content.Server.DeviceNetwork.Systems; +using Content.Server.GameTicking; using Content.Server.GameTicking.Events; using Content.Server.Pinpointer; using Content.Server.Popups; @@ -57,6 +58,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem [Dependency] private readonly CommunicationsConsoleSystem _commsConsole = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; [Dependency] private readonly DockingSystem _dock = default!; + [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly IdCardSystem _idSystem = default!; [Dependency] private readonly NavMapSystem _navMap = default!; [Dependency] private readonly MapLoaderSystem _loader = default!; @@ -157,7 +159,9 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem public override void Update(float frameTime) { base.Update(frameTime); - UpdateEmergencyConsole(frameTime); + // Don't handle any of this logic if in lobby + if (_ticker.RunLevel != GameRunLevel.PreRoundLobby) + UpdateEmergencyConsole(frameTime); } /// From 95b0df9a8948a7dd7d80b082981e25a2d9dc5afa Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Wed, 20 Aug 2025 03:02:41 -0400 Subject: [PATCH 085/194] Fix nuke disk getting lost when polymorphed holder is deleted (#36058) * Delete original entity when polymorph is deleted * Switch to EntityTerminatingEvent * Add RevertOnDelete option to PolymorphPrototype * Fix error on server shutdown while polymorphed * Set RevertOnDelete to false by default * AsNullable * Revert "Set RevertOnDelete to false by default" This reverts commit 087c43fbb923c9369c61c9d001e18814b3de3aca. * Use pattern matching instead of .Value --- .../Components/PolymorphedEntityComponent.cs | 2 +- .../Polymorph/Systems/PolymorphSystem.cs | 21 ++++++++++++++++++- .../Polymorph/PolymorphPrototype.cs | 6 ++++++ 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs b/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs index 7620203a86..7e3437a908 100644 --- a/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs +++ b/Content.Server/Polymorph/Components/PolymorphedEntityComponent.cs @@ -18,7 +18,7 @@ public sealed partial class PolymorphedEntityComponent : Component /// The original entity that the player will revert back into /// [DataField(required: true)] - public EntityUid Parent; + public EntityUid? Parent; /// /// The amount of time that has passed since the entity was created diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index d0f8b4e8fc..aabc0366cd 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -55,6 +55,7 @@ public sealed partial class PolymorphSystem : EntitySystem SubscribeLocalEvent(OnBeforeFullySliced); SubscribeLocalEvent(OnDestruction); + SubscribeLocalEvent(OnPolymorphedTerminating); InitializeMap(); } @@ -147,6 +148,16 @@ public sealed partial class PolymorphSystem : EntitySystem } } + private void OnPolymorphedTerminating(Entity ent, ref EntityTerminatingEvent args) + { + if (ent.Comp.Configuration.RevertOnDelete) + Revert(ent.AsNullable()); + + // Remove our original entity too + // Note that Revert will set Parent to null, so reverted entities will not be deleted + QueueDel(ent.Comp.Parent); + } + /// /// Polymorphs the target entity into the specific polymorph prototype /// @@ -284,13 +295,21 @@ public sealed partial class PolymorphSystem : EntitySystem if (Deleted(uid)) return null; - var parent = component.Parent; + if (component.Parent is not { } parent) + return null; + + // Clear our reference to the original entity + component.Parent = null; if (Deleted(parent)) return null; var uidXform = Transform(uid); var parentXform = Transform(parent); + // Don't swap back onto a terminating grid + if (TerminatingOrDeleted(uidXform.ParentUid)) + return null; + if (component.Configuration.ExitPolymorphSound != null) _audio.PlayPvs(component.Configuration.ExitPolymorphSound, uidXform.Coordinates); diff --git a/Content.Shared/Polymorph/PolymorphPrototype.cs b/Content.Shared/Polymorph/PolymorphPrototype.cs index 0978d7119a..26637431f0 100644 --- a/Content.Shared/Polymorph/PolymorphPrototype.cs +++ b/Content.Shared/Polymorph/PolymorphPrototype.cs @@ -105,6 +105,12 @@ public sealed partial record PolymorphConfiguration [DataField(serverOnly: true)] public bool RevertOnDeath = true; + /// + /// Whether or not the polymorph reverts when the entity is deleted. + /// + [DataField(serverOnly: true)] + public bool RevertOnDelete = true; + /// /// Whether or not the polymorph reverts when the entity is eaten or fully sliced. /// From 47dd036ef2414df7cdeab6ed89ae610c3a1abf79 Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Wed, 20 Aug 2025 04:08:31 -0700 Subject: [PATCH 086/194] Prevent shoe buffs while crawling (#39648) Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- .../ClothingSpeedModifierComponent.cs | 7 ++++ .../Clothing/ClothingSpeedModifierSystem.cs | 15 ++++++--- .../AntiGravityClothingSystem.cs | 32 +++++++++++++++++-- .../Inventory/InventorySystem.Relay.cs | 16 +++++++--- .../EntityStorageLayingDownOverrideSystem.cs | 2 +- .../Standing/StandingStateSystem.cs | 28 +++++++++------- .../Stunnable/SharedStunSystem.Knockdown.cs | 2 +- .../Entities/Clothing/Shoes/misc.yml | 5 +-- 8 files changed, 80 insertions(+), 27 deletions(-) diff --git a/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs b/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs index 866ce38a57..8dc496ec25 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierComponent.cs @@ -15,6 +15,13 @@ public sealed partial class ClothingSpeedModifierComponent : Component [DataField] public float SprintModifier = 1.0f; + + /// + /// An optional required standing state. + /// Set to true if you need to be standing, false if you need to not be standing, null if you don't care. + /// + [DataField] + public bool? Standing; } [Serializable, NetSerializable] diff --git a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs index 56758654ed..29f063c7fa 100644 --- a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs +++ b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Inventory; using Content.Shared.Item.ItemToggle; using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Movement.Systems; +using Content.Shared.Standing; using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.GameStates; @@ -12,10 +13,11 @@ namespace Content.Shared.Clothing; public sealed class ClothingSpeedModifierSystem : EntitySystem { - [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; - [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; [Dependency] private readonly ItemToggleSystem _toggle = default!; + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly StandingStateSystem _standing = default!; public override void Initialize() { @@ -54,8 +56,13 @@ public sealed class ClothingSpeedModifierSystem : EntitySystem private void OnRefreshMoveSpeed(EntityUid uid, ClothingSpeedModifierComponent component, InventoryRelayedEvent args) { - if (_toggle.IsActivated(uid)) - args.Args.ModifySpeed(component.WalkModifier, component.SprintModifier); + if (!_toggle.IsActivated(uid)) + return; + + if (component.Standing != null && !_standing.IsMatchingState(args.Owner, component.Standing.Value)) + return; + + args.Args.ModifySpeed(component.WalkModifier, component.SprintModifier); } private void OnClothingVerbExamine(EntityUid uid, ClothingSpeedModifierComponent component, GetVerbsEvent args) diff --git a/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs index 636a21533e..554db51a23 100644 --- a/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/AntiGravityClothingSystem.cs @@ -1,23 +1,33 @@ using Content.Shared.Clothing.Components; using Content.Shared.Gravity; using Content.Shared.Inventory; +using Content.Shared.Standing; namespace Content.Shared.Clothing.EntitySystems; +/// +/// We check standing state on all clothing because we don't want you to have anti-gravity unless you're standing. +/// This is for balance reasons as it prevents you from wearing anti-grav clothing to cheese being stun cuffed, as +/// well as other worse things. +/// public sealed class AntiGravityClothingSystem : EntitySystem { - [Dependency] SharedGravitySystem _gravity = default!; + [Dependency] private readonly StandingStateSystem _standing = default!; + [Dependency] private readonly SharedGravitySystem _gravity = default!; + /// public override void Initialize() { SubscribeLocalEvent>(OnIsWeightless); SubscribeLocalEvent(OnEquipped); SubscribeLocalEvent(OnUnequipped); + SubscribeLocalEvent>(OnDowned); + SubscribeLocalEvent>(OnStood); } private void OnIsWeightless(Entity ent, ref InventoryRelayedEvent args) { - if (args.Args.Handled) + if (args.Args.Handled || _standing.IsDown(args.Owner)) return; args.Args.Handled = true; @@ -26,11 +36,29 @@ public sealed class AntiGravityClothingSystem : EntitySystem private void OnEquipped(Entity entity, ref ClothingGotEquippedEvent args) { + // This clothing item does nothing if we're not standing + if (_standing.IsDown(args.Wearer)) + return; + _gravity.RefreshWeightless(args.Wearer, true); } private void OnUnequipped(Entity entity, ref ClothingGotUnequippedEvent args) { + // This clothing item does nothing if we're not standing + if (_standing.IsDown(args.Wearer)) + return; + _gravity.RefreshWeightless(args.Wearer, false); } + + private void OnDowned(Entity entity, ref InventoryRelayedEvent args) + { + _gravity.RefreshWeightless(args.Owner, false); + } + + private void OnStood(Entity entity, ref InventoryRelayedEvent args) + { + _gravity.RefreshWeightless(args.Owner, true); + } } diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index f4a0ccb5de..5109930a2d 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -24,6 +24,7 @@ using Content.Shared.Overlays; using Content.Shared.Projectiles; using Content.Shared.Radio; using Content.Shared.Slippery; +using Content.Shared.Standing; using Content.Shared.Strip.Components; using Content.Shared.Temperature; using Content.Shared.Verbs; @@ -57,6 +58,8 @@ public partial class InventorySystem SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); // by-ref events SubscribeLocalEvent(RefRelayInventoryEvent); @@ -114,7 +117,7 @@ public partial class InventorySystem return; // this copies the by-ref event if it is a struct - var ev = new InventoryRelayedEvent(args); + var ev = new InventoryRelayedEvent(args, inventory.Owner); var enumerator = new InventorySlotEnumerator(inventory, args.TargetSlots); while (enumerator.NextItem(out var item)) { @@ -130,7 +133,7 @@ public partial class InventorySystem if (args.TargetSlots == SlotFlags.NONE) return; - var ev = new InventoryRelayedEvent(args); + var ev = new InventoryRelayedEvent(args, inventory.Owner); var enumerator = new InventorySlotEnumerator(inventory, args.TargetSlots); while (enumerator.NextItem(out var item)) { @@ -141,7 +144,7 @@ public partial class InventorySystem private void OnGetEquipmentVerbs(EntityUid uid, InventoryComponent component, GetVerbsEvent args) { // Automatically relay stripping related verbs to all equipped clothing. - var ev = new InventoryRelayedEvent>(args); + var ev = new InventoryRelayedEvent>(args, uid); var enumerator = new InventorySlotEnumerator(component); while (enumerator.NextItem(out var item, out var slotDef)) { @@ -153,7 +156,7 @@ public partial class InventorySystem private void OnGetInnateVerbs(EntityUid uid, InventoryComponent component, GetVerbsEvent args) { // Automatically relay stripping related verbs to all equipped clothing. - var ev = new InventoryRelayedEvent>(args); + var ev = new InventoryRelayedEvent>(args, uid); var enumerator = new InventorySlotEnumerator(component, SlotFlags.WITHOUT_POCKET); while (enumerator.NextItem(out var item)) { @@ -176,9 +179,12 @@ public sealed class InventoryRelayedEvent : EntityEventArgs { public TEvent Args; - public InventoryRelayedEvent(TEvent args) + public EntityUid Owner; + + public InventoryRelayedEvent(TEvent args, EntityUid owner) { Args = args; + Owner = owner; } } diff --git a/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs b/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs index 630135f36a..d11695321b 100644 --- a/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs +++ b/Content.Shared/Morgue/EntityStorageLayingDownOverrideSystem.cs @@ -21,7 +21,7 @@ public sealed class EntityStorageLayingDownOverrideSystem : EntitySystem { // Explicitly check for standing state component, as entities without it will return false for IsDown() // which prevents inserting any kind of non-mobs into this container (which is unintended) - if (TryComp(ent, out var standingState) && !_standing.IsDown(ent, standingState)) + if (TryComp(ent, out var standingState) && !_standing.IsDown((ent, standingState))) args.Contents.Remove(ent); } } diff --git a/Content.Shared/Standing/StandingStateSystem.cs b/Content.Shared/Standing/StandingStateSystem.cs index 7f3b8c9aac..ffe8f2c156 100644 --- a/Content.Shared/Standing/StandingStateSystem.cs +++ b/Content.Shared/Standing/StandingStateSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Climbing.Events; using Content.Shared.Hands.Components; +using Content.Shared.Inventory; using Content.Shared.Movement.Events; using Content.Shared.Movement.Systems; using Content.Shared.Physics; @@ -69,12 +70,17 @@ public sealed class StandingStateSystem : EntitySystem ChangeLayers(entity); } - public bool IsDown(EntityUid uid, StandingStateComponent? standingState = null) + public bool IsMatchingState(Entity entity, bool standing) { - if (!Resolve(uid, ref standingState, false)) + return standing != IsDown(entity); + } + + public bool IsDown(Entity entity) + { + if (!Resolve(entity, ref entity.Comp, false)) return false; - return !standingState.Standing; + return !entity.Comp.Standing; } public bool Down(EntityUid uid, @@ -213,29 +219,27 @@ public record struct DropHandItemsEvent(); /// /// Subscribe if you can potentially block a down attempt. /// -public sealed class DownAttemptEvent : CancellableEntityEventArgs -{ -} +public sealed class DownAttemptEvent : CancellableEntityEventArgs; /// /// Subscribe if you can potentially block a stand attempt. /// -public sealed class StandAttemptEvent : CancellableEntityEventArgs -{ -} +public sealed class StandAttemptEvent : CancellableEntityEventArgs; /// /// Raised when an entity becomes standing /// -public sealed class StoodEvent : EntityEventArgs +public sealed class StoodEvent : EntityEventArgs, IInventoryRelayEvent { -} + public SlotFlags TargetSlots { get; } = SlotFlags.FEET; +}; /// /// Raised when an entity is not standing /// -public sealed class DownedEvent : EntityEventArgs +public sealed class DownedEvent : EntityEventArgs, IInventoryRelayEvent { + public SlotFlags TargetSlots { get; } = SlotFlags.FEET; } /// diff --git a/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs b/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs index 098e3176d9..1a7bc88ec3 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs @@ -501,7 +501,7 @@ public abstract partial class SharedStunSystem // Targeted moth attack CancelKnockdownDoAfter((entity, entity.Comp)); - RemComp(entity); + RemCompDeferred(entity); } private void OnKnockdownAttempt(Entity entity, ref KnockDownAttemptEvent args) diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml index 26fbc0c7ae..69c167051b 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/misc.yml @@ -135,6 +135,7 @@ - type: ClothingSpeedModifier walkModifier: 1.5 sprintModifier: 1.5 + standing: true - type: Appearance - type: GenericVisualizer visuals: @@ -182,7 +183,7 @@ price: 75 - type: Tag tags: [ ] - + - type: entity parent: ClothingShoesBase id: ClothingShoesBootsJump @@ -200,7 +201,7 @@ jumpSound: /Audio/Effects/stealthoff.ogg - type: ActionGrant actions: - - ActionGravityJump + - ActionGravityJump - type: ItemActionGrant actions: - ActionGravityJump From db84d766e9fa6bd28e7da5ccd0dbb7da74c1be42 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 20 Aug 2025 11:09:38 +0000 Subject: [PATCH 087/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c851f1d086..10438ead6a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: sowelipililimute - changes: - - message: Medical and security techfab will no longer announce more than five recipes - at once, avoiding chat flooding - type: Tweak - id: 8359 - time: '2025-04-26T21:45:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36945 - author: Nox38 changes: - message: Added descriptions for the .30 caliber and weapons. @@ -3949,3 +3941,12 @@ id: 8871 time: '2025-08-19T20:31:02.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39586 +- author: Princess-Cheeseballs + changes: + - message: Speed boots no longer affect crawling speed. + type: Remove + - message: Moon boots don't work unless you're standing + type: Tweak + id: 8872 + time: '2025-08-20T11:08:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39648 From 2bbff7f8c0c492c418d3330276b977fe72b7ad44 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Wed, 20 Aug 2025 13:52:03 +0200 Subject: [PATCH 088/194] Cleanup subdermal implant code (#39755) --- Content.Client/Implants/ImplanterSystem.cs | 2 + .../Implants/SubdermalImplantSystem.cs | 5 + .../Implants/ChameleonControllerSystem.cs | 8 +- Content.Server/Implants/ImplanterSystem.cs | 1 + Content.Server/Implants/RadioImplantSystem.cs | 22 +- .../Implants/SubdermalImplantSystem.cs | 1 + Content.Server/Mindshield/MindShieldSystem.cs | 10 +- .../Components/ReplacementImplantComponent.cs | 18 ++ .../Components/StorageImplantComponent.cs | 11 + .../Components/SubdermalImplantComponent.cs | 36 ++- .../Implants/ReplacementImplantSystem.cs | 34 +++ .../Implants/SharedImplanterSystem.cs | 4 +- .../SharedSubdermalImplantSystem.Relays.cs | 50 ++++ .../Implants/SharedSubdermalImplantSystem.cs | 195 ++++++------- .../Implants/StorageImplantSystem.cs | 36 +++ ...hieldSystem.cs => FakeMindshieldSystem.cs} | 6 +- .../SharedFakeMindShieldImplantSystem.cs | 45 --- Resources/Prototypes/Actions/types.yml | 1 + .../Entities/Objects/Misc/implanters.yml | 274 +++++++++--------- .../Objects/Misc/subdermal_implants.yml | 71 +++-- 20 files changed, 462 insertions(+), 368 deletions(-) create mode 100644 Content.Client/Implants/SubdermalImplantSystem.cs create mode 100644 Content.Shared/Implants/Components/ReplacementImplantComponent.cs create mode 100644 Content.Shared/Implants/Components/StorageImplantComponent.cs create mode 100644 Content.Shared/Implants/ReplacementImplantSystem.cs create mode 100644 Content.Shared/Implants/SharedSubdermalImplantSystem.Relays.cs create mode 100644 Content.Shared/Implants/StorageImplantSystem.cs rename Content.Shared/Mindshield/FakeMindShield/{SharedFakeMindshieldSystem.cs => FakeMindshieldSystem.cs} (94%) delete mode 100644 Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs diff --git a/Content.Client/Implants/ImplanterSystem.cs b/Content.Client/Implants/ImplanterSystem.cs index cca09f5dad..4ba4d015ca 100644 --- a/Content.Client/Implants/ImplanterSystem.cs +++ b/Content.Client/Implants/ImplanterSystem.cs @@ -23,6 +23,8 @@ public sealed class ImplanterSystem : SharedImplanterSystem { if (_uiSystem.TryGetOpenUi(uid, DeimplantUiKey.Key, out var bui)) { + // TODO: Don't use protoId for deimplanting + // and especially not raw strings! Dictionary implants = new(); foreach (var implant in component.DeimplantWhitelist) { diff --git a/Content.Client/Implants/SubdermalImplantSystem.cs b/Content.Client/Implants/SubdermalImplantSystem.cs new file mode 100644 index 0000000000..5d814eddf8 --- /dev/null +++ b/Content.Client/Implants/SubdermalImplantSystem.cs @@ -0,0 +1,5 @@ +using Content.Shared.Implants; + +namespace Content.Client.Implants; + +public sealed class SubdermalImplantSystem : SharedSubdermalImplantSystem; diff --git a/Content.Server/Implants/ChameleonControllerSystem.cs b/Content.Server/Implants/ChameleonControllerSystem.cs index 9e876f9399..930f2e3156 100644 --- a/Content.Server/Implants/ChameleonControllerSystem.cs +++ b/Content.Server/Implants/ChameleonControllerSystem.cs @@ -29,17 +29,17 @@ public sealed class ChameleonControllerSystem : SharedChameleonControllerSystem { base.Initialize(); - SubscribeLocalEvent(OnSelected); + SubscribeLocalEvent(OnSelected); SubscribeLocalEvent>(ChameleonControllerOutfitItemSelected); } - private void OnSelected(Entity ent, ref ChameleonControllerSelectedOutfitMessage args) + private void OnSelected(Entity ent, ref ChameleonControllerSelectedOutfitMessage args) { - if (!_delay.TryResetDelay(ent.Owner, true) || ent.Comp.ImplantedEntity == null || !HasComp(ent)) + if (!TryComp(ent, out var implantComp) || implantComp.ImplantedEntity == null || !_delay.TryResetDelay(ent.Owner, true)) return; - ChangeChameleonClothingToOutfit(ent.Comp.ImplantedEntity.Value, args.SelectedChameleonOutfit); + ChangeChameleonClothingToOutfit(implantComp.ImplantedEntity.Value, args.SelectedChameleonOutfit); } /// diff --git a/Content.Server/Implants/ImplanterSystem.cs b/Content.Server/Implants/ImplanterSystem.cs index 5023b1b3e4..48e83e4878 100644 --- a/Content.Server/Implants/ImplanterSystem.cs +++ b/Content.Server/Implants/ImplanterSystem.cs @@ -27,6 +27,7 @@ public sealed partial class ImplanterSystem : SharedImplanterSystem SubscribeLocalEvent(OnDraw); } + // TODO: This all needs to be moved to shared and predicted. private void OnImplanterAfterInteract(EntityUid uid, ImplanterComponent component, AfterInteractEvent args) { if (args.Target == null || !args.CanReach || args.Handled) diff --git a/Content.Server/Implants/RadioImplantSystem.cs b/Content.Server/Implants/RadioImplantSystem.cs index d9ba229057..c5ae1ce494 100644 --- a/Content.Server/Implants/RadioImplantSystem.cs +++ b/Content.Server/Implants/RadioImplantSystem.cs @@ -1,7 +1,6 @@ using Content.Server.Radio.Components; using Content.Shared.Implants; using Content.Shared.Implants.Components; -using Robust.Shared.Containers; namespace Content.Server.Implants; @@ -12,7 +11,7 @@ public sealed class RadioImplantSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnImplantImplanted); - SubscribeLocalEvent(OnRemove); + SubscribeLocalEvent(OnImplantRemoved); } /// @@ -20,19 +19,16 @@ public sealed class RadioImplantSystem : EntitySystem /// private void OnImplantImplanted(Entity ent, ref ImplantImplantedEvent args) { - if (args.Implanted == null) - return; - - var activeRadio = EnsureComp(args.Implanted.Value); + var activeRadio = EnsureComp(args.Implanted); foreach (var channel in ent.Comp.RadioChannels) { if (activeRadio.Channels.Add(channel)) ent.Comp.ActiveAddedChannels.Add(channel); } - EnsureComp(args.Implanted.Value); + EnsureComp(args.Implanted); - var intrinsicRadioTransmitter = EnsureComp(args.Implanted.Value); + var intrinsicRadioTransmitter = EnsureComp(args.Implanted); foreach (var channel in ent.Comp.RadioChannels) { if (intrinsicRadioTransmitter.Channels.Add(channel)) @@ -43,9 +39,9 @@ public sealed class RadioImplantSystem : EntitySystem /// /// Removes intrinsic radio components once the Radio Implant is removed /// - private void OnRemove(Entity ent, ref EntGotRemovedFromContainerMessage args) + private void OnImplantRemoved(Entity ent, ref ImplantRemovedEvent args) { - if (TryComp(args.Container.Owner, out var activeRadioComponent)) + if (TryComp(args.Implanted, out var activeRadioComponent)) { foreach (var channel in ent.Comp.ActiveAddedChannels) { @@ -55,11 +51,11 @@ public sealed class RadioImplantSystem : EntitySystem if (activeRadioComponent.Channels.Count == 0) { - RemCompDeferred(args.Container.Owner); + RemCompDeferred(args.Implanted); } } - if (!TryComp(args.Container.Owner, out var radioTransmitterComponent)) + if (!TryComp(args.Implanted, out var radioTransmitterComponent)) return; foreach (var channel in ent.Comp.TransmitterAddedChannels) @@ -70,7 +66,7 @@ public sealed class RadioImplantSystem : EntitySystem if (radioTransmitterComponent.Channels.Count == 0 || activeRadioComponent?.Channels.Count == 0) { - RemCompDeferred(args.Container.Owner); + RemCompDeferred(args.Implanted); } } } diff --git a/Content.Server/Implants/SubdermalImplantSystem.cs b/Content.Server/Implants/SubdermalImplantSystem.cs index f0530358a6..582b9cb2ac 100644 --- a/Content.Server/Implants/SubdermalImplantSystem.cs +++ b/Content.Server/Implants/SubdermalImplantSystem.cs @@ -18,6 +18,7 @@ public sealed class SubdermalImplantSystem : SharedSubdermalImplantSystem SubscribeLocalEvent>(OnStoreRelay); } + // TODO: This shouldn't be in the SubdermalImplantSystem private void OnStoreRelay(EntityUid uid, StoreComponent store, ImplantRelayEvent implantRelay) { var args = implantRelay.Event; diff --git a/Content.Server/Mindshield/MindShieldSystem.cs b/Content.Server/Mindshield/MindShieldSystem.cs index c04fb12027..bc5b65159b 100644 --- a/Content.Server/Mindshield/MindShieldSystem.cs +++ b/Content.Server/Mindshield/MindShieldSystem.cs @@ -27,7 +27,7 @@ public sealed class MindShieldSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnImplantImplanted); - SubscribeLocalEvent(OnImplantDraw); + SubscribeLocalEvent(OnImplantRemoved); } private void OnImplantImplanted(Entity ent, ref ImplantImplantedEvent ev) @@ -35,8 +35,8 @@ public sealed class MindShieldSystem : EntitySystem if (ev.Implanted == null) return; - EnsureComp(ev.Implanted.Value); - MindShieldRemovalCheck(ev.Implanted.Value, ev.Implant); + EnsureComp(ev.Implanted); + MindShieldRemovalCheck(ev.Implanted, ev.Implant); } /// @@ -58,9 +58,9 @@ public sealed class MindShieldSystem : EntitySystem } } - private void OnImplantDraw(Entity ent, ref EntGotRemovedFromContainerMessage args) + private void OnImplantRemoved(Entity ent, ref ImplantRemovedEvent args) { - RemComp(args.Container.Owner); + RemComp(args.Implanted); } } diff --git a/Content.Shared/Implants/Components/ReplacementImplantComponent.cs b/Content.Shared/Implants/Components/ReplacementImplantComponent.cs new file mode 100644 index 0000000000..73a6d4d8b4 --- /dev/null +++ b/Content.Shared/Implants/Components/ReplacementImplantComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.Implants.Components; + +/// +/// Added to implants with the see . +/// When implanted it will cause other implants in the whitelist to be deleted and thus replaced. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ReplacementImplantComponent : Component +{ + /// + /// Whitelist for which implants to delete. + /// + [DataField(required: true)] + public EntityWhitelist Whitelist = new(); +} diff --git a/Content.Shared/Implants/Components/StorageImplantComponent.cs b/Content.Shared/Implants/Components/StorageImplantComponent.cs new file mode 100644 index 0000000000..289f01bfce --- /dev/null +++ b/Content.Shared/Implants/Components/StorageImplantComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.Storage; +using Robust.Shared.GameStates; + +namespace Content.Shared.Implants.Components; + +/// +/// Handles emptying the implant's when the implant is removed. +/// Without this the contents would be deleted. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class StorageImplantComponent : Component; diff --git a/Content.Shared/Implants/Components/SubdermalImplantComponent.cs b/Content.Shared/Implants/Components/SubdermalImplantComponent.cs index 390d113dfb..85f2672603 100644 --- a/Content.Shared/Implants/Components/SubdermalImplantComponent.cs +++ b/Content.Shared/Implants/Components/SubdermalImplantComponent.cs @@ -16,13 +16,21 @@ public sealed partial class SubdermalImplantComponent : Component /// /// Used where you want the implant to grant the owner an instant action. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("implantAction")] + [DataField] public EntProtoId? ImplantAction; + /// + /// The provided action entity. + /// [DataField, AutoNetworkedField] public EntityUid? Action; + /// + /// Components to add/remove to the implantee when the implant is injected/extracted. + /// + [DataField] + public ComponentRegistry ImplantComponents = new(); + /// /// The entity this implant is inside /// @@ -32,8 +40,7 @@ public sealed partial class SubdermalImplantComponent : Component /// /// Should this implant be removeable? /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("permanent"), AutoNetworkedField] + [DataField, AutoNetworkedField] public bool Permanent = false; /// @@ -61,23 +68,20 @@ public sealed partial class SubdermalImplantComponent : Component /// /// Used for opening the storage implant via action. /// -public sealed partial class OpenStorageImplantEvent : InstantActionEvent -{ - -} +/// +/// TODO: Delete this and just add a ToggleUIOnTriggerComponent +/// +public sealed partial class OpenStorageImplantEvent : InstantActionEvent; /// /// Used for triggering trigger events on the implant via action /// -public sealed partial class ActivateImplantEvent : InstantActionEvent -{ - -} +public sealed partial class ActivateImplantEvent : InstantActionEvent; /// /// Used for opening the uplink implant via action. /// -public sealed partial class OpenUplinkImplantEvent : InstantActionEvent -{ - -} +/// +/// TODO: Delete this and just add a ToggleUIOnTriggerComponent +/// +public sealed partial class OpenUplinkImplantEvent : InstantActionEvent; diff --git a/Content.Shared/Implants/ReplacementImplantSystem.cs b/Content.Shared/Implants/ReplacementImplantSystem.cs new file mode 100644 index 0000000000..b206091fe3 --- /dev/null +++ b/Content.Shared/Implants/ReplacementImplantSystem.cs @@ -0,0 +1,34 @@ +using Content.Shared.Implants.Components; +using Content.Shared.Whitelist; +using Robust.Shared.Containers; + +namespace Content.Shared.Implants; + +public sealed class ReplacementImplantSystem : EntitySystem +{ + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnImplantImplanted); + } + + private void OnImplantImplanted(Entity ent, ref ImplantImplantedEvent args) + { + if (!_container.TryGetContainer(args.Implanted, ImplanterComponent.ImplantSlotId, out var implantContainer)) + return; + + foreach (var implant in implantContainer.ContainedEntities) + { + if (implant == ent.Owner) + continue; // don't delete the replacement + + if (_whitelist.IsWhitelistPass(ent.Comp.Whitelist, implant)) + PredictedQueueDel(implant); + } + + } +} diff --git a/Content.Shared/Implants/SharedImplanterSystem.cs b/Content.Shared/Implants/SharedImplanterSystem.cs index 6e806384a0..6ff6d42d3b 100644 --- a/Content.Shared/Implants/SharedImplanterSystem.cs +++ b/Content.Shared/Implants/SharedImplanterSystem.cs @@ -118,7 +118,7 @@ public abstract class SharedImplanterSystem : EntitySystem //Set to draw mode if not implant only public void Implant(EntityUid user, EntityUid target, EntityUid implanter, ImplanterComponent component) { - if (!CanImplant(user, target, implanter, component, out var implant, out var implantComp)) + if (!CanImplant(user, target, implanter, component, out var implant, out _)) return; // Check if we are trying to implant a implant which is already implanted @@ -137,7 +137,6 @@ public abstract class SharedImplanterSystem : EntitySystem if (component.ImplanterSlot.ContainerSlot != null) _container.Remove(implant.Value, component.ImplanterSlot.ContainerSlot); - implantComp.ImplantedEntity = target; implantContainer.OccludesLight = false; _container.Insert(implant.Value, implantContainer); @@ -280,7 +279,6 @@ public abstract class SharedImplanterSystem : EntitySystem private void DrawImplantIntoImplanter(EntityUid implanter, EntityUid target, EntityUid implant, BaseContainer implantContainer, ContainerSlot implanterContainer, SubdermalImplantComponent implantComp) { _container.Remove(implant, implantContainer); - implantComp.ImplantedEntity = null; _container.Insert(implant, implanterContainer); var ev = new TransferDnaEvent { Donor = target, Recipient = implanter }; diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.Relays.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.Relays.cs new file mode 100644 index 0000000000..4c0b2c2361 --- /dev/null +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.Relays.cs @@ -0,0 +1,50 @@ +using Content.Shared.Implants.Components; +using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; +using Content.Shared.Mobs; + +namespace Content.Shared.Implants; + +public abstract partial class SharedSubdermalImplantSystem +{ + public void InitializeRelay() + { + SubscribeLocalEvent(RelayToImplantEvent); + SubscribeLocalEvent(RelayToImplantEvent); + SubscribeLocalEvent(RelayToImplantEvent); + } + + /// + /// Relays events from the implanted to the implant. + /// + private void RelayToImplantEvent(EntityUid uid, ImplantedComponent component, T args) where T : notnull + { + if (!_container.TryGetContainer(uid, ImplanterComponent.ImplantSlotId, out var implantContainer)) + return; + + var relayEv = new ImplantRelayEvent(args, uid); + foreach (var implant in implantContainer.ContainedEntities) + { + if (args is HandledEntityEventArgs { Handled: true }) + return; + + RaiseLocalEvent(implant, relayEv); + } + } +} + +/// +/// Wrapper for relaying events from an implanted entity to their implants. +/// +public sealed class ImplantRelayEvent where T : notnull +{ + public readonly T Event; + + public readonly EntityUid ImplantedEntity; + + public ImplantRelayEvent(T ev, EntityUid implantedEntity) + { + Event = ev; + ImplantedEntity = implantedEntity; + } +} diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs index 4c015f1209..630416b598 100644 --- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs @@ -1,90 +1,76 @@ -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; using Robust.Shared.Prototypes; +using Robust.Shared.Timing; namespace Content.Shared.Implants; -public abstract class SharedSubdermalImplantSystem : EntitySystem +public abstract partial class SharedSubdermalImplantSystem : EntitySystem { - [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly SharedContainerSystem _container = default!; - [Dependency] private readonly TagSystem _tag = default!; - [Dependency] private readonly SharedTransformSystem _transformSystem = default!; - - public const string BaseStorageId = "storagebase"; - - private static readonly ProtoId MicroBombTag = "MicroBomb"; - private static readonly ProtoId MacroBombTag = "MacroBomb"; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { + base.Initialize(); + InitializeRelay(); + SubscribeLocalEvent(OnInsert); SubscribeLocalEvent(OnRemoveAttempt); SubscribeLocalEvent(OnRemove); - - SubscribeLocalEvent(RelayToImplantEvent); - SubscribeLocalEvent(RelayToImplantEvent); - SubscribeLocalEvent(RelayToImplantEvent); } - private void OnInsert(EntityUid uid, SubdermalImplantComponent component, EntGotInsertedIntoContainerMessage args) + private void OnInsert(Entity ent, ref EntGotInsertedIntoContainerMessage args) { - if (component.ImplantedEntity == null) + // The results of the container change are already networked on their own + if (_timing.ApplyingState) return; - if (!string.IsNullOrWhiteSpace(component.ImplantAction)) - { - _actionsSystem.AddAction(component.ImplantedEntity.Value, ref component.Action, component.ImplantAction, uid); - } + if (args.Container.ID != ImplanterComponent.ImplantSlotId) + return; - // replace micro bomb with macro bomb - // TODO: this shouldn't be hardcoded here - if (_container.TryGetContainer(component.ImplantedEntity.Value, ImplanterComponent.ImplantSlotId, out var implantContainer) && _tag.HasTag(uid, MacroBombTag)) - { - foreach (var implant in implantContainer.ContainedEntities) - { - if (_tag.HasTag(implant, MicroBombTag)) - { - _container.Remove(implant, implantContainer); - PredictedQueueDel(implant); - } - } - } + ent.Comp.ImplantedEntity = args.Container.Owner; + Dirty(ent); - var ev = new ImplantImplantedEvent(uid, component.ImplantedEntity.Value); - RaiseLocalEvent(uid, ref ev); + EntityManager.AddComponents(ent.Comp.ImplantedEntity.Value, ent.Comp.ImplantComponents); + if (ent.Comp.ImplantAction != null) + _actions.AddAction(ent.Comp.ImplantedEntity.Value, ref ent.Comp.Action, ent.Comp.ImplantAction, ent.Owner); + + var ev = new ImplantImplantedEvent(ent.Owner, ent.Comp.ImplantedEntity.Value); + RaiseLocalEvent(ent.Owner, ref ev); } - private void OnRemoveAttempt(EntityUid uid, SubdermalImplantComponent component, ContainerGettingRemovedAttemptEvent args) + private void OnRemoveAttempt(Entity ent, ref ContainerGettingRemovedAttemptEvent args) { - if (component.Permanent && component.ImplantedEntity != null) + if (ent.Comp.Permanent && ent.Comp.ImplantedEntity != null) args.Cancel(); } - private void OnRemove(EntityUid uid, SubdermalImplantComponent component, EntGotRemovedFromContainerMessage args) + private void OnRemove(Entity ent, ref EntGotRemovedFromContainerMessage args) { - if (component.ImplantedEntity == null || Terminating(component.ImplantedEntity.Value)) + // The results of the container change are already networked on their own + if (_timing.ApplyingState) return; - if (component.ImplantAction != null) - _actionsSystem.RemoveProvidedActions(component.ImplantedEntity.Value, uid); - - if (!_container.TryGetContainer(uid, BaseStorageId, out var storageImplant)) + if (args.Container.ID != ImplanterComponent.ImplantSlotId) return; - var containedEntites = storageImplant.ContainedEntities.ToArray(); + if (ent.Comp.ImplantedEntity == null || Terminating(ent.Comp.ImplantedEntity.Value)) + return; - foreach (var entity in containedEntites) - { - _transformSystem.DropNextTo(entity, uid); - } + EntityManager.RemoveComponents(ent.Comp.ImplantedEntity.Value, ent.Comp.ImplantComponents); + _actions.RemoveAction(ent.Comp.ImplantedEntity.Value, ent.Comp.Action); + ent.Comp.Action = null; + + var ev = new ImplantRemovedEvent(ent.Owner, ent.Comp.ImplantedEntity.Value); + RaiseLocalEvent(ent.Owner, ref ev); + + ent.Comp.ImplantedEntity = null; + Dirty(ent); } /// @@ -106,23 +92,26 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem /// /// The implant, if it was successfully created. Otherwise, null. /// > - public EntityUid? AddImplant(EntityUid uid, String implantId) + public EntityUid? AddImplant(EntityUid target, EntProtoId implantId) { - var coords = Transform(uid).Coordinates; - var ent = Spawn(implantId, coords); + if (_net.IsClient) + return null; // can't interact with predicted spawns yet - if (TryComp(ent, out var implant)) + var coords = Transform(target).Coordinates; + var implant = Spawn(implantId, coords); + + if (TryComp(implant, out var implantComp)) { - ForceImplant(uid, ent, implant); + ForceImplant(target, (implant, implantComp)); } else { - Log.Warning($"Found invalid starting implant '{implantId}' on {uid} {ToPrettyString(uid):implanted}"); - Del(ent); + Log.Warning($"Tried to inject implant '{implantId}' without SubdermalImplantComponent into {ToPrettyString(target):implanted}"); + Del(implant); return null; } - return ent; + return implant; } /// @@ -131,15 +120,16 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem /// /// The entity to be implanted /// The implant - /// The implant component - public void ForceImplant(EntityUid target, EntityUid implant, SubdermalImplantComponent component) + public void ForceImplant(EntityUid target, Entity implant) { + if (!Resolve(implant, ref implant.Comp)) + return; + //If the target doesn't have the implanted component, add it. var implantedComp = EnsureComp(target); - var implantContainer = implantedComp.ImplantContainer; - component.ImplantedEntity = target; - _container.Insert(implant, implantContainer); + implant.Comp.ImplantedEntity = target; + _container.Insert(implant.Owner, implantedComp.ImplantContainer); } /// @@ -147,60 +137,25 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem /// /// the implanted entity /// the implant - [PublicAPI] - public void ForceRemove(EntityUid target, EntityUid implant) + public void ForceRemove(Entity target, EntityUid implant) { - if (!TryComp(target, out var implanted)) + if (!Resolve(target, ref target.Comp)) return; - var implantContainer = implanted.ImplantContainer; - - _container.Remove(implant, implantContainer); - QueueDel(implant); + _container.Remove(implant, target.Comp.ImplantContainer); + PredictedQueueDel(implant); } /// /// Removes and deletes implants by force /// /// The entity to have implants removed - [PublicAPI] - public void WipeImplants(EntityUid target) + public void WipeImplants(Entity target) { - if (!TryComp(target, out var implanted)) + if (!Resolve(target, ref target.Comp, false)) return; - var implantContainer = implanted.ImplantContainer; - - _container.CleanContainer(implantContainer); - } - - //Relays from the implanted to the implant - private void RelayToImplantEvent(EntityUid uid, ImplantedComponent component, T args) where T : notnull - { - if (!_container.TryGetContainer(uid, ImplanterComponent.ImplantSlotId, out var implantContainer)) - return; - - var relayEv = new ImplantRelayEvent(args, uid); - foreach (var implant in implantContainer.ContainedEntities) - { - if (args is HandledEntityEventArgs { Handled : true }) - return; - - RaiseLocalEvent(implant, relayEv); - } - } -} - -public sealed class ImplantRelayEvent where T : notnull -{ - public readonly T Event; - - public readonly EntityUid ImplantedEntity; - - public ImplantRelayEvent(T ev, EntityUid implantedEntity) - { - Event = ev; - ImplantedEntity = implantedEntity; + _container.CleanContainer(target.Comp.ImplantContainer); } } @@ -212,12 +167,30 @@ public sealed class ImplantRelayEvent where T : notnull /// implant implant implant implant /// [ByRefEvent] -public readonly struct ImplantImplantedEvent +public readonly record struct ImplantImplantedEvent { public readonly EntityUid Implant; - public readonly EntityUid? Implanted; + public readonly EntityUid Implanted; - public ImplantImplantedEvent(EntityUid implant, EntityUid? implanted) + public ImplantImplantedEvent(EntityUid implant, EntityUid implanted) + { + Implant = implant; + Implanted = implanted; + } +} + +/// +/// Event that is raised whenever an implant is removed from someone. +/// Raised on the the implant entity. +/// + +[ByRefEvent] +public readonly record struct ImplantRemovedEvent +{ + public readonly EntityUid Implant; + public readonly EntityUid Implanted; + + public ImplantRemovedEvent(EntityUid implant, EntityUid implanted) { Implant = implant; Implanted = implanted; diff --git a/Content.Shared/Implants/StorageImplantSystem.cs b/Content.Shared/Implants/StorageImplantSystem.cs new file mode 100644 index 0000000000..748f9f3ad2 --- /dev/null +++ b/Content.Shared/Implants/StorageImplantSystem.cs @@ -0,0 +1,36 @@ +using System.Linq; +using Content.Shared.Implants.Components; +using Content.Shared.Storage; +using Robust.Shared.Containers; +using Robust.Shared.Network; + +namespace Content.Shared.Implants; + +public sealed class StorageImplantSystem : EntitySystem +{ + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly INetManager _net = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnImplantRemoved); + } + + private void OnImplantRemoved(Entity ent, ref ImplantRemovedEvent args) + { + if (_net.IsClient) + return; // TODO: RandomPredicted and DropNextToPredicted + + if (!_container.TryGetContainer(ent.Owner, StorageComponent.ContainerId, out var storageImplant)) + return; + + var contained = storageImplant.ContainedEntities.ToArray(); + foreach (var entity in contained) + { + _transform.DropNextTo(entity, ent.Owner); + } + } +} diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs b/Content.Shared/Mindshield/FakeMindShield/FakeMindshieldSystem.cs similarity index 94% rename from Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs rename to Content.Shared/Mindshield/FakeMindShield/FakeMindshieldSystem.cs index c82f2b2863..4d7d457321 100644 --- a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs +++ b/Content.Shared/Mindshield/FakeMindShield/FakeMindshieldSystem.cs @@ -8,7 +8,7 @@ using Robust.Shared.Timing; namespace Content.Shared.Mindshield.FakeMindShield; -public sealed class SharedFakeMindShieldSystem : EntitySystem +public sealed class FakeMindShieldSystem : EntitySystem { [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly TagSystem _tag = default!; @@ -24,9 +24,11 @@ public sealed class SharedFakeMindShieldSystem : EntitySystem SubscribeLocalEvent(OnChameleonControllerOutfitSelected); } - private void OnToggleMindshield(EntityUid uid, FakeMindShieldComponent comp, FakeMindShieldToggleEvent toggleEvent) + private void OnToggleMindshield(EntityUid uid, FakeMindShieldComponent comp, FakeMindShieldToggleEvent args) { comp.IsEnabled = !comp.IsEnabled; + args.Toggle = true; + args.Handled = true; Dirty(uid, comp); } diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs deleted file mode 100644 index a597e03406..0000000000 --- a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs +++ /dev/null @@ -1,45 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Implants; -using Content.Shared.Implants.Components; -using Content.Shared.Mindshield.Components; -using Robust.Shared.Containers; - -namespace Content.Shared.Mindshield.FakeMindShield; - -public sealed class SharedFakeMindShieldImplantSystem : EntitySystem -{ - [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnFakeMindShieldToggle); - SubscribeLocalEvent(ImplantCheck); - SubscribeLocalEvent(ImplantDraw); - } - - /// - /// Raise the Action of a Implanted user toggling their implant to the FakeMindshieldComponent on their entity - /// - private void OnFakeMindShieldToggle(Entity entity, ref FakeMindShieldToggleEvent ev) - { - ev.Handled = true; - if (entity.Comp.ImplantedEntity is not { } ent) - return; - - if (!TryComp(ent, out var comp)) - return; - // TODO: is there a reason this cant set ev.Toggle = true; - _actionsSystem.SetToggled((ev.Action, ev.Action), !comp.IsEnabled); // Set it to what the Mindshield component WILL be after this - RaiseLocalEvent(ent, ev); //this reraises the action event to support an eventual future Changeling Antag which will also be using this component for it's "mindshield" ability - } - private void ImplantCheck(EntityUid uid, FakeMindShieldImplantComponent component ,ref ImplantImplantedEvent ev) - { - if (ev.Implanted != null) - EnsureComp(ev.Implanted.Value); - } - - private void ImplantDraw(Entity ent, ref EntGotRemovedFromContainerMessage ev) - { - RemComp(ev.Container.Owner); - } -} diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 97435c229d..c8ea03502a 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -376,6 +376,7 @@ iconOn: { sprite: Interface/Actions/actions_fakemindshield.rsi, state: icon-on } itemIconStyle: NoItem useDelay: 1 + raiseOnUser: true - type: InstantAction event: !type:FakeMindShieldToggleEvent - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml index e1918ef5e6..316acba6fc 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml @@ -6,89 +6,89 @@ parent: BaseItem abstract: true components: - - type: ItemSlots - - type: ContainerContainer - containers: - implanter_slot: !type:ContainerSlot { } - - type: Implanter + - type: ItemSlots + - type: ContainerContainer + containers: + implanter_slot: !type:ContainerSlot { } + - type: Implanter + whitelist: + components: + - MobState # no chair microbomb + blacklist: + components: + - Guardian # no holoparasite macrobomb wombo combo + tags: + - Unimplantable + currentMode: Draw + implanterSlot: + name: Implant + locked: True + priority: 0 whitelist: - components: - - MobState # no chair microbomb - blacklist: - components: - - Guardian # no holoparasite macrobomb wombo combo tags: - - Unimplantable - currentMode: Draw - implanterSlot: - name: Implant - locked: True - priority: 0 - whitelist: - tags: - - SubdermalImplant - allowDeimplantAll: false - deimplantWhitelist: - - SadTromboneImplant - - LightImplant - - BikeHornImplant - - TrackingImplant - - StorageImplant - - FreedomImplant - - UplinkImplant - - EmpImplant - - ScramImplant - - DnaScramblerImplant - - MicroBombImplant - - MacroBombImplant - - DeathAcidifierImplant - - DeathRattleImplant - - MindShieldImplant - - FakeMindShieldImplant - - RadioImplant - - ChameleonControllerImplant - deimplantFailureDamage: - types: - Cellular: 50 - Heat: 10 - - type: Sprite - sprite: Objects/Specific/Medical/implanter.rsi - state: implanter0 - layers: - - state: implanter0 - map: [ "implantOnly" ] - visible: true - - state: implanter1 - map: [ "implantFull" ] - visible: false - - type: Item - sprite: Objects/Specific/Medical/implanter.rsi - heldPrefix: implanter - size: Small - - type: Appearance - - type: GenericVisualizer - visuals: - enum.ImplanterVisuals.Full: - implantFull: - True: {visible: true} - False: {visible: false} - enum.ImplanterImplantOnlyVisuals.ImplantOnly: - implantOnly: - True: {state: broken} - False: {state: implanter0} - - type: UserInterface - interfaces: - enum.DeimplantUiKey.Key: - type: DeimplantBoundUserInterface + - SubdermalImplant + allowDeimplantAll: false + deimplantWhitelist: + - SadTromboneImplant + - LightImplant + - BikeHornImplant + - TrackingImplant + - StorageImplant + - FreedomImplant + - UplinkImplant + - EmpImplant + - ScramImplant + - DnaScramblerImplant + - MicroBombImplant + - MacroBombImplant + - DeathAcidifierImplant + - DeathRattleImplant + - MindShieldImplant + - FakeMindShieldImplant + - RadioImplant + - ChameleonControllerImplant + deimplantFailureDamage: + types: + Cellular: 50 + Heat: 10 + - type: Sprite + sprite: Objects/Specific/Medical/implanter.rsi + state: implanter0 + layers: + - state: implanter0 + map: [ "implantOnly" ] + visible: true + - state: implanter1 + map: [ "implantFull" ] + visible: false + - type: Item + sprite: Objects/Specific/Medical/implanter.rsi + heldPrefix: implanter + size: Small + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ImplanterVisuals.Full: + implantFull: + True: {visible: true} + False: {visible: false} + enum.ImplanterImplantOnlyVisuals.ImplantOnly: + implantOnly: + True: {state: broken} + False: {state: implanter0} + - type: UserInterface + interfaces: + enum.DeimplantUiKey.Key: + type: DeimplantBoundUserInterface - type: entity id: Implanter parent: BaseImplanter description: A disposable syringe exclusively designed for the injection and extraction of subdermal implants. components: - - type: Tag - tags: - - Trash + - type: Tag + tags: + - Trash - type: entity parent: Implanter @@ -108,18 +108,18 @@ description: A disposable syringe exclusively designed for the injection of subdermal implants. abstract: true components: - - type: Sprite - sprite: Objects/Specific/Medical/implanter.rsi - state: implanter0 - layers: - - state: implanter1 - map: [ "implantFull" ] - visible: true - - state: implanter0 - map: [ "implantOnly" ] - - type: Implanter - currentMode: Inject - implantOnly: true + - type: Sprite + sprite: Objects/Specific/Medical/implanter.rsi + state: implanter0 + layers: + - state: implanter1 + map: [ "implantFull" ] + visible: true + - state: implanter0 + map: [ "implantOnly" ] + - type: Implanter + currentMode: Inject + implantOnly: true - type: entity id: BaseImplantOnlyImplanterSyndi @@ -128,30 +128,30 @@ description: A compact disposable syringe exclusively designed for the injection of subdermal implants. Make sure to scrub it with soap or a rag to remove residual DNA after use! abstract: true components: - - type: Item - sprite: Objects/Specific/Medical/syndi_implanter.rsi - heldPrefix: implanter - - type: Sprite - sprite: Objects/Specific/Medical/syndi_implanter.rsi - state: implanter1 - layers: - - state: implanter0 - map: [ "implantFull" ] - visible: true - - state: implanter1 - map: [ "implantOnly" ] - - type: GenericVisualizer - visuals: - enum.ImplanterVisuals.Full: - implantFull: - True: {visible: true} - False: {visible: false} - enum.ImplanterImplantOnlyVisuals.ImplantOnly: - implantOnly: - True: {state: broken} - False: {state: implanter1} - - type: Tag - tags: [] + - type: Item + sprite: Objects/Specific/Medical/syndi_implanter.rsi + heldPrefix: implanter + - type: Sprite + sprite: Objects/Specific/Medical/syndi_implanter.rsi + state: implanter1 + layers: + - state: implanter0 + map: [ "implantFull" ] + visible: true + - state: implanter1 + map: [ "implantOnly" ] + - type: GenericVisualizer + visuals: + enum.ImplanterVisuals.Full: + implantFull: + True: {visible: true} + False: {visible: false} + enum.ImplanterImplantOnlyVisuals.ImplantOnly: + implantOnly: + True: {state: broken} + False: {state: implanter1} + - type: Tag + tags: [] #Fun implanters @@ -160,24 +160,24 @@ name: sad trombone implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: SadTromboneImplant + - type: Implanter + implant: SadTromboneImplant - type: entity id: LightImplanter name: light implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: LightImplant + - type: Implanter + implant: LightImplant - type: entity id: BikeHornImplanter name: bike horn implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: BikeHornImplant + - type: Implanter + implant: BikeHornImplant #Security implanters @@ -186,8 +186,8 @@ name: tracking implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: TrackingImplant + - type: Implanter + implant: TrackingImplant #Traitor implanters @@ -196,16 +196,16 @@ name: storage implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: StorageImplant + - type: Implanter + implant: StorageImplant - type: entity id: FreedomImplanter name: freedom implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: FreedomImplant + - type: Implanter + implant: FreedomImplant - type: entity id: RadioImplanter @@ -228,24 +228,24 @@ name: EMP implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: EmpImplant + - type: Implanter + implant: EmpImplant - type: entity id: ScramImplanter name: scram implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: ScramImplant + - type: Implanter + implant: ScramImplant - type: entity id: DnaScramblerImplanter name: DNA scrambler implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: DnaScramblerImplant + - type: Implanter + implant: DnaScramblerImplant - type: entity id: ChameleonControllerImplanter @@ -262,24 +262,24 @@ name: micro-bomb implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: MicroBombImplant + - type: Implanter + implant: MicroBombImplant - type: entity id: MacroBombImplanter name: macro-bomb implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: MacroBombImplant + - type: Implanter + implant: MacroBombImplant - type: entity id: DeathRattleImplanter name: death rattle implanter parent: BaseImplantOnlyImplanterSyndi components: - - type: Implanter - implant: DeathRattleImplant + - type: Implanter + implant: DeathRattleImplant - type: entity id: DeathAcidifierImplanter @@ -304,8 +304,8 @@ name: mindshield implanter parent: BaseImplantOnlyImplanter components: - - type: Implanter - implant: MindShieldImplant + - type: Implanter + implant: MindShieldImplant # Centcomm implanters diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index 6a4ad24664..5ff8c79fb4 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -19,18 +19,18 @@ description: This implant plays a sad tune when the user dies. categories: [ HideSpawnMenu ] components: - - type: SubdermalImplant - whitelist: - components: - - MobState # admeme implanting a chair with trombone implant needs to give the chair mobstate so it can die first - - type: TriggerOnMobstateChange - mobState: - - Dead - - type: EmitSoundOnTrigger - sound: - collection: SadTrombone - params: - variation: 0.125 + - type: SubdermalImplant + whitelist: + components: + - MobState # admeme implanting a chair with trombone implant needs to give the chair mobstate so it can die first + - type: TriggerOnMobstateChange + mobState: + - Dead + - type: EmitSoundOnTrigger + sound: + collection: SadTrombone + params: + variation: 0.125 - type: entity parent: BaseSubdermalImplant @@ -39,20 +39,20 @@ description: This implant emits light from the user's skin on activation. categories: [ HideSpawnMenu ] components: - - type: SubdermalImplant - implantAction: ActionToggleLight - - type: PointLight - enabled: false - radius: 2.5 - softness: 5 - mask: /Textures/Effects/LightMasks/cone.png - autoRot: true - - type: Tag - tags: - - SubdermalImplant - - HideContextMenu - - Flashlight - - type: UnpoweredFlashlight + - type: SubdermalImplant + implantAction: ActionToggleLight + - type: PointLight + enabled: false + radius: 2.5 + softness: 5 + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + - type: Tag + tags: + - SubdermalImplant + - HideContextMenu + - Flashlight + - type: UnpoweredFlashlight - type: entity parent: BaseSubdermalImplant @@ -108,6 +108,7 @@ description: This implant grants hidden storage within a person's body using bluespace technology. categories: [ HideSpawnMenu ] components: + - type: StorageImplant - type: SubdermalImplant implantAction: ActionOpenStorageImplant whitelist: @@ -280,6 +281,10 @@ components: - type: SubdermalImplant permanent: true + - type: ReplacementImplant + whitelist: + tags: + - MicroBomb # replace microbomb implant with macrobomb - type: TriggerOnMobstateChange #activates the timer mobState: - Dead @@ -306,9 +311,9 @@ canCreateVacuum: true - type: Tag tags: - - SubdermalImplant - - HideContextMenu - - MacroBomb + - SubdermalImplant + - HideContextMenu + - MacroBomb - type: entity parent: BaseSubdermalImplant @@ -362,9 +367,11 @@ description: This implant allows the implanter to produce a fake signal that NT security huds use to identify individuals implanted with a mindshield. categories: [ HideSpawnMenu ] components: - - type: SubdermalImplant - implantAction: FakeMindShieldToggleAction - - type: FakeMindShieldImplant + - type: SubdermalImplant + implantAction: FakeMindShieldToggleAction + implantComponents: + - type: FakeMindShield # TODO: put the component on the implant and use implant relay events for the status icon + - type: FakeMindShieldImplant # Sec and Command implants From d1916fa4d3c6835df5004791d79a29867c42b486 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Wed, 20 Aug 2025 18:33:14 +0200 Subject: [PATCH 089/194] Revert "Fix: Untoggle removed actions" (#39776) Revert "Fix: Untoggle removed actions (#39526)" This reverts commit e90fac14eb9d8ecd7267ea7d7381ad0f3abc8886. --- Content.Shared/Actions/SharedActionsSystem.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index c0a32e6038..c4581cfbff 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -832,8 +832,7 @@ public abstract class SharedActionsSystem : EntitySystem performer.Comp.Actions.Remove(ent.Owner); Dirty(performer, performer.Comp); ent.Comp.AttachedEntity = null; - ent.Comp.Toggled = false; - DirtyFields(ent, ent.Comp, null, nameof(ActionComponent.AttachedEntity), nameof(ActionComponent.Toggled)); + DirtyField(ent, ent.Comp, nameof(ActionComponent.AttachedEntity)); ActionRemoved((performer, performer.Comp), ent); if (ent.Comp.Temporary) From dd74bfc083052bace7eaee20f04c0d9aa68f9faa Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Wed, 20 Aug 2025 15:25:53 -0400 Subject: [PATCH 090/194] Remove BodyComponent check from MobPrice test (#39786) --- Content.IntegrationTests/Tests/CargoTest.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Content.IntegrationTests/Tests/CargoTest.cs b/Content.IntegrationTests/Tests/CargoTest.cs index 5830ea59da..aad87b711a 100644 --- a/Content.IntegrationTests/Tests/CargoTest.cs +++ b/Content.IntegrationTests/Tests/CargoTest.cs @@ -5,7 +5,6 @@ using Content.Server.Cargo.Components; using Content.Server.Cargo.Systems; using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; -using Content.Shared.Body.Components; using Content.Shared.Cargo.Prototypes; using Content.Shared.Mobs.Components; using Content.Shared.Prototypes; @@ -266,7 +265,6 @@ public sealed class CargoTest { foreach (var (proto, comp) in pair.GetPrototypesWithComponent()) { - Assert.That(proto.TryGetComponent(out _, componentFactory), $"Found MobPriceComponent on {proto.ID}, but no BodyComponent!"); Assert.That(proto.TryGetComponent(out _, componentFactory), $"Found MobPriceComponent on {proto.ID}, but no MobStateComponent!"); } }); From 9b8fa1af6f126cfa962e31d481accd03fafceb16 Mon Sep 17 00:00:00 2001 From: Perry Fraser Date: Wed, 20 Aug 2025 18:47:31 -0400 Subject: [PATCH 091/194] =?UTF-8?q?fix:=20spellbooks=20can=20have=20charge?= =?UTF-8?q?s=20=E2=89=A0=203=20(#38769)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: spellbooks can have charges ≠ 3 * refactor: just make setting MaxCharges an api thing * refactor: don't auto-add LimitedCharges * Small stuff --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- .../Components/LimitedChargesComponent.cs | 2 +- .../Charges/Systems/SharedChargesSystem.cs | 45 ++++++++++++++++++- Content.Shared/Magic/SpellbookSystem.cs | 26 +++++++---- 3 files changed, 63 insertions(+), 10 deletions(-) diff --git a/Content.Shared/Charges/Components/LimitedChargesComponent.cs b/Content.Shared/Charges/Components/LimitedChargesComponent.cs index e879e0f1df..7891857187 100644 --- a/Content.Shared/Charges/Components/LimitedChargesComponent.cs +++ b/Content.Shared/Charges/Components/LimitedChargesComponent.cs @@ -16,7 +16,7 @@ public sealed partial class LimitedChargesComponent : Component /// /// The max charges this action has. /// - [DataField, AutoNetworkedField, Access(Other = AccessPermissions.Read)] + [DataField, AutoNetworkedField] public int MaxCharges = 3; /// diff --git a/Content.Shared/Charges/Systems/SharedChargesSystem.cs b/Content.Shared/Charges/Systems/SharedChargesSystem.cs index e915580bae..504648c41d 100644 --- a/Content.Shared/Charges/Systems/SharedChargesSystem.cs +++ b/Content.Shared/Charges/Systems/SharedChargesSystem.cs @@ -94,6 +94,12 @@ public abstract class SharedChargesSystem : EntitySystem /// /// Adds the specified charges. Does not reset the accumulator. /// + /// + /// The action to add charges to. If it doesn't have , it will be added. + /// + /// + /// The number of charges to add. Can be negative. Resulting charge count is clamped to [0, MaxCharges]. + /// public void AddCharges(Entity action, int addCharges) { if (addCharges == 0) @@ -170,9 +176,21 @@ public abstract class SharedChargesSystem : EntitySystem Dirty(action); } + /// + /// Set the number of charges an action has. + /// + /// The action in question + /// + /// The number of charges. Clamped to [0, MaxCharges]. + /// + /// + /// This method doesn't implicitly add + /// unlike some other methods in this system. + /// public void SetCharges(Entity action, int value) { - action.Comp ??= EnsureComp(action.Owner); + if (!Resolve(action, ref action.Comp)) + return; var adjusted = Math.Clamp(value, 0, action.Comp.MaxCharges); @@ -186,6 +204,31 @@ public abstract class SharedChargesSystem : EntitySystem Dirty(action); } + /// + /// Sets the maximum charges of a given action. + /// + /// The action being modified. + /// The new maximum charges of the action. Clamped to zero. + /// + /// Does not change the current charge count, or adjust the + /// accumulator for auto-recharge. It also doesn't implicitly add + /// unlike some other methods + /// in this system. + /// + public void SetMaxCharges(Entity action, int value) + { + if (!Resolve(action, ref action.Comp)) + return; + + // You can't have negative max charges (even zero is a bit goofy but eh) + var adjusted = Math.Max(0, value); + if (action.Comp.MaxCharges == adjusted) + return; + + action.Comp.MaxCharges = adjusted; + Dirty(action); + } + /// /// The next time a charge will be considered to be filled. /// diff --git a/Content.Shared/Magic/SpellbookSystem.cs b/Content.Shared/Magic/SpellbookSystem.cs index ca01819bce..90038fa9ba 100644 --- a/Content.Shared/Magic/SpellbookSystem.cs +++ b/Content.Shared/Magic/SpellbookSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Actions; -using Content.Shared.Actions.Components; +using Content.Shared.Actions.Components; +using Content.Shared.Charges.Components; using Content.Shared.Charges.Systems; using Content.Shared.DoAfter; using Content.Shared.Interaction.Events; @@ -29,14 +30,19 @@ public sealed class SpellbookSystem : EntitySystem { foreach (var (id, charges) in ent.Comp.SpellActions) { - var spell = _actionContainer.AddAction(ent, id); - if (spell == null) + var action = _actionContainer.AddAction(ent, id); + if (action is not { } spell) continue; // Null means infinite charges. if (charges is { } count) - _sharedCharges.SetCharges(spell.Value, count); - ent.Comp.Spells.Add(spell.Value); + { + EnsureComp(spell, out var chargeComp); + _sharedCharges.SetMaxCharges((spell, chargeComp), count); + _sharedCharges.SetCharges((spell, chargeComp), count); + } + + ent.Comp.Spells.Add(spell); } } @@ -75,9 +81,13 @@ public sealed class SpellbookSystem : EntitySystem foreach (var (id, charges) in ent.Comp.SpellActions) { EntityUid? actionId = null; - if (_actions.AddAction(args.Args.User, ref actionId, id) - && charges is { } count) // Null means infinite charges - _sharedCharges.SetCharges(actionId.Value, count); + if (!_actions.AddAction(args.Args.User, ref actionId, id) + || charges is not { } count // Null means infinite charges + || !TryComp(actionId, out var chargeComp)) + continue; + + _sharedCharges.SetMaxCharges((actionId.Value, chargeComp), count); + _sharedCharges.SetCharges((actionId.Value, chargeComp), count); } } From def514bb3b293293dab242d7741a839d3ae67ec9 Mon Sep 17 00:00:00 2001 From: Kowlin <10947836+Kowlin@users.noreply.github.com> Date: Thu, 21 Aug 2025 01:34:40 +0200 Subject: [PATCH 092/194] Fix tricky nades not emitting their sounds. (#39792) --- .../Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index d843463886..60ce9bd3ec 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -601,6 +601,7 @@ - timer sound: path: /Audio/Effects/Emotes/parp1.ogg + positional: true - type: Appearance - type: TimerTriggerVisuals primingSound: @@ -621,6 +622,7 @@ - timer sound: path: /Audio/Effects/Emotes/parp1.ogg + positional: true - type: Appearance - type: TimerTriggerVisuals primingSound: From f78280501a1757e7c6f124d1efc1bc7c2e470767 Mon Sep 17 00:00:00 2001 From: Prole <172158352+Prole0@users.noreply.github.com> Date: Wed, 20 Aug 2025 16:35:38 -0700 Subject: [PATCH 093/194] Moving Zombie Components to Shared (#39791) * Moving Comps to Shared * Requested Changes --- Content.Server/Zombies/ZombifyOnDeathComponent.cs | 8 -------- .../Zombies/ZombieImmuneComponent.cs | 6 ++++-- Content.Shared/Zombies/ZombifyOnDeathComponent.cs | 12 ++++++++++++ 3 files changed, 16 insertions(+), 10 deletions(-) delete mode 100644 Content.Server/Zombies/ZombifyOnDeathComponent.cs rename {Content.Server => Content.Shared}/Zombies/ZombieImmuneComponent.cs (60%) create mode 100644 Content.Shared/Zombies/ZombifyOnDeathComponent.cs diff --git a/Content.Server/Zombies/ZombifyOnDeathComponent.cs b/Content.Server/Zombies/ZombifyOnDeathComponent.cs deleted file mode 100644 index dff17c4613..0000000000 --- a/Content.Server/Zombies/ZombifyOnDeathComponent.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Content.Server.Zombies -{ - [RegisterComponent] - public sealed partial class ZombifyOnDeathComponent : Component - { - //this is not the component you are looking for - } -} diff --git a/Content.Server/Zombies/ZombieImmuneComponent.cs b/Content.Shared/Zombies/ZombieImmuneComponent.cs similarity index 60% rename from Content.Server/Zombies/ZombieImmuneComponent.cs rename to Content.Shared/Zombies/ZombieImmuneComponent.cs index 76a8ab9e67..18ad228363 100644 --- a/Content.Server/Zombies/ZombieImmuneComponent.cs +++ b/Content.Shared/Zombies/ZombieImmuneComponent.cs @@ -1,9 +1,11 @@ -namespace Content.Server.Zombies; +using Robust.Shared.GameStates; + +namespace Content.Shared.Zombies; /// /// Entities with this component cannot be zombified. /// -[RegisterComponent] +[RegisterComponent, NetworkedComponent] public sealed partial class ZombieImmuneComponent : Component { //still no diff --git a/Content.Shared/Zombies/ZombifyOnDeathComponent.cs b/Content.Shared/Zombies/ZombifyOnDeathComponent.cs new file mode 100644 index 0000000000..138ea6e409 --- /dev/null +++ b/Content.Shared/Zombies/ZombifyOnDeathComponent.cs @@ -0,0 +1,12 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Zombies; + +/// +/// Entities with this component zombify on death. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class ZombifyOnDeathComponent : Component +{ + //this is not the component you are looking for +} From e5011cb30515fe7368ef4e73e0c8160d1ada50dc Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 20 Aug 2025 23:35:50 +0000 Subject: [PATCH 094/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 10438ead6a..422f819fcd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Nox38 - changes: - - message: Added descriptions for the .30 caliber and weapons. - type: Add - id: 8360 - time: '2025-04-26T21:48:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36958 - author: UpAndLeaves changes: - message: The CMO's hardsuit has been redesigned with extra durathread to withstand @@ -3950,3 +3943,10 @@ id: 8872 time: '2025-08-20T11:08:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39648 +- author: Kowlin + changes: + - message: Fixed Syndicate tricky grenades not playing sounds on explosion. + type: Fix + id: 8873 + time: '2025-08-20T23:34:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39792 From d286a70d47bca6ea5c4835bd147f9b0bd97987e4 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Thu, 21 Aug 2025 02:42:42 +0200 Subject: [PATCH 095/194] cleanup changeling namespaces and prototypes (#39794) --- .../ChangelingTransformBoundUserInterface.cs | 2 +- .../Transform/ChangelingTransformMenu.xaml.cs | 2 +- ...em.Events.cs => ChangelingDevourEvents.cs} | 2 +- ...Events.cs => ChangelingTransformEvents.cs} | 2 +- .../ChangelingDevourComponent.cs | 3 +- .../ChangelingIdentityComponent.cs | 3 +- .../ChangelingStoredIdentityComponent.cs | 2 +- .../ChangelingTransformComponent.cs | 3 +- .../ChangelingDevourSystem.cs | 3 +- .../{ => Systems}/ChangelingIdentitySystem.cs | 3 +- .../ChangelingTransformSystem.UI.cs | 2 +- .../ChangelingTransformSystem.cs | 9 ++--- Resources/Prototypes/Actions/changeling.yml | 22 ++++++++++++ Resources/Prototypes/Antag/changeling.yml | 35 ------------------- .../Entities/Mobs/Player/changeling.yml | 12 +++++++ 15 files changed, 55 insertions(+), 50 deletions(-) rename Content.Shared/Changeling/{Devour/ChangelingDevourSystem.Events.cs => ChangelingDevourEvents.cs} (94%) rename Content.Shared/Changeling/{Transform/ChangelingTransformSystem.Events.cs => ChangelingTransformEvents.cs} (91%) rename Content.Shared/Changeling/{Devour => Components}/ChangelingDevourComponent.cs (98%) rename Content.Shared/Changeling/{ => Components}/ChangelingIdentityComponent.cs (95%) rename Content.Shared/Changeling/{ => Components}/ChangelingStoredIdentityComponent.cs (95%) rename Content.Shared/Changeling/{Transform => Components}/ChangelingTransformComponent.cs (95%) rename Content.Shared/Changeling/{Devour => Systems}/ChangelingDevourSystem.cs (99%) rename Content.Shared/Changeling/{ => Systems}/ChangelingIdentitySystem.cs (98%) rename Content.Shared/Changeling/{Transform => Systems}/ChangelingTransformSystem.UI.cs (95%) rename Content.Shared/Changeling/{Transform => Systems}/ChangelingTransformSystem.cs (95%) delete mode 100644 Resources/Prototypes/Antag/changeling.yml create mode 100644 Resources/Prototypes/Entities/Mobs/Player/changeling.yml diff --git a/Content.Client/Changeling/Transform/ChangelingTransformBoundUserInterface.cs b/Content.Client/Changeling/Transform/ChangelingTransformBoundUserInterface.cs index 8e383bc967..9401231303 100644 --- a/Content.Client/Changeling/Transform/ChangelingTransformBoundUserInterface.cs +++ b/Content.Client/Changeling/Transform/ChangelingTransformBoundUserInterface.cs @@ -1,4 +1,4 @@ -using Content.Shared.Changeling.Transform; +using Content.Shared.Changeling.Systems; using JetBrains.Annotations; using Robust.Client.UserInterface; diff --git a/Content.Client/Changeling/Transform/ChangelingTransformMenu.xaml.cs b/Content.Client/Changeling/Transform/ChangelingTransformMenu.xaml.cs index beef9ae427..fa2deaf431 100644 --- a/Content.Client/Changeling/Transform/ChangelingTransformMenu.xaml.cs +++ b/Content.Client/Changeling/Transform/ChangelingTransformMenu.xaml.cs @@ -1,6 +1,6 @@ using System.Numerics; using Content.Client.UserInterface.Controls; -using Content.Shared.Changeling.Transform; +using Content.Shared.Changeling.Systems; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; diff --git a/Content.Shared/Changeling/Devour/ChangelingDevourSystem.Events.cs b/Content.Shared/Changeling/ChangelingDevourEvents.cs similarity index 94% rename from Content.Shared/Changeling/Devour/ChangelingDevourSystem.Events.cs rename to Content.Shared/Changeling/ChangelingDevourEvents.cs index d063737e5c..ba8d25f30c 100644 --- a/Content.Shared/Changeling/Devour/ChangelingDevourSystem.Events.cs +++ b/Content.Shared/Changeling/ChangelingDevourEvents.cs @@ -2,7 +2,7 @@ using Content.Shared.DoAfter; using Robust.Shared.Serialization; -namespace Content.Shared.Changeling.Devour; +namespace Content.Shared.Changeling; /// /// Action event for Devour, someone has initiated a devour on someone, begin to windup. diff --git a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.Events.cs b/Content.Shared/Changeling/ChangelingTransformEvents.cs similarity index 91% rename from Content.Shared/Changeling/Transform/ChangelingTransformSystem.Events.cs rename to Content.Shared/Changeling/ChangelingTransformEvents.cs index cfe2a56933..9940a60705 100644 --- a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.Events.cs +++ b/Content.Shared/Changeling/ChangelingTransformEvents.cs @@ -2,7 +2,7 @@ using Content.Shared.DoAfter; using Robust.Shared.Serialization; -namespace Content.Shared.Changeling.Transform; +namespace Content.Shared.Changeling; /// /// Action event for opening the changeling transformation radial menu. diff --git a/Content.Shared/Changeling/Devour/ChangelingDevourComponent.cs b/Content.Shared/Changeling/Components/ChangelingDevourComponent.cs similarity index 98% rename from Content.Shared/Changeling/Devour/ChangelingDevourComponent.cs rename to Content.Shared/Changeling/Components/ChangelingDevourComponent.cs index 7798c6fec9..a874afe9ce 100644 --- a/Content.Shared/Changeling/Devour/ChangelingDevourComponent.cs +++ b/Content.Shared/Changeling/Components/ChangelingDevourComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.Changeling.Systems; using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; using Content.Shared.FixedPoint; @@ -7,7 +8,7 @@ using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; -namespace Content.Shared.Changeling.Devour; +namespace Content.Shared.Changeling.Components; /// /// Component responsible for Changelings Devour attack. Including the amount of damage diff --git a/Content.Shared/Changeling/ChangelingIdentityComponent.cs b/Content.Shared/Changeling/Components/ChangelingIdentityComponent.cs similarity index 95% rename from Content.Shared/Changeling/ChangelingIdentityComponent.cs rename to Content.Shared/Changeling/Components/ChangelingIdentityComponent.cs index 461315f4ce..2779164e4e 100644 --- a/Content.Shared/Changeling/ChangelingIdentityComponent.cs +++ b/Content.Shared/Changeling/Components/ChangelingIdentityComponent.cs @@ -2,7 +2,7 @@ using Content.Shared.Cloning; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -namespace Content.Shared.Changeling; +namespace Content.Shared.Changeling.Components; /// /// The storage component for Changelings, it handles the link between a changeling and its consumed identities @@ -29,6 +29,7 @@ public sealed partial class ChangelingIdentityComponent : Component /// The cloning settings passed to the CloningSystem, contains a list of all components to copy or have handled by their /// respective systems. /// + [DataField] public ProtoId IdentityCloningSettings = "ChangelingCloningSettings"; public override bool SendOnlyToOwner => true; diff --git a/Content.Shared/Changeling/ChangelingStoredIdentityComponent.cs b/Content.Shared/Changeling/Components/ChangelingStoredIdentityComponent.cs similarity index 95% rename from Content.Shared/Changeling/ChangelingStoredIdentityComponent.cs rename to Content.Shared/Changeling/Components/ChangelingStoredIdentityComponent.cs index 44583190e6..010196bfd0 100644 --- a/Content.Shared/Changeling/ChangelingStoredIdentityComponent.cs +++ b/Content.Shared/Changeling/Components/ChangelingStoredIdentityComponent.cs @@ -1,7 +1,7 @@ using Robust.Shared.GameStates; using Robust.Shared.Player; -namespace Content.Shared.Changeling; +namespace Content.Shared.Changeling.Components; /// /// Marker component for cloned identities devoured by a changeling. diff --git a/Content.Shared/Changeling/Transform/ChangelingTransformComponent.cs b/Content.Shared/Changeling/Components/ChangelingTransformComponent.cs similarity index 95% rename from Content.Shared/Changeling/Transform/ChangelingTransformComponent.cs rename to Content.Shared/Changeling/Components/ChangelingTransformComponent.cs index 0a3b3f1985..7b465ea3b2 100644 --- a/Content.Shared/Changeling/Transform/ChangelingTransformComponent.cs +++ b/Content.Shared/Changeling/Components/ChangelingTransformComponent.cs @@ -1,9 +1,10 @@ +using Content.Shared.Changeling.Systems; using Content.Shared.Cloning; using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -namespace Content.Shared.Changeling.Transform; +namespace Content.Shared.Changeling.Components; /// /// The component containing information about Changelings Transformation action diff --git a/Content.Shared/Changeling/Devour/ChangelingDevourSystem.cs b/Content.Shared/Changeling/Systems/ChangelingDevourSystem.cs similarity index 99% rename from Content.Shared/Changeling/Devour/ChangelingDevourSystem.cs rename to Content.Shared/Changeling/Systems/ChangelingDevourSystem.cs index 83a589a8e3..a064858d43 100644 --- a/Content.Shared/Changeling/Devour/ChangelingDevourSystem.cs +++ b/Content.Shared/Changeling/Systems/ChangelingDevourSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Administration.Logs; using Content.Shared.Armor; using Content.Shared.Atmos.Rotting; using Content.Shared.Body.Components; +using Content.Shared.Changeling.Components; using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.DoAfter; @@ -19,7 +20,7 @@ using Robust.Shared.Network; using Robust.Shared.Random; using Robust.Shared.Timing; -namespace Content.Shared.Changeling.Devour; +namespace Content.Shared.Changeling.Systems; public sealed class ChangelingDevourSystem : EntitySystem { diff --git a/Content.Shared/Changeling/ChangelingIdentitySystem.cs b/Content.Shared/Changeling/Systems/ChangelingIdentitySystem.cs similarity index 98% rename from Content.Shared/Changeling/ChangelingIdentitySystem.cs rename to Content.Shared/Changeling/Systems/ChangelingIdentitySystem.cs index f68f72f853..8467cc5702 100644 --- a/Content.Shared/Changeling/ChangelingIdentitySystem.cs +++ b/Content.Shared/Changeling/Systems/ChangelingIdentitySystem.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Shared.Changeling.Components; using Content.Shared.Cloning; using Content.Shared.Humanoid; using Content.Shared.Mind.Components; @@ -9,7 +10,7 @@ using Robust.Shared.Network; using Robust.Shared.Player; using Robust.Shared.Prototypes; -namespace Content.Shared.Changeling; +namespace Content.Shared.Changeling.Systems; public sealed class ChangelingIdentitySystem : EntitySystem { diff --git a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.UI.cs b/Content.Shared/Changeling/Systems/ChangelingTransformSystem.UI.cs similarity index 95% rename from Content.Shared/Changeling/Transform/ChangelingTransformSystem.UI.cs rename to Content.Shared/Changeling/Systems/ChangelingTransformSystem.UI.cs index 0383867698..98926631dc 100644 --- a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.UI.cs +++ b/Content.Shared/Changeling/Systems/ChangelingTransformSystem.UI.cs @@ -1,6 +1,6 @@ using Robust.Shared.Serialization; -namespace Content.Shared.Changeling.Transform; +namespace Content.Shared.Changeling.Systems; /// /// Send when a player selects an intentity to transform into in the radial menu. diff --git a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.cs b/Content.Shared/Changeling/Systems/ChangelingTransformSystem.cs similarity index 95% rename from Content.Shared/Changeling/Transform/ChangelingTransformSystem.cs rename to Content.Shared/Changeling/Systems/ChangelingTransformSystem.cs index dbc5356448..31f22b9294 100644 --- a/Content.Shared/Changeling/Transform/ChangelingTransformSystem.cs +++ b/Content.Shared/Changeling/Systems/ChangelingTransformSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Actions; using Content.Shared.Administration.Logs; +using Content.Shared.Changeling.Components; using Content.Shared.Cloning; using Content.Shared.Database; using Content.Shared.DoAfter; @@ -10,7 +11,7 @@ using Robust.Shared.Audio.Systems; using Robust.Shared.Network; using Robust.Shared.Prototypes; -namespace Content.Shared.Changeling.Transform; +namespace Content.Shared.Changeling.Systems; public sealed partial class ChangelingTransformSystem : EntitySystem { @@ -102,7 +103,7 @@ public sealed partial class ChangelingTransformSystem : EntitySystem if (_net.IsServer) ent.Comp.CurrentTransformSound = _audio.PlayPvs(ent.Comp.TransformAttemptNoise, ent)?.Entity; - if(TryComp(targetIdentity, out var storedIdentity) && storedIdentity.OriginalSession != null) + if (TryComp(targetIdentity, out var storedIdentity) && storedIdentity.OriginalSession != null) _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(ent.Owner):player} begun an attempt to transform into \"{Name(targetIdentity)}\" ({storedIdentity.OriginalSession:player}) "); else _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(ent.Owner):player} begun an attempt to transform into \"{Name(targetIdentity)}\""); @@ -162,8 +163,8 @@ public sealed partial class ChangelingTransformSystem : EntitySystem _humanoidAppearanceSystem.CloneAppearance(targetIdentity, args.User); _cloningSystem.CloneComponents(targetIdentity, args.User, settings); - - if(TryComp(targetIdentity, out var storedIdentity) && storedIdentity.OriginalSession != null) + + if (TryComp(targetIdentity, out var storedIdentity) && storedIdentity.OriginalSession != null) _adminLogger.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(ent.Owner):player} successfully transformed into \"{Name(targetIdentity)}\" ({storedIdentity.OriginalSession:player})"); else _adminLogger.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(ent.Owner):player} successfully transformed into \"{Name(targetIdentity)}\""); diff --git a/Resources/Prototypes/Actions/changeling.yml b/Resources/Prototypes/Actions/changeling.yml index 273bb8ed6b..6e4ec6db6c 100644 --- a/Resources/Prototypes/Actions/changeling.yml +++ b/Resources/Prototypes/Actions/changeling.yml @@ -20,3 +20,25 @@ retractSounds: collection: gib # Placeholder +- type: entity + id: ActionChangelingDevour + name: "[color=red]Devour[/color]" + description: Consume the essence of your victims and subsume their identity and mind into your own. + components: + - type: Action + icon: { sprite : Interface/Actions/changeling.rsi, state: "devour" } + iconOn: { sprite : Interface/Actions/changeling.rsi, state: "devour_on" } + priority: 1 + - type: TargetAction + - type: EntityTargetAction + event: !type:ChangelingDevourActionEvent + +- type: entity + id: ActionChangelingTransform + name: "[color=red]Transform[/color]" + description: Transform and assume the identities of those you have devoured. + components: + - type: Action + icon: { sprite : Interface/Actions/changeling.rsi, state: "transform" } + - type: InstantAction + event: !type:ChangelingTransformActionEvent diff --git a/Resources/Prototypes/Antag/changeling.yml b/Resources/Prototypes/Antag/changeling.yml deleted file mode 100644 index b4c8b2e3dc..0000000000 --- a/Resources/Prototypes/Antag/changeling.yml +++ /dev/null @@ -1,35 +0,0 @@ -- type: entity - parent: MobHuman - id: MobLing - name: Urist McLing - suffix: Non-Antag - components: - - type: ChangelingDevour - - type: ChangelingIdentity - - type: ChangelingTransform - - type: ActionGrant - actions: - - ActionRetractableItemArmBlade # Temporary addition, will inevitably be a purchasable in the bio-store - -- type: entity - id: ActionChangelingDevour - name: "[color=red]Devour[/color]" - description: Consume the essence of your victims and subsume their identity and mind into your own. - components: - - type: Action - icon: { sprite : Interface/Actions/changeling.rsi, state: "devour" } - iconOn: { sprite : Interface/Actions/changeling.rsi, state: "devour_on" } - priority: 1 - - type: TargetAction - - type: EntityTargetAction - event: !type:ChangelingDevourActionEvent - -- type: entity - id: ActionChangelingTransform - name: "[color=red]Transform[/color]" - description: Transform and assume the identities of those you have devoured. - components: - - type: Action - icon: { sprite : Interface/Actions/changeling.rsi, state: "transform" } - - type: InstantAction - event: !type:ChangelingTransformActionEvent diff --git a/Resources/Prototypes/Entities/Mobs/Player/changeling.yml b/Resources/Prototypes/Entities/Mobs/Player/changeling.yml new file mode 100644 index 0000000000..d8d4aac742 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Player/changeling.yml @@ -0,0 +1,12 @@ +- type: entity + parent: MobHuman + id: MobLing + name: Urist McLing + suffix: Non-Antag + components: + - type: ChangelingDevour + - type: ChangelingIdentity + - type: ChangelingTransform + - type: ActionGrant + actions: + - ActionRetractableItemArmBlade # Temporary addition, will inevitably be a purchasable in the bio-store From cd0cc721576a6db7905b1c25709c002f9f1bc7ef Mon Sep 17 00:00:00 2001 From: Mora <46364955+TrixxedHeart@users.noreply.github.com> Date: Wed, 20 Aug 2025 16:43:06 -0800 Subject: [PATCH 096/194] Impaired Mobility Disability (#39398) * Implements mobility impairment * Implements mobility impairment * Implements mobility impairment * Removed white cane related stuff (impaired cane replacement and removed mobility aid component) * fix development.toml * Implements slower standing * Prevent speed stacking by checking if the entity is already holding a mobility aid * Move all speed handling into ImpairedMobilitySystem, added comments, made it so wielding a mobility aid doesn't grant the recovery benefit * Move all speed handling into ImpairedMobilitySystem, added comments, made it so wielding a mobility aid doesn't grant the recovery benefit * remove unused file * Shorten description * Apply suggestions Co-authored-by: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> * Suggestion cleanup * formatting fix and removed extra datafield stuff * added comment, fixed slashes, yadda yadda * summary comments * removed a word * Add trait to clone whitelist * Fix clone.yml * my own review --------- Co-authored-by: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Co-authored-by: ScarKy0 --- .../Assorted/ImpairedMobilityComponent.cs | 25 +++++++ .../Traits/Assorted/ImpairedMobilitySystem.cs | 70 +++++++++++++++++++ .../Traits/Assorted/MobilityAidComponent.cs | 11 +++ .../Traits/Assorted/MobilityAidSystem.cs | 42 +++++++++++ Resources/Locale/en-US/traits/traits.ftl | 3 + .../Prototypes/Entities/Mobs/Player/clone.yml | 1 + .../Entities/Objects/Weapons/Melee/cane.yml | 1 + .../Objects/Weapons/Melee/offset_cane.yml | 1 + .../Objects/Weapons/Melee/white_cane.yml | 1 - Resources/Prototypes/Traits/disabilities.yml | 9 +++ 10 files changed, 163 insertions(+), 1 deletion(-) create mode 100644 Content.Shared/Traits/Assorted/ImpairedMobilityComponent.cs create mode 100644 Content.Shared/Traits/Assorted/ImpairedMobilitySystem.cs create mode 100644 Content.Shared/Traits/Assorted/MobilityAidComponent.cs create mode 100644 Content.Shared/Traits/Assorted/MobilityAidSystem.cs diff --git a/Content.Shared/Traits/Assorted/ImpairedMobilityComponent.cs b/Content.Shared/Traits/Assorted/ImpairedMobilityComponent.cs new file mode 100644 index 0000000000..50f7281ff8 --- /dev/null +++ b/Content.Shared/Traits/Assorted/ImpairedMobilityComponent.cs @@ -0,0 +1,25 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Traits.Assorted; + +/// +/// Used for the Impaired Mobility disability trait. +/// Applies a base movement speed reduction as determined by the SpeedModifier field. +/// Also increases the time it takes to stand up after falling, as determined by the StandUpTimeModifier field. +/// When an entity holds an item with the MobilityAidComponent, the speed penalty is nullified. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ImpairedMobilityComponent : Component +{ + /// + /// The movement speed modifier applied to the player (0.4 is 40% slower) + /// + [DataField, AutoNetworkedField] + public float SpeedModifier = 0.4f; + + /// + /// The doAfter modifier when getting up after falling (1.4 is 40% slower) + /// + [DataField, AutoNetworkedField] + public float StandUpTimeModifier = 1.4f; +} diff --git a/Content.Shared/Traits/Assorted/ImpairedMobilitySystem.cs b/Content.Shared/Traits/Assorted/ImpairedMobilitySystem.cs new file mode 100644 index 0000000000..678fc85344 --- /dev/null +++ b/Content.Shared/Traits/Assorted/ImpairedMobilitySystem.cs @@ -0,0 +1,70 @@ +using Content.Shared.Movement.Systems; +using Content.Shared.Stunnable; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Hands.Components; +using Content.Shared.Wieldable.Components; + +namespace Content.Shared.Traits.Assorted; + +/// +/// Handles +/// +public sealed class ImpairedMobilitySystem : EntitySystem +{ + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly MovementSpeedModifierSystem _speedModifier = default!; + public override void Initialize() + { + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnRefreshMovementSpeed); + SubscribeLocalEvent(OnGetStandUpTime); + } + + private void OnInit(Entity ent, ref ComponentInit args) + { + _speedModifier.RefreshMovementSpeedModifiers(ent); + } + + private void OnShutdown(Entity ent, ref ComponentShutdown args) + { + _speedModifier.RefreshMovementSpeedModifiers(ent); + } + + // Handles movement speed for entities with impaired mobility. + // Applies a speed penalty, but counteracts it if the entity is holding a non-wielded mobility aid. + private void OnRefreshMovementSpeed(Entity ent, ref RefreshMovementSpeedModifiersEvent args) + { + if (HasMobilityAid(ent.Owner)) + return; + + args.ModifySpeed(ent.Comp.SpeedModifier); + } + + // Increases the time it takes for entities to stand up from being knocked down. + private void OnGetStandUpTime(Entity ent, ref GetStandUpTimeEvent args) + { + args.DoAfterTime *= ent.Comp.StandUpTimeModifier; + } + + // Checks if the entity is holding any non-wielded mobility aids. + private bool HasMobilityAid(Entity entity) + { + if (!Resolve(entity, ref entity.Comp, false)) + return false; + + foreach (var held in _hands.EnumerateHeld(entity)) + { + if (!HasComp(held)) + continue; + + // Makes sure it's not wielded yet + if (TryComp(held, out var wieldable) && wieldable.Wielded) + continue; + + return true; + } + + return false; + } +} diff --git a/Content.Shared/Traits/Assorted/MobilityAidComponent.cs b/Content.Shared/Traits/Assorted/MobilityAidComponent.cs new file mode 100644 index 0000000000..6623c8217a --- /dev/null +++ b/Content.Shared/Traits/Assorted/MobilityAidComponent.cs @@ -0,0 +1,11 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Traits.Assorted; + +/// +/// Component to mark items that restore normal movement speed when held in-hand for entities with the impaired mobility trait. +/// The speed is automatically calculated to nullify the entity's speed penalty. +/// Should be used on items that act as mobility aids, such as canes. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class MobilityAidComponent : Component; diff --git a/Content.Shared/Traits/Assorted/MobilityAidSystem.cs b/Content.Shared/Traits/Assorted/MobilityAidSystem.cs new file mode 100644 index 0000000000..7df47ca750 --- /dev/null +++ b/Content.Shared/Traits/Assorted/MobilityAidSystem.cs @@ -0,0 +1,42 @@ +using Content.Shared.Hands; +using Content.Shared.Movement.Systems; +using Content.Shared.Wieldable; + +namespace Content.Shared.Traits.Assorted; + +/// +/// Handles +/// +public sealed class MobilityAidSystem : EntitySystem +{ + [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; + + /// + public override void Initialize() + { + SubscribeLocalEvent(OnGotEquippedHand); + SubscribeLocalEvent(OnGotUnequippedHand); + SubscribeLocalEvent(OnMobilityAidWielded); + SubscribeLocalEvent(OnMobilityAidUnwielded); + } + + private void OnGotEquippedHand(Entity ent, ref GotEquippedHandEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } + + private void OnGotUnequippedHand(Entity ent, ref GotUnequippedHandEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } + + private void OnMobilityAidWielded(Entity ent, ref ItemWieldedEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } + + private void OnMobilityAidUnwielded(Entity ent, ref ItemUnwieldedEvent args) + { + _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User); + } +} diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index d7ab6ca76a..f4c51d863e 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -65,3 +65,6 @@ trait-spanish-desc = Hola señor, donde esta la biblioteca. trait-painnumbness-name = Numb trait-painnumbness-desc = You lack any sense of feeling pain, being unaware of how hurt you may be. + +trait-impaired-mobility-name = Impaired Mobility +trait-impaired-mobility-desc = You have difficulty moving without a mobility aid. diff --git a/Resources/Prototypes/Entities/Mobs/Player/clone.yml b/Resources/Prototypes/Entities/Mobs/Player/clone.yml index 43174cfffe..98d99d7321 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/clone.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/clone.yml @@ -16,6 +16,7 @@ # traits - BlackAndWhiteOverlay - Clumsy + - ImpairedMobility # - LegsParalyzed (you get healed) - LightweightDrunk - Muted diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml index 29ce5fa8c8..96ad8b233d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml @@ -11,6 +11,7 @@ size: Normal sprite: Objects/Weapons/Melee/cane.rsi - type: Appearance + - type: MobilityAid - type: MeleeWeapon wideAnimationRotation: 45 damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/offset_cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/offset_cane.yml index 1d2081fe93..12e2e9ae70 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/offset_cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/offset_cane.yml @@ -10,6 +10,7 @@ - type: Item size: Normal sprite: Objects/Weapons/Melee/offset_canes/standard.rsi + - type: MobilityAid # - type: RandomSprite # Ideally I'd rather these be their own selectable item instead of randomly picked. # available: # - color: "#91949C" # standard gray diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml index 997c3771d5..bba4085295 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/white_cane.yml @@ -24,4 +24,3 @@ Blunt: 3 - type: UseDelay delay: 1 - diff --git a/Resources/Prototypes/Traits/disabilities.yml b/Resources/Prototypes/Traits/disabilities.yml index a5c1f54d6b..0bb6f0da3c 100644 --- a/Resources/Prototypes/Traits/disabilities.yml +++ b/Resources/Prototypes/Traits/disabilities.yml @@ -83,3 +83,12 @@ category: Disabilities components: - type: PainNumbness + +- type: trait + id: ImpairedMobility + name: trait-impaired-mobility-name + description: trait-impaired-mobility-desc + traitGear: OffsetCane + category: Disabilities + components: + - type: ImpairedMobility From 96d3b4bb29b60d85bb9f9a1e31dcfb7c23bad259 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 21 Aug 2025 00:44:13 +0000 Subject: [PATCH 097/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 422f819fcd..044a743ef0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: UpAndLeaves - changes: - - message: The CMO's hardsuit has been redesigned with extra durathread to withstand - zombie bites more effectively. - type: Tweak - id: 8361 - time: '2025-04-26T21:49:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36957 - author: Centronias changes: - message: Parcel wrap, purchasable from cargo, which allows you to wrap items in @@ -3950,3 +3942,11 @@ id: 8873 time: '2025-08-20T23:34:40.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39792 +- author: TrixxedHeart + changes: + - message: Added the Impaired Mobility disability trait which reduces movement speed + unless using a mobility aid such as a cane and increases stand-up time. + type: Add + id: 8874 + time: '2025-08-21T00:43:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39398 From 3d0573e7c8cb7eafa2e5df64d21d906a9e22ed0b Mon Sep 17 00:00:00 2001 From: TheFlyingSentry Date: Wed, 20 Aug 2025 21:02:54 -0400 Subject: [PATCH 098/194] Added Hemophilia Trait (#38224) Co-authored-by: ScarKy0 Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Shared/Body/Events/BleedModifierEvent.cs | 9 +++++++++ .../Body/Systems/SharedBloodstreamSystem.cs | 8 ++++++-- .../Traits/Assorted/HemophiliaComponent.cs | 16 ++++++++++++++++ .../Traits/Assorted/HemophiliaSystem.cs | 16 ++++++++++++++++ Resources/Locale/en-US/traits/traits.ftl | 3 +++ .../Prototypes/Entities/Mobs/Player/clone.yml | 1 + Resources/Prototypes/Traits/disabilities.yml | 8 ++++++++ 7 files changed, 59 insertions(+), 2 deletions(-) create mode 100644 Content.Shared/Body/Events/BleedModifierEvent.cs create mode 100644 Content.Shared/Traits/Assorted/HemophiliaComponent.cs create mode 100644 Content.Shared/Traits/Assorted/HemophiliaSystem.cs diff --git a/Content.Shared/Body/Events/BleedModifierEvent.cs b/Content.Shared/Body/Events/BleedModifierEvent.cs new file mode 100644 index 0000000000..c836738d63 --- /dev/null +++ b/Content.Shared/Body/Events/BleedModifierEvent.cs @@ -0,0 +1,9 @@ +namespace Content.Shared.Body.Events; + +/// +/// Raised on an entity before they bleed to modify the amount. +/// +/// The amount of blood the entity will lose. +/// The amount of bleed reduction that will happen. +[ByRefEvent] +public record struct BleedModifierEvent(float BleedAmount, float BleedReductionAmount); diff --git a/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs b/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs index 182cdb47d3..7db9f42280 100644 --- a/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs +++ b/Content.Shared/Body/Systems/SharedBloodstreamSystem.cs @@ -81,10 +81,14 @@ public abstract class SharedBloodstreamSystem : EntitySystem // as well as stop their bleeding to a certain extent. if (bloodstream.BleedAmount > 0) { + var ev = new BleedModifierEvent(bloodstream.BleedAmount, bloodstream.BleedReductionAmount); + RaiseLocalEvent(uid, ref ev); + // Blood is removed from the bloodstream at a 1-1 rate with the bleed amount - TryModifyBloodLevel((uid, bloodstream), -bloodstream.BleedAmount); + TryModifyBloodLevel((uid, bloodstream), -ev.BleedAmount); + // Bleed rate is reduced by the bleed reduction amount in the bloodstream component. - TryModifyBleedAmount((uid, bloodstream), -bloodstream.BleedReductionAmount); + TryModifyBleedAmount((uid, bloodstream), -ev.BleedReductionAmount); } // deal bloodloss damage if their blood level is below a threshold. diff --git a/Content.Shared/Traits/Assorted/HemophiliaComponent.cs b/Content.Shared/Traits/Assorted/HemophiliaComponent.cs new file mode 100644 index 0000000000..208883f11c --- /dev/null +++ b/Content.Shared/Traits/Assorted/HemophiliaComponent.cs @@ -0,0 +1,16 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Traits.Assorted; + +/// +/// This component is used for the Hemophilia Trait, it reduces the passive bleed stack reduction amount so entities with it bleed for longer. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class HemophiliaComponent : Component +{ + /// + /// What multiplier should be applied to the BleedReduction when an entity bleeds? + /// + [DataField, AutoNetworkedField] + public float HemophiliaBleedReductionMultiplier = 0.33f; +} diff --git a/Content.Shared/Traits/Assorted/HemophiliaSystem.cs b/Content.Shared/Traits/Assorted/HemophiliaSystem.cs new file mode 100644 index 0000000000..53f6609575 --- /dev/null +++ b/Content.Shared/Traits/Assorted/HemophiliaSystem.cs @@ -0,0 +1,16 @@ +using Content.Shared.Body.Events; + +namespace Content.Shared.Traits.Assorted; + +public sealed class HemophiliaSystem : EntitySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(OnBleedModifier); + } + + private void OnBleedModifier(Entity ent, ref BleedModifierEvent args) + { + args.BleedReductionAmount *= ent.Comp.HemophiliaBleedReductionMultiplier; + } +} diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index f4c51d863e..3895ce162d 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -66,5 +66,8 @@ trait-spanish-desc = Hola señor, donde esta la biblioteca. trait-painnumbness-name = Numb trait-painnumbness-desc = You lack any sense of feeling pain, being unaware of how hurt you may be. +trait-hemophilia-name = Hemophilia +trait-hemophilia-desc = Your body fails to make blood clots. + trait-impaired-mobility-name = Impaired Mobility trait-impaired-mobility-desc = You have difficulty moving without a mobility aid. diff --git a/Resources/Prototypes/Entities/Mobs/Player/clone.yml b/Resources/Prototypes/Entities/Mobs/Player/clone.yml index 98d99d7321..5c59f82744 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/clone.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/clone.yml @@ -16,6 +16,7 @@ # traits - BlackAndWhiteOverlay - Clumsy + - Hemophilia - ImpairedMobility # - LegsParalyzed (you get healed) - LightweightDrunk diff --git a/Resources/Prototypes/Traits/disabilities.yml b/Resources/Prototypes/Traits/disabilities.yml index 0bb6f0da3c..c5356149f2 100644 --- a/Resources/Prototypes/Traits/disabilities.yml +++ b/Resources/Prototypes/Traits/disabilities.yml @@ -84,6 +84,14 @@ components: - type: PainNumbness +- type: trait + id: Hemophilia + name: trait-hemophilia-name + description: trait-hemophilia-desc + category: Disabilities + components: + - type: Hemophilia + - type: trait id: ImpairedMobility name: trait-impaired-mobility-name From ac09e16765a7fe1bdb5e6d1a4494ec6e40166d59 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 21 Aug 2025 01:04:01 +0000 Subject: [PATCH 099/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 044a743ef0..3dfb1196c9 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Centronias - changes: - - message: Parcel wrap, purchasable from cargo, which allows you to wrap items in - paper so you can give people surprise gifts... like bombs. - type: Add - id: 8362 - time: '2025-04-26T23:24:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34471 - author: TiniestShark changes: - message: Inhand sprites for (most) ammo mags and speedloaders. @@ -3950,3 +3942,10 @@ id: 8874 time: '2025-08-21T00:43:06.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39398 +- author: TheFlyingSentry + changes: + - message: 'Added a new trait: Hemophilia!' + type: Add + id: 8875 + time: '2025-08-21T01:02:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38224 From b124d0def58aea3fa16489c6b5bc85c3b1351095 Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Wed, 20 Aug 2025 18:09:06 -0700 Subject: [PATCH 100/194] Cane Sword Priority Fix (#39795) GOTTA GO FAST Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml index 96ad8b233d..8b891a7533 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml @@ -84,6 +84,7 @@ - CaneBlade insertSound: /Audio/Items/sheath.ogg ejectSound: /Audio/Items/unsheath.ogg + priority: 3 - type: ItemMapper mapLayers: cane: From 9c546a0072eaf62255ce0fe25b22067260b58a8c Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Thu, 21 Aug 2025 03:10:07 +0200 Subject: [PATCH 101/194] Predict Mind Roles (#39611) --- .../Roles/ParadoxCloneRoleSystem.cs | 6 +- Content.Server/Roles/RoleSystem.cs | 2 +- .../EffectConditions/JobCondition.cs | 8 +-- Content.Shared/Mind/MindComponent.cs | 15 ++-- Content.Shared/Mind/SharedMindSystem.Relay.cs | 4 +- Content.Shared/Mind/SharedMindSystem.cs | 5 +- .../Roles/Components/MindRoleComponent.cs | 8 --- Content.Shared/Roles/SharedRoleSystem.cs | 68 ++++++++----------- 8 files changed, 53 insertions(+), 63 deletions(-) diff --git a/Content.Server/Roles/ParadoxCloneRoleSystem.cs b/Content.Server/Roles/ParadoxCloneRoleSystem.cs index c957692b70..85332ef4a4 100644 --- a/Content.Server/Roles/ParadoxCloneRoleSystem.cs +++ b/Content.Server/Roles/ParadoxCloneRoleSystem.cs @@ -19,11 +19,13 @@ public sealed class ParadoxCloneRoleSystem : EntitySystem private void OnRefreshNameModifiers(Entity ent, ref MindRelayedEvent args) { - if (!TryComp(ent.Owner, out var roleComp)) + var mindId = Transform(ent).ParentUid; // the mind role entity is in a container in the mind entity + + if (!TryComp(mindId, out var mindComp)) return; // only show for ghosts - if (!HasComp(roleComp.Mind.Comp.OwnedEntity)) + if (!HasComp(mindComp.OwnedEntity)) return; if (ent.Comp.NameModifier != null) diff --git a/Content.Server/Roles/RoleSystem.cs b/Content.Server/Roles/RoleSystem.cs index 6cbd039c73..346e13bd07 100644 --- a/Content.Server/Roles/RoleSystem.cs +++ b/Content.Server/Roles/RoleSystem.cs @@ -36,7 +36,7 @@ public sealed class RoleSystem : SharedRoleSystem // Briefing is no longer raised on the mind entity itself // because all the components that briefings subscribe to should be on Mind Role Entities - foreach(var role in mindComp.MindRoles) + foreach (var role in mindComp.MindRoleContainer.ContainedEntities) { RaiseLocalEvent(role, ref ev); } diff --git a/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs b/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs index 0b942a3e09..96f3be64c6 100644 --- a/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs +++ b/Content.Shared/EntityEffects/EffectConditions/JobCondition.cs @@ -16,13 +16,13 @@ public sealed partial class JobCondition : EntityEffectCondition { args.EntityManager.TryGetComponent(args.TargetEntity, out var mindContainer); - if ( mindContainer is null - || !args.EntityManager.TryGetComponent(mindContainer.Mind, out var mind)) + if (mindContainer is null + || !args.EntityManager.TryGetComponent(mindContainer.Mind, out var mind)) return false; - foreach (var roleId in mind.MindRoles) + foreach (var roleId in mind.MindRoleContainer.ContainedEntities) { - if(!args.EntityManager.HasComponent(roleId)) + if (!args.EntityManager.HasComponent(roleId)) continue; if (!args.EntityManager.TryGetComponent(roleId, out var mindRole)) diff --git a/Content.Shared/Mind/MindComponent.cs b/Content.Shared/Mind/MindComponent.cs index 57cd628f90..efb8e45b94 100644 --- a/Content.Shared/Mind/MindComponent.cs +++ b/Content.Shared/Mind/MindComponent.cs @@ -1,8 +1,7 @@ -using Content.Shared.GameTicking; using Content.Shared.Mind.Components; +using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Network; -using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Shared.Mind; @@ -100,10 +99,16 @@ public sealed partial class MindComponent : Component public bool PreventSuicide { get; set; } /// - /// Mind Role Entities belonging to this Mind + /// Mind Role Entities belonging to this Mind are stored in this container. /// - [DataField, AutoNetworkedField] - public List MindRoles = new List(); + [ViewVariables] + public Container MindRoleContainer = default!; + + /// + /// The id for the MindRoleContainer. + /// + [ViewVariables] + public const string MindRoleContainerId = "mind_roles"; /// /// The mind's current antagonist/special role, or lack thereof; diff --git a/Content.Shared/Mind/SharedMindSystem.Relay.cs b/Content.Shared/Mind/SharedMindSystem.Relay.cs index 60ad2fc30a..0ad18e2e08 100644 --- a/Content.Shared/Mind/SharedMindSystem.Relay.cs +++ b/Content.Shared/Mind/SharedMindSystem.Relay.cs @@ -23,7 +23,7 @@ public abstract partial class SharedMindSystem : EntitySystem { RaiseLocalEvent(mindId, ref ev); - foreach (var role in mindComp.MindRoles) + foreach (var role in mindComp.MindRoleContainer.ContainedEntities) RaiseLocalEvent(role, ref ev); } } @@ -36,7 +36,7 @@ public abstract partial class SharedMindSystem : EntitySystem { RaiseLocalEvent(mindId, ref ev); - foreach (var role in mindComp.MindRoles) + foreach (var role in mindComp.MindRoleContainer.ContainedEntities) RaiseLocalEvent(role, ref ev); } diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index 98ff77810c..8906e73248 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -15,8 +15,8 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Objectives.Systems; using Content.Shared.Players; using Content.Shared.Speech; - using Content.Shared.Whitelist; +using Robust.Shared.Containers; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Player; @@ -36,6 +36,7 @@ public abstract partial class SharedMindSystem : EntitySystem [Dependency] private readonly ISharedPlayerManager _playerManager = default!; [Dependency] private readonly MetaDataSystem _metadata = default!; [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; [ViewVariables] protected readonly Dictionary UserMinds = new(); @@ -64,6 +65,8 @@ public abstract partial class SharedMindSystem : EntitySystem private void OnMindStartup(EntityUid uid, MindComponent component, ComponentStartup args) { + component.MindRoleContainer = _container.EnsureContainer(uid, MindComponent.MindRoleContainerId); + if (component.UserId == null) return; diff --git a/Content.Shared/Roles/Components/MindRoleComponent.cs b/Content.Shared/Roles/Components/MindRoleComponent.cs index 45ab808192..b85ee8f5e0 100644 --- a/Content.Shared/Roles/Components/MindRoleComponent.cs +++ b/Content.Shared/Roles/Components/MindRoleComponent.cs @@ -35,14 +35,6 @@ public sealed partial class MindRoleComponent : BaseMindRoleComponent [DataField] public bool ExclusiveAntag; - /// - /// The Mind that this role belongs to. - /// - /// - /// TODO: Make this a datafield. Also components should not store other components. - /// - public Entity Mind; - /// /// The Antagonist prototype of this role. /// diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index 3269680c32..d1afae9fd1 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -10,7 +10,6 @@ using Content.Shared.Whitelist; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Configuration; -using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; @@ -35,7 +34,6 @@ public abstract class SharedRoleSystem : EntitySystem { Subs.CVar(_cfg, CCVars.GameRoleTimerOverride, SetRequirementOverride, true); - SubscribeLocalEvent(OnComponentShutdown); SubscribeLocalEvent(OnSpawn); } @@ -55,7 +53,7 @@ public abstract class SharedRoleSystem : EntitySystem return; } - if (!_prototypes.TryIndex(value, out _requirementOverride )) + if (!_prototypes.TryIndex(value, out _requirementOverride)) Log.Error($"Unknown JobRequirementOverridePrototype: {value}"); } @@ -152,22 +150,23 @@ public abstract class SharedRoleSystem : EntitySystem //If that was somehow to occur, a second mindrole for that comp would be created //Meaning any mind role checks could return wrong results, since they just return the first match they find - var mindRoleId = Spawn(protoId, MapCoordinates.Nullspace); - EnsureComp(mindRoleId); - var mindRoleComp = Comp(mindRoleId); + if (!PredictedTrySpawnInContainer(protoId, mindId, MindComponent.MindRoleContainerId, out var mindRoleId)) + { + Log.Error($"Failed to add role {protoId} to {ToPrettyString(mindId)} : Could not spawn the role entity inside the container"); + return; + } + + var mindRoleComp = EnsureComp(mindRoleId.Value); - mindRoleComp.Mind = (mindId,mind); if (jobPrototype is not null) { mindRoleComp.JobPrototype = jobPrototype; - EnsureComp(mindRoleId); + EnsureComp(mindRoleId.Value); DebugTools.AssertNull(mindRoleComp.AntagPrototype); DebugTools.Assert(!mindRoleComp.Antag); DebugTools.Assert(!mindRoleComp.ExclusiveAntag); } - mind.MindRoles.Add(mindRoleId); - var update = MindRolesUpdate((mindId, mind)); // RoleType refresh, Role time tracking, Update Admin playerlist @@ -201,13 +200,13 @@ public abstract class SharedRoleSystem : EntitySystem /// > private bool MindRolesUpdate(Entity ent) { - if(!Resolve(ent.Owner, ref ent.Comp)) + if (!Resolve(ent.Owner, ref ent.Comp)) return false; //get the most important/latest mind role var (roleType, subtype) = GetRoleTypeByTime(ent.Comp); - if (ent.Comp.RoleType == roleType && ent.Comp.Subtype == subtype) + if (ent.Comp.RoleType == roleType && ent.Comp.Subtype == subtype) return false; SetRoleType(ent.Owner, roleType, subtype); @@ -230,7 +229,7 @@ public abstract class SharedRoleSystem : EntitySystem { var roles = new List>(); - foreach (var role in mind.MindRoles) + foreach (var role in mind.MindRoleContainer.ContainedEntities) { var comp = Comp(role); if (comp.RoleType is not null) @@ -301,7 +300,7 @@ public abstract class SharedRoleSystem : EntitySystem var original = "'" + typeof(T).Name + "'"; var deleteName = original; - foreach (var role in mind.Comp.MindRoles) + foreach (var role in mind.Comp.MindRoleContainer.ContainedEntities) { if (!HasComp(role)) { @@ -351,7 +350,7 @@ public abstract class SharedRoleSystem : EntitySystem return MindRemoveRole((mindId, mind)); } - /// + /// /// Finds and removes all mind roles of a specific type /// /// The mind entity and component @@ -359,14 +358,14 @@ public abstract class SharedRoleSystem : EntitySystem /// True if the role existed and was removed public bool MindRemoveRole(Entity mind, EntProtoId protoId) { - if ( !Resolve(mind.Owner, ref mind.Comp)) + if (!Resolve(mind.Owner, ref mind.Comp)) return false; // If there were no matches and thus no mind role entity names, we'll need the protoId, to report what role failed to be removed var original = "'" + protoId + "'"; var deleteName = original; var delete = new List(); - foreach (var role in mind.Comp.MindRoles) + foreach (var role in mind.Comp.MindRoleContainer.ContainedEntities) { if (!HasComp(role)) { @@ -390,7 +389,7 @@ public abstract class SharedRoleSystem : EntitySystem /// private bool MindRemoveRoleDo(Entity mind, List delete, string? logName = "") { - if ( !Resolve(mind.Owner, ref mind.Comp)) + if (!Resolve(mind.Owner, ref mind.Comp)) return false; if (delete.Count <= 0) @@ -416,17 +415,6 @@ public abstract class SharedRoleSystem : EntitySystem return true; } - // Removing the mind role's reference on component shutdown - // to make sure the reference gets removed even if the mind role entity was deleted by outside code - private void OnComponentShutdown(Entity ent, ref ComponentShutdown args) - { - //TODO: Just ensure that the tests don't spawn unassociated mind role entities - if (ent.Comp.Mind.Comp is null) - return; - - ent.Comp.Mind.Comp.MindRoles.Remove(ent.Owner); - } - /// /// Finds the first mind role of a specific T type on a mind entity. /// Outputs entity components for the mind role's MindRoleComponent and for T @@ -442,7 +430,7 @@ public abstract class SharedRoleSystem : EntitySystem if (!Resolve(mind.Owner, ref mind.Comp)) return false; - foreach (var roleEnt in mind.Comp.MindRoles) + foreach (var roleEnt in mind.Comp.MindRoleContainer.ContainedEntities) { if (!TryComp(roleEnt, out T? tcomp)) continue; @@ -487,7 +475,7 @@ public abstract class SharedRoleSystem : EntitySystem var found = false; - foreach (var roleEnt in mind.MindRoles) + foreach (var roleEnt in mind.MindRoleContainer.ContainedEntities) { if (!HasComp(roleEnt, type)) continue; @@ -511,7 +499,7 @@ public abstract class SharedRoleSystem : EntitySystem /// public bool MindHasRole(Entity mind, EntityWhitelist whitelist) { - foreach (var roleEnt in mind.Comp.MindRoles) + foreach (var roleEnt in mind.Comp.MindRoleContainer.ContainedEntities) { if (_whitelist.IsWhitelistPass(whitelist, roleEnt)) return true; @@ -544,10 +532,10 @@ public abstract class SharedRoleSystem : EntitySystem var mind = Comp(mindId); - foreach (var uid in mind.MindRoles) + foreach (var uid in mind.MindRoleContainer.ContainedEntities) { if (HasComp(uid) && TryComp(uid, out var comp)) - result = (uid,comp); + result = (uid, comp); } return result; } @@ -564,7 +552,7 @@ public abstract class SharedRoleSystem : EntitySystem if (!Resolve(mind.Owner, ref mind.Comp)) return roleInfo; - foreach (var role in mind.Comp.MindRoles) + foreach (var role in mind.Comp.MindRoleContainer.ContainedEntities) { var valid = false; var name = "game-ticker-unknown-role"; @@ -644,14 +632,14 @@ public abstract class SharedRoleSystem : EntitySystem return CheckAntagonistStatus(mindId.Value).ExclusiveAntag; } - private (bool Antag, bool ExclusiveAntag) CheckAntagonistStatus(Entity mind) - { - if (!Resolve(mind.Owner, ref mind.Comp)) - return (false, false); + private (bool Antag, bool ExclusiveAntag) CheckAntagonistStatus(Entity mind) + { + if (!Resolve(mind.Owner, ref mind.Comp)) + return (false, false); var antagonist = false; var exclusiveAntag = false; - foreach (var role in mind.Comp.MindRoles) + foreach (var role in mind.Comp.MindRoleContainer.ContainedEntities) { if (!TryComp(role, out var roleComp)) { From 002d9272e6903a3c1240f5f092c362493e08a666 Mon Sep 17 00:00:00 2001 From: SolidSyn <220547106+SolidSyn@users.noreply.github.com> Date: Thu, 21 Aug 2025 11:41:36 -0700 Subject: [PATCH 102/194] Fixed a typo involving the Space Lizard Plushie (#39808) --- Resources/Prototypes/Entities/Objects/Fun/plushies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Fun/plushies.yml b/Resources/Prototypes/Entities/Objects/Fun/plushies.yml index c0718d022b..fa028c038a 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/plushies.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/plushies.yml @@ -495,7 +495,7 @@ parent: PlushieLizard id: PlushieSpaceLizard #ᵂᵉʰ! name: space lizard plushie - description: An adorable stuffed toy that resembles a lizardperson in an EVA suit. Made by CentComm as a token initiative to combat speciesism in space environments. "Welcome your new colleges as you do this plush, with open arms!" + description: An adorable stuffed toy that resembles a lizardperson in an EVA suit. Made by CentComm as a token initiative to combat speciesism in space environments. "Welcome your new colleagues as you do this plush, with open arms!" components: - type: Sprite sprite: Objects/Fun/Plushies/lizard.rsi From f67cebf7a4ed451f1911aa5c8bf6f04c198b917f Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Thu, 21 Aug 2025 16:12:16 -0400 Subject: [PATCH 103/194] Admin Log Browser Improvements (#39130) --- .../UI/CustomControls/AdminLogLabel.cs | 33 - .../CustomControls/PlayerListControl.xaml.cs | 18 +- .../UI/CustomControls/PlayerListEntry.xaml.cs | 2 - .../UI/Logs/AdminLogsControl.xaml | 10 +- .../UI/Logs/AdminLogsControl.xaml.cs | 89 +- .../Administration/UI/Logs/AdminLogsEui.cs | 11 +- .../UI/Logs/Entries/AdminLogEntry.xaml | 14 + .../UI/Logs/Entries/AdminLogEntry.xaml.cs | 79 + .../UI/Logs/Entries/AdminLogEntryDetails.xaml | 44 + .../Logs/Entries/AdminLogEntryDetails.xaml.cs | 98 + .../UI/Tabs/PlayerTab/PlayerTab.xaml.cs | 2 - .../Options/UI/Tabs/AdminOptionsTab.xaml | 3 + .../Options/UI/Tabs/AdminOptionsTab.xaml.cs | 2 + ...0250723055137_AdminLogsCurtime.Designer.cs | 2125 +++++++++++++++++ .../20250723055137_AdminLogsCurtime.cs | 29 + .../PostgresServerDbContextModelSnapshot.cs | 7 +- ...0250723055127_AdminLogsCurtime.Designer.cs | 2048 ++++++++++++++++ .../Sqlite/20250723055127_AdminLogsCurtime.cs | 29 + .../SqliteServerDbContextModelSnapshot.cs | 4 + Content.Server.Database/Model.cs | 5 + .../Logs/AdminLogManager.Cache.cs | 2 +- .../Administration/Logs/AdminLogManager.cs | 3 + Content.Server/Database/ServerDbBase.cs | 2 +- .../Administration/Logs/SharedAdminLog.cs | 1 + Content.Shared/CCVar/CCVars.Interface.cs | 6 + .../en-US/administration/ui/admin-logs.ftl | 15 + .../en-US/escape-menu/ui/options-menu.ftl | 4 + 27 files changed, 4608 insertions(+), 77 deletions(-) delete mode 100644 Content.Client/Administration/UI/CustomControls/AdminLogLabel.cs create mode 100644 Content.Client/Administration/UI/Logs/Entries/AdminLogEntry.xaml create mode 100644 Content.Client/Administration/UI/Logs/Entries/AdminLogEntry.xaml.cs create mode 100644 Content.Client/Administration/UI/Logs/Entries/AdminLogEntryDetails.xaml create mode 100644 Content.Client/Administration/UI/Logs/Entries/AdminLogEntryDetails.xaml.cs create mode 100644 Content.Server.Database/Migrations/Postgres/20250723055137_AdminLogsCurtime.Designer.cs create mode 100644 Content.Server.Database/Migrations/Postgres/20250723055137_AdminLogsCurtime.cs create mode 100644 Content.Server.Database/Migrations/Sqlite/20250723055127_AdminLogsCurtime.Designer.cs create mode 100644 Content.Server.Database/Migrations/Sqlite/20250723055127_AdminLogsCurtime.cs diff --git a/Content.Client/Administration/UI/CustomControls/AdminLogLabel.cs b/Content.Client/Administration/UI/CustomControls/AdminLogLabel.cs deleted file mode 100644 index 0de38ce234..0000000000 --- a/Content.Client/Administration/UI/CustomControls/AdminLogLabel.cs +++ /dev/null @@ -1,33 +0,0 @@ -using Content.Shared.Administration.Logs; -using Robust.Client.UserInterface; -using Robust.Client.UserInterface.Controls; - -namespace Content.Client.Administration.UI.CustomControls; - -public sealed class AdminLogLabel : RichTextLabel -{ - public AdminLogLabel(ref SharedAdminLog log, HSeparator separator) - { - Log = log; - Separator = separator; - - SetMessage($"{log.Date:HH:mm:ss}: {log.Message}"); - OnVisibilityChanged += VisibilityChanged; - } - - public SharedAdminLog Log { get; } - - public HSeparator Separator { get; } - - private void VisibilityChanged(Control control) - { - Separator.Visible = Visible; - } - - protected override void Dispose(bool disposing) - { - base.Dispose(disposing); - - OnVisibilityChanged -= VisibilityChanged; - } -} diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs index c7fbf6c2dc..8027a00c54 100644 --- a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs +++ b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs @@ -1,16 +1,15 @@ using System.Linq; +using System.Text.RegularExpressions; using Content.Client.Administration.Systems; using Content.Client.UserInterface.Controls; using Content.Client.Verbs.UI; using Content.Shared.Administration; using Robust.Client.AutoGenerated; -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Input; -using Robust.Shared.Utility; namespace Content.Client.Administration.UI.CustomControls; @@ -96,13 +95,26 @@ public sealed partial class PlayerListControl : BoxContainer private void FilterList() { _sortedPlayerList.Clear(); + + Regex filterRegex; + // There is no neat way to handle invalid regex being submitted other than + // catching and ignoring the exception which gets thrown when it's invalid. + try + { + filterRegex = new Regex(FilterLineEdit.Text, RegexOptions.IgnoreCase); + } + catch (ArgumentException) + { + return; + } + foreach (var info in _playerList) { var displayName = $"{info.CharacterName} ({info.Username})"; if (info.IdentityName != info.CharacterName) displayName += $" [{info.IdentityName}]"; if (!string.IsNullOrEmpty(FilterLineEdit.Text) - && !displayName.ToLowerInvariant().Contains(FilterLineEdit.Text.Trim().ToLowerInvariant())) + && !filterRegex.IsMatch(displayName)) continue; _sortedPlayerList.Add(info); } diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs index cd6a56ea71..f62a6c71e4 100644 --- a/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs +++ b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs @@ -1,10 +1,8 @@ using Content.Client.Stylesheets; using Content.Shared.Administration; using Robust.Client.AutoGenerated; -using Robust.Client.GameObjects; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.Utility; namespace Content.Client.Administration.UI.CustomControls; diff --git a/Content.Client/Administration/UI/Logs/AdminLogsControl.xaml b/Content.Client/Administration/UI/Logs/AdminLogsControl.xaml index cd93ffeb0a..c646e380d4 100644 --- a/Content.Client/Administration/UI/Logs/AdminLogsControl.xaml +++ b/Content.Client/Administration/UI/Logs/AdminLogsControl.xaml @@ -1,5 +1,6 @@  + xmlns:aui="clr-namespace:Content.Client.Administration.UI.CustomControls" + xmlns:ui="clr-namespace:Content.Client.Options.UI"> @@ -52,6 +53,13 @@ diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index 66d875b0f2..ce190464d2 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -26,6 +26,10 @@ public sealed partial class LatheMenu : DefaultWindow public event Action? OnServerListButtonPressed; public event Action? RecipeQueueAction; + public event Action? QueueDeleteAction; + public event Action? QueueMoveUpAction; + public event Action? QueueMoveDownAction; + public event Action? DeleteFabricatingAction; public List> Recipes = new(); @@ -50,12 +54,21 @@ public sealed partial class LatheMenu : DefaultWindow }; AmountLineEdit.OnTextChanged += _ => { + if (int.TryParse(AmountLineEdit.Text, out var amount)) + { + if (amount > LatheSystem.MaxItemsPerRequest) + AmountLineEdit.Text = LatheSystem.MaxItemsPerRequest.ToString(); + else if (amount < 0) + AmountLineEdit.Text = "0"; + } + PopulateRecipes(); }; FilterOption.OnItemSelected += OnItemSelected; ServerListButton.OnPressed += a => OnServerListButtonPressed?.Invoke(a); + DeleteFabricating.OnPressed += _ => DeleteFabricatingAction?.Invoke(); } public void SetEntity(EntityUid uid) @@ -223,22 +236,27 @@ public sealed partial class LatheMenu : DefaultWindow /// Populates the build queue list with all queued items /// /// - public void PopulateQueueList(IReadOnlyCollection> queue) + public void PopulateQueueList(IReadOnlyCollection queue) { QueueList.DisposeAllChildren(); var idx = 1; - foreach (var recipeProto in queue) + foreach (var batch in queue) { - var recipe = _prototypeManager.Index(recipeProto); - var queuedRecipeBox = new BoxContainer(); - queuedRecipeBox.Orientation = BoxContainer.LayoutOrientation.Horizontal; + var recipe = _prototypeManager.Index(batch.Recipe); - queuedRecipeBox.AddChild(GetRecipeDisplayControl(recipe)); + var itemName = _lathe.GetRecipeName(batch.Recipe); + string displayText; + if (batch.ItemsRequested > 1) + displayText = Loc.GetString("lathe-menu-item-batch", ("index", idx), ("name", itemName), ("printed", batch.ItemsPrinted), ("total", batch.ItemsRequested)); + else + displayText = Loc.GetString("lathe-menu-item-single", ("index", idx), ("name", itemName)); + + var queuedRecipeBox = new QueuedRecipeControl(displayText, idx - 1, GetRecipeDisplayControl(recipe)); + queuedRecipeBox.OnDeletePressed += s => QueueDeleteAction?.Invoke(s); + queuedRecipeBox.OnMoveUpPressed += s => QueueMoveUpAction?.Invoke(s); + queuedRecipeBox.OnMoveDownPressed += s => QueueMoveDownAction?.Invoke(s); - var queuedRecipeLabel = new Label(); - queuedRecipeLabel.Text = $"{idx}. {_lathe.GetRecipeName(recipe)}"; - queuedRecipeBox.AddChild(queuedRecipeLabel); QueueList.AddChild(queuedRecipeBox); idx++; } diff --git a/Content.Client/Lathe/UI/QueuedRecipeControl.xaml b/Content.Client/Lathe/UI/QueuedRecipeControl.xaml new file mode 100644 index 0000000000..b1d4b496a1 --- /dev/null +++ b/Content.Client/Lathe/UI/QueuedRecipeControl.xaml @@ -0,0 +1,35 @@ + + + + + diff --git a/Content.Client/Lathe/UI/QueuedRecipeControl.xaml.cs b/Content.Client/Lathe/UI/QueuedRecipeControl.xaml.cs new file mode 100644 index 0000000000..c4ba9803b0 --- /dev/null +++ b/Content.Client/Lathe/UI/QueuedRecipeControl.xaml.cs @@ -0,0 +1,36 @@ +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Lathe.UI; + +[GenerateTypedNameReferences] +public sealed partial class QueuedRecipeControl : Control +{ + public Action? OnDeletePressed; + public Action? OnMoveUpPressed; + public Action? OnMoveDownPressed; + + public QueuedRecipeControl(string displayText, int index, Control displayControl) + { + RobustXamlLoader.Load(this); + + RecipeName.Text = displayText; + RecipeDisplayContainer.AddChild(displayControl); + + MoveUp.OnPressed += (_) => + { + OnMoveUpPressed?.Invoke(index); + }; + + MoveDown.OnPressed += (_) => + { + OnMoveDownPressed?.Invoke(index); + }; + + Delete.OnPressed += (_) => + { + OnDeletePressed?.Invoke(index); + }; + } +} diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index 6ecd5bdf62..02abb07791 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -74,6 +74,9 @@ namespace Content.Server.Lathe SubscribeLocalEvent(OnLatheQueueRecipeMessage); SubscribeLocalEvent(OnLatheSyncRequestMessage); + SubscribeLocalEvent(OnLatheDeleteRequestMessage); + SubscribeLocalEvent(OnLatheMoveRequestMessage); + SubscribeLocalEvent(OnLatheAbortFabricationMessage); SubscribeLocalEvent((u, c, _) => UpdateUserInterfaceState(u, c)); SubscribeLocalEvent(OnMaterialAmountChanged); @@ -167,23 +170,32 @@ namespace Content.Server.Lathe return ev.Recipes.ToList(); } - public bool TryAddToQueue(EntityUid uid, LatheRecipePrototype recipe, LatheComponent? component = null) + public bool TryAddToQueue(EntityUid uid, LatheRecipePrototype recipe, int quantity, LatheComponent? component = null) { if (!Resolve(uid, ref component)) return false; - if (!CanProduce(uid, recipe, 1, component)) + if (quantity <= 0) + return false; + quantity = int.Min(quantity, MaxItemsPerRequest); + + if (!CanProduce(uid, recipe, quantity, component)) return false; foreach (var (mat, amount) in recipe.Materials) { var adjustedAmount = recipe.ApplyMaterialDiscount - ? (int) (-amount * component.MaterialUseMultiplier) + ? (int)(-amount * component.MaterialUseMultiplier) : -amount; + adjustedAmount *= quantity; _materialStorage.TryChangeMaterialAmount(uid, mat, adjustedAmount); } - component.Queue.Enqueue(recipe); + + if (component.Queue.Last is { } node && node.ValueRef.Recipe == recipe.ID) + node.ValueRef.ItemsRequested += quantity; + else + component.Queue.AddLast(new LatheRecipeBatch(recipe.ID, 0, quantity)); return true; } @@ -195,8 +207,11 @@ namespace Content.Server.Lathe if (component.CurrentRecipe != null || component.Queue.Count <= 0 || !this.IsPowered(uid, EntityManager)) return false; - var recipeProto = component.Queue.Dequeue(); - var recipe = _proto.Index(recipeProto); + var batch = component.Queue.First(); + batch.ItemsPrinted++; + if (batch.ItemsPrinted >= batch.ItemsRequested || batch.ItemsPrinted < 0) // Rollover sanity check + component.Queue.RemoveFirst(); + var recipe = _proto.Index(batch.Recipe); var time = _reagentSpeed.ApplySpeed(uid, recipe.CompleteTime) * component.TimeMultiplier; @@ -271,8 +286,8 @@ namespace Content.Server.Lathe return; var producing = component.CurrentRecipe; - if (producing == null && component.Queue.TryPeek(out var next)) - producing = next; + if (producing == null && component.Queue.First is { } node) + producing = node.Value.Recipe; var state = new LatheUpdateState(GetAvailableRecipes(uid, component), component.Queue.ToArray(), producing); _uiSys.SetUiState(uid, LatheUiKey.Key, state); @@ -349,12 +364,10 @@ namespace Content.Server.Lathe { if (!args.Powered) { - RemComp(uid); - UpdateRunningAppearance(uid, false); + AbortProduction(uid); } - else if (component.CurrentRecipe != null) + else { - EnsureComp(uid); TryStartProducing(uid, component); } } @@ -416,25 +429,46 @@ namespace Content.Server.Lathe return GetAvailableRecipes(uid, component).Contains(recipe.ID); } + public void AbortProduction(EntityUid uid, LatheComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + if (component.CurrentRecipe != null) + { + if (component.Queue.Count > 0) + { + // Batch abandoned while printing last item, need to create a one-item batch + var batch = component.Queue.First(); + if (batch.Recipe != component.CurrentRecipe) + { + var newBatch = new LatheRecipeBatch(component.CurrentRecipe.Value, 0, 1); + component.Queue.AddFirst(newBatch); + } + else if (batch.ItemsPrinted > 0) + { + batch.ItemsPrinted--; + } + } + + component.CurrentRecipe = null; + } + RemCompDeferred(uid); + UpdateUserInterfaceState(uid, component); + UpdateRunningAppearance(uid, false); + } + #region UI Messages private void OnLatheQueueRecipeMessage(EntityUid uid, LatheComponent component, LatheQueueRecipeMessage args) { if (_proto.TryIndex(args.ID, out LatheRecipePrototype? recipe)) { - var count = 0; - for (var i = 0; i < args.Quantity; i++) - { - if (TryAddToQueue(uid, recipe, component)) - count++; - else - break; - } - if (count > 0) + if (TryAddToQueue(uid, recipe, args.Quantity, component)) { _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(args.Actor):player} queued {count} {GetRecipeName(recipe)} at {ToPrettyString(uid):lathe}"); + $"{ToPrettyString(args.Actor):player} queued {args.Quantity} {GetRecipeName(recipe)} at {ToPrettyString(uid):lathe}"); } } TryStartProducing(uid, component); @@ -445,6 +479,92 @@ namespace Content.Server.Lathe { UpdateUserInterfaceState(uid, component); } + + /// + /// Removes a batch from the batch queue by index. + /// If the index given does not exist or is outside of the bounds of the lathe's batch queue, nothing happens. + /// + /// The lathe whose queue is being altered. + /// + /// + public void OnLatheDeleteRequestMessage(EntityUid uid, LatheComponent component, ref LatheDeleteRequestMessage args) + { + if (args.Index < 0 || args.Index >= component.Queue.Count) + return; + + var node = component.Queue.First; + for (int i = 0; i < args.Index; i++) + node = node?.Next; + + if (node == null) // Shouldn't happen with checks above. + return; + + var batch = node.Value; + _adminLogger.Add(LogType.Action, + LogImpact.Low, + $"{ToPrettyString(args.Actor):player} deleted a lathe job for ({batch.ItemsPrinted}/{batch.ItemsRequested}) {GetRecipeName(batch.Recipe)} at {ToPrettyString(uid):lathe}"); + + component.Queue.Remove(node); + UpdateUserInterfaceState(uid, component); + } + + public void OnLatheMoveRequestMessage(EntityUid uid, LatheComponent component, ref LatheMoveRequestMessage args) + { + if (args.Change == 0 || args.Index < 0 || args.Index >= component.Queue.Count) + return; + + // New index must be within the bounds of the batch. + var newIndex = args.Index + args.Change; + if (newIndex < 0 || newIndex >= component.Queue.Count) + return; + + var node = component.Queue.First; + for (int i = 0; i < args.Index; i++) + node = node?.Next; + + if (node == null) // Something went wrong. + return; + + if (args.Change > 0) + { + var newRelativeNode = node.Next; + for (int i = 1; i < args.Change; i++) // 1-indexed: starting from Next + newRelativeNode = newRelativeNode?.Next; + + if (newRelativeNode == null) // Something went wrong. + return; + + component.Queue.Remove(node); + component.Queue.AddAfter(newRelativeNode, node); + } + else + { + var newRelativeNode = node.Previous; + for (int i = 1; i < -args.Change; i++) // 1-indexed: starting from Previous + newRelativeNode = newRelativeNode?.Previous; + + if (newRelativeNode == null) // Something went wrong. + return; + + component.Queue.Remove(node); + component.Queue.AddBefore(newRelativeNode, node); + } + + UpdateUserInterfaceState(uid, component); + } + + public void OnLatheAbortFabricationMessage(EntityUid uid, LatheComponent component, ref LatheAbortFabricationMessage args) + { + if (component.CurrentRecipe == null) + return; + + _adminLogger.Add(LogType.Action, + LogImpact.Low, + $"{ToPrettyString(args.Actor):player} aborted printing {GetRecipeName(component.CurrentRecipe.Value)} at {ToPrettyString(uid):lathe}"); + + component.CurrentRecipe = null; + FinishProducing(uid, component); + } #endregion } } diff --git a/Content.Shared/Lathe/LatheComponent.cs b/Content.Shared/Lathe/LatheComponent.cs index 8b701ff64e..7bd7764514 100644 --- a/Content.Shared/Lathe/LatheComponent.cs +++ b/Content.Shared/Lathe/LatheComponent.cs @@ -26,10 +26,14 @@ namespace Content.Shared.Lathe // Otherwise the material arbitrage test and/or LatheSystem.GetAllBaseRecipes needs to be updated /// - /// The lathe's construction queue + /// The lathe's construction queue. /// + /// + /// This is a LinkedList to allow for constant time insertion/deletion (vs a List), and more efficient + /// moves (vs a Queue). + /// [DataField] - public Queue> Queue = new(); + public LinkedList Queue = new(); /// /// The sound that plays when the lathe is producing an item, if any @@ -97,6 +101,21 @@ namespace Content.Shared.Lathe } } + [Serializable] + public sealed partial class LatheRecipeBatch + { + public ProtoId Recipe; + public int ItemsPrinted; + public int ItemsRequested; + + public LatheRecipeBatch(ProtoId recipe, int itemsPrinted, int itemsRequested) + { + Recipe = recipe; + ItemsPrinted = itemsPrinted; + ItemsRequested = itemsRequested; + } + } + /// /// Event raised on a lathe when it starts producing a recipe. /// diff --git a/Content.Shared/Lathe/LatheMessages.cs b/Content.Shared/Lathe/LatheMessages.cs index 1c1c6440f1..fe72eed367 100644 --- a/Content.Shared/Lathe/LatheMessages.cs +++ b/Content.Shared/Lathe/LatheMessages.cs @@ -10,11 +10,11 @@ public sealed class LatheUpdateState : BoundUserInterfaceState { public List> Recipes; - public ProtoId[] Queue; + public LatheRecipeBatch[] Queue; public ProtoId? CurrentlyProducing; - public LatheUpdateState(List> recipes, ProtoId[] queue, ProtoId? currentlyProducing = null) + public LatheUpdateState(List> recipes, LatheRecipeBatch[] queue, ProtoId? currentlyProducing = null) { Recipes = recipes; Queue = queue; @@ -46,6 +46,33 @@ public sealed class LatheQueueRecipeMessage : BoundUserInterfaceMessage } } +/// +/// Sent to the server to remove a batch from the queue. +/// +[Serializable, NetSerializable] +public sealed class LatheDeleteRequestMessage(int index) : BoundUserInterfaceMessage +{ + public int Index = index; +} + +/// +/// Sent to the server to move the position of a batch in the queue. +/// +[Serializable, NetSerializable] +public sealed class LatheMoveRequestMessage(int index, int change) : BoundUserInterfaceMessage +{ + public int Index = index; + public int Change = change; +} + +/// +/// Sent to the server to stop producing the current item. +/// +[Serializable, NetSerializable] +public sealed class LatheAbortFabricationMessage() : BoundUserInterfaceMessage +{ +} + [NetSerializable, Serializable] public enum LatheUiKey { diff --git a/Content.Shared/Lathe/PrototypeIdLinkedListSerializer.cs b/Content.Shared/Lathe/PrototypeIdLinkedListSerializer.cs new file mode 100644 index 0000000000..1c616ff105 --- /dev/null +++ b/Content.Shared/Lathe/PrototypeIdLinkedListSerializer.cs @@ -0,0 +1,81 @@ +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.Manager; +using Robust.Shared.Serialization.Markdown; +using Robust.Shared.Serialization.Markdown.Sequence; +using Robust.Shared.Serialization.Markdown.Validation; +using Robust.Shared.Serialization.TypeSerializers.Interfaces; + +namespace Content.Shared.Lathe; + +/// +/// Handles reading, writing, and validation for linked lists of prototypes. +/// +/// The type of prototype this linked list represents +/// +/// This is in the Content.Shared.Lathe namespace as there are no other LinkedList ProtoId instances. +/// +[TypeSerializer] +public sealed class LinkedListSerializer : ITypeSerializer, SequenceDataNode>, ITypeCopier> where T : class +{ + public ValidationNode Validate(ISerializationManager serializationManager, SequenceDataNode node, + IDependencyCollection dependencies, ISerializationContext? context = null) + { + var list = new List(); + + foreach (var elem in node.Sequence) + { + list.Add(serializationManager.ValidateNode(elem, context)); + } + + return new ValidatedSequenceNode(list); + } + + public DataNode Write(ISerializationManager serializationManager, LinkedList value, + IDependencyCollection dependencies, + bool alwaysWrite = false, + ISerializationContext? context = null) + { + var sequence = new SequenceDataNode(); + + foreach (var elem in value) + { + sequence.Add(serializationManager.WriteValue(elem, alwaysWrite, context)); + } + + return sequence; + } + + LinkedList ITypeReader, SequenceDataNode>.Read(ISerializationManager serializationManager, + SequenceDataNode node, + IDependencyCollection dependencies, + SerializationHookContext hookCtx, + ISerializationContext? context, ISerializationManager.InstantiationDelegate>? instanceProvider) + { + var list = instanceProvider != null ? instanceProvider() : new LinkedList(); + + foreach (var dataNode in node.Sequence) + { + list.AddLast(serializationManager.Read(dataNode, hookCtx, context)); + } + + return list; + } + + public void CopyTo( + ISerializationManager serializationManager, + LinkedList source, + ref LinkedList target, + IDependencyCollection dependencies, + SerializationHookContext hookCtx, + ISerializationContext? context = null) + { + target.Clear(); + using var enumerator = source.GetEnumerator(); + + while (enumerator.MoveNext()) + { + var current = enumerator.Current; + target.AddLast(current); + } + } +} diff --git a/Content.Shared/Lathe/SharedLatheSystem.cs b/Content.Shared/Lathe/SharedLatheSystem.cs index 524d83fd84..5942f4bf6c 100644 --- a/Content.Shared/Lathe/SharedLatheSystem.cs +++ b/Content.Shared/Lathe/SharedLatheSystem.cs @@ -22,6 +22,7 @@ public abstract class SharedLatheSystem : EntitySystem [Dependency] private readonly EmagSystem _emag = default!; public readonly Dictionary> InverseRecipes = new(); + public const int MaxItemsPerRequest = 10_000; public override void Initialize() { @@ -86,6 +87,8 @@ public abstract class SharedLatheSystem : EntitySystem return false; if (!HasRecipe(uid, recipe, component)) return false; + if (amount <= 0) + return false; foreach (var (material, needed) in recipe.Materials) { diff --git a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl index 076a70447c..c04c095162 100644 --- a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl +++ b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl @@ -29,3 +29,9 @@ lathe-menu-silo-linked-message = Silo Linked lathe-menu-fabricating-message = Fabricating... lathe-menu-materials-title = Materials lathe-menu-queue-title = Build Queue +lathe-menu-delete-fabricating-tooltip = Cancel printing the current item. +lathe-menu-delete-item-tooltip = Cancel printing this batch. +lathe-menu-move-up-tooltip = Move this batch ahead in the queue. +lathe-menu-move-down-tooltip = Move this batch back in the queue. +lathe-menu-item-single = {$index}. {$name} +lathe-menu-item-batch = {$index}. {$name} ({$printed}/{$total}) From b168f7be5a849863f6ce81048ca68fbd3eecefa9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 24 Aug 2025 15:03:54 +0000 Subject: [PATCH 134/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2d81e15d90..fc3f0e933b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ArtisticRoomba - changes: - - message: A new Mapping changelog has been added. You can find it in a different - "Mapping" tab under the changelog menu. - type: Add - id: 8369 - time: '2025-04-27T20:15:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34848 - author: ScarKy0 changes: - message: Deliveries can now spawn as fragile-type! Deliver them intact to earn @@ -3948,3 +3940,11 @@ id: 8881 time: '2025-08-23T22:15:28.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/35100 +- author: whatston3 + changes: + - message: Lathes now batch items into jobs, which can be moved around in priority + or deleted. + type: Add + id: 8882 + time: '2025-08-24T15:02:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38624 From 6c154fb79e467fff1191a4bb01c045e86cf7703f Mon Sep 17 00:00:00 2001 From: M4rchy-S <89603088+M4rchy-S@users.noreply.github.com> Date: Sun, 24 Aug 2025 23:46:23 +0300 Subject: [PATCH 135/194] Moving FlammableComponent to Shared (#39870) --- .../Administration/Systems/AdminVerbSystem.Smites.cs | 5 +---- Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs | 2 +- Content.Server/EntityEffects/EntityEffectSystem.cs | 2 +- Content.Server/Explosion/EntitySystems/ExplosionSystem.cs | 1 + Content.Server/NPC/Systems/NPCUtilitySystem.cs | 4 +--- .../Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs | 2 +- .../Atmos/Components/FlammableComponent.cs | 5 +++-- 7 files changed, 9 insertions(+), 12 deletions(-) rename {Content.Server => Content.Shared}/Atmos/Components/FlammableComponent.cs (95%) diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index cd89b11e10..90e5e46d65 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -1,10 +1,8 @@ using System.Threading; using Content.Server.Administration.Components; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Body.Systems; -using Content.Server.Clothing.Systems; using Content.Server.Electrocution; using Content.Server.Explosion.EntitySystems; using Content.Server.GhostKick; @@ -19,6 +17,7 @@ using Content.Server.Tabletop; using Content.Server.Tabletop.Components; using Content.Shared.Administration; using Content.Shared.Administration.Components; +using Content.Shared.Atmos.Components; using Content.Shared.Body.Components; using Content.Shared.Body.Part; using Content.Shared.Clumsy; @@ -40,7 +39,6 @@ using Content.Shared.Nutrition.Components; using Content.Shared.Popups; using Content.Shared.Slippery; using Content.Shared.Storage.Components; -using Content.Shared.Stunnable; using Content.Shared.Tabletop.Components; using Content.Shared.Tools.Systems; using Content.Shared.Verbs; @@ -50,7 +48,6 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Player; using Robust.Shared.Random; -using Robust.Shared.Timing; using Robust.Shared.Utility; using Timer = Robust.Shared.Timing.Timer; diff --git a/Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs b/Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs index d38bda562b..5ceb9888f4 100644 --- a/Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs @@ -1,7 +1,7 @@ -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Shared.Anomaly.Components; using Content.Shared.Anomaly.Effects.Components; +using Content.Shared.Atmos.Components; using Robust.Shared.Map; namespace Content.Server.Anomaly.Effects; diff --git a/Content.Server/EntityEffects/EntityEffectSystem.cs b/Content.Server/EntityEffects/EntityEffectSystem.cs index b0b8ab5045..f423a43261 100644 --- a/Content.Server/EntityEffects/EntityEffectSystem.cs +++ b/Content.Server/EntityEffects/EntityEffectSystem.cs @@ -1,6 +1,5 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Body.Systems; @@ -22,6 +21,7 @@ using Content.Server.Temperature.Systems; using Content.Server.Traits.Assorted; using Content.Server.Zombies; using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; using Content.Shared.Body.Components; using Content.Shared.Coordinates.Helpers; using Content.Shared.EntityEffects.EffectConditions; diff --git a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs index c50b1e53fa..fc31a77041 100644 --- a/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs +++ b/Content.Server/Explosion/EntitySystems/ExplosionSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Administration.Logs; using Content.Server.Atmos.Components; using Content.Server.NodeContainer.EntitySystems; using Content.Server.NPC.Pathfinding; +using Content.Shared.Atmos.Components; using Content.Shared.Camera; using Content.Shared.CCVar; using Content.Shared.Damage; diff --git a/Content.Server/NPC/Systems/NPCUtilitySystem.cs b/Content.Server/NPC/Systems/NPCUtilitySystem.cs index 5f077a06bb..813626a1c4 100644 --- a/Content.Server/NPC/Systems/NPCUtilitySystem.cs +++ b/Content.Server/NPC/Systems/NPCUtilitySystem.cs @@ -1,4 +1,3 @@ -using Content.Server.Atmos.Components; using Content.Server.Fluids.EntitySystems; using Content.Server.Hands.Systems; using Content.Server.NPC.Queries; @@ -6,13 +5,11 @@ using Content.Server.NPC.Queries.Considerations; using Content.Server.NPC.Queries.Curves; using Content.Server.NPC.Queries.Queries; using Content.Server.Nutrition.Components; -using Content.Server.Nutrition.EntitySystems; using Content.Server.Temperature.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Damage; using Content.Shared.Examine; using Content.Shared.Fluids.Components; -using Content.Shared.Hands.Components; using Content.Shared.Inventory; using Content.Shared.Mobs; using Content.Shared.Mobs.Systems; @@ -31,6 +28,7 @@ using Microsoft.Extensions.ObjectPool; using Robust.Server.Containers; using Robust.Shared.Prototypes; using Robust.Shared.Utility; +using Content.Shared.Atmos.Components; using System.Linq; namespace Content.Server.NPC.Systems; diff --git a/Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs b/Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs index 14270fb866..7e8fff73ad 100644 --- a/Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs +++ b/Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs @@ -1,6 +1,6 @@ -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Xenoarchaeology.Artifact.XAE.Components; +using Content.Shared.Atmos.Components; using Content.Shared.Xenoarchaeology.Artifact; using Content.Shared.Xenoarchaeology.Artifact.XAE; using Robust.Shared.Random; diff --git a/Content.Server/Atmos/Components/FlammableComponent.cs b/Content.Shared/Atmos/Components/FlammableComponent.cs similarity index 95% rename from Content.Server/Atmos/Components/FlammableComponent.cs rename to Content.Shared/Atmos/Components/FlammableComponent.cs index 9ae99a1513..acfb9e2540 100644 --- a/Content.Server/Atmos/Components/FlammableComponent.cs +++ b/Content.Shared/Atmos/Components/FlammableComponent.cs @@ -1,11 +1,12 @@ using Content.Shared.Alert; using Content.Shared.Damage; +using Robust.Shared.GameStates; using Robust.Shared.Physics.Collision.Shapes; using Robust.Shared.Prototypes; -namespace Content.Server.Atmos.Components +namespace Content.Shared.Atmos.Components { - [RegisterComponent] + [RegisterComponent, NetworkedComponent] public sealed partial class FlammableComponent : Component { [DataField] From ffc7cc5e5de9fc0ba8ddd928afdfaea348bd1480 Mon Sep 17 00:00:00 2001 From: Kyle Tyo <36606155+VerinSenpai@users.noreply.github.com> Date: Mon, 25 Aug 2025 09:49:27 -0400 Subject: [PATCH 136/194] Combine AdminFrozenSystem in shared. (#39885) commit --- .../Administration/Systems/AdminFrozenSystem.cs | 7 ------- .../Administration/Systems/AdminFrozenSystem.cs | 16 ---------------- .../Administration/AdminFrozenComponent.cs | 2 +- ...AdminFrozenSystem.cs => AdminFrozenSystem.cs} | 14 +++++++++++--- 4 files changed, 12 insertions(+), 27 deletions(-) delete mode 100644 Content.Client/Administration/Systems/AdminFrozenSystem.cs delete mode 100644 Content.Server/Administration/Systems/AdminFrozenSystem.cs rename Content.Shared/Administration/{SharedAdminFrozenSystem.cs => AdminFrozenSystem.cs} (91%) diff --git a/Content.Client/Administration/Systems/AdminFrozenSystem.cs b/Content.Client/Administration/Systems/AdminFrozenSystem.cs deleted file mode 100644 index 885585f985..0000000000 --- a/Content.Client/Administration/Systems/AdminFrozenSystem.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Content.Shared.Administration; - -namespace Content.Client.Administration.Systems; - -public sealed class AdminFrozenSystem : SharedAdminFrozenSystem -{ -} diff --git a/Content.Server/Administration/Systems/AdminFrozenSystem.cs b/Content.Server/Administration/Systems/AdminFrozenSystem.cs deleted file mode 100644 index baf7b682b8..0000000000 --- a/Content.Server/Administration/Systems/AdminFrozenSystem.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Content.Shared.Administration; - -namespace Content.Server.Administration.Systems; - -public sealed class AdminFrozenSystem : SharedAdminFrozenSystem -{ - /// - /// Freezes and mutes the given entity. - /// - public void FreezeAndMute(EntityUid uid) - { - var comp = EnsureComp(uid); - comp.Muted = true; - Dirty(uid, comp); - } -} diff --git a/Content.Shared/Administration/AdminFrozenComponent.cs b/Content.Shared/Administration/AdminFrozenComponent.cs index bfcf1db526..28df7c5fd0 100644 --- a/Content.Shared/Administration/AdminFrozenComponent.cs +++ b/Content.Shared/Administration/AdminFrozenComponent.cs @@ -2,7 +2,7 @@ namespace Content.Shared.Administration; -[RegisterComponent, Access(typeof(SharedAdminFrozenSystem))] +[RegisterComponent, Access(typeof(AdminFrozenSystem))] [NetworkedComponent, AutoGenerateComponentState] public sealed partial class AdminFrozenComponent : Component { diff --git a/Content.Shared/Administration/SharedAdminFrozenSystem.cs b/Content.Shared/Administration/AdminFrozenSystem.cs similarity index 91% rename from Content.Shared/Administration/SharedAdminFrozenSystem.cs rename to Content.Shared/Administration/AdminFrozenSystem.cs index 259df2bdf2..7419137da8 100644 --- a/Content.Shared/Administration/SharedAdminFrozenSystem.cs +++ b/Content.Shared/Administration/AdminFrozenSystem.cs @@ -12,15 +12,13 @@ using Content.Shared.Throwing; namespace Content.Shared.Administration; // TODO deduplicate with BlockMovementComponent -public abstract class SharedAdminFrozenSystem : EntitySystem +public sealed class AdminFrozenSystem : EntitySystem { [Dependency] private readonly ActionBlockerSystem _blocker = default!; [Dependency] private readonly PullingSystem _pulling = default!; public override void Initialize() { - base.Initialize(); - SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); SubscribeLocalEvent(OnAttempt); @@ -35,6 +33,16 @@ public abstract class SharedAdminFrozenSystem : EntitySystem SubscribeLocalEvent(OnSpeakAttempt); } + /// + /// Freezes and mutes the given entity. + /// + public void FreezeAndMute(EntityUid uid) + { + var comp = EnsureComp(uid); + comp.Muted = true; + Dirty(uid, comp); + } + private void OnInteractAttempt(Entity ent, ref InteractionAttemptEvent args) { args.Cancelled = true; From e8320cc9d8c96eda04420e74b26b1b4802b8633c Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Mon, 25 Aug 2025 11:05:55 -0700 Subject: [PATCH 137/194] [Bugfix] Fix topical self healing time multiplier not working (#39883) * Commit * Fix 2 * Prettier --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- .../Medical/Healing/HealingComponent.cs | 2 +- .../Medical/Healing/HealingSystem.cs | 38 +++++++++++-------- 2 files changed, 24 insertions(+), 16 deletions(-) diff --git a/Content.Shared/Medical/Healing/HealingComponent.cs b/Content.Shared/Medical/Healing/HealingComponent.cs index 53358fd28d..40fb180700 100644 --- a/Content.Shared/Medical/Healing/HealingComponent.cs +++ b/Content.Shared/Medical/Healing/HealingComponent.cs @@ -43,7 +43,7 @@ public sealed partial class HealingComponent : Component /// How long it takes to apply the damage. /// [DataField, AutoNetworkedField] - public float Delay = 3f; + public TimeSpan Delay = TimeSpan.FromSeconds(3f); /// /// Delay multiplier when healing yourself. diff --git a/Content.Shared/Medical/Healing/HealingSystem.cs b/Content.Shared/Medical/Healing/HealingSystem.cs index 74cb8881f4..b737914dcb 100644 --- a/Content.Shared/Medical/Healing/HealingSystem.cs +++ b/Content.Shared/Medical/Healing/HealingSystem.cs @@ -112,9 +112,17 @@ public sealed class HealingSystem : EntitySystem // Logic to determine the whether or not to repeat the healing action args.Repeat = HasDamage((args.Used.Value, healing), target) && !dontRepeat; - if (!args.Repeat && !dontRepeat) - _popupSystem.PopupClient(Loc.GetString("medical-item-finished-using", ("item", args.Used)), target.Owner, args.User); args.Handled = true; + + if (!args.Repeat) + { + _popupSystem.PopupClient(Loc.GetString("medical-item-finished-using", ("item", args.Used)), target.Owner, args.User); + return; + } + + // Update our self heal delay so it shortens as we heal more damage. + if (args.User == target.Owner) + args.Args.Delay = healing.Delay * GetScaledHealingPenalty(target.Owner, healing.SelfHealPenaltyMultiplier); } private bool HasDamage(Entity healing, Entity target) @@ -203,7 +211,7 @@ public sealed class HealingSystem : EntitySystem var delay = isNotSelf ? healing.Comp.Delay - : healing.Comp.Delay * GetScaledHealingPenalty(healing); + : healing.Comp.Delay * GetScaledHealingPenalty(target, healing.Comp.SelfHealPenaltyMultiplier); var doAfterEventArgs = new DoAfterArgs(EntityManager, user, delay, new HealingDoAfterEvent(), target, target: target, used: healing) @@ -222,21 +230,21 @@ public sealed class HealingSystem : EntitySystem /// /// Scales the self-heal penalty based on the amount of damage taken /// - /// - /// - /// - public float GetScaledHealingPenalty(Entity healing) + /// Entity we're healing + /// Maximum modifier we can have. + /// Modifier we multiply our healing time by + public float GetScaledHealingPenalty(Entity ent, float mod) { - var output = healing.Comp.Delay; - if (!TryComp(healing, out var mobThreshold) || - !TryComp(healing, out var damageable)) - return output; - if (!_mobThresholdSystem.TryGetThresholdForState(healing, MobState.Critical, out var amount, mobThreshold)) + if (!Resolve(ent, ref ent.Comp1, ref ent.Comp2, false)) + return mod; + + if (!_mobThresholdSystem.TryGetThresholdForState(ent, MobState.Critical, out var amount, ent.Comp2)) return 1; - var percentDamage = (float)(damageable.TotalDamage / amount); + var percentDamage = (float)(ent.Comp1.TotalDamage / amount); //basically make it scale from 1 to the multiplier. - var modifier = percentDamage * (healing.Comp.SelfHealPenaltyMultiplier - 1) + 1; - return Math.Max(modifier, 1); + + var output = percentDamage * (mod - 1) + 1; + return Math.Max(output, 1); } } From 652190ff3207d3e83b88945f430260af04d91053 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 25 Aug 2025 18:07:05 +0000 Subject: [PATCH 138/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fc3f0e933b..823abffd4a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ScarKy0 - changes: - - message: Deliveries can now spawn as fragile-type! Deliver them intact to earn - a minor speso bonus. - type: Add - id: 8370 - time: '2025-04-27T23:04:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36980 - author: Bokser815 changes: - message: Cargo buy and sell pallets aboard the ATS can no longer be destroyed, @@ -3948,3 +3940,11 @@ id: 8882 time: '2025-08-24T15:02:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/38624 +- author: Princess-Cheeseballs + changes: + - message: Topicals now correctly scale their self heal time with the damage you + have taken. + type: Fix + id: 8883 + time: '2025-08-25T18:05:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39883 From 2f752f2e5946a749b7c3a52661aa31e446a09288 Mon Sep 17 00:00:00 2001 From: ToastEnjoyer Date: Mon, 25 Aug 2025 19:44:01 -0500 Subject: [PATCH 139/194] Fixed pacified people using the laser carbine (#39891) --- .../Weapons/Guns/Battery/battery_guns.yml | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) 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 b535c62d11..3b034eafbb 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -215,10 +215,10 @@ - type: Appearance - type: entity - name: practice laser carbine + name: laser carbine parent: [BaseWeaponBattery, BaseGunWieldable] - id: WeaponLaserCarbinePractice - description: This modified laser carbine fires nearly harmless beams in the 40-watt range, for target practice. + id: WeaponLaserCarbine + description: Favoured by Nanotrasen Security for being cheap and easy to use. components: - type: Item size: Large @@ -241,24 +241,24 @@ selectedMode: SemiAuto availableModes: - SemiAuto - - type: HitscanBatteryAmmoProvider - proto: RedLaserPractice - fireCost: 62.5 - - type: StaticPrice - price: 300 - - type: PacifismAllowedGun - -- type: entity - name: laser carbine - parent: [WeaponLaserCarbinePractice, BaseGunWieldable, BaseSecurityContraband] - id: WeaponLaserCarbine - description: Favoured by Nanotrasen Security for being cheap and easy to use. - components: - - type: StaticPrice - price: 420 - type: HitscanBatteryAmmoProvider proto: RedLaser fireCost: 62.5 + - type: StaticPrice + price: 420 + +- type: entity + name: practice laser carbine + parent: [WeaponLaserCarbine, BaseGunWieldable] + id: WeaponLaserCarbinePractice + description: This modified laser carbine fires nearly harmless beams in the 40-watt range, for target practice. + components: + - type: StaticPrice + price: 300 + - type: HitscanBatteryAmmoProvider + proto: RedLaserPractice + fireCost: 62.5 + - type: PacifismAllowedGun - type: entity name: pulse pistol From 5c821f32de702ffaa1fe39d8f3546ed8b7a5198e Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 26 Aug 2025 00:45:08 +0000 Subject: [PATCH 140/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 823abffd4a..29cf8169bf 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: Bokser815 - changes: - - message: Cargo buy and sell pallets aboard the ATS can no longer be destroyed, - so cargo workers will no longer be unable to perform their job entirely for - the rest of the round. - type: Tweak - id: 8371 - time: '2025-04-28T00:59:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34195 - author: lzk228 changes: - message: Shelves don't have whitelists. But still max item size you can fit is @@ -3948,3 +3939,10 @@ id: 8883 time: '2025-08-25T18:05:55.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39883 +- author: ToastEnjoyer + changes: + - message: Pacifists can no longer use the laser rifle + type: Fix + id: 8884 + time: '2025-08-26T00:44:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39891 From a566b4cc84738aa3f685ee063250e32b3be68e62 Mon Sep 17 00:00:00 2001 From: GR1231 <200696955+GR1231@users.noreply.github.com> Date: Tue, 26 Aug 2025 02:48:31 +0200 Subject: [PATCH 141/194] Fix Smile's hat displacement map (#39824) Fix Smile's head displacement map --- .../Pets/Smile/smile_displacement.rsi/head.png | Bin 236 -> 318 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png b/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png index a579919824015b187ab41f3e38719b6591ea2f93..5cc098d50f2b9d57447f4adf14aca0892909c18f 100644 GIT binary patch literal 318 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jPK-BC>eK@{Ea{HEjtmSN z`?>!lvI6-E$sR$z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD8ZKG z?e4@HbQwab7 literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|mU+53hE&XX zdvhaiLjcc_3oM2vvWq_-uVDSglpgtV(|hCl4q<)g&$NEGWWB&Niz$QAmvKwOGKMIJ zU#y?xE8RQ;E{fJmA~rDd;JBZ=|VE}ETh0Drs~pzlh*-V%;4$j=d#Wz Gp$Pyua!d07 From dfa1b01b5e6b9e5fb0eaed6db41d04c3a0fafa75 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 26 Aug 2025 00:49:38 +0000 Subject: [PATCH 142/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 29cf8169bf..c9f44ae354 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Shelves don't have whitelists. But still max item size you can fit is - Normal. - type: Tweak - id: 8372 - time: '2025-04-28T01:00:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36986 - author: KingFroozy changes: - message: Mime's suits were resprited. @@ -3946,3 +3938,10 @@ id: 8884 time: '2025-08-26T00:44:01.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39891 +- author: GR1231 + changes: + - message: hats on Smile the slime should be correctly displaced + type: Fix + id: 8885 + time: '2025-08-26T00:48:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39824 From b714733e62add8a2711c9fc556e85740e2666fa0 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 26 Aug 2025 04:32:58 -0400 Subject: [PATCH 143/194] Exo: Add atmos network monitor (#39330) --- Resources/Maps/exo.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Maps/exo.yml b/Resources/Maps/exo.yml index d00cb05179..f8026dd862 100644 --- a/Resources/Maps/exo.yml +++ b/Resources/Maps/exo.yml @@ -45324,6 +45324,14 @@ entities: 5037: - - ArtifactAnalyzerSender - ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 20083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-72.5 + parent: 2 - proto: computerBodyScanner entities: - uid: 6698 From ceda478ae2fb0900b85ef4001c633e217958cb08 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 26 Aug 2025 08:34:07 +0000 Subject: [PATCH 144/194] Automatic changelog update --- Resources/Changelog/Maps.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Maps.yml b/Resources/Changelog/Maps.yml index ba943e2221..1202c255af 100644 --- a/Resources/Changelog/Maps.yml +++ b/Resources/Changelog/Maps.yml @@ -558,4 +558,12 @@ id: 68 time: '2025-08-23T22:48:39.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39801 +- author: F1restar4 + changes: + - message: On Exo, added an atmospherics network monitor console to atmos' front + room + type: Add + id: 69 + time: '2025-08-26T08:32:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39330 Order: 1 From fd4a0a29b4588f000017de2f8708636a0f9376f9 Mon Sep 17 00:00:00 2001 From: Perry Fraser Date: Tue, 26 Aug 2025 06:29:12 -0400 Subject: [PATCH 145/194] fix: Block EntityStorage from inserting into mechs (#37942) This additionally moves the hard-coded check for HandsComp that previously did this, and moves it into an event which now both HandsSystem and MechSystem subscribe to. --- .../EntitySystems/SharedHandsSystem.Drop.cs | 10 ++++++++ .../Mech/EntitySystems/SharedMechSystem.cs | 23 +++++++++++++++---- .../Components/EntityStorageComponent.cs | 7 ++++++ .../SharedEntityStorageSystem.cs | 9 +++++--- 4 files changed, 42 insertions(+), 7 deletions(-) diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs index c1b44efba4..6512bbd7f1 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs @@ -3,6 +3,7 @@ using Content.Shared.Database; using Content.Shared.Hands.Components; using Content.Shared.Interaction; using Content.Shared.Inventory.VirtualItem; +using Content.Shared.Storage.Components; using Content.Shared.Tag; using Robust.Shared.Containers; using Robust.Shared.Map; @@ -20,6 +21,7 @@ public abstract partial class SharedHandsSystem private void InitializeDrop() { SubscribeLocalEvent(HandleEntityRemoved); + SubscribeLocalEvent(OnEntityStorageDump); } protected virtual void HandleEntityRemoved(EntityUid uid, HandsComponent hands, EntRemovedFromContainerMessage args) @@ -39,6 +41,14 @@ public abstract partial class SharedHandsSystem _virtualSystem.DeleteVirtualItem((args.Entity, @virtual), uid); } + + private void OnEntityStorageDump(Entity ent, ref EntityStorageIntoContainerAttemptEvent args) + { + // If you're physically carrying an EntityStroage which tries to dump its contents out, + // we want those contents to fall to the floor. + args.Cancelled = true; + } + private bool ShouldIgnoreRestrictions(EntityUid user) { //Checks if the Entity is something that shouldn't care about drop distance or walls ie Aghost diff --git a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs index ab0f658af0..c461b588b1 100644 --- a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs +++ b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs @@ -14,6 +14,7 @@ using Content.Shared.Mech.Equipment.Components; using Content.Shared.Movement.Components; using Content.Shared.Movement.Systems; using Content.Shared.Popups; +using Content.Shared.Storage.Components; using Content.Shared.Weapons.Melee; using Content.Shared.Whitelist; using Robust.Shared.Containers; @@ -48,6 +49,7 @@ public abstract partial class SharedMechSystem : EntitySystem SubscribeLocalEvent(RelayInteractionEvent); SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnDestruction); + SubscribeLocalEvent(OnEntityStorageDump); SubscribeLocalEvent(OnGetAdditionalAccess); SubscribeLocalEvent(OnDragDrop); SubscribeLocalEvent(OnCanDragDrop); @@ -104,6 +106,12 @@ public abstract partial class SharedMechSystem : EntitySystem BreakMech(uid, component); } + private void OnEntityStorageDump(Entity entity, ref EntityStorageIntoContainerAttemptEvent args) + { + // There's no reason we should dump into /any/ of the mech's containers. + args.Cancelled = true; + } + private void OnGetAdditionalAccess(EntityUid uid, MechComponent component, ref GetAdditionalAccessEvent args) { var pilot = component.PilotSlot.ContainedEntity; @@ -147,7 +155,7 @@ public abstract partial class SharedMechSystem : EntitySystem } /// - /// Destroys the mech, removing the user and ejecting all installed equipment. + /// Destroys the mech, removing the user and ejecting anything contained. /// /// /// @@ -237,14 +245,19 @@ public abstract partial class SharedMechSystem : EntitySystem /// /// /// - /// Whether or not the removal can be cancelled + /// + /// Whether or not the removal can be cancelled, and if non-mech equipment should be ejected. + /// public void RemoveEquipment(EntityUid uid, EntityUid toRemove, MechComponent? component = null, MechEquipmentComponent? equipmentComponent = null, bool forced = false) { if (!Resolve(uid, ref component)) return; - if (!Resolve(toRemove, ref equipmentComponent)) + // When forced, we also want to handle the possibility that the "equipment" isn't actually equipment. + // This /shouldn't/ be possible thanks to OnEntityStorageDump, but there's been quite a few regressions + // with entities being hardlock stuck inside mechs. + if (!Resolve(toRemove, ref equipmentComponent) && !forced) return; if (!forced) @@ -261,7 +274,9 @@ public abstract partial class SharedMechSystem : EntitySystem if (component.CurrentSelectedEquipment == toRemove) CycleEquipment(uid, component); - equipmentComponent.EquipmentOwner = null; + if (forced && equipmentComponent != null) + equipmentComponent.EquipmentOwner = null; + _container.Remove(toRemove, component.EquipmentContainer); UpdateUserInterface(uid, component); } diff --git a/Content.Shared/Storage/Components/EntityStorageComponent.cs b/Content.Shared/Storage/Components/EntityStorageComponent.cs index 9d720e4736..628cc85252 100644 --- a/Content.Shared/Storage/Components/EntityStorageComponent.cs +++ b/Content.Shared/Storage/Components/EntityStorageComponent.cs @@ -166,6 +166,13 @@ public record struct InsertIntoEntityStorageAttemptEvent(EntityUid ItemToInsert, [ByRefEvent] public record struct EntityStorageInsertedIntoAttemptEvent(EntityUid ItemToInsert, bool Cancelled = false); +/// +/// Raised on the Container's owner whenever an entity storage tries to dump its +/// contents while within a container. +/// +[ByRefEvent] +public record struct EntityStorageIntoContainerAttemptEvent(BaseContainer Container, bool Cancelled = false); + [ByRefEvent] public record struct StorageOpenAttemptEvent(EntityUid User, bool Silent, bool Cancelled = false); diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index 6039d3b940..066cd2d886 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -305,10 +305,13 @@ public abstract class SharedEntityStorageSystem : EntitySystem _container.Remove(toRemove, component.Contents); - if (_container.IsEntityInContainer(container)) + if (_container.IsEntityInContainer(container) + && _container.TryGetOuterContainer(container, Transform(container), out var outerContainer)) { - if (_container.TryGetOuterContainer(container, Transform(container), out var outerContainer) && - !HasComp(outerContainer.Owner)) + + var attemptEvent = new EntityStorageIntoContainerAttemptEvent(outerContainer); + RaiseLocalEvent(outerContainer.Owner, ref attemptEvent); + if (!attemptEvent.Cancelled) { _container.Insert(toRemove, outerContainer); return true; From 49888f3c473b5b0b7b060fc2cd4575bfe4c3b978 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 26 Aug 2025 10:30:20 +0000 Subject: [PATCH 146/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c9f44ae354..3066773d09 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: KingFroozy - changes: - - message: Mime's suits were resprited. - type: Tweak - id: 8373 - time: '2025-04-28T02:40:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36702 - author: Southbridge changes: - message: Amber Station - Added Genpop @@ -3945,3 +3938,10 @@ id: 8885 time: '2025-08-26T00:48:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39824 +- author: perryprog + changes: + - message: Items and borgs can no longer become stuck in mechs. + type: Fix + id: 8886 + time: '2025-08-26T10:29:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37942 From 688c0b5884003b2f2cf81bcbb1842915851356b3 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Tue, 26 Aug 2025 07:18:10 -0700 Subject: [PATCH 147/194] Syndicate locks are now selectable (#39532) * Syndicate locks are now selectable * Minor tweaks * Make not syndicate themed * Address refview * review --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../SelectableComponentAdderComponent.cs | 77 +++++++++++++++ .../SelectableComponentAdderSystem.cs | 95 +++++++++++++++++++ .../Triggers/TriggerOnVoiceComponent.cs | 12 +-- .../Locale/en-US/locks/selectable-locks.ftl | 3 + .../Locale/en-US/locks/voice-trigger-lock.ftl | 3 + .../selectable-component.ftl | 1 + .../Entities/Objects/Devices/pda.yml | 2 +- .../Entities/Objects/Specific/locks.yml | 31 ++++-- .../Entities/Objects/Weapons/Melee/cane.yml | 2 +- .../Objects/Weapons/Melee/e_sword.yml | 2 +- Resources/Prototypes/chameleon.yml | 2 +- 11 files changed, 211 insertions(+), 19 deletions(-) create mode 100644 Content.Shared/SelectableComponentAdder/SelectableComponentAdderComponent.cs create mode 100644 Content.Shared/SelectableComponentAdder/SelectableComponentAdderSystem.cs create mode 100644 Resources/Locale/en-US/locks/selectable-locks.ftl create mode 100644 Resources/Locale/en-US/selectable-component/selectable-component.ftl diff --git a/Content.Shared/SelectableComponentAdder/SelectableComponentAdderComponent.cs b/Content.Shared/SelectableComponentAdder/SelectableComponentAdderComponent.cs new file mode 100644 index 0000000000..5b7ccffafb --- /dev/null +++ b/Content.Shared/SelectableComponentAdder/SelectableComponentAdderComponent.cs @@ -0,0 +1,77 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.SelectableComponentAdder; + +/// +/// Brings up a verb menu that allows players to select components that will get added to the item with this component. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class SelectableComponentAdderComponent : Component +{ + /// + /// List of verb -> components to add for that verb when selected basically! + /// + [DataField(required: true)] + public List Entries = new(); + + /// + /// The amount of times players can make a selection and add a component. If null, there is no limit. + /// + [DataField, AutoNetworkedField] + public int? Selections; + + /// + /// The verb category name that will be used. + /// + [DataField, AutoNetworkedField] + public LocId VerbCategoryName = "selectable-component-adder-category-name"; +} + +[DataDefinition] +public sealed partial class ComponentAdderEntry +{ + /// + /// Name of the verb that will add the components in . + /// + [DataField(required: true)] + public LocId VerbName; + + /// + /// Popup to show when this option is selected. + /// + [DataField(required: true)] + public LocId? Popup; + + /// + /// List of all the components that will get added when the verb is selected. + /// + [DataField(required: true)] + public ComponentRegistry? ComponentsToAdd; + + /// + /// The type of behavior that occurs when the component(s) already exist on the entity. + /// + [DataField] + public ComponentExistsSetting ComponentExistsBehavior = ComponentExistsSetting.Skip; + + /// + /// The priorty of the verb in the list + /// + [DataField] + public int Priority; +} + +[Serializable, NetSerializable] +public enum ComponentExistsSetting : byte +{ + // If one of the components exist, skip adding it and continue adding the rest. + // If all components already exist, disable the verb. + Skip = 0, + // If a component already exists, replace it with the new one. + // The verb is always enabled. + Replace = 1, + // Disable the verb if any one of the components already exists. + Block = 2, +} diff --git a/Content.Shared/SelectableComponentAdder/SelectableComponentAdderSystem.cs b/Content.Shared/SelectableComponentAdder/SelectableComponentAdderSystem.cs new file mode 100644 index 0000000000..29619904d7 --- /dev/null +++ b/Content.Shared/SelectableComponentAdder/SelectableComponentAdderSystem.cs @@ -0,0 +1,95 @@ +using Content.Shared.Popups; +using Content.Shared.Verbs; +using Robust.Shared.Prototypes; + +namespace Content.Shared.SelectableComponentAdder; + +public sealed partial class SelectableComponentAdderSystem : EntitySystem +{ + [Dependency] private readonly SharedPopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(OnGetVerb); + } + + private void OnGetVerb(Entity ent, ref GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract || ent.Comp.Selections <= 0) + return; + + var target = args.Target; + var user = args.User; + var verbCategory = new VerbCategory(ent.Comp.VerbCategoryName, null); + + foreach (var entry in ent.Comp.Entries) + { + var verb = new Verb + { + Priority = entry.Priority, + Category = verbCategory, + Disabled = CheckDisabled(target, entry.ComponentsToAdd, entry.ComponentExistsBehavior), + Act = () => + { + AddComponents(target, entry.ComponentsToAdd, entry.ComponentExistsBehavior); + ent.Comp.Selections--; + Dirty(ent); + if (entry.Popup == null) + return; + var message = Loc.GetString(entry.Popup.Value, ("target", target)); + _popup.PopupClient(message, target, user); + }, + Text = Loc.GetString(entry.VerbName), + }; + args.Verbs.Add(verb); + } + } + + private bool CheckDisabled(EntityUid target, ComponentRegistry? registry, ComponentExistsSetting setting) + { + if (registry == null) + return false; + + switch (setting) + { + case ComponentExistsSetting.Skip: + // disable the verb if all components already exist + foreach (var component in registry) + { + if (!EntityManager.HasComponent(target, Factory.GetComponent(component.Key).GetType())) + return false; + } + return true; + case ComponentExistsSetting.Replace: + // always allow the verb + return false; + case ComponentExistsSetting.Block: + // disable the verb if any component already exists. + foreach (var component in registry) + { + if (EntityManager.HasComponent(target, Factory.GetComponent(component.Key).GetType())) + return true; + } + return false; + default: + throw new NotImplementedException(); + } + } + + private void AddComponents(EntityUid target, ComponentRegistry? registry, ComponentExistsSetting setting) + { + if (registry == null || CheckDisabled(target, registry, setting)) + return; + + foreach (var component in registry) + { + if (EntityManager.HasComponent(target, Factory.GetComponent(component.Key).GetType()) && + setting is ComponentExistsSetting.Skip or ComponentExistsSetting.Block) + continue; + + EntityManager.AddComponent(target, component.Value, true); + } + } +} diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnVoiceComponent.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnVoiceComponent.cs index 1fc3c1b966..974d5322e0 100644 --- a/Content.Shared/Trigger/Components/Triggers/TriggerOnVoiceComponent.cs +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnVoiceComponent.cs @@ -60,36 +60,36 @@ public sealed partial class TriggerOnVoiceComponent : BaseTriggerOnXComponent /// /// The verb text that is shown when you can start recording a message. /// - [DataField] + [DataField, AutoNetworkedField] public LocId StartRecordingVerb = "trigger-on-voice-record"; /// /// The verb text that is shown when you can stop recording a message. /// - [DataField] + [DataField, AutoNetworkedField] public LocId StopRecordingVerb = "trigger-on-voice-stop"; /// /// Tooltip that appears when hovering over the stop or start recording verbs. /// - [DataField] + [DataField, AutoNetworkedField] public LocId? RecordingVerbMessage; /// /// The verb text that is shown when you can clear a recording. /// - [DataField] + [DataField, AutoNetworkedField] public LocId ClearRecordingVerb = "trigger-on-voice-clear"; /// /// The loc string that is shown when inspecting an uninitialized voice trigger. /// - [DataField] + [DataField, AutoNetworkedField] public LocId? InspectUninitializedLoc = "trigger-on-voice-uninitialized"; /// /// The loc string to use when inspecting voice trigger. Will also include the triggering phrase /// - [DataField] + [DataField, AutoNetworkedField] public LocId? InspectInitializedLoc = "trigger-on-voice-examine"; } diff --git a/Resources/Locale/en-US/locks/selectable-locks.ftl b/Resources/Locale/en-US/locks/selectable-locks.ftl new file mode 100644 index 0000000000..3dbf088505 --- /dev/null +++ b/Resources/Locale/en-US/locks/selectable-locks.ftl @@ -0,0 +1,3 @@ +selectable-lock-verb-category-name = Add lock +selectable-lock-verb-no-lock = No lock +selectable-lock-verb-no-lock-popup = No lock has been added to {THE($target)}. diff --git a/Resources/Locale/en-US/locks/voice-trigger-lock.ftl b/Resources/Locale/en-US/locks/voice-trigger-lock.ftl index fd2dc38d23..a7069378f8 100644 --- a/Resources/Locale/en-US/locks/voice-trigger-lock.ftl +++ b/Resources/Locale/en-US/locks/voice-trigger-lock.ftl @@ -1,3 +1,6 @@ +voice-trigger-lock-add-verb = Voice Lock +voice-trigger-lock-add-verb-popup = A voice lock has been added to {THE($target)}. + voice-trigger-lock-verb-record = Record lock phrase voice-trigger-lock-verb-message = Locking the item will disable features that reveal its true nature! diff --git a/Resources/Locale/en-US/selectable-component/selectable-component.ftl b/Resources/Locale/en-US/selectable-component/selectable-component.ftl new file mode 100644 index 0000000000..f30c499f76 --- /dev/null +++ b/Resources/Locale/en-US/selectable-component/selectable-component.ftl @@ -0,0 +1 @@ +selectable-component-adder-category-name = Add feature diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 92bd4297ad..1153047e7d 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -1467,7 +1467,7 @@ - MedTekCartridge - type: entity - parent: [BasePDA, VoiceLock] + parent: [BasePDA, SelectableLock] id: ChameleonPDA name: passenger PDA description: Why isn't it gray? diff --git a/Resources/Prototypes/Entities/Objects/Specific/locks.yml b/Resources/Prototypes/Entities/Objects/Specific/locks.yml index 296b9fd7d9..c280c4a60e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/locks.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/locks.yml @@ -1,5 +1,5 @@ - type: entity - id: VoiceLock + id: SelectableLock abstract: true components: - type: Lock @@ -11,14 +11,27 @@ useAccess: false unlockingSound: null # TODO: Maybe add sounds but just to the user? lockingSound: null + breakOnAccessBreaker: true # more fun lockTime: 0 unlockTime: 0 - - type: TriggerOnVoice - listenRange: 2 # more fun - startRecordingVerb: voice-trigger-lock-verb-record - recordingVerbMessage: voice-trigger-lock-verb-message - inspectUninitializedLoc: voice-trigger-lock-on-uninitialized - inspectInitializedLoc: voice-trigger-lock-on-examine - type: LockOnTrigger - - type: ActiveListener - - type: VoiceTriggerLock + - type: SelectableComponentAdder + selections: 1 + entries: + - verbName: selectable-lock-verb-no-lock + popup: selectable-lock-verb-no-lock-popup + priority: 0 + componentsToAdd: null + - verbName: voice-trigger-lock-add-verb + popup: voice-trigger-lock-add-verb-popup + priority: 1 + componentsToAdd: + - type: TriggerOnVoice + listenRange: 2 # more fun + startRecordingVerb: voice-trigger-lock-verb-record + recordingVerbMessage: voice-trigger-lock-verb-message + inspectUninitializedLoc: voice-trigger-lock-on-uninitialized + inspectInitializedLoc: voice-trigger-lock-on-examine + - type: ActiveListener + - type: VoiceTriggerLock + verbCategoryName: selectable-lock-verb-category-name diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml index 8b891a7533..fcf0b91f8e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/cane.yml @@ -54,7 +54,7 @@ - type: DisarmMalus - type: entity - parent: [Cane, VoiceLock] + parent: [Cane, SelectableLock] id: CaneSheath suffix: Empty components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index 5f431416e7..04b65ddb6b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -159,7 +159,7 @@ - type: entity name: pen - parent: [BaseMeleeWeaponEnergy, VoiceLock] + parent: [BaseMeleeWeaponEnergy, SelectableLock] id: EnergyDagger suffix: E-Dagger description: 'A dark ink pen.' diff --git a/Resources/Prototypes/chameleon.yml b/Resources/Prototypes/chameleon.yml index 6969380621..ed08c979b5 100644 --- a/Resources/Prototypes/chameleon.yml +++ b/Resources/Prototypes/chameleon.yml @@ -1,6 +1,6 @@ # for clothing that can be toggled, like magboots - type: entity - parent: VoiceLock + parent: SelectableLock abstract: true id: BaseChameleon components: From 4505f61ff2d1d2827385607de84e6613248dafc4 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 26 Aug 2025 14:19:17 +0000 Subject: [PATCH 148/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3066773d09..02efe250ef 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: Southbridge - changes: - - message: Amber Station - Added Genpop - type: Add - - message: Amber Station - Ensured a lot of doorways had tiles and decals under - them. - type: Tweak - id: 8374 - time: '2025-04-28T06:56:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36997 - author: lzk228 changes: - message: Scrubber now will turn on widenet in panic mode. @@ -3945,3 +3935,10 @@ id: 8886 time: '2025-08-26T10:29:13.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/37942 +- author: beck-thompson + changes: + - message: You can now select no lock when locking syndicate items + type: Tweak + id: 8887 + time: '2025-08-26T14:18:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39532 From f4056e854b2ffc21f047dc52836d5ee720757e3d Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Tue, 26 Aug 2025 20:04:10 +0200 Subject: [PATCH 149/194] tool lock --- .../Components/SimpleToolUsageComponent.cs | 9 +++- .../Triggers/TriggerOnSimpleToolUsage.cs | 12 +++++ .../Trigger/Systems/TriggerOnToolUseSystem.cs | 21 +++++++++ .../Locale/en-US/locks/selectable-locks.ftl | 17 ++++++- .../Locale/en-US/locks/voice-trigger-lock.ftl | 3 -- .../Entities/Objects/Specific/locks.yml | 46 ++++++++++++++++--- 6 files changed, 95 insertions(+), 13 deletions(-) create mode 100644 Content.Shared/Trigger/Components/Triggers/TriggerOnSimpleToolUsage.cs create mode 100644 Content.Shared/Trigger/Systems/TriggerOnToolUseSystem.cs diff --git a/Content.Shared/Tools/Components/SimpleToolUsageComponent.cs b/Content.Shared/Tools/Components/SimpleToolUsageComponent.cs index 1f1e9c65f8..a425073ce8 100644 --- a/Content.Shared/Tools/Components/SimpleToolUsageComponent.cs +++ b/Content.Shared/Tools/Components/SimpleToolUsageComponent.cs @@ -8,7 +8,7 @@ namespace Content.Shared.Tools.Components; /// /// Component responsible for simple tool interactions. -/// Using a tool with the correct quality on an entity with this component will start a doAfter and raise events. +/// Using a tool with the correct quality on an entity with this component will start a DoAfter and raise the other systems can subscribe to. /// [RegisterComponent, NetworkedComponent] [Access(typeof(SimpleToolUsageSystem))] @@ -40,8 +40,15 @@ public sealed partial class SimpleToolUsageComponent : Component public LocId BlockedMessage = "simple-tool-usage-blocked-message"; } +/// +/// Cancelable event that can be used to prevent tool interaction. +/// [ByRefEvent] public record struct AttemptSimpleToolUseEvent(EntityUid User, bool Cancelled = false); +/// +/// Raised after the right tool is used on an entity with +/// and the DoAfter has finished. +/// [Serializable, NetSerializable] public sealed partial class SimpleToolDoAfterEvent : SimpleDoAfterEvent; diff --git a/Content.Shared/Trigger/Components/Triggers/TriggerOnSimpleToolUsage.cs b/Content.Shared/Trigger/Components/Triggers/TriggerOnSimpleToolUsage.cs new file mode 100644 index 0000000000..ffa60c35ee --- /dev/null +++ b/Content.Shared/Trigger/Components/Triggers/TriggerOnSimpleToolUsage.cs @@ -0,0 +1,12 @@ +using Content.Shared.Tools.Components; +using Robust.Shared.GameStates; + +namespace Content.Shared.Trigger.Components.Triggers; + +/// +/// Triggers an entity with when the correct tool +/// is used on it and the DoAfter has finished. +/// The user is the player using the tool. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TriggerOnSimpleToolUsageComponent : BaseTriggerOnXComponent; diff --git a/Content.Shared/Trigger/Systems/TriggerOnToolUseSystem.cs b/Content.Shared/Trigger/Systems/TriggerOnToolUseSystem.cs new file mode 100644 index 0000000000..01f612aadf --- /dev/null +++ b/Content.Shared/Trigger/Systems/TriggerOnToolUseSystem.cs @@ -0,0 +1,21 @@ +using Content.Shared.Tools.Components; +using Content.Shared.Trigger.Components.Triggers; + +namespace Content.Shared.Trigger.Systems; + +public sealed class TriggerOnToolUseSystem : EntitySystem +{ + [Dependency] private readonly TriggerSystem _trigger = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnToolUse); + } + + private void OnToolUse(Entity ent, ref SimpleToolDoAfterEvent args) + { + _trigger.Trigger(ent.Owner, args.User, ent.Comp.KeyOut); + } +} diff --git a/Resources/Locale/en-US/locks/selectable-locks.ftl b/Resources/Locale/en-US/locks/selectable-locks.ftl index 3dbf088505..574e784dd7 100644 --- a/Resources/Locale/en-US/locks/selectable-locks.ftl +++ b/Resources/Locale/en-US/locks/selectable-locks.ftl @@ -1,3 +1,16 @@ selectable-lock-verb-category-name = Add lock -selectable-lock-verb-no-lock = No lock -selectable-lock-verb-no-lock-popup = No lock has been added to {THE($target)}. + +selectable-lock-no-lock-verb = No lock +selectable-lock-no-lock-popup = No lock has been added to {THE($target)}. + +selectable-lock-voice-verb = Voice Lock +selectable-lock-voice-popup = A voice lock has been added to {THE($target)}. + +selectable-lock-tool-prying-verb = Tool Lock (Crowbar) +selectable-lock-tool-prying-popup = A prying tool lock has been added to {THE($target)}. + +selectable-lock-tool-screwing-verb = Tool Lock (Screwdriver) +selectable-lock-tool-screwing-popup = A screwing tool lock has been added to {THE($target)}. + +selectable-lock-tool-cutting-verb = Tool Lock (Wirecutter) +selectable-lock-tool-cutting-popup = A cutting tool lock has been added to {THE($target)}. diff --git a/Resources/Locale/en-US/locks/voice-trigger-lock.ftl b/Resources/Locale/en-US/locks/voice-trigger-lock.ftl index a7069378f8..fd2dc38d23 100644 --- a/Resources/Locale/en-US/locks/voice-trigger-lock.ftl +++ b/Resources/Locale/en-US/locks/voice-trigger-lock.ftl @@ -1,6 +1,3 @@ -voice-trigger-lock-add-verb = Voice Lock -voice-trigger-lock-add-verb-popup = A voice lock has been added to {THE($target)}. - voice-trigger-lock-verb-record = Record lock phrase voice-trigger-lock-verb-message = Locking the item will disable features that reveal its true nature! diff --git a/Resources/Prototypes/Entities/Objects/Specific/locks.yml b/Resources/Prototypes/Entities/Objects/Specific/locks.yml index c280c4a60e..bcb204cf48 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/locks.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/locks.yml @@ -15,18 +15,46 @@ lockTime: 0 unlockTime: 0 - type: LockOnTrigger + keysIn: [ lock ] - type: SelectableComponentAdder selections: 1 + verbCategoryName: selectable-lock-verb-category-name entries: - - verbName: selectable-lock-verb-no-lock - popup: selectable-lock-verb-no-lock-popup - priority: 0 - componentsToAdd: null - - verbName: voice-trigger-lock-add-verb - popup: voice-trigger-lock-add-verb-popup + - verbName: selectable-lock-tool-prying-verb + popup: selectable-lock-tool-prying-popup + priority: 4 + componentsToAdd: + - type: TriggerOnSimpleToolUsage + keyOut: lock + - type: SimpleToolUsage + quality: Prying + doAfter: 1 + - verbName: selectable-lock-tool-screwing-verb + popup: selectable-lock-tool-screwing-popup + priority: 3 + componentsToAdd: + - type: TriggerOnSimpleToolUsage + keyOut: lock + - type: SimpleToolUsage + quality: Screwing + doAfter: 1 + - verbName: selectable-lock-tool-cutting-verb + popup: selectable-lock-tool-cutting-popup + priority: 2 + componentsToAdd: + - type: TriggerOnSimpleToolUsage + keyOut: lock + - type: SimpleToolUsage + quality: Cutting + doAfter: 1 + # no anchoring since some objects might be anchorable + # no pulsing because it conflicts with the linking ability of the multitool + - verbName: selectable-lock-voice-verb + popup: selectable-lock-voice-popup priority: 1 componentsToAdd: - type: TriggerOnVoice + keyOut: lock listenRange: 2 # more fun startRecordingVerb: voice-trigger-lock-verb-record recordingVerbMessage: voice-trigger-lock-verb-message @@ -34,4 +62,8 @@ inspectInitializedLoc: voice-trigger-lock-on-examine - type: ActiveListener - type: VoiceTriggerLock - verbCategoryName: selectable-lock-verb-category-name + - verbName: selectable-lock-no-lock-verb + popup: selectable-lock-no-lock-popup + priority: 0 + componentsToAdd: null + From c9c8fcbb8217197b64e18c9ceeacaab2c268d0aa Mon Sep 17 00:00:00 2001 From: InsoPL Date: Tue, 26 Aug 2025 21:32:45 +0200 Subject: [PATCH 150/194] Option to disable Crawling in Cvar (#39739) --- Content.Shared/CCVar/CCVars.Movement.cs | 8 ++++++++ Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs | 9 ++++++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Content.Shared/CCVar/CCVars.Movement.cs b/Content.Shared/CCVar/CCVars.Movement.cs index 37e355b032..96ceada099 100644 --- a/Content.Shared/CCVar/CCVars.Movement.cs +++ b/Content.Shared/CCVar/CCVars.Movement.cs @@ -56,4 +56,12 @@ public sealed partial class CCVars [CVarControl(AdminFlags.VarEdit)] public static readonly CVarDef MovementPushMassCap = CVarDef.Create("movement.push_mass_cap", 1.75f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Is crawling enabled + /// + [CVarControl(AdminFlags.VarEdit)] + public static readonly CVarDef MovementCrawling = + CVarDef.Create("movement.crawling", true, CVar.SERVER | CVar.REPLICATED); + } diff --git a/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs b/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs index 1a7bc88ec3..3ab4791269 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.Knockdown.cs @@ -1,5 +1,6 @@ -using Content.Shared.Alert; +using Content.Shared.Alert; using Content.Shared.Buckle.Components; +using Content.Shared.CCVar; using Content.Shared.Damage; using Content.Shared.Damage.Components; using Content.Shared.Database; @@ -13,6 +14,7 @@ using Content.Shared.Popups; using Content.Shared.Rejuvenate; using Content.Shared.Standing; using Robust.Shared.Audio; +using Robust.Shared.Configuration; using Robust.Shared.Input.Binding; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; @@ -33,6 +35,7 @@ public abstract partial class SharedStunSystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly StandingStateSystem _standingState = default!; + [Dependency] private readonly IConfigurationManager _cfgManager = default!; public static readonly ProtoId KnockdownAlert = "Knockdown"; @@ -238,7 +241,7 @@ public abstract partial class SharedStunSystem private void ToggleKnockdown(Entity entity) { // We resolve here instead of using TryCrawling to be extra sure someone without crawler can't stand up early. - if (!Resolve(entity, ref entity.Comp1, false)) + if (!Resolve(entity, ref entity.Comp1, false) || !_cfgManager.GetCVar(CCVars.MovementCrawling)) return; if (!Resolve(entity, ref entity.Comp2, false)) @@ -263,7 +266,7 @@ public abstract partial class SharedStunSystem if (!KnockdownOver((entity, entity.Comp))) return false; - if (!_crawlerQuery.TryComp(entity, out var crawler)) + if (!_crawlerQuery.TryComp(entity, out var crawler) || !_cfgManager.GetCVar(CCVars.MovementCrawling)) { // If we can't crawl then just have us sit back up... // In case you're wondering, the KnockdownOverCheck, returns if we're able to move, so if next update is null. From 931dec8e289013281654012212718d168164ee96 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Tue, 26 Aug 2025 21:42:18 +0200 Subject: [PATCH 151/194] Remove the dynamic game mode from player votes (#39902) disable --- Resources/Prototypes/game_presets.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/game_presets.yml b/Resources/Prototypes/game_presets.yml index a9d33b0b76..f5ee905a6a 100644 --- a/Resources/Prototypes/game_presets.yml +++ b/Resources/Prototypes/game_presets.yml @@ -103,7 +103,7 @@ - multiantag - director name: dynamic-title - showInVote: true + showInVote: false # admin-only for now until we fix some bugs description: dynamic-description rules: - DynamicRule From b1084ed906a015df9b8bede3a37d555f18dc15af Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 26 Aug 2025 19:43:28 +0000 Subject: [PATCH 152/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 02efe250ef..d8fddab21a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: Scrubber now will turn on widenet in panic mode. - type: Tweak - id: 8375 - time: '2025-04-28T19:22:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37013 - author: KingFroozy changes: - message: Changed the shoulder-length and shoulder-length over eye hairstyles. @@ -3942,3 +3935,10 @@ id: 8887 time: '2025-08-26T14:18:10.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39532 +- author: slarticodefast + changes: + - message: Removed the dynamic game mode from player votes. + type: Tweak + id: 8888 + time: '2025-08-26T19:42:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39902 From 1800be1f5822149d6d8755b5680e915a8ffec1c0 Mon Sep 17 00:00:00 2001 From: FungiFellow <151778459+FungiFellow@users.noreply.github.com> Date: Tue, 26 Aug 2025 16:59:23 -0400 Subject: [PATCH 153/194] Prevented Engiborgs from picking up AI lawboards (#39730) Update borg_modules.yml --- .../Entities/Objects/Specific/Robotics/borg_modules.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index 675d9efa70..edc0040512 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -659,6 +659,9 @@ whitelist: components: - Circuitboard + blacklist: + components: + - SiliconLawProvider - hand: emptyRepresentative: MicroManipulatorStockPart emptyLabel: borg-slot-construction-empty From 72738f7c8715149c77f8782f42a3c30b840e30f9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 26 Aug 2025 21:00:31 +0000 Subject: [PATCH 154/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d8fddab21a..e5fa304a64 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: KingFroozy - changes: - - message: Changed the shoulder-length and shoulder-length over eye hairstyles. - type: Tweak - id: 8376 - time: '2025-04-28T21:00:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37000 - author: ScarKy0 changes: - message: Cutting mail now correctly cancels when someone drags it away. @@ -3942,3 +3935,10 @@ id: 8888 time: '2025-08-26T19:42:18.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39902 +- author: FungiFellow + changes: + - message: Engiborg can no longer pickup AI lawboards + type: Fix + id: 8889 + time: '2025-08-26T20:59:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39730 From 8e8b318862ec0bd6238986085a6c25d4803d8c5e Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Tue, 26 Aug 2025 14:50:19 -0700 Subject: [PATCH 155/194] Fix chameleon backpacks not being able to be opened when locked (#39784) * Fix chameleon backpacks not being able to be opened when locked * rename --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Shared/Lock/LockSystem.cs | 7 ++++--- Content.Shared/Lock/LockedStorageComponent.cs | 10 ++++++++++ .../Specific/Xenoarchaeology/artifact_equipment.yml | 1 + .../Entities/Structures/Wallmounts/Storage/shelfs.yml | 1 + 4 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 Content.Shared/Lock/LockedStorageComponent.cs diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index 65ac04874a..2abb45d878 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -48,11 +48,12 @@ public sealed class LockSystem : EntitySystem SubscribeLocalEvent(OnEmagged); SubscribeLocalEvent(OnDoAfterLock); SubscribeLocalEvent(OnDoAfterUnlock); - SubscribeLocalEvent(OnStorageInteractAttempt); + SubscribeLocalEvent(OnLockToggleAttempt); SubscribeLocalEvent(OnAttemptChangePanel); SubscribeLocalEvent(OnUnanchorAttempt); + SubscribeLocalEvent(OnStorageInteractAttempt); SubscribeLocalEvent(OnUIOpenAttempt); SubscribeLocalEvent(LockToggled); @@ -358,9 +359,9 @@ public sealed class LockSystem : EntitySystem TryUnlock(uid, args.User, skipDoAfter: true); } - private void OnStorageInteractAttempt(Entity ent, ref StorageInteractAttemptEvent args) + private void OnStorageInteractAttempt(Entity ent, ref StorageInteractAttemptEvent args) { - if (ent.Comp.Locked) + if (IsLocked(ent.Owner)) args.Cancelled = true; } diff --git a/Content.Shared/Lock/LockedStorageComponent.cs b/Content.Shared/Lock/LockedStorageComponent.cs new file mode 100644 index 0000000000..25d6dba381 --- /dev/null +++ b/Content.Shared/Lock/LockedStorageComponent.cs @@ -0,0 +1,10 @@ +using Content.Shared.Storage; +using Robust.Shared.GameStates; + +namespace Content.Shared.Lock; + +/// +/// Prevents using an entity's if its is locked. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class LockedStorageComponent : Component; diff --git a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml index bdd042df57..8352933f8b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Xenoarchaeology/artifact_equipment.yml @@ -138,6 +138,7 @@ - type: AccessReader access: [["Research"], ["Cargo"]] - type: Lock + - type: LockedStorage - type: SuppressArtifactContainer - type: RadiationBlockingContainer resistance: 5 diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Storage/shelfs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Storage/shelfs.yml index aeceba8f2e..dd3e7dd0a4 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Storage/shelfs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Storage/shelfs.yml @@ -45,6 +45,7 @@ description: It looks as strong as reality itself. components: - type: Lock + - type: LockedStorage - type: LockVisuals - type: Sprite sprite: Structures/Storage/Shelfs/wood.rsi From 79c006701ea50c665ac776a5efac77381e298d6a Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 26 Aug 2025 21:51:26 +0000 Subject: [PATCH 156/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e5fa304a64..03cf1821e3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ScarKy0 - changes: - - message: Cutting mail now correctly cancels when someone drags it away. - type: Fix - id: 8377 - time: '2025-04-28T21:16:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37019 - author: themias changes: - message: cable terminals are now visually layered below floors, like other cables @@ -3942,3 +3935,11 @@ id: 8889 time: '2025-08-26T20:59:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39730 +- author: beck-thompson + changes: + - message: Locked chameleon storage items can now still be used as storage even + when locked. + type: Fix + id: 8890 + time: '2025-08-26T21:50:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39784 From 00360968b74820576a50fbaa75b95b1b25d6160b Mon Sep 17 00:00:00 2001 From: Serylis of Five Date: Wed, 27 Aug 2025 00:26:13 +0200 Subject: [PATCH 157/194] Make Modular Grenades with Chemical payload respect their trigger delay (#39905) * adds `KeysIn` data field to `ChemicalPayloadComponent` And check when handling chemical payloads that a trigger key exists. * Update Content.Server/Payload/EntitySystems/PayloadSystem.cs --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Server/Payload/EntitySystems/PayloadSystem.cs | 4 +++- .../Payload/Components/ChemicalPayloadComponent.cs | 7 +++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Content.Server/Payload/EntitySystems/PayloadSystem.cs b/Content.Server/Payload/EntitySystems/PayloadSystem.cs index 11e97c5b93..542c3559d5 100644 --- a/Content.Server/Payload/EntitySystems/PayloadSystem.cs +++ b/Content.Server/Payload/EntitySystems/PayloadSystem.cs @@ -150,7 +150,9 @@ public sealed class PayloadSystem : EntitySystem private void HandleChemicalPayloadTrigger(Entity entity, ref TriggerEvent args) { - // TODO: Adjust to the new trigger system + if (args.Key != null && !entity.Comp.KeysIn.Contains(args.Key)) + return; + if (entity.Comp.BeakerSlotA.Item is not EntityUid beakerA || entity.Comp.BeakerSlotB.Item is not EntityUid beakerB || !TryComp(beakerA, out FitsInDispenserComponent? compA) diff --git a/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs b/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs index d00382ee84..3b29d78777 100644 --- a/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs +++ b/Content.Shared/Payload/Components/ChemicalPayloadComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Containers.ItemSlots; +using Content.Shared.Trigger.Systems; using Robust.Shared.Serialization; namespace Content.Shared.Payload.Components; @@ -14,6 +15,12 @@ public sealed partial class ChemicalPayloadComponent : Component [DataField("beakerSlotB", required: true)] public ItemSlot BeakerSlotB = new(); + + /// + /// The keys that will activate the chemical payload. + /// + [DataField] + public List KeysIn = new() { TriggerSystem.DefaultTriggerKey }; } [Serializable, NetSerializable] From 37b4649a50a479c1a1ab4b0c451fefdc09f14e78 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 26 Aug 2025 22:27:21 +0000 Subject: [PATCH 158/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 03cf1821e3..c4389ccb07 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: cable terminals are now visually layered below floors, like other cables - type: Fix - id: 8378 - time: '2025-04-28T23:43:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37018 - author: Vexerot changes: - message: Entities that are weightless or in the air are no longer slowed by puddles. @@ -3943,3 +3936,11 @@ id: 8890 time: '2025-08-26T21:50:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39784 +- author: StormyDragon + changes: + - message: Modular Grenades with a chemical payload now correctly wait out their + delay before activating. + type: Tweak + id: 8891 + time: '2025-08-26T22:26:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39905 From 0236a9065b461013a706d64cc9e051d66033b5e6 Mon Sep 17 00:00:00 2001 From: ToastEnjoyer Date: Tue, 26 Aug 2025 18:43:49 -0500 Subject: [PATCH 159/194] Wizard can no longer teleport to arrivals (#39901) * Fixed pacified people using the laser carbine * Fix wizards being able to teleport to arrivals * Removed spaces that we causing fails * Made using the in game map editor this time --- Resources/Maps/Misc/terminal.yml | 178 +++++++++++++++++++++++++------ 1 file changed, 144 insertions(+), 34 deletions(-) diff --git a/Resources/Maps/Misc/terminal.yml b/Resources/Maps/Misc/terminal.yml index 8ca17b4ebc..d2d767d121 100644 --- a/Resources/Maps/Misc/terminal.yml +++ b/Resources/Maps/Misc/terminal.yml @@ -1,6 +1,17 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Map + engineVersion: 266.0.0 + forkId: "" + forkVersion: "" + time: 08/26/2025 19:28:14 + entityCount: 928 +maps: +- 638 +grids: +- 818 +orphans: [] +nullspace: [] tilemap: 0: Space 7: FloorAsteroidSand @@ -17,38 +28,48 @@ tilemap: entities: - proto: "" entities: + - uid: 638 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: GridTree + - type: Broadphase + - type: OccluderTree - uid: 818 components: - type: MetaData name: NT-EM Terminal - type: Transform - parent: invalid + parent: 638 - type: MapGrid chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAHQAAAAADBwAAAAAAHQAAAAABWQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAADHQAAAAAABwAAAAAAHQAAAAAAWQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAACHQAAAAADBwAAAAAAHQAAAAABWQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAHQAAAAAABwAAAAAAHQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADTAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACTAAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAATAAAAAAAWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAATAAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABAAAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAABTAAAAAAAWQAAAAAATAAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAD - version: 6 + tiles: AAAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAAAAB0AAAAAAwAHAAAAAAAAHQAAAAABAFkAAAAAAgAdAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAABAFkAAAAAAwAdAAAAAAAABwAAAAAAAB0AAAAAAABZAAAAAAMAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAQBZAAAAAAIAHQAAAAADAAcAAAAAAAAdAAAAAAEAWQAAAAADAB0AAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAIAWQAAAAAAAB0AAAAAAAAHAAAAAAAAHQAAAAABAFkAAAAAAAAdAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIAWQAAAAADAFkAAAAAAgBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAADAEwAAAAAAABZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAAAAFkAAAAAAwB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAIATAAAAAAAAFkAAAAAAwBZAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABMAAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAIAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAEAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAABAFkAAAAAAABZAAAAAAAATAAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAQBZAAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAABAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAQBZAAAAAAEAWQAAAAABAFkAAAAAAwBZAAAAAAEAAAAAAAAAAHkAAAAAAAAdAAAAAAEAWQAAAAABAFkAAAAAAQBMAAAAAAAAWQAAAAAAAEwAAAAAAABZAAAAAAIAWQAAAAACAFkAAAAAAgBZAAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAWQAAAAADAA== + version: 7 0,0: ind: 0,0 - tiles: WQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAATQAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: WQAAAAADAFkAAAAAAwBZAAAAAAIAWQAAAAAAAFkAAAAAAwBZAAAAAAAAWQAAAAABAFkAAAAAAQBZAAAAAAIAWQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAIAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAgB5AAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAQB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAAC8AAAAAAAB5AAAAAAAAaQAAAAAAAHkAAAAAAAB4AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAADAFkAAAAAAABZAAAAAAIAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8AAAAAAAAvAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvAAAAAAAALwAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHgAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAATQAAAAAAAGgAAAAAAABoAAAAAAAAaQAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAABHQAAAAAABwAAAAAAHQAAAAABWQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAACHQAAAAAABwAAAAAAHQAAAAACWQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABHQAAAAADBwAAAAAAHQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAADHQAAAAACBwAAAAAAHQAAAAADWQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACTAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAATAAAAAAAWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAATAAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAADAFkAAAAAAQAdAAAAAAAABwAAAAAAAB0AAAAAAQBZAAAAAAIAHQAAAAADAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAB0AAAAAAgBZAAAAAAIAHQAAAAAAAAcAAAAAAAAdAAAAAAIAWQAAAAADAB0AAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAAdAAAAAAAAWQAAAAABAB0AAAAAAwAHAAAAAAAAHQAAAAABAFkAAAAAAAAdAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAHQAAAAADAFkAAAAAAwAdAAAAAAIABwAAAAAAAB0AAAAAAwBZAAAAAAIAHQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAAAWQAAAAADAFkAAAAAAQBZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBMAAAAAAAAWQAAAAACAFkAAAAAAgB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAwBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAAAAEwAAAAAAABZAAAAAAEAWQAAAAABAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAACAFkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAAATAAAAAAAAFkAAAAAAwBZAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAABZAAAAAAEAWQAAAAACAFkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAgBZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAADAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgB5AAAAAAAAAAAAAAAAAAAAAAAAAABZAAAAAAEAWQAAAAADAFkAAAAAAwBZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAgBZAAAAAAAAWQAAAAADAFkAAAAAAgBZAAAAAAMAeQAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADAFkAAAAAAwBZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAACAHkAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAHkAAAAAAAAdAAAAAAIAWQAAAAABAFkAAAAAAQBZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAIAWQAAAAAAAFkAAAAAAABZAAAAAAEAWQAAAAAAAFkAAAAAAgBZAAAAAAIAWQAAAAADAAAAAAAAAAB5AAAAAAAAHQAAAAADAB0AAAAAAwAdAAAAAAIAHQAAAAADAB0AAAAAAgAdAAAAAAEAHQAAAAACAHkAAAAAAABZAAAAAAMAWQAAAAAAAFkAAAAAAABZAAAAAAMAWQAAAAADAFkAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAABZAAAAAAAAWQAAAAAAAFkAAAAAAABZAAAAAAAAAAAAAAAAAAAAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmAAAAAAAAJgAAAAAAACYAAAAAAAAmAAAAAAAAJgAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB4AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAATAAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADTAAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAMAWQAAAAABAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAFkAAAAAAwBZAAAAAAAATAAAAAAAAFkAAAAAAwBZAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAIAWQAAAAABAFkAAAAAAABZAAAAAAMAWQAAAAADAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAADAFkAAAAAAwBMAAAAAAAAWQAAAAADAFkAAAAAAQB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAQBZAAAAAAEAWQAAAAADAFkAAAAAAQBZAAAAAAIAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAA== + version: 7 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABTAAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABTAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAABAFkAAAAAAABZAAAAAAIAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAWQAAAAAAAFkAAAAAAQBMAAAAAAAAWQAAAAADAFkAAAAAAwB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAFkAAAAAAgBZAAAAAAEAWQAAAAAAAFkAAAAAAQBZAAAAAAEAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAABZAAAAAAMAWQAAAAABAEwAAAAAAABZAAAAAAEAWQAAAAACAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAWQAAAAACAFkAAAAAAwBZAAAAAAMAWQAAAAADAFkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -62,6 +83,7 @@ entities: id: Empty - type: OccluderTree - type: Shuttle + dampingModifier: 0.25 - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg @@ -949,6 +971,7 @@ entities: - type: SpreaderGrid - type: GridPathfinding - type: Godmode + - type: ImplicitRoof - proto: AirlockExternalGlass entities: - uid: 2 @@ -1389,6 +1412,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1404,6 +1429,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1419,6 +1446,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1434,6 +1463,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1450,6 +1481,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1465,6 +1498,8 @@ entities: - type: BatterySelfRecharger autoRechargeRate: 50000 autoRecharge: True + - type: Fixtures + fixtures: {} missingComponents: - Construction - Destructible @@ -1476,32 +1511,32 @@ entities: pos: -7.5,-5.5 parent: 818 - type: Godmode - missingComponents: - - Construction + - type: Fixtures + fixtures: {} - uid: 633 components: - type: Transform pos: 6.5,-5.5 parent: 818 - type: Godmode - missingComponents: - - Construction + - type: Fixtures + fixtures: {} - uid: 928 components: - type: Transform pos: -6.5,-14.5 parent: 818 - type: Godmode - missingComponents: - - Construction + - type: Fixtures + fixtures: {} - uid: 929 components: - type: Transform pos: 5.5,-14.5 parent: 818 - type: Godmode - missingComponents: - - Construction + - type: Fixtures + fixtures: {} - proto: AtmosDeviceFanTiny entities: - uid: 296 @@ -1566,9 +1601,11 @@ entities: pos: -10.5,5.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - - ApcPowerReceiver - Destructible + - ApcPowerReceiver - proto: BlockGameArcade entities: - uid: 727 @@ -4380,6 +4417,8 @@ entities: pos: -5.5,2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - Construction @@ -4391,6 +4430,8 @@ entities: pos: 4.5,2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - Construction @@ -5142,6 +5183,8 @@ entities: pos: -6.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 816 @@ -5150,6 +5193,8 @@ entities: pos: 5.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: FirelockEdge @@ -5477,6 +5522,15 @@ entities: missingComponents: - Anchorable - Destructible +- proto: GhostWarpPoint + entities: + - uid: 916 + components: + - type: MetaData + name: Terminal + - type: Transform + pos: -0.5,1.5 + parent: 818 - proto: GravityGeneratorMini entities: - uid: 808 @@ -6418,6 +6472,8 @@ entities: pos: -6.5,1.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitEnlist @@ -6428,6 +6484,8 @@ entities: pos: -14.5,1.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitHighClassMartini @@ -6438,6 +6496,8 @@ entities: pos: -6.5,-3.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitJustAWeekAway @@ -6448,6 +6508,8 @@ entities: pos: 5.5,1.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitNanomichiAd @@ -6458,6 +6520,8 @@ entities: pos: -4.5,3.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitNanotrasenLogo @@ -6468,6 +6532,8 @@ entities: pos: -7.5,-11.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 247 @@ -6476,6 +6542,8 @@ entities: pos: -13.5,-4.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 248 @@ -6484,6 +6552,8 @@ entities: pos: 12.5,-4.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 249 @@ -6492,6 +6562,8 @@ entities: pos: 6.5,-16.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 250 @@ -6500,6 +6572,8 @@ entities: pos: -13.5,-16.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 251 @@ -6508,6 +6582,8 @@ entities: pos: 12.5,-11.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 922 @@ -6516,6 +6592,8 @@ entities: pos: -0.5,6.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitNTTGC @@ -6526,6 +6604,8 @@ entities: pos: 5.5,-3.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitPDAAd @@ -6536,6 +6616,8 @@ entities: pos: 12.5,-16.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitVacation @@ -6546,6 +6628,8 @@ entities: pos: -7.5,-16.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PosterLegitWorkForAFuture @@ -6556,6 +6640,8 @@ entities: pos: 12.5,2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: PottedPlantRandom @@ -7540,6 +7626,8 @@ entities: pos: -2.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNanotrasen2 @@ -7550,6 +7638,8 @@ entities: pos: -1.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNanotrasen3 @@ -7560,6 +7650,8 @@ entities: pos: -0.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNanotrasen4 @@ -7570,6 +7662,8 @@ entities: pos: 0.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNanotrasen5 @@ -7580,6 +7674,8 @@ entities: pos: 1.5,-2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignNosmoking @@ -7590,6 +7686,8 @@ entities: pos: -7.5,2.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignShipDock @@ -7600,6 +7698,8 @@ entities: pos: 6.5,-4.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 245 @@ -7608,6 +7708,8 @@ entities: pos: -7.5,-4.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SignSpace @@ -7618,6 +7720,8 @@ entities: pos: 12.5,-18.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 640 @@ -7626,6 +7730,8 @@ entities: pos: -7.5,-18.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 688 @@ -7634,6 +7740,8 @@ entities: pos: -13.5,-18.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 689 @@ -7642,6 +7750,8 @@ entities: pos: -7.5,-9.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 691 @@ -7650,6 +7760,8 @@ entities: pos: -13.5,-9.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 705 @@ -7658,6 +7770,8 @@ entities: pos: 12.5,-9.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 709 @@ -7666,6 +7780,8 @@ entities: pos: 6.5,-9.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 817 @@ -7674,6 +7790,8 @@ entities: pos: 6.5,-18.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - uid: 819 @@ -7682,6 +7800,8 @@ entities: pos: 4.5,7.5 parent: 818 - type: Godmode + - type: Fixtures + fixtures: {} missingComponents: - Destructible - proto: SinkWide @@ -9532,16 +9652,6 @@ entities: - type: Godmode missingComponents: - Destructible -- proto: WarpPoint - entities: - - uid: 638 - components: - - type: Transform - pos: -0.5,1.5 - parent: 818 - - type: WarpPoint - location: Terminal - - type: Godmode - proto: Windoor entities: - uid: 806 From 2965522cddc9ea7b1a6e58d85a11d042a0bb009c Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 26 Aug 2025 23:44:56 +0000 Subject: [PATCH 160/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c4389ccb07..4b8fb1220d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Vexerot - changes: - - message: Entities that are weightless or in the air are no longer slowed by puddles. - type: Tweak - id: 8379 - time: '2025-04-29T00:24:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33299 - author: themias changes: - message: Theatre workers (clown/mime/musician) now have access to the Service @@ -3944,3 +3937,10 @@ id: 8891 time: '2025-08-26T22:26:13.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39905 +- author: ToastEnjoyer + changes: + - message: Wizards can no longer teleport to the arrivals terminal + type: Fix + id: 8892 + time: '2025-08-26T23:43:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39901 From 60ea2b37fbb5561ab4bfbc339720372350044601 Mon Sep 17 00:00:00 2001 From: Hitlinemoss <209321380+Hitlinemoss@users.noreply.github.com> Date: Wed, 27 Aug 2025 03:07:32 -0400 Subject: [PATCH 161/194] Clipboards added to autolathe (and other folder changes) (#37705) * Added plastic clipboards; added plastic clipboards to the PTech machine; added clipboards & plastic clipboards to the autolathe * Fixed plastic clipboard inhand sprites; added and implemented 'empty' clipboard prototypes * Cleaned up code for empty clipboards; removed BoxFolderBaseEmpty since now it's redundant * Extensive folder cleanup * Bugfixed random folder spawns * Reduced amount of paper in CrateServiceBureaucracy * Medical folder sprite rename * BaseTraitorSocialObjective sprite fix * Added office paper to bureaucracy crate * First pass at addressing recent review * Second pass at addressing recent review * Fix of weird migration.yml error * whoops, forgot to undo the rename to folder-white.png in the last few commits * whoops, didn't commit that last commit properly * whoops, forgot to undo this reordering --- .../Catalog/Fills/Crates/permaescape.yml | 39 ++-- .../Catalog/Fills/Crates/service.yml | 12 +- .../VendingMachines/Inventories/cart.yml | 1 + .../Markers/Spawners/Random/folders.yml | 18 +- .../Entities/Objects/Misc/folders.yml | 188 ++++++++++++++---- .../Entities/Structures/Machines/lathe.yml | 1 + .../Structures/Storage/filing_cabinets.yml | 5 +- Resources/Prototypes/Objectives/traitor.yml | 2 +- .../Recipes/Lathes/Packs/shared.yml | 6 + Resources/Prototypes/Recipes/Lathes/misc.yml | 17 +- .../Roles/Jobs/Cargo/quartermaster.yml | 2 +- .../Roles/Jobs/CentComm/official.yml | 2 +- .../Roles/Jobs/Command/head_of_personnel.yml | 2 +- .../Roles/Jobs/Fun/visitors_startinggear.yml | 6 +- .../Misc/plastic_clipboard.rsi/clipboard.png | Bin 0 -> 442 bytes .../plastic_clipboard.rsi/clipboard_over.png | Bin 0 -> 141 bytes .../plastic_clipboard.rsi/clipboard_paper.png | Bin 0 -> 166 bytes .../plastic_clipboard.rsi/clipboard_pen.png | Bin 0 -> 148 bytes .../plastic_clipboard.rsi/equipped-BELT.png | Bin 0 -> 479 bytes .../plastic_clipboard.rsi/inhand-left.png | Bin 0 -> 668 bytes .../plastic_clipboard.rsi/inhand-right.png | Bin 0 -> 667 bytes .../Misc/plastic_clipboard.rsi/meta.json | 35 ++++ 22 files changed, 247 insertions(+), 89 deletions(-) create mode 100644 Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard.png create mode 100644 Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_over.png create mode 100644 Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_paper.png create mode 100644 Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard_pen.png create mode 100644 Resources/Textures/Objects/Misc/plastic_clipboard.rsi/equipped-BELT.png create mode 100644 Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-left.png create mode 100644 Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-right.png create mode 100644 Resources/Textures/Objects/Misc/plastic_clipboard.rsi/meta.json diff --git a/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml b/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml index 4ee0d5f9ea..ed48479cd2 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml @@ -82,7 +82,7 @@ prob: 0.25 - id: OxygenTankFilled prob: 0.05 - + - type: entity id: CratePermaEscapeGun parent: CrateGenericSteel @@ -124,40 +124,37 @@ contents: - id: RubberStampApproved - id: RubberStampDenied + - id: Paper + amount: 5 - id: Pen - - id: Pen - - id: Pen - - id: BoxFolderBase + amount: 3 + - id: BoxFolderBaseEmpty orGroup: folderA - - id: BoxFolderBlack + - id: BoxFolderBlackEmpty orGroup: folderA - - id: BoxFolderBlue + - id: BoxFolderBlueEmpty orGroup: folderA - - id: BoxFolderGreen + - id: BoxFolderGreenEmpty orGroup: folderA - - id: BoxFolderGrey + - id: BoxFolderGreyEmpty orGroup: folderA - - id: BoxFolderRed + - id: BoxFolderRedEmpty orGroup: folderA - - id: BoxFolderWhite + - id: BoxFolderYellowEmpty orGroup: folderA - - id: BoxFolderYellow - orGroup: folderA - - id: BoxFolderBase + - id: BoxFolderBaseEmpty orGroup: folderB - - id: BoxFolderBlack + - id: BoxFolderBlackEmpty orGroup: folderB - - id: BoxFolderBlue + - id: BoxFolderBlueEmpty orGroup: folderB - - id: BoxFolderGreen + - id: BoxFolderGreenEmpty orGroup: folderB - - id: BoxFolderGrey + - id: BoxFolderGreyEmpty orGroup: folderB - - id: BoxFolderRed + - id: BoxFolderRedEmpty orGroup: folderB - - id: BoxFolderWhite - orGroup: folderB - - id: BoxFolderYellow + - id: BoxFolderYellowEmpty orGroup: folderB - id: CrayonBox prob: 0.50 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index 84da90eb2a..46299ef6b9 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -144,15 +144,17 @@ - type: StorageFill contents: - id: Paper - amount: 15 + amount: 12 + - id: PaperOffice + amount: 6 - id: Pen amount: 2 - - id: BoxFolderClipboard + - id: BoxFolderClipboardEmpty amount: 2 - id: HandLabeler - - id: BoxFolderBlue - - id: BoxFolderRed - - id: BoxFolderYellow + - id: BoxFolderBlueEmpty + - id: BoxFolderRedEmpty + - id: BoxFolderYellowEmpty - id: NewtonCradle - id: BoxEnvelope - id: BrbSign diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml index 414e77bcad..df4af37f52 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml @@ -7,6 +7,7 @@ ClothingHeadsetGrey: 5 RubberStampApproved: 1 RubberStampDenied: 1 + BoxFolderPlasticClipboardEmpty: 2 Paper: 10 Envelope: 10 HandLabeler: 2 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/folders.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/folders.yml index 7631d43316..5d4c133a03 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/folders.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/folders.yml @@ -10,15 +10,15 @@ - type: Sprite sprite: Objects/Misc/folders.rsi layers: - - state: folder-base - - state: folder-colormap + - state: folder-base + - state: folder-colormap - type: RandomSpawner offset: 0 prototypes: - - BoxFolderRed - - BoxFolderBlue - - BoxFolderYellow - - BoxFolderWhite - - BoxFolderGrey - - BoxFolderBlack - - BoxFolderGreen + - BoxFolderBase + - BoxFolderRed + - BoxFolderBlue + - BoxFolderYellow + - BoxFolderGrey + - BoxFolderBlack + - BoxFolderGreen diff --git a/Resources/Prototypes/Entities/Objects/Misc/folders.yml b/Resources/Prototypes/Entities/Objects/Misc/folders.yml index f72d4c3abc..cee720b6ea 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/folders.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/folders.yml @@ -1,6 +1,6 @@ - type: entity - id: BoxFolderNuclearCodes parent: BaseItem + id: BoxFolderNuclearCodes name: nuclear code folder components: - type: Sprite @@ -19,8 +19,8 @@ - type: Appearance - type: entity - id: BoxFolderBase parent: BoxBase + id: BoxFolderBaseEmpty name: folder description: A folder filled with top secret paperwork. components: @@ -62,22 +62,42 @@ - type: Tag tags: - Folder - - type: StorageFill - contents: - - id: Paper - prob: 0.5 - - id: PaperOffice - prob: 0.4 - - id: Paper - prob: 0.3 - - id: PaperOffice - prob: 0.2 - - id: Paper - prob: 0.2 - type: entity - id: BoxFolderRed - parent: BoxFolderBase + abstract: true + id: BoxFolderFill # Include this as a parent prototype to add 0-5 random papers to a folder's inventory when spawned. + suffix: Filled + components: + - type: StorageFill + contents: + - id: Paper + prob: 0.5 + - id: PaperOffice + prob: 0.4 + - id: Paper + prob: 0.3 + - id: PaperOffice + prob: 0.2 + - id: Paper + prob: 0.2 + +- type: entity + abstract: true + id: BoxFolderFillThreePapers # Like BoxFolderFill, but always has exactly three sheets of standard paper; use for roles' startingGear + suffix: 3 papers + components: + - type: StorageFill + contents: + - id: Paper + amount: 3 + +- type: entity + parent: [BoxFolderBaseEmpty, BoxFolderFill] + id: BoxFolderBase + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderRedEmpty suffix: Red components: - type: Sprite @@ -87,8 +107,13 @@ - state: folder-base - type: entity - id: BoxFolderBlue - parent: BoxFolderBase + parent: [BoxFolderRedEmpty, BoxFolderFill] + id: BoxFolderRed + suffix: Red, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderBlueEmpty suffix: Blue components: - type: Sprite @@ -98,8 +123,13 @@ - state: folder-base - type: entity - id: BoxFolderYellow - parent: BoxFolderBase + parent: [BoxFolderBlueEmpty, BoxFolderFill] + id: BoxFolderBlue + suffix: Blue, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderYellowEmpty suffix: Yellow components: - type: Sprite @@ -109,18 +139,13 @@ - state: folder-base - type: entity - id: BoxFolderWhite - parent: BoxFolderBase - suffix: White - components: - - type: Sprite - layers: - - state: folder-white - - state: folder-base + parent: [BoxFolderYellowEmpty, BoxFolderFill] + id: BoxFolderYellow + suffix: Yellow, Filled - type: entity - id: BoxFolderGrey - parent: BoxFolderBase + parent: BoxFolderBaseEmpty + id: BoxFolderGreyEmpty suffix: Grey components: - type: Sprite @@ -130,8 +155,13 @@ - state: folder-base - type: entity - id: BoxFolderBlack - parent: BoxFolderBase + parent: [BoxFolderGreyEmpty, BoxFolderFill] + id: BoxFolderGrey + suffix: Grey, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderBlackEmpty suffix: Black components: - type: Sprite @@ -141,8 +171,13 @@ - state: folder-base - type: entity - id: BoxFolderGreen - parent: BoxFolderBase + parent: [BoxFolderBlackEmpty, BoxFolderFill] + id: BoxFolderBlack + suffix: Black, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderGreenEmpty suffix: Green components: - type: Sprite @@ -152,10 +187,30 @@ - state: folder-base - type: entity - id: BoxFolderCentCom - name: CentComm folder - parent: BoxFolderBase + parent: [BoxFolderGreenEmpty, BoxFolderFill] + id: BoxFolderGreen + suffix: Green, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderWhiteEmpty + suffix: White + components: + - type: Sprite + layers: + - state: folder-white + - state: folder-base + +- type: entity + parent: [BoxFolderWhiteEmpty, BoxFolderFill] + id: BoxFolderWhite + suffix: White, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderCentComEmpty categories: [ DoNotMap ] + name: CentComm folder description: CentComm's miserable little pile of secrets! components: - type: Sprite @@ -164,8 +219,13 @@ - state: folder-base - type: entity - id: BoxFolderClipboard - parent: BoxFolderBase + parent: [BoxFolderCentComEmpty, BoxFolderFill] + id: BoxFolderCentCom + suffix: DO NOT MAP, Filled + +- type: entity + parent: BoxFolderBaseEmpty + id: BoxFolderClipboardEmpty name: clipboard description: The weapon of choice for those on the front lines of bureaucracy. components: @@ -223,8 +283,42 @@ Blunt: 6 - type: entity - id: BoxFolderCentComClipboard - parent: BoxFolderClipboard + parent: [BoxFolderClipboardEmpty, BoxFolderFill] + id: BoxFolderClipboard + +- type: entity + parent: [BoxFolderClipboardEmpty, BoxFolderFillThreePapers] + id: BoxFolderClipboardThreePapers + +- type: entity + parent: BoxFolderClipboardEmpty + id: BoxFolderPlasticClipboardEmpty + name: plastic clipboard + description: A cheap clipboard made of blue plastic. For those who aren't yet ready to wield the bureaucratic might of a proper wooden clipboard. + components: + - type: Sprite + sprite: Objects/Misc/plastic_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: Item + sprite: Objects/Misc/plastic_clipboard.rsi + - type: Clothing + sprite: Objects/Misc/plastic_clipboard.rsi + +- type: entity + parent: [BoxFolderPlasticClipboardEmpty, BoxFolderFill] + id: BoxFolderPlasticClipboard + +- type: entity + parent: BoxFolderClipboardEmpty + id: BoxFolderCentComClipboardEmpty name: CentComm clipboard description: A luxurious clipboard upholstered with green velvet. Often seen carried by CentComm officials, seldom seen actually used. components: @@ -245,8 +339,16 @@ sprite: Objects/Misc/cc-clipboard.rsi - type: entity + parent: [BoxFolderCentComClipboardEmpty, BoxFolderFill] + id: BoxFolderCentComClipboard + +- type: entity + parent: [BoxFolderCentComClipboardEmpty, BoxFolderFillThreePapers] + id: BoxFolderCentComClipboardThreePapers + +- type: entity + parent: [BoxFolderClipboardEmpty, BaseGrandTheftContraband] id: BoxFolderQmClipboard - parent: [BoxFolderClipboard, BaseGrandTheftContraband] name: requisition digi-board description: A bulky electric clipboard, filled with shipping orders and financing details. With so many compromising documents, you ought to keep this safe. components: @@ -278,8 +380,6 @@ grid: - 0,0,4,3 quickInsert: true - - type: StorageFill - contents: [] #to override base clipboard fill - type: ItemMapper mapLayers: qm_clipboard_paper: diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 7cfac3488a..abff9561c2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -123,6 +123,7 @@ - PartsStatic - AtmosStatic - CablesStatic + - PaperworkStatic - CargoStatic - MaterialsStatic - BasicChemistryStatic diff --git a/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml b/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml index f0e79a841e..c53dfb5d78 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/filing_cabinets.yml @@ -6,12 +6,13 @@ rolls: !type:RangeNumberSelector range: 2, 4 children: - - id: BoxFolderBlue + - id: BoxFolderBase - id: BoxFolderRed + - id: BoxFolderBlue - id: BoxFolderYellow - - id: BoxFolderWhite - id: BoxFolderGrey - id: BoxFolderBlack + - id: BoxFolderGreen - !type:GroupSelector rolls: !type:RangeNumberSelector range: 0, 3 diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index b4a1baa85f..5f3b22c30d 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -17,7 +17,7 @@ - type: Objective icon: sprite: Objects/Misc/folders.rsi - state: folder-white + state: folder-colormap - type: MultipleTraitorsRequirement - type: entity diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml b/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml index 7a6dc32519..34a5fcbe6e 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/shared.yml @@ -38,6 +38,12 @@ - CableMVStack - CableHVStack +- type: latheRecipePack + id: PaperworkStatic + recipes: + - BoxFolderClipboardEmpty + - BoxFolderPlasticClipboardEmpty + ## Dynamic # Things you'd expect sci salv and engi to make use of diff --git a/Resources/Prototypes/Recipes/Lathes/misc.yml b/Resources/Prototypes/Recipes/Lathes/misc.yml index 40d155b1fd..53b5f4a4e7 100644 --- a/Resources/Prototypes/Recipes/Lathes/misc.yml +++ b/Resources/Prototypes/Recipes/Lathes/misc.yml @@ -276,4 +276,19 @@ completetime: 1 materials: Steel: 30 - + +- type: latheRecipe + id: BoxFolderClipboardEmpty + result: BoxFolderClipboardEmpty + completetime: 2 + materials: + Wood: 100 + Steel: 25 + +- type: latheRecipe + id: BoxFolderPlasticClipboardEmpty + result: BoxFolderPlasticClipboardEmpty + completetime: 2 + materials: + Plastic: 100 + Steel: 25 diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index f2e7a2fb93..5a62c1dc8e 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -39,7 +39,7 @@ equipment: id: QuartermasterPDA ears: ClothingHeadsetQM - belt: BoxFolderClipboard + belt: BoxFolderClipboardThreePapers pocket1: AppraisalTool storage: back: diff --git a/Resources/Prototypes/Roles/Jobs/CentComm/official.yml b/Resources/Prototypes/Roles/Jobs/CentComm/official.yml index 9c28c56002..86cf79d207 100644 --- a/Resources/Prototypes/Roles/Jobs/CentComm/official.yml +++ b/Resources/Prototypes/Roles/Jobs/CentComm/official.yml @@ -28,7 +28,7 @@ id: CentcomPDA ears: ClothingHeadsetAltCentCom belt: WeaponPistolN1984 - pocket1: BoxFolderBlack + pocket1: BoxFolderCentComClipboardThreePapers pocket2: PenCentcom diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 7bd1ff5c52..ac052e5cdf 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -65,7 +65,7 @@ id: HoPPDA gloves: ClothingHandsGlovesHop ears: ClothingHeadsetAltCommand - belt: BoxFolderClipboard + belt: BoxFolderClipboardThreePapers eyes: ClothingEyesHudCommand storage: back: diff --git a/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml index ec9537bb55..8e129e01ed 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/visitors_startinggear.yml @@ -1239,7 +1239,7 @@ pocket1: BookSun pocket2: BookRandomStory inhand: - - BoxFolderClipboard + - BoxFolderClipboardThreePapers - type: startingGear id: VisitorMusicianFancyAltA @@ -1509,7 +1509,7 @@ back: ClothingBackpackSatchel ears: ClothingHeadsetService pocket1: MicrophoneInstrument - pocket2: BoxFolderClipboard + pocket2: BoxFolderClipboardThreePapers - type: startingGear id: VisitorReporterAlt @@ -1520,7 +1520,7 @@ back: ClothingBackpackSatchel ears: ClothingHeadsetService pocket1: MicrophoneInstrument - pocket2: BoxFolderClipboard + pocket2: BoxFolderClipboardThreePapers - type: startingGear id: VisitorServiceWorker diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/clipboard.png new file mode 100644 index 0000000000000000000000000000000000000000..6267c74c6bdc4bb5abf52e8995a6ce874e7043e5 GIT binary patch literal 442 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=DjSL74G){)!Z!phSslL`iUdT1k0gQ7S_~VrE{6o}X)of~lUN zo_Y7R@0LI{+fpMu(>y)37&w3&Rt70XRt82O%L|C5p=^+AG#Ht|;!HrcAtMum0FaIX z;>>myuy_`b4FU;34AKvy(JWr9FI?MWw3+dk1j89i#*U7q o_tHbJ=7(6^VTlCGh5j< z%lGfxz02o@HK@E@y64_{L!JAt*v_;uFmWgxh;u4`xs1(1nxEl=wA`*pzDe%&N^gL6 OF?hQAxvX@ve#4-y2I^Bl@dv-cfS&;As5s_ei0mkMTkBW@`n_^SAD%U#)IkVzPP7 ur@2#qPF=j)#pO=wT5g+9OhB_9TonAmtPE0&tPG4mmKP99L)jqLXfQH^#hHL?Lq;YB0U#X( z#F_0ZVDT&<8w3)77^ELYqgl$p%)l^#oq+|Y!obMbfN=rDRFDqV1rU>_0NEhG1T=>U ztTM>b0?2~uGBhv%$*Q`~>s@TJ^(c_p=jq}YQW5v|vLfFh2LaX#OPN%zJl?^<)%rw4 zrepF0OGd8V!wR#4JSQ_HZf3ikBzDhR?epY9`FVdQ&MBb@0M(RrssI20 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-left.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..250724510732c7fe92db91eab6f4417a6b0e61d9 GIT binary patch literal 668 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBufiR<}hF1enP@=>&q9iy!t)x7$D3u`~F*C13&(AeP!Bo#s z&q6x$)e4}RZK)BSX`Y^13>-iXD}xjxD+42tvp@3Xlx~Oh9v) zz$$|*Er2YjE<*zYknEW}u^O-77c#(L@%D6a45^5Fd+V&xC(eQlDXci68rafZjMDU+G5tTKJP z{&(h$80Y18r=8JNXPvR+U#fY#37??O|wF|E|>?dgrxh zxuDFxJ-qYUADiUZy&+yrt#w zO~tFfu*b~HUHyeK^=90Xy^C+JtTdB0pQL*%lTk>JrLpJ5$LlqZLv1cw)&6)Ted1a7 zFJW1wZ^u60+4FP_!?xzfnti>!8eJ(N=QC`KPF5RmdKI;Vst0HfyDhX4Qo literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-right.png b/Resources/Textures/Objects/Misc/plastic_clipboard.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..e9e00780371f6352451a879faa0f4caa4d7d3cb8 GIT binary patch literal 667 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBufiR<}hF1enP@=>&q9iy!t)x7$D3u`~F*C13&(AeP!Bo#s z&q6x$)e4}RZK)BSX`Y^13>-iXD}xjxD+42tvp@3Xlx~Oh9v) zz$$|*Er2YjE<*zYknEW}u^O-77c#(L@$z(W45^5Fd+VUrVF!VRhrWhcwkwV{M;(;g zQz<6Dz}D6F7eky#&3c=rS<_zxS7hwj8e!wHdLnOdZ^q+wX{Me3*`3>XP2Nt(V=@MX zKSRU+AN^$&`z@D-1O1 zgs=1;{CN2Ci#i)$=jTPMO1@S9y}0N2xAd& Date: Wed, 27 Aug 2025 07:08:40 +0000 Subject: [PATCH 162/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 4b8fb1220d..11ec2ce42b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: themias - changes: - - message: Theatre workers (clown/mime/musician) now have access to the Service - Request Computer - type: Tweak - id: 8380 - time: '2025-04-29T00:26:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37003 - author: Thatonestomf changes: - message: Added slugs to both the bulldog and ammo bundle. @@ -3944,3 +3936,25 @@ id: 8892 time: '2025-08-26T23:43:50.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39901 +- author: Hitlinemoss + changes: + - message: Clipboards can now be printed by autolathes. + type: Add + - message: Plastic clipboards have been added for aspiring paperwork enthusiasts. + They can be printed by autolathes or dispensed from the Head of Personnel's + PTech machine. + type: Add + - message: Bureaucracy crates no longer have their folders/clipboards contain paper. + The amount of paper in the crate itself has been increased to compensate. + type: Tweak + - message: Filing cabinets can now contain green folders. + type: Fix + - message: Roles that spawn with a clipboard always have that clipboard contain + exactly three sheets of paper, rather than a random quantity. + type: Fix + - message: CentComm Officials now spawn with a proper CentComm clipboard instead + of a generic black folder. + type: Tweak + id: 8893 + time: '2025-08-27T07:07:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37705 From 36c9f2006d62d90555ca9ecf05c1c700868a8872 Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Wed, 27 Aug 2025 07:26:32 -0700 Subject: [PATCH 163/194] [Bugfix] Fix Cross Grid Magboots (#39910) * Augh * Remove that * ViewVariables property so it can be debugged at the very least. * Remove --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- Content.Shared/Clothing/MagbootsSystem.cs | 2 +- Content.Shared/Gravity/GravityAffectedComponent.cs | 2 +- Content.Shared/Gravity/SharedGravitySystem.cs | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Content.Shared/Clothing/MagbootsSystem.cs b/Content.Shared/Clothing/MagbootsSystem.cs index 58bc2f0796..d00211fa65 100644 --- a/Content.Shared/Clothing/MagbootsSystem.cs +++ b/Content.Shared/Clothing/MagbootsSystem.cs @@ -52,7 +52,7 @@ public sealed class SharedMagbootsSystem : EntitySystem if (TryComp(user, out var moved)) moved.Enabled = !state; - _gravity.RefreshWeightless(user, !state); + _gravity.RefreshWeightless(user); if (state) _alerts.ShowAlert(user, ent.Comp.MagbootsAlert); diff --git a/Content.Shared/Gravity/GravityAffectedComponent.cs b/Content.Shared/Gravity/GravityAffectedComponent.cs index 2da7458b07..7991677759 100644 --- a/Content.Shared/Gravity/GravityAffectedComponent.cs +++ b/Content.Shared/Gravity/GravityAffectedComponent.cs @@ -12,6 +12,6 @@ public sealed partial class GravityAffectedComponent : Component /// /// If true, this entity will be considered "weightless" /// - [DataField, AutoNetworkedField] + [ViewVariables, AutoNetworkedField] public bool Weightless = true; } diff --git a/Content.Shared/Gravity/SharedGravitySystem.cs b/Content.Shared/Gravity/SharedGravitySystem.cs index b54f9b21c8..4ba312f4e0 100644 --- a/Content.Shared/Gravity/SharedGravitySystem.cs +++ b/Content.Shared/Gravity/SharedGravitySystem.cs @@ -92,7 +92,8 @@ public abstract partial class SharedGravitySystem : EntitySystem /// /// Overload of which also takes a bool for the weightlessness value we want to change to. - /// This method is LOAD BEARING for UninitializedSaveTest. DO NOT REMOVE IT. + /// This method should only be called if there is no chance something can override the weightless value you're trying to change to. + /// This is really only the case if you're applying a weightless value that overrides non-conditionally from events or are a grid with the gravity component. /// /// The entity we are updating the weightless status of /// The weightless value we are trying to change to, helps avoid needless networking @@ -142,7 +143,7 @@ public abstract partial class SharedGravitySystem : EntitySystem if (args.OldParent == args.Transform.GridUid) return; - RefreshWeightless((entity.Owner, entity.Comp), !EntityGridOrMapHaveGravity((entity, args.Transform))); + RefreshWeightless((entity.Owner, entity.Comp)); } private void OnBodyTypeChanged(Entity entity, ref PhysicsBodyTypeChangedEvent args) From ae199ba314b91540163589e05edcafc36a18af7c Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 27 Aug 2025 14:47:06 +0000 Subject: [PATCH 164/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 11ec2ce42b..a8a2a3141d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,16 +1,4 @@ Entries: -- author: Thatonestomf - changes: - - message: Added slugs to both the bulldog and ammo bundle. - type: Add - - message: Slugs are alot more powerful than they were before, now dealing 40 pierce - and 15 structural - type: Tweak - - message: Basic shells now deal structural damage - type: Tweak - id: 8381 - time: '2025-04-29T03:13:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33517 - author: EmoGarbage404 changes: - message: Space debris now have a chance for landmines to spawn on them. @@ -3958,3 +3946,11 @@ id: 8893 time: '2025-08-27T07:07:33.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/37705 +- author: slarticodefast + changes: + - message: Syndicate stealth items now have a selection of tool locks you can choose + from to hide their activation from others. + type: Add + id: 8894 + time: '2025-08-27T14:45:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39900 From 973689425c78988ec338e940ca545089d738c4d5 Mon Sep 17 00:00:00 2001 From: Centronias Date: Wed, 27 Aug 2025 07:56:13 -0700 Subject: [PATCH 165/194] Fixes Diona rooting not working since event based weightlessness refactor (#39893) * Fixes Diona rooting not working since event based weightlessness refactor Caused by #37971 * pr comments --- Content.Shared/Rootable/SharedRootableSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Rootable/SharedRootableSystem.cs b/Content.Shared/Rootable/SharedRootableSystem.cs index 9165c3c111..d646c7d97c 100644 --- a/Content.Shared/Rootable/SharedRootableSystem.cs +++ b/Content.Shared/Rootable/SharedRootableSystem.cs @@ -104,6 +104,7 @@ public abstract class SharedRootableSystem : EntitySystem entity.Comp.Rooted = !entity.Comp.Rooted; _movementSpeedModifier.RefreshMovementSpeedModifiers(entity); + _gravity.RefreshWeightless(entity.Owner); Dirty(entity); if (entity.Comp.Rooted) @@ -119,7 +120,6 @@ public abstract class SharedRootableSystem : EntitySystem { _alerts.ClearAlert(entity, entity.Comp.RootedAlert); } - _audio.PlayPredicted(entity.Comp.RootSound, entity.Owner.ToCoordinates(), entity); return true; From 149bb4ca14faf858f19c9754c1033a0dd1f1e672 Mon Sep 17 00:00:00 2001 From: chromiumboy <50505512+chromiumboy@users.noreply.github.com> Date: Wed, 27 Aug 2025 10:04:39 -0500 Subject: [PATCH 166/194] Re-anchorable structures (#39542) * Initial commit * Reverted reinvention of an existing feature... * Fixed two missed entries * Added extra examine check * AI core and high security doors visuals snap to always face south --- .../Construction/Components/AnchorableComponent.cs | 1 - .../Construction/EntitySystems/AnchorableSystem.cs | 7 +++++++ Resources/Prototypes/Entities/Mobs/Player/silicon.yml | 5 +++++ .../Objects/Weapons/Guns/Turrets/turrets_energy.yml | 4 ++++ .../Structures/Doors/Airlocks/base_structureairlocks.yml | 4 ++++ .../Entities/Structures/Doors/Airlocks/highsec.yml | 5 +++++ .../Entities/Structures/Doors/Firelocks/firelock.yml | 4 ++++ .../Structures/Doors/MaterialDoors/material_doors.yml | 4 ++++ .../Entities/Structures/Doors/SecretDoor/secret_door.yml | 4 ++++ .../Entities/Structures/Doors/Shutter/shutters.yml | 4 ++++ .../Structures/Doors/Windoors/base_structurewindoors.yml | 4 ++++ .../Entities/Structures/Wallmounts/base_wallmount.yml | 4 ++++ Resources/Prototypes/Entities/Structures/Walls/walls.yml | 4 ++++ .../Prototypes/Entities/Structures/Windows/window.yml | 4 ++++ Resources/Prototypes/Entities/Structures/catwalk.yml | 4 ++++ .../Entities/Structures/cryogenic_sleep_unit.yml | 4 ++++ Resources/Prototypes/Entities/Structures/plastic_flaps.yml | 4 ++++ Resources/Prototypes/Entities/Structures/stairs.yml | 4 ++++ 18 files changed, 73 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Construction/Components/AnchorableComponent.cs b/Content.Shared/Construction/Components/AnchorableComponent.cs index 064f839efa..e17a49937a 100644 --- a/Content.Shared/Construction/Components/AnchorableComponent.cs +++ b/Content.Shared/Construction/Components/AnchorableComponent.cs @@ -2,7 +2,6 @@ using Content.Shared.Construction.EntitySystems; using Content.Shared.Tools; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Construction.Components { diff --git a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs index e690b93826..d53a100acc 100644 --- a/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs +++ b/Content.Shared/Construction/EntitySystems/AnchorableSystem.cs @@ -102,6 +102,13 @@ public sealed partial class AnchorableSystem : EntitySystem private void OnAnchoredExamine(EntityUid uid, AnchorableComponent component, ExaminedEvent args) { var isAnchored = Comp(uid).Anchored; + + if (isAnchored && (component.Flags & AnchorableFlags.Unanchorable) == 0x0) + return; + + if (!isAnchored && (component.Flags & AnchorableFlags.Anchorable) == 0x0) + return; + var messageId = isAnchored ? "examinable-anchored" : "examinable-unanchored"; args.PushMarkup(Loc.GetString(messageId, ("target", uid))); } diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index c2025bb663..8542afbdc1 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -170,6 +170,10 @@ - AiHolder suffix: Empty components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: WarpPoint blacklist: tags: @@ -195,6 +199,7 @@ - type: StationAiVision - type: InteractionOutline - type: Sprite + snapCardinals: true sprite: Mobs/Silicon/station_ai.rsi layers: - state: base diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml index 40c67c898d..1fe926294c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Turrets/turrets_energy.yml @@ -5,6 +5,10 @@ name: sentry turret description: A high-tech autonomous weapons system designed to keep unauthorized personnel out of sensitive areas. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Fixtures fixtures: body: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 437076b0a2..8b509a17ff 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -4,6 +4,10 @@ name: airlock description: It opens, it closes, and maybe crushes you. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: StationAiWhitelist - type: MeleeSound soundGroups: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index 28b63d9723..975328c7c1 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -6,9 +6,14 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: StationAiWhitelist - type: InteractionOutline - type: Sprite + snapCardinals: true sprite: Structures/Doors/Airlocks/highsec/highsec.rsi layers: - state: closed diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index 584a4e5c7b..489411bc28 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -5,6 +5,10 @@ name: firelock description: Apply crowbar. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: AtmosAlarmable syncWith: - FireAlarm diff --git a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml index 1ce3d1b61c..510b76b41e 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml @@ -5,6 +5,10 @@ abstract: true description: A door, where will it lead? components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: InteractionOutline - type: Sprite sprite: Structures/Doors/MineralDoors/metal_door.rsi diff --git a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml index 0784829e1c..c8fdbec326 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/SecretDoor/secret_door.yml @@ -6,6 +6,10 @@ abstract: true description: Keeps the air in and the greytide out. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Sprite sprite: Structures/Doors/secret_door.rsi layers: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml index ca870d7c7d..6e855a150f 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/shutters.yml @@ -7,6 +7,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: StationAiWhitelist - type: Sprite sprite: Structures/Doors/Shutters/shutters.rsi diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index 10062d7803..811385645c 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -6,6 +6,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: MeleeSound soundGroups: Brute: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/base_wallmount.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/base_wallmount.yml index 49e4a62fd4..b064d4a231 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/base_wallmount.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/base_wallmount.yml @@ -6,6 +6,10 @@ snap: - Wallmount components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Physics canCollide: false - type: Clickable diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 0063b0ad5a..2964b71162 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -9,6 +9,10 @@ snap: - Wall components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: RangedDamageSound soundGroups: Brute: diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 0c8ada8f76..ad36a58362 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -8,6 +8,10 @@ snap: - Window components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: MeleeSound soundGroups: Brute: diff --git a/Resources/Prototypes/Entities/Structures/catwalk.yml b/Resources/Prototypes/Entities/Structures/catwalk.yml index 0a44c338a4..669f4a6800 100644 --- a/Resources/Prototypes/Entities/Structures/catwalk.yml +++ b/Resources/Prototypes/Entities/Structures/catwalk.yml @@ -6,6 +6,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Clickable - type: Sprite sprite: Structures/catwalk.rsi diff --git a/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml index 568c38a5d2..7458cd2b69 100644 --- a/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml +++ b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml @@ -4,6 +4,10 @@ name: cryogenic sleep unit description: A super-cooled container that keeps crewmates safe during space travel. components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Sprite noRot: true sprite: Structures/cryostorage.rsi diff --git a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml index 088ddfda61..a8fa40b69d 100644 --- a/Resources/Prototypes/Entities/Structures/plastic_flaps.yml +++ b/Resources/Prototypes/Entities/Structures/plastic_flaps.yml @@ -5,6 +5,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Sprite sprite: Structures/plastic_flaps.rsi state: plasticflaps diff --git a/Resources/Prototypes/Entities/Structures/stairs.yml b/Resources/Prototypes/Entities/Structures/stairs.yml index 1d107b50cd..a371f93567 100644 --- a/Resources/Prototypes/Entities/Structures/stairs.yml +++ b/Resources/Prototypes/Entities/Structures/stairs.yml @@ -6,6 +6,10 @@ placement: mode: SnapgridCenter components: + - type: Anchorable + flags: + - Anchorable + - type: Rotatable - type: Clickable - type: Sprite sprite: Structures/stairs.rsi From 10f7c2e568b31c44c80a12ad1deab417972cb715 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 27 Aug 2025 15:05:46 +0000 Subject: [PATCH 167/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a8a2a3141d..cf84bd37fc 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,19 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - message: Space debris now have a chance for landmines to spawn on them. - type: Add - - message: Adjusted the loot table on space debris to have more useful equipment - and items. - type: Tweak - - message: Round-start space debris now better mimics what the salvage magnet can - pull in. - type: Tweak - - message: Removed round-start space asteroids. - type: Remove - id: 8382 - time: '2025-04-29T03:37:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37025 - author: drakewill-CRL changes: - message: You can now see mutations on plants and produce. @@ -3954,3 +3939,12 @@ id: 8894 time: '2025-08-27T14:45:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39900 +- author: chromiumboy + changes: + - message: Many station structures and fixtures, such as walls and airlocks, can + now be re-anchored to the floor if they happen to be dislodged by an explosion + or other shenanigans + type: Tweak + id: 8895 + time: '2025-08-27T15:04:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39542 From adefde67c0c5181491655f5ad228af022864b289 Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Wed, 27 Aug 2025 13:13:24 -0600 Subject: [PATCH 168/194] exo decor update (#39896) * im monky * ime monky 2 * changes listed on github --------- Co-authored-by: SlamBamActionman --- Resources/Maps/exo.yml | 9399 ++++++++++++++++++---------------------- 1 file changed, 4260 insertions(+), 5139 deletions(-) diff --git a/Resources/Maps/exo.yml b/Resources/Maps/exo.yml index f8026dd862..535245958c 100644 --- a/Resources/Maps/exo.yml +++ b/Resources/Maps/exo.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 265.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/31/2025 15:20:28 - entityCount: 20082 + time: 08/27/2025 14:22:57 + entityCount: 19813 maps: - 1 grids: @@ -16,6 +16,7 @@ tilemap: 0: Space 51: FloorAsteroidIronsandBorderless 28: FloorAstroGrass + 52: FloorAstroSnow 50: FloorBlue 19: FloorBlueCircuit 21: FloorBoxing @@ -100,95 +101,95 @@ entities: chunks: 0,0: ind: 0,0 - tiles: YAAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAACAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAEAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAFgAAAAADABYAAAAAAgAWAAAAAAEAFgAAAAABABYAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABYAAAAAAQAWAAAAAAEAFgAAAAAAABYAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABYAAAAAAAAWAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAFgAAAAADABYAAAAAAwAWAAAAAAIAFgAAAAADABYAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAMAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABYAAAAAAAAWAAAAAAMAFgAAAAABABYAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABYAAAAAAwAWAAAAAAEAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 0,-1: ind: 0,-1 - tiles: JQAAAAABACUAAAAAAgAlAAAAAAIAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwCBAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAACBAAAAAAAAYAAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAABAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAACBAAAAAAAAKwAAAAAAACsAAAAAAACBAAAAAAAAKwAAAAAAACsAAAAAAwArAAAAAAIAKwAAAAACACsAAAAAAwArAAAAAAEAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAIAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: JQAAAAABACUAAAAAAgAlAAAAAAEAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAAAlAAAAAAIAJQAAAAABAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAwCBAAAAAAAAKwAAAAABACsAAAAAAwCBAAAAAAAAKwAAAAABACsAAAAAAAArAAAAAAEAKwAAAAADACsAAAAAAQArAAAAAAEAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAIEAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,-1: ind: -1,-1 - tiles: gQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIEAAAAAAAAkAAAAAAMAJAAAAAADAIEAAAAAAAAlAAAAAAIAJQAAAAAAACUAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAIAgQAAAAAAAGAAAAAAAgBgAAAAAAMAgQAAAAAAACUAAAAAAAAtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAEYAAAAAAAALQAAAAAAAS4AAAAAAAMlAAAAAAEARAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAEQAAAAAAAAlAAAAAAEAKwAAAAABACsAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAArAAAAAAEAGAAAAAAAACUAAAAAAAAtAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAJQAAAAACAC0AAAAAAAMtAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAARgAAAAAAAAtAAAAAAABLgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAABAGAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAACAIEAAAAAAABgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAABAIEAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAIEAAAAAAABgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIEAAAAAAAAkAAAAAAIAJAAAAAADAIEAAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAgQAAAAAAACUAAAAAAQAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAEYAAAAAAAALQAAAAAAAS4AAAAAAAMlAAAAAAIARAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAACAEQAAAAAAAAlAAAAAAIAKwAAAAAAACsAAAAAAAArAAAAAAIAKwAAAAACACsAAAAAAgArAAAAAAEAGAAAAAAAACUAAAAAAQAtAAAAAAAAJQAAAAADAIEAAAAAAACBAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAJQAAAAADAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAARgAAAAAAAAtAAAAAAABLgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAwAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAEAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAwCBAAAAAAAAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAwBgAAAAAAMAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAAA== version: 7 -1,-2: ind: -1,-2 - tiles: gQAAAAAAAC4AAAAAAAEuAAAAAAADLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAItAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAMlAAAAAAAAJQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy4AAAAAAAIuAAAAAAAALQAAAAAAACsAAAAAAQeBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAJQAAAAAAACUAAAAAAgCBAAAAAAAAJAAAAAAAACQAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAACACUAAAAAAQAlAAAAAAMAgQAAAAAAACQAAAAAAAAkAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADAIEAAAAAAAAtAAAAAAAAKwAAAAABB4EAAAAAAAAgAAAAAAMALgAAAAAAAi0AAAAAAAMuAAAAAAADIAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAIAAAAAABAC0AAAAAAAAEAAAAAAAALQAAAAAAACAAAAAAAAAgAAAAAAEAgQAAAAAAAC0AAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHIAAAAAACACAAAAAAAgAuAAAAAAABLQAAAAAAAy4AAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAgAtAAAAAAAAIAAAAAACABQAAAAAAAAUAAAAAAAAFAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACByAAAAAAAgAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAAALQAAAAAAACAAAAAAAwAUAAAAAAAAFAAAAAAAABQAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAQeBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAEAAgAAAAAAAAIAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHRAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEQAAAAAAAAtAAAAAAAAGAAAAAAAACQAAAAAAwAkAAAAAAIAJAAAAAADAIEAAAAAAAAtAAAAAAAAKwAAAAACBy0AAAAAAAAuAAAAAAADLQAAAAAAAC4AAAAAAAIuAAAAAAACLQAAAAAAAy0AAAAAAAAuAAAAAAACLgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACQAAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAgcuAAAAAAAALgAAAAAAAS0AAAAAAAAuAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAkAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAy0AAAAAAAMtAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAACQAAAAAAgAkAAAAAAMAJAAAAAABAIEAAAAAAAAtAAAAAAAAKwAAAAAABy8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACQAAAAAAACBAAAAAAAAgQAAAAAAACQAAAAAAgAkAAAAAAMAJQAAAAACACUAAAAAAwAlAAAAAAAAJQAAAAADAC4AAAAAAAEtAAAAAAADgQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIEAAAAAAAAkAAAAAAIAJAAAAAAAAC8AAAAAAAAkAAAAAAAAJQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAACUAAAAAAQAlAAAAAAIAJQAAAAACAA== + tiles: GAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAItAAAAAAAAJQAAAAABABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAABHAAAAAAAARwAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy4AAAAAAAIuAAAAAAAALQAAAAAAACsAAAAAAAeBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAARwAAAAAAAEcAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHgQAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADAEcAAAAAAABHAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAgQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAACAIEAAAAAAAAtAAAAAAAAKwAAAAABB4EAAAAAAAAgAAAAAAIALgAAAAAAAi0AAAAAAAMuAAAAAAADIAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAIAAAAAABAC0AAAAAAAAEAAAAAAAALQAAAAAAACAAAAAAAQAgAAAAAAEAgQAAAAAAAC0AAAAAAAAZAAAAAAEAGQAAAAACABkAAAAAAgAZAAAAAAEAgQAAAAAAAC0AAAAAAAArAAAAAAIHIAAAAAADACAAAAAAAQAuAAAAAAABLQAAAAAAAy4AAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAQAtAAAAAAAAHgAAAAAAABkAAAAAAQAZAAAAAAEAGQAAAAACAIEAAAAAAAAtAAAAAAAAKwAAAAABByAAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAMALQAAAAAAAB4AAAAAAAAZAAAAAAIAGQAAAAAAABkAAAAAAwCBAAAAAAAALQAAAAAAACsAAAAAAQeBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAAAAgAAAAAAAAIAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHRAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEQAAAAAAAAtAAAAAAAAGAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACBy0AAAAAAAAuAAAAAAADLQAAAAAAAC4AAAAAAAIuAAAAAAACLQAAAAAAAy0AAAAAAAAuAAAAAAACLgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgcuAAAAAAAALgAAAAAAAS0AAAAAAAAuAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALQAAAAAAABgAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAy0AAAAAAAMtAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADBy8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACQAAAAAAgCBAAAAAAAAgQAAAAAAACQAAAAAAwAkAAAAAAMAJQAAAAACACUAAAAAAAAlAAAAAAIAJQAAAAAAAC4AAAAAAAEtAAAAAAADgQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAIEAAAAAAAAkAAAAAAEAJAAAAAACAC8AAAAAAAAkAAAAAAMAJQAAAAADACUAAAAAAgAlAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAABAA== version: 7 0,-2: ind: 0,-2 - tiles: KwAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAC4AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAgAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAIALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgCBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAAAYAAAAAADABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAACAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgAVAAAAAAAAFQAAAAABABUAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAwAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAFQAAAAACABUAAAAAAAAVAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAYAAAAAABABUAAAAAAAAVAAAAAAMAFQAAAAACAGAAAAAAAAAyAAAAAAAAMgAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAMALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAADAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAJQAAAAABACUAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAACAIEAAAAAAABgAAAAAAEAJQAAAAACAIEAAAAAAABEAAAAAAAARAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAMAYAAAAAADAG8AAAAAAACBAAAAAAAAYAAAAAADAA== + tiles: KwAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAACAC4AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAgAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAG8AAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAMALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAwAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgAVAAAAAAEAFQAAAAAAABUAAAAAAwBgAAAAAAIAYAAAAAADAGAAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAFQAAAAACABUAAAAAAwAVAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAIALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAACBAAAAAAAAYAAAAAACABUAAAAAAgAVAAAAAAMAFQAAAAACAGAAAAAAAAAyAAAAAAAAMgAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAEAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAgCBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAJQAAAAABACUAAAAAAwCBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAYAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAEAJQAAAAACAIEAAAAAAABEAAAAAAAARAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAG8AAAAAAACBAAAAAAAAYAAAAAADAA== version: 7 1,-1: ind: 1,-1 - tiles: YAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAABAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAAMtAAAAAAAAgQAAAAAAACkAAAAAAAApAAAAAAEAKQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAAArAAAAAAADLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAwAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAlAAAAAAIAJQAAAAAAAC4AAAAAAAEtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAKwAAAAAAACsAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAAArAAAAAAAAKwAAAAACACUAAAAAAQAlAAAAAAIAJQAAAAADACUAAAAAAAArAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAAKQAAAAADAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAgQAAAAAAACkAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAAMtAAAAAAAAgQAAAAAAACkAAAAAAQApAAAAAAMAKQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAAArAAAAAAADLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAQAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAlAAAAAAAAJQAAAAABAC4AAAAAAAEtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAKwAAAAAAACsAAAAAAQArAAAAAAAAKwAAAAABACsAAAAAAgArAAAAAAMAKwAAAAACACUAAAAAAQAlAAAAAAEAJQAAAAADACUAAAAAAQArAAAAAAEAJQAAAAADAC0AAAAAAACBAAAAAAAAKQAAAAABAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAgQAAAAAAACkAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 1,-2: ind: 1,-2 - tiles: YAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAAAgQAAAAAAAC0AAAAAAAAlAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAAAAIEAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAACBAAAAAAAAKQAAAAADACkAAAAAAwApAAAAAAAAJQAAAAABACUAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAACkAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAApAAAAAAEAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAMAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAKQAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAApAAAAAAEAKQAAAAABACUAAAAAAwAlAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADABYAAAAAAwCBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAAAtAAAAAAAALgAAAAAAAi4AAAAAAAMuAAAAAAABLQAAAAAAAykAAAAAAgApAAAAAAIALQAAAAAAAy0AAAAAAANgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAAAYAAAAAAAAC4AAAAAAAEuAAAAAAAAJQAAAAACACsAAAAAAgArAAAAAAIAKwAAAAACACsAAAAAAwArAAAAAAMAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAQAtAAAAAAADLgAAAAAAAysAAAAAAwMuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAABgAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAEDLQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAAAy0AAAAAAACBAAAAAAAAKQAAAAAAACkAAAAAAQApAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwMtAAAAAAAAGAAAAAAAACkAAAAAAAApAAAAAAAAKQAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIDLQAAAAAAABgAAAAAAAApAAAAAAIAKQAAAAAAACkAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADAy0AAAAAAACBAAAAAAAAKQAAAAAAACkAAAAAAAApAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAMAKQAAAAACAA== + tiles: YAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAEAgQAAAAAAAC0AAAAAAAAlAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAACBAAAAAAAAKQAAAAADACkAAAAAAwApAAAAAAAAJQAAAAADACUAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAgBgAAAAAAMAYAAAAAAAAGAAAAAAAwCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAACkAAAAAAQAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAApAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAKQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAApAAAAAAEAKQAAAAAAACUAAAAAAQAlAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACABYAAAAAAgCBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAAAeAAAAAAAALgAAAAAAAi4AAAAAAAMuAAAAAAABHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAC0AAAAAAANgAAAAAAEAYAAAAAACAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAHgAAAAAAAC4AAAAAAAEuAAAAAAAAJQAAAAACACsAAAAAAQArAAAAAAIAKwAAAAAAACsAAAAAAwArAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAIAYAAAAAAAAB4AAAAAAAAtAAAAAAADLgAAAAAAAysAAAAAAwMuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAABgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAADLQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACAy0AAAAAAACBAAAAAAAAKQAAAAAAACkAAAAAAQApAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAQCBAAAAAAAALQAAAAAAACsAAAAAAgMtAAAAAAAAGAAAAAAAACkAAAAAAwApAAAAAAIAKQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAIAgQAAAAAAAC0AAAAAAAArAAAAAAIDLQAAAAAAABgAAAAAAAApAAAAAAEAKQAAAAAAACkAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADAy0AAAAAAACBAAAAAAAAKQAAAAACACkAAAAAAgApAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAEAKQAAAAACAA== version: 7 0,-3: ind: 0,-3 - tiles: IAAAAAACAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAIAAAAAAAACUAAAAAAQAlAAAAAAIAJQAAAAACACUAAAAAAAAlAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAALgAAAAAAAi0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAYAAAAAAAAJAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAAlAAAAAAEALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAuAAAAAAABLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAKwAAAAACBy4AAAAAAAEYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADKwAAAAABACsAAAAAAAArAAAAAAAAKwAAAAABACUAAAAAAQArAAAAAAIAGAAAAAAAACsAAAAAAgArAAAAAAEAKwAAAAAAACsAAAAAAgArAAAAAAAAKwAAAAABACsAAAAAAgArAAAAAAMAKwAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAA== + tiles: IAAAAAACAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAIAAAAAAAACUAAAAAAAAlAAAAAAIAJQAAAAACACUAAAAAAwAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAALgAAAAAAAi0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAAlAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAuAAAAAAABLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAKwAAAAADBy4AAAAAAAEYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADKwAAAAAAACsAAAAAAAArAAAAAAAAKwAAAAAAACUAAAAAAwArAAAAAAMAGAAAAAAAACsAAAAAAgArAAAAAAEAKwAAAAAAACsAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAgArAAAAAAEAKwAAAAACAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAACAA== version: 7 1,-3: ind: 1,-3 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADFwAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAIAAAAAAAACsAAAAAAgAgAAAAAAMAgQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAADACUAAAAAAgAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAABgAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAQAlAAAAAAIAJQAAAAADAC4AAAAAAAItAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAAAYAAAAAAAAJQAAAAACACUAAAAAAQAlAAAAAAEAJQAAAAACACUAAAAAAQAtAAAAAAAABAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAACUAAAAAAQAlAAAAAAIALgAAAAAAAS0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAwAlAAAAAAMAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAACACUAAAAAAwAlAAAAAAIALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAXAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAQAAAAAAAAEAAAAAADABAAAAAAAgAQAAAAAAIAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADBy0AAAAAAACBAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAIAEAAAAAAAACUAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAALgAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAACACsAAAAAAwArAAAAAAEAKwAAAAAAACsAAAAAAgArAAAAAAEAGAAAAAAAACsAAAAAAAAlAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAuAAAAAAADKwAAAAACBy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAYAAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADFwAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAIAAAAAABACsAAAAAAAAgAAAAAAIAgQAAAAAAAG8AAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAQAlAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAABgAAAAAAABvAAAAAAAAJQAAAAACACUAAAAAAAAlAAAAAAEAJQAAAAADAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAYAAAAAAAAbwAAAAAAACUAAAAAAgAlAAAAAAMAJQAAAAAAACUAAAAAAAAJAAAAAAAABAAAAAAAAAkAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAG8AAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAQAlAAAAAAMACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAABvAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAbwAAAAAAACUAAAAAAAAlAAAAAAIAJQAAAAACACUAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAG8AAAAAAAAlAAAAAAMAJQAAAAABACUAAAAAAQAlAAAAAAEALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAXAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAQAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAIAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAEAAAAAABABAAAAAAAAAQAAAAAAMAEAAAAAABAG8AAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAALgAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAACACsAAAAAAQArAAAAAAEAKwAAAAADACsAAAAAAAArAAAAAAMAGAAAAAAAACsAAAAAAQAlAAAAAAIALQAAAAAAAC0AAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAuAAAAAAADKwAAAAACBy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAYAAAAAADAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 -1,-3: ind: -1,-3 - tiles: gQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAABvAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAMALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAJAAAAAABACQAAAAAAwAkAAAAAAIAJAAAAAABACQAAAAAAQCBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAACQAAAAAAAAkAAAAAAEAJAAAAAAAACQAAAAAAwAkAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAABy4AAAAAAAOBAAAAAAAAFwAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAABcAAAAAAAAYAAAAAAAALQAAAAAAACUAAAAAAgArAAAAAAMAJQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAtAAAAAAAALQAAAAAAACAAAAAAAACBAAAAAAAAGAAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAC4AAAAAAAIuAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAEtAAAAAAAHLgAAAAAAAxgAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLQAAAAAABy4AAAAAAAWBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAC4AAAAAAAEtAAAAAAADgQAAAAAAAC0AAAAAAAAuAAAAAAABLQAAAAAAA4EAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAABAIEAAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAALQAAAAAAACsAAAAAAAeBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABLgAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAC0AAAAAAAArAAAAAAAHgQAAAAAAAC0AAAAAAAAuAAAAAAABLgAAAAAAAy4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAtAAAAAAAAKwAAAAAABw== + tiles: gQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAAAeAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAMAgQAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAwCBAAAAAAAAIAAAAAADAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALwAAAAAAAIEAAAAAAAAgAAAAAAMAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAIAAAAAADAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABcAAAAAAAAYAAAAAAAALQAAAAAAACUAAAAAAwArAAAAAAEAJQAAAAADAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAACAAAAAAAgCBAAAAAAAAGAAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAALQAAAAAABxgAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAuAAAAAAABbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAC4AAAAAAAEtAAAAAAADGAAAAAAAAIEAAAAAAAAYAAAAAAAALQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAAAYAAAAAAAAJQAAAAACABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAALQAAAAAAACsAAAAAAAcYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAC0AAAAAAAArAAAAAAMHGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAAAtAAAAAAAAKwAAAAABBw== version: 7 -2,-2: ind: -2,-2 - tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAIAAAAAACAAEAAAAAAgAYAAAAAAAAAAAAAAAAAIEAAAAAAAABAAAAAAEAAQAAAAABAAEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAACAAAAAAAAABAAAAAAIAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAYAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAAAgAAAAAAEAAQAAAAABAAEAAAAAAgAmAAAAAAIAJgAAAAABABgAAAAAAAAGAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAABgAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAvAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAACAAEAAAAAAwABAAAAAAEAAQAAAAABAAYAAAAAAwABAAAAAAMAAQAAAAADAAEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAACAAAAAAAQAgAAAAAAIALgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAMgAAAAAAIALgAAAAAAA4EAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAIAAAAAACAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAIAAAAAADAC4AAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAADACAAAAAAAgAgAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAwAuAAAAAAADGAAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAARAAAAAAAAEQAAAAAAAAYAAAAAAAARAAAAAAAAC0AAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy4AAAAAAAMuAAAAAAAAGAAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAABgAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAALQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAAEQAAAAAAACBAAAAAAAAIAAAAAACAC0AAAAAAAArAAAAAAMHLQAAAAAAAC0AAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAABEAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAtAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAEAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAIEAAAAAAAABAAAAAAAAAQAAAAADAAEAAAAAAQAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAB4AAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAeAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAvAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAADAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAACAAAAAAAwAgAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAMgAAAAAAAALgAAAAAAA4EAAAAAAAAtAAAAAAAAKwAAAAADBy0AAAAAAACBAAAAAAAAIAAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAIAAAAAADAC4AAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAABACAAAAAAAwAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAABACAAAAAAAwAuAAAAAAADGAAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAARAAAAAAAAEQAAAAAAAAYAAAAAAAARAAAAAAAAC0AAAAAAAAYAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy4AAAAAAAMuAAAAAAAAGAAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAABgAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAxgAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAALQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAAEQAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAC0AAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAABEAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACBy0AAAAAAAAtAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAEAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAA== version: 7 -2,-1: ind: -2,-1 - tiles: IAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAABEAAAAAAAARAAAAAAAACAAAAAAAgAgAAAAAAIALQAAAAAAACsAAAAAAgctAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIALgAAAAAAAi4AAAAAAAArAAAAAAAHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADGAAAAAAAABgAAAAAAAAtAAAAAAADLQAAAAAAAy4AAAAAAAAlAAAAAAMAJQAAAAADACsAAAAAAgArAAAAAAIAKwAAAAAAACsAAAAAAwArAAAAAAEAKwAAAAACACsAAAAAAAArAAAAAAEAKwAAAAADABgAAAAAAAAYAAAAAAAAKwAAAAACACsAAAAAAQArAAAAAAMAJQAAAAACAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAAAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAgAAAAAAMAgQAAAAAAACAAAAAAAwCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: HgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAABEAAAAAAAARAAAAAAAAB4AAAAAAAAeAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAALgAAAAAAAi4AAAAAAAArAAAAAAIHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAAlAAAAAAAAJQAAAAACACsAAAAAAQArAAAAAAAAKwAAAAAAACsAAAAAAgArAAAAAAIAKwAAAAACACsAAAAAAwArAAAAAAMAKwAAAAAAACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAwArAAAAAAMAJQAAAAABAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -2,-3: ind: -2,-3 - tiles: gQAAAAAAAIEAAAAAAAAlAAAAAAMAAQAAAAABACUAAAAAAwAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAMAIAAAAAACAIEAAAAAAACBAAAAAAAALwAAAAAAAAAAAAAAAACBAAAAAAAAJQAAAAADAAEAAAAAAgAlAAAAAAEAJQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAAAIAAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAACUAAAAAAwABAAAAAAAAJQAAAAACACUAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAlAAAAAAMAAQAAAAAAACUAAAAAAAAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAAAEAAAAAAwAlAAAAAAIAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAAAACUAAAAAAwAlAAAAAAIAJQAAAAACACUAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAAAGAAAAAAAACUAAAAAAwAlAAAAAAIAJQAAAAACACUAAAAAAAAlAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAwAYAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAMAJQAAAAABAIEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAEAGAAAAAAAABgAAAAAAAAlAAAAAAAAJQAAAAADACUAAAAAAQCBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAAAgAAAAAAAAIAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAACUAAAAAAgAlAAAAAAAAGAAAAAAAACAAAAAAAwABAAAAAAAAAQAAAAADAAEAAAAAAgABAAAAAAEAAQAAAAABAAYAAAAAAQABAAAAAAAAAQAAAAACAAEAAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAlAAAAAAMAJQAAAAAAABgAAAAAAAAgAAAAAAIAAQAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAABAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAADACUAAAAAAAAYAAAAAAAAIAAAAAADAAEAAAAAAwABAAAAAAMAJgAAAAAAACYAAAAAAgAYAAAAAAAABgAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAACACUAAAAAAQAlAAAAAAMAgQAAAAAAACAAAAAAAgABAAAAAAMAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAYAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAADACUAAAAAAwAlAAAAAAAAJQAAAAABAIEAAAAAAAAgAAAAAAIAAQAAAAADABgAAAAAAAAAAAAAAAAAgQAAAAAAAAEAAAAAAQABAAAAAAMAAQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAAIAAAAAADAAEAAAAAAAAYAAAAAAAAAAAAAAAAAIEAAAAAAAArAAAAAAMAKwAAAAABACsAAAAAAgAYAAAAAAAAGAAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAACKwAAAAABARgAAAAAAAAtAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAALwAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAisAAAAAAQEYAAAAAAAALQAAAAAAAoEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAIrAAAAAAEBGAAAAAAAAC0AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAACKwAAAAAAARgAAAAAAAAtAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAACAIEAAAAAAAAYAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAisAAAAAAwEYAAAAAAAALQAAAAAAAoEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC0AAAAAAAIrAAAAAAEBGAAAAAAAAC0AAAAAAAIYAAAAAAAAGAAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAtAAAAAAACKwAAAAAAAS4AAAAAAAIuAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAeAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAHgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAB4AAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAgQAAAAAAAAEAAAAAAAABAAAAAAMAAQAAAAADABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAS4AAAAAAAOBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAIEAAAAAAAArAAAAAAIAKwAAAAADACsAAAAAAgAYAAAAAAAAGAAAAAAAAA== version: 7 0,-4: ind: 0,-4 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAArAAAAAAIHKwAAAAABB4EAAAAAAAAYAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAABBysAAAAAAQeBAAAAAAAAGAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAADACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAABkAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAGAAAAAAAQAwAAAAAAMAGgAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAADEAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAxAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAMQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAgAgAAAAAAIAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAADEAAAAAAwCBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADGAAAAAAAAC4AAAAAAAAtAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAyAAAAAAAgAgAAAAAAAAIAAAAAACAC0AAAAAAAAlAAAAAAAAKwAAAAABABgAAAAAAAArAAAAAAAAKwAAAAAAACsAAAAAAgArAAAAAAIAKwAAAAADACsAAAAAAAArAAAAAAIAKwAAAAADACsAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAQAtAAAAAAAALQAAAAAAAC4AAAAAAAIYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAABACUAAAAAAQAlAAAAAAIAJQAAAAAAAIEAAAAAAAAgAAAAAAAALgAAAAAAAi0AAAAAAAMDAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAgAAAAAAIAJQAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAADACUAAAAAAACBAAAAAAAAIAAAAAADAC0AAAAAAAAlAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACUAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAQAlAAAAAAAAgQAAAAAAACAAAAAAAAAuAAAAAAABLQAAAAAAAw== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAArAAAAAAMHKwAAAAACB4EAAAAAAAAYAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKwAAAAACBysAAAAAAgeBAAAAAAAAGAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAABkAAAAAAwCBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAABvAAAAAAAAbwAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAABACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAABvAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAEAIAAAAAADACAAAAAAAwAgAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADGAAAAAAAAC4AAAAAAAAtAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAyAAAAAAAAAgAAAAAAEAIAAAAAACAC0AAAAAAAAlAAAAAAEAKwAAAAAAABgAAAAAAAArAAAAAAEAKwAAAAACACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAwAgAAAAAAIAIAAAAAADACAAAAAAAQAtAAAAAAAALQAAAAAAAC4AAAAAAAIYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAAMAAAAAAAADAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAwAlAAAAAAIAJQAAAAAAAIEAAAAAAAAgAAAAAAEALgAAAAAAAi0AAAAAAAMDAAAAAAAAAwAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAgAAAAAAIAJQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAABACUAAAAAAwCBAAAAAAAAIAAAAAABAC0AAAAAAAAlAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACUAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAAAlAAAAAAEAgQAAAAAAACAAAAAAAwAuAAAAAAABLQAAAAAAAw== version: 7 1,-4: ind: 1,-4 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADBy0AAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACACsAAAAAAQAgAAAAAAIAgQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAADACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAlAAAAAAEAGAAAAAAAABgAAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLQAAAAAAAy4AAAAAAAMYAAAAAAAAGAAAAAAAAC4AAAAAAAEuAAAAAAADgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLgAAAAAAAGAAAAAAAQAuAAAAAAABLgAAAAAAAxgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABABgAAAAAAAAtAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAACLgAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAAC4AAAAAAAEtAAAAAAADGAAAAAAAACsAAAAAAgAYAAAAAAAAGAAAAAAAABgAAAAAAAAlAAAAAAAALQAAAAAAAGAAAAAAAAAYAAAAAAAAEwAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACUAAAAAAgAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAEAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAi4AAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAS4AAAAAAANgAAAAAAAALgAAAAAAAi4AAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAADgQAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAAgQAAAAAAACAAAAAAAwAlAAAAAAIALQAAAAAAAIEAAAAAAAAuAAAAAAADLgAAAAAAAS4AAAAAAAMYAAAAAAAAGAAAAAAAACUAAAAAAgAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAALgAAAAAAAoEAAAAAAAAgAAAAAAIALQAAAAAAAy4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAMYAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAIAAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAADAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACsAAAAAAAAgAAAAAAEAgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAOBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAIuAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACLQAAAAAAAy4AAAAAAAMYAAAAAAAAGAAAAAAAAC4AAAAAAAEuAAAAAAADgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAACHgAAAAAAAB4AAAAAAAAeAAAAAAAALgAAAAAAAxgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADABgAAAAAAAAtAAAAAAADLgAAAAAAABgAAAAAAAAuAAAAAAACHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAuAAAAAAADGAAAAAAAAC4AAAAAAAEtAAAAAAADGAAAAAAAACsAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAMAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC4AAAAAAAEeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC4AAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAR4AAAAAAAAeAAAAAAAAHgAAAAAAAC4AAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAADgQAAAAAAAC4AAAAAAAEuAAAAAAADGAAAAAAAABgAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAAgQAAAAAAACAAAAAAAAAlAAAAAAAALQAAAAAAAIEAAAAAAAAuAAAAAAADLgAAAAAAAS4AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAIuAAAAAAAALgAAAAAAAoEAAAAAAAAgAAAAAAEALQAAAAAAAy4AAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAAMYAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAAALgAAAAAAAi4AAAAAAACBAAAAAAAAIAAAAAABAA== version: 7 -1,-4: ind: -1,-4 - tiles: gQAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAABAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAQAgAAAAAAMAIAAAAAACACAAAAAAAwAgAAAAAAIAIAAAAAADACAAAAAAAwAgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAcAAAAAAAAgAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAIAAAAAABAC0AAAAAAAMuAAAAAAADLwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAHAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAwAlAAAAAAEALgAAAAAAAS4AAAAAAAMvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAABwAAAAAAACAAAAAAAAAgAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAJQAAAAAAACUAAAAAAQAuAAAAAAABLgAAAAAAA4EAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAAcAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAgAgAAAAAAIAIAAAAAAAAC4AAAAAAAMlAAAAAAEAJQAAAAABACAAAAAAAQBvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAwAuAAAAAAABLgAAAAAAAyUAAAAAAQAgAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAAIAAAAAAAAIEAAAAAAAAgAAAAAAMAgQAAAAAAAC0AAAAAAAArAAAAAAEHIAAAAAACAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAACBy0AAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAAHAAAAAAAABwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAG8AAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAACAAAAAAAQBvAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAABAA== + tiles: gQAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAwAgAAAAAAMAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAgAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAAAACAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAABAIEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAwAgAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAcAAAAAAAAgAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAIAAAAAACAC0AAAAAAAMuAAAAAAADLwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAHAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAAAlAAAAAAAALgAAAAAAAS4AAAAAAAMvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAABwAAAAAAACAAAAAAAAAgAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAJQAAAAAAACUAAAAAAQAuAAAAAAABLgAAAAAAA4EAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAAcAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAAAIAAAAAACAC4AAAAAAAMlAAAAAAMAJQAAAAABACAAAAAAAQBvAAAAAAAAHgAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAQAuAAAAAAABLgAAAAAAAyUAAAAAAwAgAAAAAAEAbwAAAAAAAB4AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAACAIEAAAAAAAAgAAAAAAEAgQAAAAAAAC0AAAAAAAArAAAAAAEHIAAAAAACAG8AAAAAAAAeAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAEAgQAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAAAtAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAHgAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAAHAAAAAAAABwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAB4AAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAAAgAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAACAAAAAAAAAeAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAIAgQAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAACAA== version: 7 0,-5: ind: 0,-5 - tiles: LwAAAAAAAIEAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy8AAAAAAACBAAAAAAAAGwAAAAAAACkAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAQArAAAAAAEAKwAAAAADACsAAAAAAQArAAAAAAMAJQAAAAADACsAAAAAAgAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAgCBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAAcuAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAQAlAAAAAAIAJQAAAAACAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAEAgQAAAAAAACkAAAAAAwCBAAAAAAAAgQAAAAAAACUAAAAAAQAlAAAAAAAAJQAAAAACAIEAAAAAAAAuAAAAAAAALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAArAAAAAAEHLQAAAAAAABsAAAAAAACBAAAAAAAAKQAAAAACACkAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAgArAAAAAAMAKwAAAAADACsAAAAAAAArAAAAAAMAJQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAC0AAAAAAAMuAAAAAAADLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAAAgAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAABAC0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAKwAAAAAABy0AAAAAAACBAAAAAAAAJAAAAAACACQAAAAAAAAgAAAAAAMAJAAAAAAAACAAAAAAAAAtAAAAAAAAJQAAAAADACsAAAAAAQArAAAAAAMAKwAAAAADACsAAAAAAAArAAAAAAIAKwAAAAAAACUAAAAAAwAtAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAMALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAACAAAAAAAgAgAAAAAAIAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: LwAAAAAAAIEAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy8AAAAAAACBAAAAAAAAGwAAAAAAACkAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAAArAAAAAAMAKwAAAAADACsAAAAAAwArAAAAAAIAJQAAAAABACsAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAQCBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAAcuAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAIAJQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAMAgQAAAAAAACkAAAAAAQCBAAAAAAAAgQAAAAAAACUAAAAAAwAlAAAAAAMAJQAAAAACAIEAAAAAAAAuAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAArAAAAAAEHLQAAAAAAABsAAAAAAACBAAAAAAAAKQAAAAAAACkAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACUAAAAAAwArAAAAAAMAKwAAAAADACsAAAAAAQArAAAAAAMAJQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAApAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAADBy0AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAC0AAAAAAAMuAAAAAAADLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQAgAAAAAAIALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAIAAAAAACAC0AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAKwAAAAABBy0AAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAACAAAAAAAQAtAAAAAAAAJQAAAAACACsAAAAAAgArAAAAAAIAKwAAAAACACsAAAAAAgArAAAAAAAAKwAAAAACACUAAAAAAwAtAAAAAAAAIAAAAAADAB4AAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAAAgAAAAAAEALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 -2,-4: ind: -2,-4 - tiles: YAAAAAACAGAAAAAAAgCBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAACAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAMAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAABrAAAAAAMAawAAAAAAAGsAAAAAAQBrAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAAAAGAAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAAA8AAAAAAwCBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAMAGAAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAACUAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAIAAAAAABABgAAAAAAAAYAAAAAAAAJQAAAAADACUAAAAAAAAlAAAAAAEAJQAAAAADACsAAAAAAwArAAAAAAIAKwAAAAADACsAAAAAAgAlAAAAAAIAJQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAlAAAAAAMAJQAAAAABAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADJQAAAAABACUAAAAAAAArAAAAAAEAKwAAAAADACsAAAAAAwAlAAAAAAEAgQAAAAAAABgAAAAAAAAYAAAAAAAAJQAAAAAAACUAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAACUAAAAAAwAlAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAy4AAAAAAAEYAAAAAAAAGAAAAAAAACUAAAAAAgAlAAAAAAIAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAJQAAAAAAACUAAAAAAQBgAAAAAAIAgQAAAAAAAIEAAAAAAAAuAAAAAAADGAAAAAAAACUAAAAAAAAlAAAAAAIAJQAAAAABACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACACUAAAAAAQAlAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAGAAAAAAAwAlAAAAAAAAJQAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAJQAAAAABACUAAAAAAwAlAAAAAAMAJQAAAAADACUAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAJQAAAAACACUAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAJQAAAAADACUAAAAAAQAlAAAAAAMAJQAAAAABACUAAAAAAgAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: YAAAAAADAGAAAAAAAwCBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAMAgQAAAAAAACAAAAAAAgCBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAACAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAEAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAADAIEAAAAAAABrAAAAAAEAawAAAAACAGsAAAAAAwBrAAAAAAEAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAgAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAA8AAAAAAQCBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAIAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAArAAAAAAAAKwAAAAACACsAAAAAAgAlAAAAAAMAJQAAAAACAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAADJQAAAAABACUAAAAAAQArAAAAAAEAKwAAAAADACsAAAAAAgAlAAAAAAIABAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAy4AAAAAAAEYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACUAAAAAAgAlAAAAAAIAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAGAAAAAAAACAAAAAAAQAlAAAAAAAAJQAAAAABACAAAAAAAQAYAAAAAAAAGAAAAAAAABgAAAAAAAAeAAAAAAAAHgAAAAAAAC0AAAAAAAIrAAAAAAMBLgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAIAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAB4AAAAAAAAtAAAAAAACKwAAAAACARgAAAAAAAAtAAAAAAACgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAA== version: 7 -3,-4: ind: -3,-4 - tiles: gQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAtAAAAAAAAJQAAAAACAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAlAAAAAAEAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAAAABgAAAAAAAAuAAAAAAADgQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADIAAAAAADAIEAAAAAAAAgAAAAAAMAIAAAAAACAIEAAAAAAACBAAAAAAAAJQAAAAABABgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAgCBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAQAgAAAAAAIAgQAAAAAAAIEAAAAAAAAlAAAAAAMAGAAAAAAAABgAAAAAAAAtAAAAAAADgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAACACAAAAAAAQAgAAAAAAMAIAAAAAADAIEAAAAAAAAgAAAAAAEAIAAAAAABAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAQAYAAAAAAAALQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACAC0AAAAAAAMtAAAAAAAALQAAAAAAAC0AAAAAAAMuAAAAAAADLgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAC0AAAAAAAAuAAAAAAADLQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMYAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAADLQAAAAAAAC0AAAAAAAAlAAAAAAIAJQAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAIHLQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAtAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAuAAAAAAADgQAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADIAAAAAADAIEAAAAAAAAgAAAAAAMAIAAAAAADAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAwCBAAAAAAAAIAAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAEAIAAAAAAAACAAAAAAAgAgAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAADgQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAEAIAAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAABAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAC0AAAAAAAMtAAAAAAAALQAAAAAAAC0AAAAAAAMuAAAAAAADLgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAC0AAAAAAAAuAAAAAAADLQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAxgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAB4AAAAAAAAeAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMYAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAADLQAAAAAAAC0AAAAAAAAeAAAAAAAAgQAAAAAAAA== version: 7 -3,-3: ind: -3,-3 - tiles: LQAAAAAAAC4AAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAJAAAAAABACQAAAAAAgAkAAAAAAMAIAAAAAADAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAAAkAAAAAAMAJAAAAAACACQAAAAAAAAgAAAAAAEAgQAAAAAAAC0AAAAAAAAuAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAA4EAAAAAAAAtAAAAAAAALQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy4AAAAAAAAtAAAAAAAALQAAAAAAACUAAAAAAQAlAAAAAAEALQAAAAAAAy0AAAAAAAAtAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAMtAAAAAAAALQAAAAAAAC0AAAAAAAMuAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAAtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACQAAAAAAgAkAAAAAAIAKQAAAAABACkAAAAAAgAkAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEALQAAAAAAA4EAAAAAAAAkAAAAAAMAJAAAAAADAIEAAAAAAACBAAAAAAAAJAAAAAADACQAAAAAAwAkAAAAAAAAJAAAAAABAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAwAlAAAAAAEAGAAAAAAAAC4AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAgAlAAAAAAMAGAAAAAAAABgAAAAAAAAtAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAADACUAAAAAAgAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAMAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAgQAAAAAAAA== + tiles: LQAAAAAAAC4AAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAAuAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAA4EAAAAAAAAtAAAAAAAALQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy4AAAAAAAAtAAAAAAAALQAAAAAAAB4AAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAAtAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAeAAAAAAAAHgAAAAAAAC0AAAAAAAMtAAAAAAAALQAAAAAAAC0AAAAAAAMuAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAAIEAAAAAAAAtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACQAAAAAAwAkAAAAAAEAKQAAAAACACkAAAAAAwAkAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAALQAAAAAAA4EAAAAAAAAkAAAAAAMAJAAAAAAAAIEAAAAAAACBAAAAAAAAJAAAAAACACQAAAAAAwAkAAAAAAAAJAAAAAADAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAKBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAtAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAA== version: 7 -3,-2: ind: -3,-2 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACgAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAAALgAAAAAAAS0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAACABYAAAAAAwCBAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAADgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAACgAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAA4EAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIALgAAAAAAAS0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAABABYAAAAAAwCBAAAAAAAALgAAAAAAAi0AAAAAAAMuAAAAAAADgQAAAAAAAA== version: 7 -3,-1: ind: -3,-1 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABYAAAAAAQAWAAAAAAAAFgAAAAADABYAAAAAAQCBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAAoEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAWAAAAAAAAFgAAAAABABYAAAAAAQAWAAAAAAIAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAgAAAAAAMALQAAAAAAAC0AAAAAAAAvAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAADAIEAAAAAAAAuAAAAAAABLQAAAAAAAy4AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAC4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC8AAAAAAAAtAAAAAAAAJQAAAAAAACsAAAAAAgArAAAAAAAAKwAAAAADACsAAAAAAQArAAAAAAIAKwAAAAAAACsAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAACAAAAAAAgCBAAAAAAAAIAAAAAADAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABYAAAAAAwAWAAAAAAEAFgAAAAABABYAAAAAAwCBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAAoEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAWAAAAAAIAFgAAAAACABYAAAAAAQAWAAAAAAIAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAAAgAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC8AAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -4,-1: ind: -4,-1 @@ -196,7 +197,7 @@ entities: version: 7 -4,-2: ind: -4,-2 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAsAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAArAAAAAAIAKwAAAAADACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAALAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAAKwAAAAADACsAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAACwAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAACsAAAAAAQArAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAADMAAAAAAAAzAAAAAAwAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAMwAAAAAJAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAsAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAArAAAAAAIAKwAAAAABACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAALAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAAKwAAAAADACsAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAACwAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAACsAAAAAAgArAAAAAAIAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAADMAAAAADAAzAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAMwAAAAAHAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 -5,-2: ind: -5,-2 @@ -204,7 +205,7 @@ entities: version: 7 -4,-4: ind: -4,-4 - tiles: DAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAALAAAAAAAAgQAAAAAAAA0AAAAAAAANAAAAAAAAKwAAAAADACsAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACwAAAAAAAIEAAAAAAAANAAAAAAAADQAAAAAAACsAAAAAAAArAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAsAAAAAAACBAAAAAAAADQAAAAAAAA0AAAAAAAArAAAAAAIAKwAAAAACAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAxcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAuAAAAAAABFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAAuAAAAAAABLQAAAAAAAxcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAAy4AAAAAAAIuAAAAAAAALgAAAAAAAi0AAAAAAAMXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAy4AAAAAAAAuAAAAAAACFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALgAAAAAAAYEAAAAAAACBAAAAAAAALgAAAAAAAQ== + tiles: DAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAALAAAAAAAAgQAAAAAAAA0AAAAAAAANAAAAAAAAKwAAAAABACsAAAAAAQCBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACwAAAAAAAIEAAAAAAAANAAAAAAAADQAAAAAAACsAAAAAAAArAAAAAAEAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAsAAAAAAACBAAAAAAAADQAAAAAAAA0AAAAAAAArAAAAAAMAKwAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAxcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAuAAAAAAABFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAAuAAAAAAABLQAAAAAAAxcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAAy4AAAAAAAIuAAAAAAAALgAAAAAAAi0AAAAAAAMXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAALgAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAy4AAAAAAAAuAAAAAAACFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALgAAAAAAAYEAAAAAAACBAAAAAAAALgAAAAAAAQ== version: 7 -4,-3: ind: -4,-3 @@ -212,7 +213,7 @@ entities: version: 7 -3,-5: ind: -3,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAAy0AAAAAAAAuAAAAAAABLgAAAAAAAw8AAAAAAQAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAAAJQAAAAAAAC0AAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAALQAAAAAAAy0AAAAAAAAuAAAAAAABLgAAAAAAAw8AAAAAAwAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAAAJQAAAAABAC0AAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAACsAAAAAAQctAAAAAAAAgQAAAAAAAA== version: 7 -4,-5: ind: -4,-5 @@ -232,11 +233,11 @@ entities: version: 7 -2,-5: ind: -2,-5 - tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAawAAAAAAAGsAAAAAAwBrAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAAAgQAAAAAAAAkAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAABAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAIEAAAAAAAAJAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAAAAIEAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAADAGAAAAAAAwCBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAIAgQAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAADAA== + tiles: gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAawAAAAAAAGsAAAAAAABrAAAAAAMAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAACBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAgQAAAAAAAAkAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAAAJAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAAAAIEAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAwCBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAAAYAAAAAACAA== version: 7 -1,-5: ind: -1,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAAgAAAAAAAALQAAAAAAAC8AAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAAgAAAAAAEALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAgQAAAAAAAC8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAAALwAAAAAAAIEAAAAAAAAvAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAbAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABsAAAAAAACBAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAABsAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAAAgAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAQAgAAAAAAMAIAAAAAADAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAbAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAQCBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAwAgAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAgAgAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAEAIAAAAAABACAAAAAAAwAgAAAAAAIAIAAAAAACACAAAAAAAgAgAAAAAAIAIAAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAAgAAAAAAAALQAAAAAAAC8AAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAAgAAAAAAEALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAAAvAAAAAAAAgQAAAAAAAC8AAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAAALwAAAAAAAIEAAAAAAAAvAAAAAAAALgAAAAAAAC0AAAAAAAAuAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAABsAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAbAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAABsAAAAAAACBAAAAAAAAGwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAi0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAABsAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAEAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAAAJAAAAAAAACQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAIAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAMAIAAAAAAAACAAAAAAAwAgAAAAAAEAIAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAACAIEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAbAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAAAIAAAAAAAACAAAAAAAwCBAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAAGwAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAQAgAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAMAgQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAABACAAAAAAAQAgAAAAAAIAIAAAAAAAAA== version: 7 -1,-6: ind: -1,-6 @@ -244,31 +245,31 @@ entities: version: 7 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABAAAAAAAQAQAAAAAAAAEAAAAAADAIEAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAQAAAAAAIAEAAAAAAAABAAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAEAAAAAACABAAAAAAAwAQAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAABAAAAAAAgAQAAAAAAEAEAAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAQAAAAAAMAEAAAAAADABAAAAAAAgCBAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAABAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAIAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARAAAAAAAAIEAAAAAAABEAAAAAAAAgQAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEQAAAAAAACBAAAAAAAARAAAAAAAAIEAAAAAAABEAAAAAAAAgQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABAAAAAAAgAQAAAAAAIAEAAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAQCBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAEAAAAAADABAAAAAAAQAQAAAAAAMAgQAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAABAAAAAAAgAQAAAAAAEAEAAAAAABAIEAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAAAQAAAAAAEAEAAAAAAAABAAAAAAAQCBAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARAAAAAAAAIEAAAAAAABEAAAAAAAAgQAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAEQAAAAAAACBAAAAAAAARAAAAAAAAIEAAAAAAABEAAAAAAAAgQAAAAAAAA== version: 7 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAACAA== version: 7 1,-6: ind: 1,-6 - tiles: YAAAAAADAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAAAaAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAIEAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABABoAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAEAYAAAAAABAIEAAAAAAABgAAAAAAEAYAAAAAAAAGsAAAAAAgBgAAAAAAIAYAAAAAACAGsAAAAAAgBgAAAAAAEAYAAAAAACAGAAAAAAAABrAAAAAAAAYAAAAAABAGsAAAAAAwBgAAAAAAEAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAABAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAIAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAABAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: YAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAQAaAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAIAYAAAAAACABoAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAEAYAAAAAACAIEAAAAAAABgAAAAAAIAYAAAAAABAGsAAAAAAwBgAAAAAAMAYAAAAAADAGsAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwBrAAAAAAMAYAAAAAAAAGsAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAwCBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAABAIEAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAwBgAAAAAAMAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAADAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAYAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAQCBAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAACBAAAAAAAAGgAAAAAAAGAAAAAAAABgAAAAAAEAgQAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAIAgQAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAIAgQAAAAAAABoAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAgAaAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAIEAAAAAAAAaAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAgCBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAAAYAAAAAACABoAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAADAIEAAAAAAABgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAwCBAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAGgAAAAADAGAAAAAAAABgAAAAAAIAgQAAAAAAAGAAAAAAAgCBAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAEAgQAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAMAgQAAAAAAABoAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAABAGAAAAAAAwAaAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAQBgAAAAAAAAYAAAAAACAIEAAAAAAAAaAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAwCBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAACABoAAAAAAwBgAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAABAA== version: 7 1,-5: ind: 1,-5 - tiles: LQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACsAAAAAAgArAAAAAAEAKwAAAAABACsAAAAAAQArAAAAAAMAKwAAAAAAACsAAAAAAgArAAAAAAIAJQAAAAADAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAActAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAoEAAAAAAAAPAAAAAAMADwAAAAACAA8AAAAAAgCBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAEHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAAAPAAAAAAIAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAADwAAAAAAAA8AAAAAAgAPAAAAAAAADwAAAAABAA8AAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAA8AAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgAPAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAMAIAAAAAACAIEAAAAAAAAPAAAAAAMADwAAAAACAA8AAAAAAgAPAAAAAAIADwAAAAABAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAgAPAAAAAAAADwAAAAABAA8AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA8AAAAAAQAPAAAAAAEADwAAAAADAA8AAAAAAwAkAAAAAAMAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAwAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAAAgAAAAAAIALQAAAAAAACsAAAAAAActAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJAAAAAABACAAAAAAAQAgAAAAAAEAJQAAAAADACAAAAAAAwAgAAAAAAEAgQAAAAAAAC0AAAAAAAArAAAAAAIHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAACAAAAAAAwAgAAAAAAMAIAAAAAADACUAAAAAAwAgAAAAAAMAIAAAAAADAIEAAAAAAAAtAAAAAAAAKwAAAAADBy4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAAAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACQAAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAAHLQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAACAIEAAAAAAAAKAAAAAAAAgQAAAAAAAA== + tiles: LQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACsAAAAAAQArAAAAAAEAKwAAAAACACsAAAAAAAArAAAAAAEAKwAAAAABACsAAAAAAwArAAAAAAAAJQAAAAABAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAysAAAAAAQctAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAoEAAAAAAAAPAAAAAAEADwAAAAAAAA8AAAAAAACBAAAAAAAALgAAAAAAAy0AAAAAAAArAAAAAAIHLQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAACAA8AAAAAAgAPAAAAAAMAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAgAPAAAAAAMADwAAAAADAA8AAAAAAQCBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAA8AAAAAAgAPAAAAAAIADwAAAAABAA8AAAAAAQAPAAAAAAIAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAgAAAAAAEAIAAAAAAAAIEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAIADwAAAAADAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAADwAAAAADAA8AAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgCBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAA8AAAAAAQAPAAAAAAMADwAAAAADAA8AAAAAAAAkAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy0AAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAALQAAAAAAACsAAAAAAwctAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAMHLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADgQAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAMAHgAAAAAAAIEAAAAAAAAtAAAAAAAAKwAAAAABBy4AAAAAAAItAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAA4EAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAALQAAAAAAACsAAAAAAgctAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAArAAAAAAEHLQAAAAAAAIEAAAAAAAAgAAAAAAAAIAAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAA== version: 7 2,-6: ind: 2,-6 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAA== version: 7 2,-5: ind: 2,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAQCBAAAAAAAACgAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAACBAAAAAAAACgAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 2,-7: ind: 2,-7 @@ -276,11 +277,11 @@ entities: version: 7 3,-5: ind: 3,-5 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAKAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAKAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 4,-5: ind: 4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAHgAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAB4AAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAHgAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAB4AAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAoAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 3,-6: ind: 3,-6 @@ -288,7 +289,7 @@ entities: version: 7 4,-4: ind: 4,-4 - tiles: gQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAMARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAAAaAAAAAAIAGgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACABAAAAAAAQAQAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAIAgQAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAgAQAAAAAAAAEAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACgAAAAAAAB4AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAC8AAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAgBgAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAgAaAAAAAAEAGgAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABABAAAAAAAwAQAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAMAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAABACAAAAAAAAAQAAAAAAIAEAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 5,-4: ind: 5,-4 @@ -300,39 +301,39 @@ entities: version: 7 3,-4: ind: 3,-4 - tiles: CgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAgAlAAAAAAEAJQAAAAACACUAAAAAAQAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAwAlAAAAAAAAJQAAAAADACUAAAAAAQAlAAAAAAEAJQAAAAACAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAQAlAAAAAAIAJQAAAAACACUAAAAAAAAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAgAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAOBAAAAAAAAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAwBEAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABQAAAAAAEAUAAAAAADAFAAAAAAAgBQAAAAAAIAUAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAAAAFAAAAAAAQBQAAAAAAMAUAAAAAABAFAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAwBQAAAAAAAAUAAAAAADAFAAAAAAAABQAAAAAAAAgQAAAAAAAA== + tiles: CgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAeAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACACUAAAAAAwAlAAAAAAIAJQAAAAABACUAAAAAAgAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAgAlAAAAAAIAJQAAAAADAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAADACUAAAAAAAAlAAAAAAEAJQAAAAACACUAAAAAAwAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAADACUAAAAAAgAlAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAHgAAAAAAAB4AAAAAAAAeAAAAAAAAgQAAAAAAAC0AAAAAAAOBAAAAAAAAJQAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAgBEAAAAAAAARAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAAtAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABQAAAAAAIAUAAAAAADAFAAAAAAAwBQAAAAAAMAUAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAALQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAACAFAAAAAAAQBQAAAAAAEAUAAAAAACAFAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAAALQAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAQBQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAMAgQAAAAAAAA== version: 7 4,-3: ind: 4,-3 - tiles: YAAAAAAAAGAAAAAAAwBgAAAAAAEAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABAGAAAAAAAwBgAAAAAAMAYAAAAAADAIEAAAAAAAAgAAAAAAEAIAAAAAADACAAAAAAAQAgAAAAAAEAIAAAAAADACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACYAAAAAAwAmAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAADAGAAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAIAgQAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAGAAAAAAAABgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAACAIEAAAAAAACBAAAAAAAAIAAAAAAAAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAIAAAAAAAACAAAAAAAwBEAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAAARAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwCBAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: YAAAAAADAGAAAAAAAQBgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAgAgAAAAAAAAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAIAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAADAIEAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABACAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACYAAAAAAgAmAAAAAAIAYAAAAAABAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAIEAAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAABvAAAAAAAAbwAAAAAAAG8AAAAAAABvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAIAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAABgAAAAAAAAYAAAAAADAGAAAAAAAwBgAAAAAAIAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAIEAAAAAAACBAAAAAAAAIAAAAAADAEQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAQBEAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAIAAAAAAAACAAAAAAAgAgAAAAAAEARAAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAgCBAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 5,-3: ind: 5,-3 - tiles: IAAAAAADACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAAAAAmAAAAAAEAJgAAAAAAACYAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAAgQAAAAAAAAQAAAAAAABHAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAIAAAAAABACAAAAAAAwAgAAAAAAEAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAEAAAAAAAAGAAAAAAAACAAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAA== + tiles: IAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAACABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAAAAAmAAAAAAIAJgAAAAADACYAAAAAAwAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAAgQAAAAAAAAQAAAAAAABHAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAEAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAEAAAAAAAAGAAAAAAAACAAAAAAAgAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAA== version: 7 3,-3: ind: 3,-3 - tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAAAIAAAAAACAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAgBQAAAAAAMAUAAAAAADAFAAAAAAAABQAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAACAFAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAIAAAAAAAAC4AAAAAAAEtAAAAAAABLQAAAAAAAYEAAAAAAACBAAAAAAAAUAAAAAABAFAAAAAAAgBQAAAAAAMAUAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAAALgAAAAAAAS4AAAAAAAMgAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAQAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAtAAAAAAAAIAAAAAACACAAAAAAAwAgAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAgAgAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAADACAAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAQAgAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAEAgQAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEARAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAgCBAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAGAAAAAAAgCBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAMAgQAAAAAAAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAADAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAADAGAAAAAAAgCBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAACABYAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAABYAAAAAAwAWAAAAAAAAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAABgAAAAAAIAgQAAAAAAAIEAAAAAAAAWAAAAAAAAFgAAAAACABYAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAADAA== + tiles: gQAAAAAAAIEAAAAAAAAtAAAAAAAAIAAAAAAAAC0AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAFAAAAAAAQBQAAAAAAIAUAAAAAAAAFAAAAAAAABQAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAC0AAAAAAAAuAAAAAAABLgAAAAAAA4EAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAUAAAAAAAAFAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAAtAAAAAAAAIAAAAAABAC4AAAAAAAEtAAAAAAABLQAAAAAAAYEAAAAAAACBAAAAAAAAUAAAAAAAAFAAAAAAAwBQAAAAAAIAUAAAAAACAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAuAAAAAAAALgAAAAAAAS4AAAAAAAMgAAAAAAMAIAAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAADAFAAAAAAAABQAAAAAAMAUAAAAAACAFAAAAAAAAAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAgAtAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAADAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAACACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAAAIAAAAAADACAAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAgAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAAIEAAAAAAAAeAAAAAAAAHgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMARAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAACAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAgQAAAAAAAGAAAAAAAQBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAEAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAIAYAAAAAABAIEAAAAAAABgAAAAAAIAYAAAAAADAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAABAGAAAAAAAgBgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAGAAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAAAAIEAAAAAAACBAAAAAAAAFgAAAAADABYAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAACAGAAAAAAAgCBAAAAAAAAgQAAAAAAABYAAAAAAQAWAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAACAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAAAWAAAAAAIAFgAAAAAAABYAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAADAA== version: 7 4,-2: ind: 4,-2 - tiles: YAAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAgBgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAEAEgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAS8AAAAAAAAtAAAAAAABLQAAAAAAAS0AAAAAAAEuAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAEvAAAAAAAALQAAAAAAAS0AAAAAAAEuAAAAAAADLgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAABLwAAAAAAAC0AAAAAAAGBAAAAAAAALgAAAAAAAS0AAAAAAAEtAAAAAAAALwAAAAAAACAAAAAAAwAgAAAAAAEAIAAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAMAgQAAAAAAAEcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAIAIAAAAAADACAAAAAAAwAgAAAAAAIAIAAAAAACAIEAAAAAAAAlAAAAAAAAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAMtAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAQCBAAAAAAAAJQAAAAABACUAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAABLgAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAABACAAAAAAAQAgAAAAAAIAgQAAAAAAACUAAAAAAwAlAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAgAgAAAAAAIAIAAAAAADACUAAAAAAQAlAAAAAAEAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAADACUAAAAAAgCBAAAAAAAAIQAAAAAAACEAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAA== + tiles: YAAAAAAAAGAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAACAB4AAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAYAAAAAACAGAAAAAAAwAeAAAAAAAAIAAAAAABACAAAAAAAAAgAAAAAAIAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAHgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAS8AAAAAAAAtAAAAAAABLQAAAAAAAS0AAAAAAAEuAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC0AAAAAAAEvAAAAAAAALQAAAAAAAS0AAAAAAAEuAAAAAAADLgAAAAAAAS4AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAABLwAAAAAAAC0AAAAAAAGBAAAAAAAALgAAAAAAAS0AAAAAAAEtAAAAAAAALwAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAABACAAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAQAgAAAAAAMAgQAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAS4AAAAAAAOBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAABACAAAAAAAQAgAAAAAAIAIAAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAMtAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAABACAAAAAAAgAgAAAAAAMAIAAAAAADACAAAAAAAACBAAAAAAAAIAAAAAACACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAABLgAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAMAIAAAAAABACAAAAAAAAAgAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAAIAAAAAADACAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAMAIAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAABACAAAAAAAgCBAAAAAAAAIQAAAAACACEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAA== version: 7 3,-2: ind: 3,-2 - tiles: gQAAAAAAAIEAAAAAAAAWAAAAAAIAFgAAAAADABYAAAAAAABgAAAAAAIAgQAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAgBgAAAAAAEAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAMAYAAAAAABAIEAAAAAAABgAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQCBAAAAAAAAYAAAAAACAGAAAAAAAABgAAAAAAIAYAAAAAADAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAEAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQCBAAAAAAAAYAAAAAABAGAAAAAAAABgAAAAAAMAgQAAAAAAAIEAAAAAAABHAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAAAiAAAAAAAgAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAABLwAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAABLQAAAAAAAS8AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAS0AAAAAAAEvAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAADACAAAAAAAgAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAARwAAAAAAACUAAAAAAwAlAAAAAAEAJQAAAAADACUAAAAAAQAlAAAAAAAAJQAAAAABACUAAAAAAAAlAAAAAAMAJQAAAAACACUAAAAAAwAlAAAAAAAARwAAAAAAAIEAAAAAAABHAAAAAAAAgQAAAAAAACUAAAAAAwBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAwAlAAAAAAAAIgAAAAABACIAAAAAAgAiAAAAAAAAIgAAAAADACQAAAAAAAAiAAAAAAIAIgAAAAAAACIAAAAAAwBgAAAAAAIAIAAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAABACAAAAAAAwCBAAAAAAAARwAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAAAiAAAAAAAAYAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAQAfAAAAAAIAgQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAIEAAAAAAABgAAAAAAMAIgAAAAADAGAAAAAAAQBHAAAAAAAAJQAAAAADACUAAAAAAwAlAAAAAAEAJQAAAAABACUAAAAAAQAlAAAAAAEAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAGAAAAAAAwAiAAAAAAEAIgAAAAABACIAAAAAAwBgAAAAAAIAgQAAAAAAACQAAAAAAwAlAAAAAAEAJQAAAAACACUAAAAAAwAlAAAAAAIAJQAAAAABAA== + tiles: gQAAAAAAAIEAAAAAAAAWAAAAAAEAFgAAAAABABYAAAAAAQBgAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAAAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAADAIEAAAAAAABgAAAAAAIAYAAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAACAGAAAAAAAQCBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAIAYAAAAAADAGAAAAAAAwBgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAGAAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAABAIEAAAAAAABgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAQAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQCBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAgQAAAAAAAIEAAAAAAABHAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALgAAAAAAAiAAAAAAAwAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAtAAAAAAABLwAAAAAAAC0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAADLgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAABLQAAAAAAAS8AAAAAAAAuAAAAAAABLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALgAAAAAAAS0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAS0AAAAAAAEvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAABABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAABACAAAAAAAQAgAAAAAAMAgQAAAAAAACAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAMAYAAAAAACAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAQCBAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAEAIgAAAAADACIAAAAAAQAiAAAAAAEAIgAAAAADACQAAAAAAgAiAAAAAAMAIgAAAAADACIAAAAAAQBgAAAAAAMAIAAAAAACACAAAAAAAQAgAAAAAAEAIAAAAAAAACAAAAAAAACBAAAAAAAAIAAAAAACAGAAAAAAAQBgAAAAAAMAYAAAAAACAGAAAAAAAgBgAAAAAAIAYAAAAAAAAGAAAAAAAAAiAAAAAAEAYAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAfAAAAAAEAgQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAIEAAAAAAABgAAAAAAEAIgAAAAACAGAAAAAAAABHAAAAAAAAIAAAAAADACAAAAAAAQAgAAAAAAAAIAAAAAADACAAAAAAAAAgAAAAAAMAgQAAAAAAAGAAAAAAAwCBAAAAAAAAgQAAAAAAAGAAAAAAAwAiAAAAAAAAIgAAAAABACIAAAAAAABgAAAAAAAAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAAAACAAAAAAAAAgAAAAAAEAIAAAAAADAA== version: 7 2,-2: ind: 2,-2 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALwAAAAAAACUAAAAAAgAlAAAAAAEAJQAAAAADACkAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAApAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACkAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAACACkAAAAAAwApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMuAAAAAAACLgAAAAAAA4EAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAMYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAIrAAAAAAMAGAAAAAAAACsAAAAAAwArAAAAAAIAKwAAAAABACUAAAAAAwAtAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAQAgAAAAAAIAIAAAAAADACAAAAAAAAAgAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAARwAAAAAAACUAAAAAAQAlAAAAAAIAJQAAAAADACUAAAAAAgAlAAAAAAIAJQAAAAADACUAAAAAAgApAAAAAAAAKQAAAAAAAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAAAAGAAAAAAAwBgAAAAAAIAKQAAAAACACkAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAAAZAAAAAAMAgQAAAAAAACIAAAAAAgAiAAAAAAMAIgAAAAABACIAAAAAAgAiAAAAAAIAIgAAAAADACkAAAAAAwApAAAAAAAAKQAAAAABACkAAAAAAwApAAAAAAEAgQAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAAAACIAAAAAAwAiAAAAAAMAYAAAAAAAAGAAAAAAAQBgAAAAAAAAYAAAAAABAGAAAAAAAwApAAAAAAMAKQAAAAABACkAAAAAAwApAAAAAAIAKQAAAAADAIEAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAwAiAAAAAAAAYAAAAAADAIEAAAAAAAAfAAAAAAMAHwAAAAABAGAAAAAAAwAfAAAAAAIAKQAAAAAAAIEAAAAAAACBAAAAAAAAKQAAAAABAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAIgAAAAACAGAAAAAAAQBgAAAAAAEAgQAAAAAAAIEAAAAAAABgAAAAAAIAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAALwAAAAAAACUAAAAAAQAlAAAAAAAAJQAAAAADACkAAAAAAQCBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAACkAAAAAAgCBAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAYAAAAAAAAGAAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAAAACkAAAAAAgApAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAuAAAAAAACLQAAAAAAAy0AAAAAAAMuAAAAAAACLgAAAAAAA4EAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC0AAAAAAAMYAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAMtAAAAAAADLgAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy4AAAAAAAIrAAAAAAEAGAAAAAAAACsAAAAAAQArAAAAAAEAKwAAAAAAACUAAAAAAAAtAAAAAAAALQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLQAAAAAAAy0AAAAAAAMuAAAAAAAALQAAAAAAAxgAAAAAAAAtAAAAAAADLQAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAApAAAAAAIAKQAAAAADAIEAAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAQBgAAAAAAAAKQAAAAACACkAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAAAZAAAAAAIAgQAAAAAAACIAAAAAAgAiAAAAAAMAIgAAAAAAACIAAAAAAwAiAAAAAAMAIgAAAAABACkAAAAAAAApAAAAAAIAKQAAAAADACkAAAAAAAApAAAAAAIAgQAAAAAAABcAAAAAAACBAAAAAAAAYAAAAAADACIAAAAAAAAiAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAEAYAAAAAADAGAAAAAAAAApAAAAAAIAKQAAAAABACkAAAAAAgApAAAAAAAAKQAAAAAAAIEAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAAAiAAAAAAAAYAAAAAADAIEAAAAAAAAfAAAAAAAAHwAAAAACAGAAAAAAAAAfAAAAAAEAKQAAAAADAIEAAAAAAACBAAAAAAAAKQAAAAABAIEAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAIAIgAAAAADAGAAAAAAAgBgAAAAAAIAgQAAAAAAAIEAAAAAAABgAAAAAAAAgQAAAAAAAA== version: 7 2,-3: ind: 2,-3 - tiles: gQAAAAAAACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAwAPAAAAAAAADwAAAAAAAA8AAAAAAwAPAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAwAlAAAAAAMAJQAAAAACAIEAAAAAAAABAAAAAAMAAQAAAAACACAAAAAAAwAPAAAAAAIADwAAAAAAAA8AAAAAAQAPAAAAAAIADwAAAAAAAA8AAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAAAACUAAAAAAAAgAAAAAAAAAQAAAAADAAEAAAAAAAAgAAAAAAEADwAAAAAAAA8AAAAAAwAPAAAAAAIADwAAAAAAAA8AAAAAAwAPAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAQAlAAAAAAMAIAAAAAAAAAEAAAAAAQABAAAAAAIAIAAAAAABAA8AAAAAAAAPAAAAAAMADwAAAAACAA8AAAAAAQAPAAAAAAMADwAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAAAACAAAAAAAwABAAAAAAEAAQAAAAAAACAAAAAAAQAPAAAAAAEADwAAAAADAA8AAAAAAgAPAAAAAAIADwAAAAAAAA8AAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAADACUAAAAAAAAgAAAAAAMAAQAAAAADAAEAAAAAAQAgAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAAAlAAAAAAMAIAAAAAACAAEAAAAAAAABAAAAAAAAgQAAAAAAAA8AAAAAAwAPAAAAAAIADwAAAAAAAA8AAAAAAwAPAAAAAAIADwAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAwAlAAAAAAEAJQAAAAACAIEAAAAAAAABAAAAAAMAAQAAAAABACAAAAAAAgAPAAAAAAIADwAAAAADAA8AAAAAAAAPAAAAAAMADwAAAAABAA8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAJQAAAAACACUAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAgAlAAAAAAMAgQAAAAAAAC8AAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAwAlAAAAAAEAJQAAAAADACUAAAAAAQCBAAAAAAAAgQAAAAAAACUAAAAAAQAlAAAAAAEAJQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAAAACUAAAAAAwAlAAAAAAIAJQAAAAACACUAAAAAAwAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAEAJQAAAAABACUAAAAAAAAlAAAAAAMAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAABgAAAAAAAAvAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAACAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgAPAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAAABAAAAAAIAAQAAAAADACAAAAAAAgAPAAAAAAEADwAAAAADAA8AAAAAAQAPAAAAAAIADwAAAAAAAA8AAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAABAG8AAAAAAAAgAAAAAAMAAQAAAAAAAAEAAAAAAgAgAAAAAAEADwAAAAAAAA8AAAAAAwAPAAAAAAAADwAAAAADAA8AAAAAAgAPAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAAAACUAAAAAAABvAAAAAAAAIAAAAAAAAAEAAAAAAgABAAAAAAAAIAAAAAADAA8AAAAAAwAPAAAAAAMADwAAAAAAAA8AAAAAAgAPAAAAAAEADwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAEAbwAAAAAAACAAAAAAAwABAAAAAAMAAQAAAAABACAAAAAAAAAPAAAAAAIADwAAAAAAAA8AAAAAAwAPAAAAAAMADwAAAAADAA8AAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAEAJQAAAAABAG8AAAAAAAAgAAAAAAIAAQAAAAAAAAEAAAAAAwAgAAAAAAMADwAAAAABAA8AAAAAAQAPAAAAAAAADwAAAAABAA8AAAAAAwAPAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABACUAAAAAAgBvAAAAAAAAIAAAAAADAAEAAAAAAAABAAAAAAAAgQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAACAA8AAAAAAgAPAAAAAAAADwAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAACUAAAAAAAAlAAAAAAIAbwAAAAAAAIEAAAAAAAABAAAAAAIAAQAAAAAAACAAAAAAAQAPAAAAAAAADwAAAAABAA8AAAAAAwAPAAAAAAEADwAAAAAAAA8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAABAG8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAJQAAAAACACUAAAAAAQBvAAAAAAAAgQAAAAAAAC8AAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAAA0AAAAAAkANAAAAAAAABgAAAAAAAAYAAAAAAAANAAAAAAAADQAAAAACACBAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAlAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAADQAAAAAAAA0AAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAADQAAAAAAwAYAAAAAAAAGAAAAAAAADQAAAAAAgA0AAAAAAAANAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAADQAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAIEAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAAGAAAAAAAAC8AAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAvAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALwAAAAAAABgAAAAAAAAvAAAAAAAAgQAAAAAAAA== version: 7 5,-2: ind: 5,-2 - tiles: gQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABAIEAAAAAAAAgAAAAAAEAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAQAgAAAAAAMAIAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAHAAAAAACABwAAAAAAwCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEAgQAAAAAAACAAAAAAAAAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACAIEAAAAAAAAgAAAAAAMAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAgAgAAAAAAEAIAAAAAACACAAAAAAAQCBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAIAgQAAAAAAACAAAAAAAAAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAHAAAAAACABwAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 5,-1: ind: 5,-1 @@ -340,7 +341,7 @@ entities: version: 7 3,-1: ind: 3,-1 - tiles: YAAAAAABAGAAAAAAAABgAAAAAAMAYAAAAAADACIAAAAAAgAiAAAAAAAAYAAAAAACAGAAAAAAAwBgAAAAAAEARwAAAAAAACUAAAAAAwAlAAAAAAIAJQAAAAADACUAAAAAAwCBAAAAAAAAgQAAAAAAACIAAAAAAwAiAAAAAAIAIgAAAAAAACIAAAAAAQAiAAAAAAMAIwAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAAAAIEAAAAAAAAlAAAAAAIAJQAAAAABAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAEAYAAAAAADACMAAAAAAAAjAAAAAAAAHwAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAADACIAAAAAAQAiAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAAARwAAAAAAACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAACIAAAAAAgAiAAAAAAEAIgAAAAAAACIAAAAAAwAiAAAAAAIAIwAAAAAAACMAAAAAAAAjAAAAAAAAIwAAAAAAAIEAAAAAAAAlAAAAAAMAJQAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAACMAAAAAAAAjAAAAAAAAHwAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-1: ind: 4,-1 @@ -348,11 +349,11 @@ entities: version: 7 2,-1: ind: 2,-1 - tiles: KQAAAAABACkAAAAAAwApAAAAAAAAKQAAAAAAACkAAAAAAwCBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAIgAAAAADAGAAAAAAAQCBAAAAAAAAYAAAAAAAAGAAAAAAAwBgAAAAAAIAYAAAAAADACkAAAAAAAApAAAAAAAAKQAAAAACACkAAAAAAwApAAAAAAIAgQAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAABACIAAAAAAAAiAAAAAAEAIgAAAAAAACIAAAAAAgAiAAAAAAMAIgAAAAABACIAAAAAAgCBAAAAAAAAgQAAAAAAACkAAAAAAQApAAAAAAEAKQAAAAABAIEAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAAAAGAAAAAAAgBgAAAAAAAAKQAAAAACAIEAAAAAAAApAAAAAAMAKQAAAAABACkAAAAAAQCBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAgCBAAAAAAAAKQAAAAABACkAAAAAAgApAAAAAAMAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: KQAAAAACACkAAAAAAgApAAAAAAMAKQAAAAAAACkAAAAAAQCBAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAAAIgAAAAACAGAAAAAAAQCBAAAAAAAAYAAAAAABAGAAAAAAAgBgAAAAAAIAYAAAAAABACkAAAAAAgApAAAAAAIAKQAAAAABACkAAAAAAAApAAAAAAAAgQAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAACACIAAAAAAgAiAAAAAAMAIgAAAAAAACIAAAAAAgAiAAAAAAMAIgAAAAABACIAAAAAAgCBAAAAAAAAgQAAAAAAACkAAAAAAAApAAAAAAIAKQAAAAADAIEAAAAAAAAXAAAAAAAAgQAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAADAGAAAAAAAABgAAAAAAIAKQAAAAACAIEAAAAAAAApAAAAAAAAKQAAAAABACkAAAAAAQCBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACkAAAAAAACBAAAAAAAAKQAAAAACACkAAAAAAgApAAAAAAIAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,-4: ind: 2,-4 - tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAALQAAAAAAAC0AAAAAAAMtAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAAGgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAMtAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAABBgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEtAAAAAAADLgAAAAAAAy4AAAAAAAEtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAgAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAyAAAAAAAwAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAEAIAAAAAACAIEAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAgAYAAAAAAAAIAAAAAACAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAEAIAAAAAADACAAAAAAAgAgAAAAAAIAIAAAAAADACAAAAAAAgAYAAAAAAAAGAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAgAgAAAAAAIAIAAAAAAAACAAAAAAAgAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== + tiles: gQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAXAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABcAAAAAAAAXAAAAAAAALQAAAAAAAC0AAAAAAAMtAAAAAAADGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAALQAAAAAAAy0AAAAAAAMuAAAAAAAGgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAC0AAAAAAAMuAAAAAAADGAAAAAAAAC0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAMtAAAAAAADLgAAAAAAAy0AAAAAAAMtAAAAAAAALQAAAAAAAy0AAAAAAAOBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAALgAAAAAABBgAAAAAAAAYAAAAAAAAGAAAAAAAAC4AAAAAAAEtAAAAAAADLgAAAAAAAy4AAAAAAAEtAAAAAAADgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAACAAAAAAAwAgAAAAAAEAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAABgAAAAAAACBAAAAAAAAgQAAAAAAAC4AAAAAAAEtAAAAAAADLQAAAAAAAyAAAAAAAAAgAAAAAAEAIAAAAAABACAAAAAAAwAgAAAAAAIAIAAAAAACAIEAAAAAAAAgAAAAAAIAIAAAAAACACAAAAAAAAAYAAAAAAAAIAAAAAADAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAgAAAAAAMAIAAAAAACACAAAAAAAgAgAAAAAAEAIAAAAAACACAAAAAAAwAgAAAAAAIAIAAAAAAAACAAAAAAAAAYAAAAAAAAGAAAAAAAACAAAAAAAgCBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAIAAAAAAAACAAAAAAAQAgAAAAAAAAIAAAAAACACAAAAAAAAAgAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAGAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAA== version: 7 -2,-6: ind: -2,-6 @@ -384,7 +385,7 @@ entities: version: 7 3,-7: ind: 3,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAADAGAAAAAAAgBgAAAAAAEAYAAAAAABAGAAAAAAAABgAAAAAAEAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAQBgAAAAAAIAYAAAAAAAAGAAAAAAAwBgAAAAAAAAYAAAAAABAGAAAAAAAQCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAADAGAAAAAAAQBgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAEAYAAAAAABAGAAAAAAAQBgAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAADAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAgBgAAAAAAEAYAAAAAABAGAAAAAAAABgAAAAAAEAYAAAAAACAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAGAAAAAAAwBgAAAAAAMAYAAAAAABAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAMAYAAAAAABAGAAAAAAAQBgAAAAAAMAYAAAAAAAAGAAAAAAAgBgAAAAAAMAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAABAGAAAAAAAwBgAAAAAAIAYAAAAAACAGAAAAAAAgBgAAAAAAMAYAAAAAACAGAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAGAAAAAAAgBgAAAAAAMAYAAAAAABAGAAAAAAAgBgAAAAAAAAYAAAAAADAGAAAAAAAQBgAAAAAAMAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAABgAAAAAAIAYAAAAAACAGAAAAAAAwBgAAAAAAMAYAAAAAABAGAAAAAAAgBgAAAAAAIAYAAAAAADAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAYAAAAAAAAGAAAAAAAQBgAAAAAAEAYAAAAAACAGAAAAAAAABgAAAAAAMAYAAAAAABAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAG8AAAAAAABvAAAAAAAAbwAAAAAAAGAAAAAAAQBgAAAAAAIAYAAAAAAAAIEAAAAAAACBAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -5,-3: ind: -5,-3 @@ -435,8 +436,6 @@ entities: 2004: -24,-81 3303: 65,-22 3304: 65,-26 - 3314: 60,-20 - 3810: 11,-55 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -444,7 +443,6 @@ entities: decals: 2005: -25,-82 3295: 56,-16 - 3313: 59,-21 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -465,7 +463,6 @@ entities: 561: -2,1 2007: -23,-82 3302: 58,-18 - 3312: 61,-21 3664: -3,-18 - node: angle: 3.141592653589793 rad @@ -497,7 +494,6 @@ entities: color: '#FFFFFFFF' id: Basalt6 decals: - 2059: 11,-13 2060: 6,-11 2061: -6,-13 2064: -5,-11 @@ -521,11 +517,9 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 171: 11,-56 172: 11,-57 173: 11,-58 174: 11,-59 - 175: 11,-60 458: 54,-102 1726: 40,-14 1727: 41,-14 @@ -574,6 +568,20 @@ entities: 4672: 56,-37 4776: 54,-97 4780: 53,-102 + 4974: 26,-54 + 4988: -8,-51 + 4989: -8,-52 + 4990: -8,-54 + 5015: -10,-44 + 5016: -9,-44 + 5017: -9,-43 + 5018: -7,-43 + 5070: -4,-28 + 5089: -22,-50 + 5090: -21,-50 + 5094: 13,-66 + 5181: -40,-12 + 5182: -38,-12 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -614,6 +622,22 @@ entities: 3559: -28,-86 3560: -28,-78 3902: -10,-70 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 4975: 24,-52 + 4976: 22,-54 + 4977: 24,-56 + 5025: -9,-37 + 5026: -8,-37 + 5027: -7,-37 + 5028: -6,-37 + 5029: -6,-35 + 5030: -7,-35 + 5031: -8,-35 + 5032: -9,-35 + 5082: -22,-43 - node: color: '#FFFFFFFF' id: BotLeft @@ -646,11 +670,11 @@ entities: 282: 28,-97 283: 28,-98 - node: - angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: BotLeft + id: BotLeftGreyscale decals: - 3311: 60,-21 + 5021: -5,-35 + 5022: -10,-37 - node: color: '#FFFFFFFF' id: BotRight @@ -683,6 +707,12 @@ entities: 269: 22,-98 270: 21,-98 271: 20,-98 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 5023: -10,-35 + 5024: -5,-37 - node: color: '#FFFFFFFF' id: Box @@ -736,11 +766,6 @@ entities: id: BrickCornerOverlayNE decals: 546: 6,-7 - - node: - color: '#D381C926' - id: BrickCornerOverlayNE - decals: - 3549: 7,-42 - node: color: '#FF940093' id: BrickCornerOverlayNE @@ -759,11 +784,6 @@ entities: id: BrickCornerOverlayNW decals: 513: -4,1 - - node: - color: '#D381C926' - id: BrickCornerOverlayNW - decals: - 3550: 6,-42 - node: color: '#FF940093' id: BrickCornerOverlayNW @@ -779,11 +799,6 @@ entities: id: BrickCornerOverlaySE decals: 514: 6,1 - - node: - color: '#D381C926' - id: BrickCornerOverlaySE - decals: - 3553: 7,-44 - node: color: '#FF940093' id: BrickCornerOverlaySE @@ -800,11 +815,6 @@ entities: id: BrickCornerOverlaySW decals: 536: -4,-7 - - node: - color: '#D381C926' - id: BrickCornerOverlaySW - decals: - 3552: 6,-44 - node: color: '#FF940093' id: BrickCornerOverlaySW @@ -837,19 +847,6 @@ entities: decals: 2986: 13,-31 2987: 17,-30 - - node: - color: '#334E6DC8' - id: BrickLineOverlayE - decals: - 4899: -35,-49 - 4900: -35,-43 - 4903: -35,-44 - 4904: -35,-48 - - node: - color: '#8C347F96' - id: BrickLineOverlayE - decals: - 4945: -13,-49 - node: color: '#95FF6F72' id: BrickLineOverlayE @@ -873,11 +870,6 @@ entities: 2516: 15,-90 2517: 15,-91 2518: 15,-86 - - node: - color: '#FA750096' - id: BrickLineOverlayE - decals: - 3836: 10,-67 - node: color: '#FF940093' id: BrickLineOverlayE @@ -912,13 +904,6 @@ entities: color: '#D381C926' id: BrickLineOverlayN decals: - 3533: 14,-43 - 3534: 15,-43 - 3535: 13,-43 - 3536: 12,-43 - 3537: 11,-43 - 3538: 10,-43 - 3539: 9,-43 3540: 8,-43 - node: color: '#DE3A3A96' @@ -985,33 +970,12 @@ entities: id: BrickLineOverlayS decals: 3541: 8,-43 - 3542: 9,-43 - 3543: 10,-43 - 3544: 11,-43 - 3545: 12,-43 - 3546: 13,-43 - 3547: 14,-43 - 3548: 15,-43 - - node: - color: '#D381C971' - id: BrickLineOverlayS - decals: - 938: 8,-74 - 939: 9,-74 - 940: 10,-74 - node: color: '#DE3A3A96' id: BrickLineOverlayS decals: 4618: 55,-26 4619: 56,-26 - - node: - color: '#EFB34196' - id: BrickLineOverlayS - decals: - 2952: -22,-58 - 2953: -21,-58 - 2954: -20,-58 - node: color: '#FF940093' id: BrickLineOverlayS @@ -1038,16 +1002,6 @@ entities: 1821: 43,-15 1822: 42,-15 1823: 54,-17 - - node: - color: '#334E6DC8' - id: BrickLineOverlayW - decals: - 2936: -30,-43 - 2937: -30,-42 - 2938: -30,-49 - 2939: -30,-50 - 2945: -30,-44 - 2948: -30,-48 - node: color: '#95FF6F72' id: BrickLineOverlayW @@ -1073,16 +1027,6 @@ entities: 2522: 14,-90 2523: 14,-91 2527: 21,-83 - - node: - color: '#D381C926' - id: BrickLineOverlayW - decals: - 3551: 6,-43 - - node: - color: '#FA750096' - id: BrickLineOverlayW - decals: - 3838: 23,-69 - node: color: '#FF940093' id: BrickLineOverlayW @@ -1096,10 +1040,7 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 12: -4,-25 - 1429: -12,-38 2904: -18,-26 - 3512: 7,-42 4137: 92,-42 4138: 93,-43 4139: 94,-44 @@ -1107,20 +1048,14 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 13: -6,-25 2903: -25,-26 - 3508: 6,-42 - 3892: -7,-27 4142: 92,-49 4143: 93,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1428: -12,-34 2905: -18,-27 - 3513: 7,-44 - 3896: -4,-27 4134: 92,-50 4135: 93,-49 4136: 94,-48 @@ -1129,7 +1064,6 @@ entities: id: BrickTileDarkCornerSw decals: 2902: -25,-27 - 3509: 6,-44 4140: 93,-44 4141: 92,-43 - node: @@ -1142,18 +1076,13 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1435: -12,-39 - 2208: 23,-55 4163: 92,-43 4164: 93,-44 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 757: -4,-38 - 1430: -3,-39 2207: 25,-55 - 3894: -6,-27 4153: 92,-50 4154: 93,-49 4155: 94,-48 @@ -1162,17 +1091,13 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1432: -12,-33 2209: 23,-53 - 3893: -7,-27 4161: 92,-49 4162: 93,-48 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 758: -4,-34 - 1431: -3,-33 2210: 25,-53 4157: 93,-43 4158: 92,-42 @@ -1182,61 +1107,22 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 14: -4,-26 2205: 23,-54 - 3835: 10,-67 4146: 94,-45 4147: 94,-46 4148: 94,-47 - 4896: -35,-49 - 4897: -35,-43 - 4901: -35,-48 - 4902: -35,-44 - 4930: -48,-51 - 4931: -48,-50 - 4932: -48,-42 - 4933: -48,-41 - 4944: -13,-49 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 15: -5,-25 - 804: -3,-36 - 805: -2,-36 - 1405: -11,-39 - 1406: -10,-39 - 1407: -9,-39 - 1408: -8,-39 - 1409: -7,-39 - 1410: -6,-39 - 1411: -5,-39 - 1412: -4,-39 2204: 24,-55 - 2789: -29,-42 - 2790: -28,-42 2912: -24,-26 2913: -23,-26 2914: -22,-26 2915: -21,-26 2916: -19,-26 2917: -20,-26 - 2931: -30,-42 - 2957: -11,-38 - 3167: -10,-38 - 3168: -9,-38 - 3169: -8,-38 - 3170: -7,-38 - 3171: -6,-38 - 3172: -5,-38 3514: 8,-43 - 3515: 9,-43 - 3516: 10,-43 - 3517: 11,-43 - 3518: 12,-43 - 3519: 13,-43 - 3520: 14,-43 - 3532: 15,-43 4132: 90,-50 4133: 91,-50 4150: 93,-46 @@ -1246,81 +1132,26 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 11: -5,-27 - 802: -3,-36 - 803: -2,-36 - 935: 8,-74 - 936: 9,-74 - 937: 10,-74 - 1417: -4,-33 - 1418: -5,-33 - 1419: -6,-33 - 1420: -7,-33 - 1421: -9,-33 - 1422: -8,-33 - 1423: -10,-33 - 1424: -11,-33 2206: 24,-53 - 2787: -28,-50 2906: -24,-27 2907: -23,-27 2908: -22,-27 2909: -21,-27 2910: -20,-27 2911: -19,-27 - 2929: -30,-50 - 2956: -11,-34 - 3161: -10,-34 - 3162: -9,-34 - 3163: -8,-34 - 3164: -7,-34 - 3165: -6,-34 - 3166: -5,-34 - 3523: 14,-43 - 3524: 13,-43 - 3525: 12,-43 - 3526: 11,-43 - 3527: 10,-43 - 3528: 9,-43 3529: 8,-43 - 3531: 15,-43 - 3895: -6,-27 4128: 90,-42 4129: 91,-42 4130: 90,-50 4131: 91,-50 4149: 93,-46 - 4925: -29,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 9: -6,-26 - 166: 14,-51 - 167: 14,-50 - 168: 14,-49 - 1413: -3,-38 - 1414: -3,-37 - 1415: -3,-35 - 1416: -3,-34 2203: 25,-54 - 2932: -30,-42 - 2933: -30,-43 - 2934: -30,-50 - 2935: -30,-49 - 2940: -30,-44 - 2941: -30,-48 - 3179: -4,-35 - 3180: -4,-36 - 3181: -4,-37 - 3507: 6,-43 - 3837: 23,-69 4144: 94,-47 4145: 94,-45 - 4926: -45,-41 - 4927: -45,-42 - 4928: -45,-50 - 4929: -45,-51 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe @@ -1344,7 +1175,6 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 0: -10,-50 1763: 42,-20 1764: 41,-19 1765: 52,-16 @@ -1375,6 +1205,7 @@ entities: 1796: 53,-16 1797: 52,-15 1798: 55,-17 + 5187: 56,-39 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE @@ -1421,8 +1252,6 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 3: -8,-50 - 4: -9,-50 1728: 43,-15 1729: 44,-15 1730: 45,-15 @@ -1455,15 +1284,10 @@ entities: 2391: 18,-83 2394: 8,-83 2395: 15,-83 - 2949: -22,-58 - 2950: -21,-58 - 2951: -20,-58 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1: -10,-49 - 2: -10,-48 1748: 41,-18 1749: 41,-17 1750: 41,-16 @@ -1638,18 +1462,6 @@ entities: color: '#DE3A3A96' id: CheckerNESW decals: - 1616: 42,-23 - 1617: 43,-23 - 1618: 44,-23 - 1619: 45,-23 - 1620: 46,-23 - 1621: 47,-23 - 1622: 48,-23 - 1623: 49,-23 - 1625: 54,-23 - 1626: 55,-23 - 1627: 56,-23 - 4206: 50,-23 4210: 50,-32 4213: 50,-35 4229: 51,-35 @@ -1848,53 +1660,17 @@ entities: 4946: -13,-52 4947: -13,-53 4948: -13,-54 + 4980: 11,-60 + 4981: 6,-59 + 5058: -11,-30 + 5059: -12,-30 + 5130: -38,-46 - node: color: '#DE3A3AFF' id: DeliveryGreyscale decals: 4660: 59,-38 4753: 67,-44 - - node: - color: '#00000056' - id: DiagonalCheckerAOverlay - decals: - 3693: -25,-38 - 3694: -24,-38 - 3695: -23,-38 - 3696: -22,-38 - 3697: -25,-37 - 3698: -25,-31 - 3699: -25,-32 - 3700: -25,-33 - 3701: -25,-34 - 3702: -25,-35 - 3703: -25,-36 - 3704: -24,-36 - 3705: -21,-38 - 3706: -19,-38 - 3707: -18,-38 - 3708: -17,-38 - 3717: -23,-28 - 3718: -22,-28 - 3719: -21,-28 - 3720: -19,-28 - 3721: -18,-28 - 3722: -17,-28 - - node: - color: '#00000066' - id: DiagonalCheckerAOverlay - decals: - 4107: -24,-30 - - node: - color: '#00000067' - id: DiagonalCheckerAOverlay - decals: - 2552: -25,-30 - - node: - color: '#0000006C' - id: DiagonalCheckerAOverlay - decals: - 2869: -20,-37 - node: color: '#0000008C' id: DiagonalCheckerAOverlay @@ -1913,15 +1689,6 @@ entities: 1466: 37,-42 1467: 37,-41 1468: 36,-41 - - node: - color: '#00000053' - id: DiagonalCheckerBOverlay - decals: - 1945: -29,-48 - 1946: -29,-47 - 1947: -29,-46 - 1948: -29,-45 - 1949: -29,-44 - node: cleanable: True color: '#000000FF' @@ -1940,17 +1707,13 @@ entities: 2052: 5,-12 2053: 9,-11 2054: 10,-12 - 2055: 14,-12 2067: 1,-11 2068: 1,-11 2086: 7,-33 2087: 1,-31 - 2088: 4,-32 - 2089: 5,-32 2090: 8,-31 2091: 8,-34 2098: 1,-33 - 2099: 0,-32 - node: cleanable: True color: '#FFFFFFFF' @@ -2032,7 +1795,6 @@ entities: color: '#000000FF' id: DirtHeavyMonotile decals: - 2012: 0,-11 2013: 6,-11 2014: 5,-13 2015: 7,-11 @@ -2062,7 +1824,6 @@ entities: 1502: -1,-76 1503: 3,-79 1519: -53,-69 - 1521: -50,-31 1526: -40,-27 1531: -51,-26 1532: -50,-25 @@ -2074,8 +1835,6 @@ entities: 1930: 46,-20 1931: 49,-16 1932: 54,-19 - 1939: 44,-22 - 1940: 52,-22 2127: 4,-9 2404: 10,-83 2410: 14,-80 @@ -2130,14 +1889,10 @@ entities: 1550: -1,-14 1551: 3,-14 1938: 46,-17 - 1941: 45,-23 - 1942: 54,-23 - 1943: 49,-23 2124: -8,-8 2125: -3,-9 2126: -1,-10 2132: -17,-47 - 2133: -4,-46 2134: 17,-64 2135: 19,-62 2136: -11,-76 @@ -2163,9 +1918,7 @@ entities: color: '#000000FF' id: DirtMedium decals: - 2040: 0,-11 2041: -8,-10 - 2084: 4,-32 2085: 2,-32 - node: cleanable: True @@ -2176,7 +1929,6 @@ entities: 1475: 39,-50 1497: 77,-50 1524: -42,-29 - 1552: 12,-14 1553: 1,-63 1927: 47,-19 1928: 46,-18 @@ -2196,21 +1948,11 @@ entities: 4759: 78,-71 4763: 49,-17 4852: 61,-74 - - node: - color: '#334E6DC8' - id: FullTileOverlayGreyscale - decals: - 3808: 9,-60 - node: color: '#43995C96' id: FullTileOverlayGreyscale decals: 4385: 31,-17 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 3981: 6,-59 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -2305,31 +2047,12 @@ entities: 1106: -17,-59 1107: -16,-59 1108: -15,-59 - 1110: -27,-59 - 1111: -26,-59 - 1112: -25,-59 - 1113: -24,-59 1137: -29,-64 - node: color: '#00000026' id: HalfTileOverlayGreyscale180 decals: 33: -47,-49 - - node: - color: '#00000066' - id: HalfTileOverlayGreyscale180 - decals: - 2928: -24,-40 - - node: - color: '#00000067' - id: HalfTileOverlayGreyscale180 - decals: - 2575: -25,-40 - 2577: -22,-43 - 2578: -21,-43 - 2579: -20,-43 - 2580: -19,-43 - 2581: -18,-43 - node: color: '#43995C96' id: HalfTileOverlayGreyscale180 @@ -2344,8 +2067,6 @@ entities: 1573: 14,-71 1574: 13,-71 3978: -40,-16 - 4408: 28,-25 - 4409: 29,-25 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -2361,21 +2082,6 @@ entities: id: HalfTileOverlayGreyscale180 decals: 4510: 20,-25 - - node: - color: '#00000067' - id: HalfTileOverlayGreyscale270 - decals: - 2565: -26,-34 - 2566: -26,-35 - 2567: -26,-33 - 2568: -26,-32 - 2569: -26,-31 - 2571: -26,-36 - 2572: -26,-37 - 2573: -26,-38 - 2574: -26,-39 - 2582: -23,-41 - 2583: -23,-42 - node: color: '#0080FF3A' id: HalfTileOverlayGreyscale270 @@ -2394,12 +2100,6 @@ entities: decals: 4388: 29,-20 4389: 29,-19 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 - decals: - 4579: 23,-23 - 4580: 23,-24 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -2419,14 +2119,6 @@ entities: id: HalfTileOverlayGreyscale270 decals: 229: -5,-6 - - node: - color: '#00000067' - id: HalfTileOverlayGreyscale90 - decals: - 2584: -17,-39 - 2585: -17,-40 - 2586: -17,-41 - 2587: -17,-42 - node: color: '#3E92D883' id: HalfTileOverlayGreyscale90 @@ -2481,6 +2173,7 @@ entities: decals: 4125: 96,-58 4127: 96,-34 + 4979: 10,-60 - node: color: '#FFFFFFFF' id: LoadingArea @@ -2500,6 +2193,11 @@ entities: 3969: 4,-10 3970: 5,-10 3971: 6,-10 + 4978: 11,-56 + 5054: -12,-31 + 5055: -11,-31 + 5056: -12,-29 + 5057: -11,-29 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2518,13 +2216,14 @@ entities: 2525: 21,-84 3297: 63,-26 3306: 63,-19 + 5179: -40,-11 + 5180: -38,-11 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: 3296: 56,-18 - 3811: 9,-60 - node: angle: 4.71238898038469 rad color: '#00FFFFFF' @@ -2537,6 +2236,11 @@ entities: id: LoadingAreaGreyscale decals: 3903: -11,-70 + - node: + color: '#FFFFFFFF' + id: LoadingAreaGreyscale + decals: + 5071: -4,-28 - node: angle: 1.5707963267948966 rad color: '#00000019' @@ -2646,11 +2350,6 @@ entities: 3034: 17,-99 3035: 17,-100 3036: 17,-101 - - node: - color: '#EFDF3A8F' - id: MiniTileCheckerAOverlay - decals: - 3506: 7,-43 - node: color: '#FFFFFF3A' id: MiniTileCheckerAOverlay @@ -2668,11 +2367,6 @@ entities: id: MiniTileCheckerBOverlay decals: 3687: -8,-17 - - node: - color: '#D381C94E' - id: MiniTileCheckerBOverlay - decals: - 1353: -8,-29 - node: color: '#FFFFFFBF' id: MiniTileCheckerBOverlay @@ -2683,11 +2377,6 @@ entities: id: MiniTileCornerOverlayNE decals: 3183: -10,-16 - - node: - color: '#D381C926' - id: MiniTileCornerOverlayNW - decals: - 2224: -6,-23 - node: color: '#D381C928' id: MiniTileCornerOverlayNW @@ -2698,11 +2387,6 @@ entities: id: MiniTileCornerOverlaySE decals: 3186: -10,-17 - - node: - color: '#D381C926' - id: MiniTileCornerOverlaySW - decals: - 2228: -6,-20 - node: color: '#D381C928' id: MiniTileCornerOverlaySW @@ -2712,23 +2396,8 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 135: -53,-45 - 161: -33,-38 - 162: -33,-56 200: 29,-73 223: 40,-76 - 638: 26,-50 - 639: 27,-51 - 640: 28,-52 - 646: 21,-56 - 647: 22,-57 - 761: 35,-54 - 764: 37,-54 - 1246: -30,-36 - 1247: -31,-35 - 1263: -30,-54 - 1264: -31,-53 - 1296: -32,-50 4177: 34,-28 4201: 42,-50 4602: 33,-75 @@ -2736,44 +2405,13 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: - 160: -31,-38 - 163: -31,-56 - 623: 20,-52 - 624: 21,-51 - 625: 22,-50 - 626: 26,-57 - 627: 27,-56 - 763: 36,-54 - 767: 40,-53 - 1250: -34,-36 - 1251: -33,-35 - 1258: -33,-53 - 1260: -34,-54 - 1285: -40,-42 4174: 28,-28 4601: 35,-76 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: - 136: -53,-47 - 158: -33,-36 - 164: -33,-54 224: 40,-77 - 628: 26,-58 - 629: 27,-57 - 630: 28,-56 - 631: 21,-52 - 632: 22,-51 - 762: 36,-55 - 766: 40,-55 - 768: 42,-53 - 1248: -30,-38 - 1249: -31,-39 - 1261: -31,-57 - 1262: -30,-56 - 1270: -32,-42 - 3726: -32,-59 4176: 34,-30 - node: color: '#C8C8FFFF' @@ -2784,36 +2422,19 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 159: -31,-36 - 165: -31,-54 195: 28,-76 196: 29,-77 - 633: 20,-56 - 634: 21,-57 - 635: 22,-58 - 636: 26,-51 - 637: 27,-52 - 765: 37,-55 - 769: 35,-55 - 1244: -33,-39 - 1245: -34,-38 - 1257: -34,-56 - 1259: -33,-57 4175: 28,-30 4202: 41,-50 - 4868: -40,-50 - node: color: '#FFFFFFFF' id: MiniTileDarkEndN decals: - 157: -31,-21 - 3867: -35,-58 4205: 41,-49 - node: color: '#FFFFFFFF' id: MiniTileDarkEndS decals: - 156: -31,-22 4961: 37,-78 - node: color: '#FFFFFFFF' @@ -2825,78 +2446,22 @@ entities: id: MiniTileDarkInnerNe decals: 201: 29,-75 - 641: 27,-52 - 642: 26,-51 - 643: 21,-57 - 644: 20,-56 - 645: 22,-58 - 784: 37,-55 - 787: 35,-55 - 1164: -33,-57 - 1167: -34,-56 - 1174: -33,-39 - 1175: -34,-38 - 1256: -31,-36 - 1265: -31,-54 2761: 22,-77 - 2773: 7,-66 - 2784: -31,-52 - 2840: -23,-55 - 3868: -35,-59 4191: 34,-29 - 4198: 44,-39 4204: 41,-50 4607: 33,-77 - 4879: -40,-50 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: 141: -50,-47 - 685: 21,-52 - 686: 22,-51 - 687: 27,-57 - 688: 28,-56 - 689: 26,-58 - 780: 40,-55 - 786: 36,-55 - 788: 42,-53 - 1170: -31,-57 - 1171: -30,-56 - 1172: -31,-39 - 1173: -30,-38 - 1255: -33,-36 - 1266: -33,-54 - 1308: -32,-42 - 2762: 26,-77 2763: 16,-77 - 2774: 10,-66 - 2839: -20,-55 - 3729: -32,-59 4518: 7,-56 4606: 35,-77 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: - 680: 20,-52 - 681: 21,-51 - 682: 22,-50 - 683: 26,-57 - 684: 27,-56 - 783: 36,-54 - 785: 40,-53 - 1168: -34,-54 - 1169: -33,-53 - 1176: -34,-36 - 1177: -33,-35 - 1254: -31,-38 - 1267: -31,-56 - 1309: -40,-42 - 2770: 12,-75 - 2783: -31,-40 - 2841: -23,-53 - 3728: -34,-59 4190: 34,-29 4517: 5,-52 4960: 37,-77 @@ -2907,91 +2472,20 @@ entities: 140: -50,-45 198: 28,-75 199: 29,-76 - 690: 22,-57 - 691: 21,-56 - 692: 26,-50 - 693: 27,-51 - 694: 28,-52 - 781: 35,-54 - 782: 37,-54 - 1165: -31,-53 - 1166: -30,-54 - 1178: -31,-35 - 1179: -30,-36 - 1253: -33,-38 - 1268: -33,-56 - 1297: -32,-50 - 2842: -20,-53 4203: 42,-50 4959: 37,-77 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 122: -12,-12 - 123: -12,-13 - 124: -12,-14 - 125: -18,-14 - 126: -18,-13 - 127: -18,-12 151: -31,-24 152: -31,-25 202: 29,-74 - 672: 28,-55 - 673: 28,-53 - 674: 24,-49 - 675: 24,-48 - 676: 24,-59 - 677: 24,-60 - 678: 20,-55 - 679: 20,-53 - 779: 40,-54 791: 42,-52 792: 42,-51 - 1154: -32,-53 - 1155: -32,-52 - 1156: -32,-57 - 1157: -32,-58 - 1182: -32,-39 - 1183: -32,-40 - 1184: -32,-35 - 1185: -32,-34 - 1252: -30,-37 - 1269: -30,-55 - 1306: -40,-49 - 1307: -40,-43 - 2699: 5,-37 - 2700: 5,-36 - 2701: 5,-35 - 2717: 21,-37 - 2718: 21,-36 - 2719: 21,-35 - 2729: -11,-14 - 2730: -11,-13 - 2731: -11,-12 - 2744: 5,-53 - 2745: 5,-54 - 2746: 5,-55 - 2752: 30,-55 - 2753: 30,-53 - 2811: -28,-36 - 2812: -28,-37 - 2813: -28,-38 - 2826: -17,-40 - 2827: -17,-39 - 2843: 14,-14 - 2844: 14,-13 - 2863: 25,-45 - 2864: 25,-44 3681: -8,-18 - 4194: 44,-37 - 4195: 44,-38 - 4421: 32,-23 - 4422: 32,-24 - 4423: 32,-25 4603: 33,-76 4635: 66,-48 - 4771: -17,-38 - node: color: '#C8C8FFFF' id: MiniTileDarkLineN @@ -3001,15 +2495,6 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 113: 23,-73 - 114: 24,-73 - 115: 25,-73 - 131: -55,-45 - 132: -54,-45 - 142: -51,-47 - 143: -52,-47 - 190: 14,-53 - 191: 15,-53 192: 27,-73 193: 28,-73 203: 30,-75 @@ -3020,101 +2505,18 @@ entities: 220: 37,-76 221: 38,-76 222: 39,-76 - 656: 23,-58 - 657: 25,-58 - 658: 25,-50 - 659: 23,-50 - 660: 19,-54 - 661: 18,-54 - 662: 29,-54 - 663: 30,-54 - 772: 38,-55 - 773: 39,-55 - 774: 33,-54 - 775: 34,-54 - 778: 41,-53 - 800: 32,-54 - 1160: -34,-55 - 1161: -35,-55 - 1188: -34,-37 - 1189: -35,-37 - 1190: -36,-37 - 1278: -33,-42 1279: -34,-42 - 1280: -35,-42 - 1281: -36,-42 - 1282: -37,-42 - 1283: -38,-42 - 1284: -39,-42 - 1298: -33,-50 - 1299: -34,-50 - 2213: 26,-54 - 2214: 27,-54 2541: -21,-34 2542: -20,-34 2543: -19,-34 - 2705: 3,-40 - 2706: 4,-40 - 2707: 5,-40 - 2714: 23,-40 - 2715: 24,-40 - 2716: 25,-40 - 2723: -2,-29 - 2724: -1,-29 - 2725: 0,-29 - 2737: -30,-21 - 2738: -29,-21 - 2739: -28,-21 - 2740: 4,-47 - 2741: 5,-47 - 2754: 25,-48 - 2755: 23,-48 - 2758: 23,-77 - 2759: 24,-77 - 2760: 25,-77 - 2764: 15,-77 - 2765: 14,-77 - 2766: 13,-77 - 2771: 8,-66 - 2772: 9,-66 - 2777: -30,-52 - 2778: -29,-52 - 2779: -28,-52 - 2814: -30,-32 - 2815: -29,-32 - 2816: -28,-32 - 2829: -15,-45 - 2830: -14,-45 - 2831: -13,-45 - 2837: -22,-55 - 2838: -21,-55 - 2867: 28,-49 - 2868: 29,-49 - 2955: 34,-38 - 3724: -34,-59 - 3725: -33,-59 - 3730: -35,-61 - 3731: -34,-61 4178: 29,-28 4179: 30,-28 4180: 31,-28 4181: 32,-28 4182: 33,-28 4193: 35,-29 - 4200: 45,-39 - 4353: 23,-28 - 4354: 24,-28 - 4355: 25,-28 4383: 35,-18 - 4590: 25,-18 - 4591: 26,-18 - 4592: 27,-18 4604: 34,-77 - 4869: -39,-50 - 4870: -38,-50 - 4871: -37,-50 - 4872: -36,-50 - 4873: -35,-50 - node: color: '#C8C8FFFF' id: MiniTileDarkLineS @@ -3125,10 +2527,6 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 133: -55,-47 - 134: -54,-47 - 137: -52,-45 - 138: -51,-45 194: 27,-75 197: 30,-77 205: 31,-77 @@ -3136,97 +2534,20 @@ entities: 207: 33,-77 210: 36,-77 213: 39,-77 - 617: 23,-30 - 618: 24,-30 - 648: 23,-58 - 649: 25,-58 - 650: 25,-50 - 651: 23,-50 - 652: 19,-54 - 653: 18,-54 - 654: 29,-54 - 655: 30,-54 - 759: 33,-54 - 760: 34,-54 - 770: 38,-55 - 771: 39,-55 - 777: 41,-53 - 798: 32,-54 - 1162: -34,-55 - 1163: -35,-55 - 1191: -34,-37 - 1192: -35,-37 - 1193: -36,-37 - 1271: -33,-42 1272: -34,-42 - 1273: -35,-42 - 1274: -36,-42 - 1275: -37,-42 - 1276: -38,-42 - 1277: -39,-42 - 1294: -34,-50 - 1295: -33,-50 - 1599: -23,-19 - 1600: -22,-19 - 2211: 27,-54 - 2212: 26,-54 2538: -21,-32 2539: -20,-32 2540: -19,-32 - 2708: 3,-38 - 2709: 4,-38 - 2710: 5,-38 - 2711: 23,-38 - 2712: 24,-38 - 2713: 25,-38 - 2726: -2,-27 - 2727: -1,-27 - 2728: 0,-27 - 2734: -30,-19 - 2735: -29,-19 - 2736: -28,-19 - 2742: 5,-45 - 2743: 4,-45 - 2756: 23,-60 - 2757: 25,-60 - 2767: 15,-75 - 2768: 14,-75 - 2769: 13,-75 - 2775: 8,-64 - 2776: 9,-64 - 2780: -30,-40 - 2781: -29,-40 - 2782: -28,-40 - 2817: -30,-30 - 2818: -29,-30 - 2819: -28,-30 - 2832: -15,-43 - 2833: -14,-43 - 2834: -13,-43 - 2835: -21,-53 - 2836: -22,-53 - 2923: -30,-33 - 2924: -28,-33 - 2959: 25,-30 2960: 26,-30 - 3727: -33,-59 4183: 29,-30 4184: 30,-30 4185: 31,-30 4186: 32,-30 4187: 33,-30 4192: 35,-29 - 4587: 25,-16 - 4588: 26,-16 - 4589: 27,-16 4600: 35,-77 4605: 34,-77 4636: 72,-45 - 4874: -35,-50 - 4875: -36,-50 - 4876: -37,-50 - 4877: -38,-50 - 4878: -39,-50 4958: 38,-77 - node: color: '#C8C8FFFF' @@ -3238,83 +2559,18 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 119: -14,-14 - 120: -14,-13 - 121: -14,-12 - 128: -19,-12 - 129: -19,-13 - 130: -19,-14 - 139: -50,-46 149: -31,-24 150: -31,-25 - 664: 24,-59 - 665: 24,-60 - 666: 24,-49 - 667: 24,-48 - 668: 20,-53 - 669: 20,-55 - 670: 28,-55 - 671: 28,-53 - 776: 40,-54 789: 42,-52 790: 42,-51 - 1151: -30,-55 - 1152: -32,-53 - 1153: -32,-52 - 1158: -32,-58 - 1159: -32,-57 - 1180: -32,-39 - 1181: -32,-40 - 1186: -32,-35 - 1187: -32,-34 - 1194: -30,-37 - 1286: -40,-43 - 1287: -40,-49 - 2702: 7,-37 - 2703: 7,-36 - 2704: 7,-35 - 2720: 23,-37 - 2721: 23,-36 - 2722: 23,-35 - 2747: 7,-55 - 2748: 7,-54 - 2749: 7,-53 - 2750: 18,-53 - 2751: 18,-55 - 2820: -15,-38 - 2821: -15,-39 - 2822: -15,-40 - 2823: -26,-38 - 2824: -26,-37 - 2825: -26,-36 - 2845: 16,-14 - 2846: 16,-13 - 2847: 16,-12 - 2865: 27,-45 - 2866: 27,-44 - 2878: -9,-14 - 2879: -9,-13 - 2880: -9,-12 - 2921: -27,-56 - 2922: -27,-58 3682: -7,-18 - 3866: -35,-59 4188: 28,-29 - 4424: 34,-23 - 4425: 34,-24 - 4426: 34,-25 - node: color: '#00000054' id: MiniTileDiagonalCheckerAOverlay decals: 1376: -20,-36 1377: -20,-35 - - node: - color: '#00000056' - id: MiniTileDiagonalCheckerAOverlay - decals: - 3709: -20,-38 - 3716: -20,-28 - node: color: '#0000006C' id: MiniTileDiagonalCheckerAOverlay @@ -3330,12 +2586,6 @@ entities: id: MiniTileEndOverlayW decals: 3677: -8,-18 - - node: - color: '#334E6DC8' - id: MiniTileInnerOverlayNE - decals: - 4906: -35,-50 - 4907: -35,-42 - node: color: '#52B4E996' id: MiniTileInnerOverlayNE @@ -3401,11 +2651,6 @@ entities: 552: -1,1 553: 6,1 582: 4,-7 - - node: - color: '#D381C926' - id: MiniTileInnerOverlayNW - decals: - 2230: -4,-23 - node: color: '#D381C933' id: MiniTileInnerOverlayNW @@ -3416,12 +2661,6 @@ entities: id: MiniTileInnerOverlayNW decals: 1875: 55,-20 - - node: - color: '#334E6DC8' - id: MiniTileInnerOverlaySE - decals: - 4905: -35,-50 - 4908: -35,-42 - node: color: '#52B4E996' id: MiniTileInnerOverlaySE @@ -3456,7 +2695,6 @@ entities: id: MiniTileInnerOverlaySE decals: 1121: -28,-65 - 1150: -18,-57 - node: color: '#FF800066' id: MiniTileInnerOverlaySE @@ -3489,11 +2727,6 @@ entities: id: MiniTileInnerOverlaySW decals: 3816: 14,-85 - - node: - color: '#D381C926' - id: MiniTileInnerOverlaySW - decals: - 2231: -4,-20 - node: color: '#D381C933' id: MiniTileInnerOverlaySW @@ -3503,13 +2736,12 @@ entities: color: '#DE3A3A96' id: MiniTileInnerOverlaySW decals: - 4658: 56,-39 + 5188: 56,-39 - node: color: '#EFB34196' id: MiniTileInnerOverlaySW decals: 1122: -26,-65 - 1149: -14,-57 - node: color: '#FF940093' id: MiniTileInnerOverlaySW @@ -3523,11 +2755,6 @@ entities: id: MiniTileLineOverlayE decals: 1598: 7,-17 - - node: - color: '#9FED5896' - id: MiniTileLineOverlayE - decals: - 1444: 29,-51 - node: color: '#DE3A3A96' id: MiniTileLineOverlayE @@ -3557,45 +2784,23 @@ entities: decals: 255: 22,-92 256: 26,-92 - - node: - color: '#334E6DC8' - id: MiniTileLineOverlayN - decals: - 4884: -34,-45 - 4885: -35,-45 - 4886: -36,-45 - 4887: -37,-45 - node: color: '#43995C96' id: MiniTileLineOverlayN decals: 4384: 35,-18 - - node: - color: '#52B4E996' - id: MiniTileLineOverlayN - decals: - 3626: 14,-35 - 3627: 15,-35 - 3628: 16,-35 - node: color: '#9FED5896' id: MiniTileLineOverlayN decals: 1442: -27,-12 3399: 66,-24 - 3411: 4,-35 - 4209: 52,-24 - node: color: '#D10000A3' id: MiniTileLineOverlayN decals: 257: 19,-92 258: 28,-92 - - node: - color: '#D381C926' - id: MiniTileLineOverlayN - decals: - 2225: -5,-23 - node: color: '#DE3A3A96' id: MiniTileLineOverlayN @@ -3609,15 +2814,6 @@ entities: 3710: -21,-32 3711: -20,-32 3712: -19,-32 - - node: - color: '#334E6DC8' - id: MiniTileLineOverlayS - decals: - 3809: 11,-55 - 4880: -35,-47 - 4881: -36,-47 - 4882: -37,-47 - 4883: -34,-47 - node: color: '#3C44AA33' id: MiniTileLineOverlayS @@ -3630,17 +2826,6 @@ entities: 3615: 14,-33 3616: 15,-33 3617: 16,-33 - - node: - color: '#9FED5896' - id: MiniTileLineOverlayS - decals: - 1446: 20,-80 - 1448: -1,-71 - - node: - color: '#D381C926' - id: MiniTileLineOverlayS - decals: - 2229: -5,-20 - node: color: '#DE3A3A96' id: MiniTileLineOverlayS @@ -3652,9 +2837,6 @@ entities: id: MiniTileLineOverlayS decals: 1120: -27,-65 - 1146: -17,-57 - 1147: -16,-57 - 1148: -15,-57 - node: color: '#3C44AA33' id: MiniTileLineOverlayW @@ -3666,18 +2848,7 @@ entities: color: '#9FED5896' id: MiniTileLineOverlayW decals: - 1440: -35,-57 - 1454: -15,-35 - 1912: 8,-71 4109: 17,-93 - 4586: 25,-20 - 4957: 23,-32 - - node: - color: '#D381C926' - id: MiniTileLineOverlayW - decals: - 2226: -4,-22 - 2227: -4,-21 - node: color: '#DE3A3A96' id: MiniTileLineOverlayW @@ -3716,7 +2887,6 @@ entities: decals: 297: 24,-94 1118: -28,-65 - 1145: -18,-57 1888: 46,-17 3814: 15,-85 4654: 54,-39 @@ -3726,18 +2896,15 @@ entities: id: MiniTileSteelInnerSw decals: 1117: -26,-65 - 1144: -14,-57 1887: 46,-17 2967: 19,-19 3041: 18,-98 3815: 14,-85 - 4653: 56,-39 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: 1114: -28,-66 - 1443: 29,-51 1597: 7,-17 1882: 46,-18 4342: 66,-40 @@ -3758,11 +2925,6 @@ entities: 1879: 47,-19 1880: 48,-19 3398: 66,-24 - 3410: 4,-35 - 3623: 14,-35 - 3624: 15,-35 - 3625: 16,-35 - 4208: 52,-24 4344: 71,-45 4347: 58,-32 4348: 59,-32 @@ -3775,11 +2937,6 @@ entities: id: MiniTileSteelLineS decals: 1116: -27,-65 - 1141: -17,-57 - 1142: -16,-57 - 1143: -15,-57 - 1445: 20,-80 - 1447: -1,-71 1719: 55,-15 1720: 54,-15 1725: 56,-15 @@ -3787,7 +2944,6 @@ entities: 2963: 17,-19 2964: 18,-19 3040: 17,-98 - 3807: 11,-55 4351: 55,-35 4352: 52,-35 4620: 65,-49 @@ -3796,8 +2952,6 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1439: -35,-57 - 1453: -15,-35 1722: 53,-14 1881: 46,-18 2965: 19,-20 @@ -3807,145 +2961,34 @@ entities: 3039: 18,-99 4108: 17,-93 4346: 61,-37 - 4585: 25,-20 4650: 56,-40 - 4956: 23,-32 - - node: - color: '#1488C2FF' - id: MiniTileWhiteInnerNe - decals: - 606: 16,-67 - - node: - color: '#41920FFF' - id: MiniTileWhiteInnerNe - decals: - 598: -1,-54 - - node: - color: '#48AC56FF' - id: MiniTileWhiteInnerNe - decals: - 613: 14,-67 - - node: - color: '#1488C2FF' - id: MiniTileWhiteInnerNw - decals: - 607: 18,-67 - - node: - color: '#41920FFF' - id: MiniTileWhiteInnerNw - decals: - 599: 1,-54 - - node: - color: '#48AC56FF' - id: MiniTileWhiteInnerNw - decals: - 614: 16,-67 - - node: - color: '#41920FFF' - id: MiniTileWhiteInnerSe - decals: - 600: -1,-52 - node: color: '#48AC56FF' id: MiniTileWhiteInnerSe decals: 4834: 38,-47 - - node: - color: '#DE8000FF' - id: MiniTileWhiteInnerSe - decals: - 593: -1,-57 - node: color: '#48AC56FF' id: MiniTileWhiteInnerSw decals: 4833: 40,-47 - - node: - color: '#DE8000FF' - id: MiniTileWhiteInnerSw - decals: - 592: 1,-57 - - node: - color: '#1488C2FF' - id: MiniTileWhiteLineE - decals: - 603: 16,-66 - - node: - color: '#41920FFF' - id: MiniTileWhiteLineE - decals: - 595: -1,-53 - - node: - color: '#48AC56FF' - id: MiniTileWhiteLineE - decals: - 610: 14,-66 - - node: - color: '#DE8000FF' - id: MiniTileWhiteLineE - decals: - 590: -1,-58 - - node: - color: '#1488C2FF' - id: MiniTileWhiteLineN - decals: - 604: 17,-67 - - node: - color: '#41920FFF' - id: MiniTileWhiteLineN - decals: - 596: 0,-54 - - node: - color: '#48AC56FF' - id: MiniTileWhiteLineN - decals: - 612: 15,-67 - node: color: '#48AC56FF' id: MiniTileWhiteLineS decals: 4832: 39,-47 - - node: - color: '#DE8000FF' - id: MiniTileWhiteLineS - decals: - 589: 0,-57 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 144: 9,-42 - 145: 10,-42 - 146: 11,-42 3609: 14,-33 3610: 15,-33 3611: 16,-33 - - node: - color: '#1488C2FF' - id: MiniTileWhiteLineW - decals: - 605: 18,-66 - - node: - color: '#41920FFF' - id: MiniTileWhiteLineW - decals: - 597: 1,-53 - node: color: '#48AC56FF' id: MiniTileWhiteLineW decals: - 611: 16,-66 4831: 40,-48 - - node: - color: '#DE8000FF' - id: MiniTileWhiteLineW - decals: - 591: 1,-58 - - node: - color: '#334E6DC8' - id: MonoOverlay - decals: - 4894: -34,-43 - node: color: '#D381C971' id: MonoOverlay @@ -3992,13 +3035,12 @@ entities: 1100: -26,-62 1101: -27,-62 - node: - color: '#FED83D94' + color: '#EFDB4196' id: QuarterTileOverlayGreyscale decals: - 51: -23,-51 - 52: -23,-52 - 53: -23,-53 - 54: -23,-50 + 5083: -23,-52 + 5084: -23,-51 + 5085: -23,-50 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -4021,11 +3063,6 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 4512: 19,-25 - - node: - color: '#00000067' - id: QuarterTileOverlayGreyscale270 - decals: - 2588: -23,-40 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -4082,13 +3119,12 @@ entities: 1104: -18,-64 1105: -17,-64 - node: - color: '#FED83D94' + color: '#EFDB4196' id: QuarterTileOverlayGreyscale90 decals: - 47: -20,-50 - 48: -20,-51 - 49: -20,-52 - 50: -20,-53 + 5086: -20,-52 + 5087: -20,-51 + 5088: -20,-50 - node: color: '#FFFFFFFF' id: Rock06 @@ -4109,11 +3145,67 @@ entities: 2424: 25,-81 4555: 59,-45 4556: 60,-45 + 5178: -39,-11 - node: - color: '#00000067' - id: ThreeQuarterTileOverlayGreyscale + color: '#D4D4D496' + id: StencilLetterA decals: - 2591: -26,-30 + 5162: -1,-11 + 5169: 4,-11 + 5174: -35,-13 + - node: + color: '#334E6DC8' + id: StencilLetterB + decals: + 5189: -33,-42 + 5190: -33,-50 + - node: + color: '#D4D4D496' + id: StencilLetterC + decals: + 5175: -34,-13 + - node: + color: '#D4D4D496' + id: StencilLetterE + decals: + 5172: -37,-13 + - node: + color: '#D4D4D496' + id: StencilLetterI + decals: + 5167: 2,-11 + - node: + color: '#D4D4D496' + id: StencilLetterL + decals: + 5170: 5,-11 + - node: + color: '#D4D4D496' + id: StencilLetterR + decals: + 5165: 0,-11 + 5166: 1,-11 + - node: + color: '#D4D4D496' + id: StencilLetterS + decals: + 5171: 6,-11 + - node: + color: '#D4D4D496' + id: StencilLetterV + decals: + 5168: 3,-11 + 5173: -36,-13 + - node: + color: '#334E6DC8' + id: StencilNumber1 + decals: + 5126: -32,-42 + - node: + color: '#334E6DC8' + id: StencilNumber2 + decals: + 5191: -32,-50 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale @@ -4126,11 +3218,6 @@ entities: decals: 4692: 58,-27 4720: 62,-33 - - node: - color: '#00000067' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2592: -17,-43 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -4143,12 +3230,6 @@ entities: decals: 4689: 60,-30 4722: 64,-36 - - node: - color: '#00000067' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2589: -23,-43 - 2590: -26,-40 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -4174,21 +3255,21 @@ entities: decals: 4691: 60,-27 4721: 64,-33 + - node: + color: '#43990996' + id: WarnBox + decals: + 5092: 0,-53 + 5093: 0,-53 - node: color: '#FFFFFFFF' id: WarnBox decals: 584: 17,-66 586: 0,-58 - 587: 0,-53 608: 15,-66 4356: 20,-26 4835: 39,-48 - - node: - color: '#41AC28FF' - id: WarnBoxGreyscale - decals: - 594: 0,-53 - node: color: '#48D256FF' id: WarnBoxGreyscale @@ -4210,11 +3291,69 @@ entities: id: WarnBoxGreyscale decals: 588: 0,-58 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleNE + decals: + 5074: -4,-20 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleNE + decals: + 4997: 30,-25 + 5006: -7,-43 + 5062: -4,-25 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleNW + decals: + 4996: 27,-25 + 5007: -11,-43 + 5063: -6,-25 + - node: + color: '#D381C996' + id: WarnCornerGreyscaleSE + decals: + 5077: -4,-23 + 5080: -7,-26 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSE + decals: + 4995: 23,-25 + 5009: -7,-44 + 5066: -4,-27 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSW + decals: + 4985: -10,-50 + 5008: -11,-44 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: 1089: 6,-18 + 4968: 25,-53 + 5052: -4,-34 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 4969: 23,-53 + 5053: -11,-34 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 4967: 25,-55 + 5048: -4,-38 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 4966: 23,-55 + 5047: -11,-38 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNE @@ -4234,6 +3373,11 @@ entities: 3120: -8,-24 3123: -18,-24 3483: -16,-20 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 5069: -6,-27 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSE @@ -4322,6 +3466,11 @@ entities: id: WarnEndGreyscaleW decals: 4547: 58,-45 + - node: + color: '#FFFFFFFF' + id: WarnEndGreyscaleW + decals: + 5068: -7,-27 - node: color: '#FFFFFFFF' id: WarnEndW @@ -4385,12 +3534,27 @@ entities: 4764: 76,-44 4766: 82,-45 4767: 82,-47 + 4972: 25,-54 + 5049: -4,-37 + 5050: -4,-36 + 5051: -4,-35 + 5117: -35,-50 + 5118: -35,-49 + 5119: -35,-43 + 5120: -35,-42 - node: color: '#33A9E7FF' id: WarnLineGreyscaleE decals: 3820: 28,-61 3821: 28,-62 + - node: + color: '#D381C996' + id: WarnLineGreyscaleE + decals: + 5075: -4,-21 + 5076: -4,-22 + 5081: -7,-25 - node: color: '#D381C9FF' id: WarnLineGreyscaleE @@ -4409,13 +3573,20 @@ entities: 4699: 65,-35 4700: 65,-34 - node: - color: '#70FFB3FF' + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 5000: 23,-24 + 5001: 23,-23 + 5065: -4,-26 + - node: + color: '#D381C996' id: WarnLineGreyscaleN decals: - 39: -35,-47 - 40: -36,-47 - 41: -37,-47 - 42: -34,-47 + 5019: -9,-29 + 5020: -8,-29 + 5072: -6,-20 + 5073: -5,-20 - node: color: '#D381C9FF' id: WarnLineGreyscaleN @@ -4427,20 +3598,41 @@ entities: color: '#DE3A3AFF' id: WarnLineGreyscaleN decals: - 4119: 58,-22 - 4120: 59,-22 - 4121: 61,-22 4239: 51,-32 4551: 59,-45 4552: 60,-45 - node: - color: '#70FFB3FF' + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 4998: 29,-25 + 4999: 28,-25 + 5013: -10,-43 + 5014: -9,-43 + 5064: -5,-25 + 5114: -37,-45 + 5115: -36,-45 + 5116: -35,-45 + 5140: -43,-41 + 5141: -42,-41 + 5142: -41,-41 + 5143: -40,-41 + 5144: -39,-41 + - node: + color: '#52B4E996' id: WarnLineGreyscaleS decals: - 36: -37,-45 - 37: -36,-45 - 38: -35,-45 - 43: -34,-45 + 5004: 28,-25 + 5005: 29,-25 + - node: + color: '#D381C996' + id: WarnLineGreyscaleS + decals: + 5078: -5,-23 + 5079: -6,-23 + 5131: 8,-74 + 5132: 9,-74 + 5133: 10,-74 - node: color: '#D381C9FF' id: WarnLineGreyscaleS @@ -4470,15 +3662,40 @@ entities: 1640: 54,-21 1641: 55,-21 1642: 56,-21 - 4122: 58,-22 - 4123: 59,-22 - 4124: 61,-22 4542: 61,-44 4543: 60,-44 4544: 59,-44 4545: 58,-44 4549: 59,-45 4550: 60,-45 + - node: + color: '#FFDB41FF' + id: WarnLineGreyscaleS + decals: + 4991: -26,-59 + 4992: -27,-59 + 4993: -25,-59 + 4994: -24,-59 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 4983: -8,-50 + 4984: -9,-50 + 5010: -9,-44 + 5011: -8,-44 + 5012: -10,-44 + 5061: -5,-27 + 5067: -6,-27 + 5109: -37,-47 + 5112: -35,-47 + 5113: -36,-47 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 5002: 23,-24 + 5003: 23,-23 - node: color: '#D381C9FF' id: WarnLineGreyscaleW @@ -4490,6 +3707,18 @@ entities: id: WarnLineGreyscaleW decals: 4541: 62,-45 + - node: + color: '#FA750096' + id: WarnLineGreyscaleW + decals: + 5134: 23,-69 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 4986: -10,-49 + 4987: -10,-48 + 5060: -6,-26 - node: color: '#FFFFFFFF' id: WarnLineN @@ -4542,9 +3771,6 @@ entities: 3912: -19,-71 3913: -18,-71 4096: 46,-68 - 4112: 59,-22 - 4113: 58,-22 - 4114: 61,-22 4172: 74,-61 4173: 75,-61 4514: 20,-25 @@ -4554,6 +3780,13 @@ entities: 4535: 60,-44 4536: 59,-44 4537: 58,-44 + 4971: 24,-55 + 5033: -10,-38 + 5034: -9,-38 + 5035: -8,-38 + 5036: -7,-38 + 5037: -6,-38 + 5038: -5,-38 - node: color: '#FFFFFFFF' id: WarnLineS @@ -4569,13 +3802,19 @@ entities: 3089: -18,-23 3112: -8,-23 3160: -10,-36 - 3316: 58,-20 3901: -31,-71 3906: -13,-70 4093: 47,-69 4094: 47,-70 4095: 47,-71 4533: 62,-45 + 4973: 23,-54 + 5045: -11,-35 + 5046: -11,-37 + 5121: -30,-43 + 5122: -30,-42 + 5123: -30,-50 + 5124: -30,-49 - node: color: '#FFFFFFFF' id: WarnLineW @@ -4593,9 +3832,6 @@ entities: 3466: -17,-17 3467: -17,-20 4097: 46,-72 - 4110: 61,-22 - 4111: 59,-22 - 4115: 58,-22 4170: 75,-63 4171: 74,-63 4529: 59,-45 @@ -4603,6 +3839,13 @@ entities: 4806: 49,-98 4807: 50,-98 4808: 51,-98 + 4970: 24,-53 + 5039: -10,-34 + 5040: -9,-34 + 5041: -8,-34 + 5042: -7,-34 + 5043: -6,-34 + 5044: -5,-34 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -4932,7 +4175,9 @@ entities: -1,-5: 0: 65485 -4,-8: - 0: 58574 + 0: 58589 + -4,-9: + 0: 56797 -5,-8: 0: 7579 -4,-7: @@ -4945,8 +4190,6 @@ entities: 0: 65524 -5,-5: 0: 56799 - -4,-9: - 0: 61166 -3,-8: 0: 47359 -3,-7: @@ -4970,7 +4213,7 @@ entities: -1,-6: 0: 56796 -1,-9: - 0: 65535 + 0: 65279 0,-8: 0: 22015 0,-7: @@ -5136,7 +4379,7 @@ entities: 6,-10: 0: 15291 6,-13: - 0: 65534 + 0: 65535 7,-12: 0: 65523 7,-11: @@ -5162,9 +4405,9 @@ entities: -5,-11: 0: 65520 -4,-10: - 0: 61439 + 0: 53247 -5,-10: - 0: 8191 + 0: 40959 -5,-9: 0: 48029 -4,-13: @@ -5174,7 +4417,7 @@ entities: -3,-11: 0: 61678 -3,-10: - 0: 65535 + 0: 65023 -3,-13: 0: 65262 -2,-12: @@ -5206,7 +4449,7 @@ entities: -8,-4: 0: 65533 -8,-9: - 0: 53246 + 0: 53247 -7,-8: 0: 7645 -7,-7: @@ -5254,9 +4497,9 @@ entities: -9,-11: 0: 16371 -8,-10: - 0: 52991 + 0: 61439 -9,-10: - 0: 32760 + 0: 65528 -9,-9: 0: 20207 -8,-12: @@ -5272,7 +4515,7 @@ entities: -6,-12: 0: 61422 -6,-10: - 0: 4095 + 0: 8191 -6,-11: 0: 61156 -5,-13: @@ -5280,7 +4523,7 @@ entities: -1,-16: 0: 4095 0,-16: - 0: 26208 + 0: 58976 0,-15: 0: 30479 -1,-15: @@ -5326,7 +4569,7 @@ entities: 5,-15: 0: 65512 5,-14: - 0: 64511 + 0: 65535 5,-17: 0: 35771 6,-16: @@ -5334,7 +4577,7 @@ entities: 6,-15: 0: 65523 6,-14: - 0: 65534 + 0: 65531 6,-17: 0: 46079 7,-16: @@ -5348,10 +4591,10 @@ entities: 0: 55551 8,-16: 0: 271 - 2: 17408 + 4: 17408 8,-15: 1: 4096 - 2: 4 + 4: 4 8,-14: 0: 32752 8,-13: @@ -5437,9 +4680,9 @@ entities: -9,-15: 0: 61158 -8,-14: - 0: 65230 + 0: 65519 -9,-14: - 0: 61038 + 0: 61166 -9,-13: 0: 65336 -7,-16: @@ -5502,10 +4745,10 @@ entities: 0: 65456 -10,-16: 0: 18020 + -10,-12: + 0: 49084 -9,-16: 0: 30583 - -10,-12: - 0: 49080 -9,-17: 0: 30707 -9,-12: @@ -5526,7 +4769,7 @@ entities: -13,-9: 0: 12 -11,-11: - 0: 65523 + 0: 65527 -11,-9: 0: 15 1: 65280 @@ -6045,8 +5288,8 @@ entities: 0: 65535 9,-16: 0: 15 - 3: 4352 - 4: 17408 + 5: 4352 + 2: 17408 10,-20: 0: 65280 10,-19: @@ -6057,8 +5300,8 @@ entities: 0: 65535 10,-16: 0: 15 - 4: 4352 - 5: 17408 + 2: 4352 + 6: 17408 11,-20: 0: 65024 11,-19: @@ -6070,7 +5313,7 @@ entities: 11,-16: 0: 15 1: 35840 - 4: 4352 + 2: 4352 12,-20: 0: 65280 12,-19: @@ -6103,7 +5346,7 @@ entities: 0: 61183 12,-16: 0: 3 - 4: 2184 + 2: 2184 1: 8960 13,-20: 0: 65024 @@ -6116,7 +5359,7 @@ entities: 13,-21: 1: 16179 13,-16: - 4: 819 + 2: 819 1: 8 14,-20: 0: 53504 @@ -6316,7 +5559,7 @@ entities: 0: 59392 11,-15: 1: 32904 - 4: 1 + 2: 1 12,-14: 0: 62926 11,-14: @@ -6437,12 +5680,12 @@ entities: 0: 60625 11,-10: 0: 34944 - 6: 13104 + 3: 13104 12,-9: 0: 56784 11,-9: 0: 65416 - 6: 2 + 3: 2 12,-8: 0: 57117 13,-11: @@ -6470,7 +5713,7 @@ entities: 16,-6: 0: 60967 15,-6: - 0: 64143 + 0: 64399 16,-5: 0: 1918 15,-5: @@ -6519,9 +5762,9 @@ entities: 11,-7: 0: 63590 12,-6: - 0: 65407 + 0: 65295 11,-6: - 0: 65535 + 0: 65295 12,-5: 0: 11775 11,-5: @@ -6529,9 +5772,9 @@ entities: 12,-4: 0: 4095 13,-7: - 0: 64952 + 0: 63928 13,-6: - 0: 65487 + 0: 65295 13,-5: 0: 65023 13,-4: @@ -6539,7 +5782,7 @@ entities: 14,-7: 0: 61919 14,-6: - 0: 57119 + 0: 57103 14,-5: 0: 57119 14,-4: @@ -6566,7 +5809,7 @@ entities: 10,-7: 0: 64461 10,-6: - 0: 53215 + 0: 53007 10,-5: 0: 63485 10,-9: @@ -6588,7 +5831,7 @@ entities: 10,-11: 0: 65535 10,-10: - 6: 65520 + 3: 65520 0: 4 10,-13: 0: 12276 @@ -6651,14 +5894,14 @@ entities: 11,-3: 1: 12288 9,-15: - 3: 1 - 4: 4 + 5: 1 + 2: 4 1: 32768 9,-14: 0: 36848 10,-15: - 4: 1 - 5: 4 + 2: 1 + 6: 4 10,-14: 0: 65520 -8,-24: @@ -6768,7 +6011,6 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 - 0 - 0 @@ -6780,50 +6022,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - 0 - volume: 2500 temperature: 235 @@ -6840,6 +6038,51 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -7051,6 +6294,8 @@ entities: - 19139 - 19838 - 19837 + - type: Fixtures + fixtures: {} - uid: 459 components: - type: Transform @@ -7068,6 +6313,8 @@ entities: - 19831 - 19832 - 19833 + - type: Fixtures + fixtures: {} - uid: 8767 components: - type: Transform @@ -7084,6 +6331,8 @@ entities: - 6667 - 13188 - 4984 + - type: Fixtures + fixtures: {} - uid: 8816 components: - type: Transform @@ -7099,6 +6348,8 @@ entities: - 4166 - 3444 - 3445 + - type: Fixtures + fixtures: {} - uid: 9115 components: - type: Transform @@ -7108,6 +6359,8 @@ entities: devices: - 6133 - 9819 + - type: Fixtures + fixtures: {} - uid: 14458 components: - type: Transform @@ -7133,6 +6386,8 @@ entities: - 9647 - 7459 - 1833 + - type: Fixtures + fixtures: {} - uid: 14460 components: - type: Transform @@ -7156,6 +6411,8 @@ entities: - 8775 - 19234 - 19235 + - type: Fixtures + fixtures: {} - uid: 14590 components: - type: Transform @@ -7174,6 +6431,8 @@ entities: - 7135 - 8640 - 18857 + - type: Fixtures + fixtures: {} - uid: 14592 components: - type: Transform @@ -7186,6 +6445,8 @@ entities: - 8872 - 16901 - 18857 + - type: Fixtures + fixtures: {} - uid: 14593 components: - type: Transform @@ -7200,6 +6461,8 @@ entities: - 14595 - 9428 - 14713 + - type: Fixtures + fixtures: {} - uid: 14636 components: - type: Transform @@ -7213,6 +6476,8 @@ entities: - 8665 - 15401 - 8712 + - type: Fixtures + fixtures: {} - uid: 14642 components: - type: Transform @@ -7231,6 +6496,8 @@ entities: - 1595 - 18775 - 3279 + - type: Fixtures + fixtures: {} - uid: 14682 components: - type: Transform @@ -7245,6 +6512,8 @@ entities: - 6977 - 6978 - 3659 + - type: Fixtures + fixtures: {} - uid: 14752 components: - type: Transform @@ -7258,6 +6527,8 @@ entities: - 8760 - 14754 - 18091 + - type: Fixtures + fixtures: {} - uid: 14757 components: - type: Transform @@ -7277,6 +6548,8 @@ entities: - 1698 - 18843 - 18844 + - type: Fixtures + fixtures: {} - uid: 14759 components: - type: Transform @@ -7288,6 +6561,8 @@ entities: - 19924 - 9080 - 12242 + - type: Fixtures + fixtures: {} - uid: 14778 components: - type: Transform @@ -7302,6 +6577,8 @@ entities: - 14547 - 14549 - 14545 + - type: Fixtures + fixtures: {} - uid: 16343 components: - type: Transform @@ -7312,6 +6589,8 @@ entities: devices: - 17517 - 17518 + - type: Fixtures + fixtures: {} - uid: 16344 components: - type: Transform @@ -7321,6 +6600,8 @@ entities: devices: - 17943 - 17926 + - type: Fixtures + fixtures: {} - uid: 16345 components: - type: Transform @@ -7331,6 +6612,8 @@ entities: devices: - 17695 - 17700 + - type: Fixtures + fixtures: {} - uid: 16346 components: - type: Transform @@ -7346,6 +6629,8 @@ entities: - 19907 - 17956 - 17957 + - type: Fixtures + fixtures: {} - uid: 16353 components: - type: Transform @@ -7356,6 +6641,8 @@ entities: devices: - 17908 - 17909 + - type: Fixtures + fixtures: {} - uid: 16354 components: - type: Transform @@ -7381,6 +6668,8 @@ entities: - 19907 - 17906 - 17997 + - type: Fixtures + fixtures: {} - uid: 16356 components: - type: Transform @@ -7397,6 +6686,8 @@ entities: - 17601 - 17516 - 17996 + - type: Fixtures + fixtures: {} - uid: 17282 components: - type: Transform @@ -7412,6 +6703,8 @@ entities: - 18547 - 2334 - 2406 + - type: Fixtures + fixtures: {} - uid: 17993 components: - type: Transform @@ -7422,6 +6715,8 @@ entities: devices: - 17992 - 17990 + - type: Fixtures + fixtures: {} - uid: 18013 components: - type: Transform @@ -7438,6 +6733,8 @@ entities: - 17153 - 18091 - 13567 + - type: Fixtures + fixtures: {} - uid: 18059 components: - type: Transform @@ -7456,6 +6753,8 @@ entities: - 7109 - 2155 - 4170 + - type: Fixtures + fixtures: {} - uid: 18493 components: - type: Transform @@ -7467,6 +6766,8 @@ entities: - 16173 - 13567 - 3659 + - type: Fixtures + fixtures: {} - uid: 18818 components: - type: Transform @@ -7475,18 +6776,6 @@ entities: parent: 2 - type: DeviceList devices: - - 11725 - - 11724 - - 11723 - - 7979 - - 11721 - - 11720 - - 11719 - - 11718 - - 11717 - - 11716 - - 11715 - - 11712 - 4169 - 8778 - 18055 @@ -7499,6 +6788,8 @@ entities: - 9082 - 9066 - 19872 + - type: Fixtures + fixtures: {} - uid: 19220 components: - type: Transform @@ -7508,6 +6799,8 @@ entities: devices: - 19267 - 8020 + - type: Fixtures + fixtures: {} - uid: 19835 components: - type: Transform @@ -7520,6 +6813,8 @@ entities: - 19834 - 8832 - 8831 + - type: Fixtures + fixtures: {} - uid: 19836 components: - type: Transform @@ -7533,6 +6828,8 @@ entities: - 14635 - 14634 - 10070 + - type: Fixtures + fixtures: {} - uid: 19905 components: - type: Transform @@ -7543,6 +6840,8 @@ entities: devices: - 17267 - 17265 + - type: Fixtures + fixtures: {} - uid: 19909 components: - type: Transform @@ -7557,6 +6856,8 @@ entities: - 19906 - 19912 - 3447 + - type: Fixtures + fixtures: {} - uid: 19911 components: - type: Transform @@ -7570,6 +6871,8 @@ entities: - 16247 - 17913 - 17911 + - type: Fixtures + fixtures: {} - proto: AirAlarmFreezer entities: - uid: 7344 @@ -7578,6 +6881,8 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: AirAlarmXeno entities: - uid: 469 @@ -7611,6 +6916,8 @@ entities: - 19825 - 19826 - 19827 + - type: Fixtures + fixtures: {} - uid: 569 components: - type: Transform @@ -7632,6 +6939,8 @@ entities: - 19893 - 19894 - 19895 + - type: Fixtures + fixtures: {} - uid: 572 components: - type: Transform @@ -7647,6 +6956,8 @@ entities: - 9613 - 6422 - 18812 + - type: Fixtures + fixtures: {} - uid: 579 components: - type: Transform @@ -7657,9 +6968,6 @@ entities: devices: - 14728 - 7109 - - 11725 - - 11724 - - 11723 - 9877 - 9383 - 16452 @@ -7667,6 +6975,8 @@ entities: - 19871 - 19870 - 8480 + - type: Fixtures + fixtures: {} - uid: 1075 components: - type: Transform @@ -7685,6 +6995,8 @@ entities: - 18797 - 8791 - 19204 + - type: Fixtures + fixtures: {} - uid: 1212 components: - type: Transform @@ -7702,6 +7014,8 @@ entities: - 4096 - 19820 - 19821 + - type: Fixtures + fixtures: {} - uid: 1751 components: - type: Transform @@ -7718,6 +7032,8 @@ entities: - 19841 - 19840 - 19839 + - type: Fixtures + fixtures: {} - uid: 1876 components: - type: Transform @@ -7739,6 +7055,8 @@ entities: - 8498 - 9715 - 2462 + - type: Fixtures + fixtures: {} - uid: 2110 components: - type: Transform @@ -7757,6 +7075,8 @@ entities: - 2462 - 19815 - 811 + - type: Fixtures + fixtures: {} - uid: 2197 components: - type: Transform @@ -7768,6 +7088,8 @@ entities: - 8683 - 18805 - 262 + - type: Fixtures + fixtures: {} - uid: 3424 components: - type: Transform @@ -7783,6 +7105,8 @@ entities: - 8548 - 8549 - 16872 + - type: Fixtures + fixtures: {} - uid: 3897 components: - type: Transform @@ -7814,6 +7138,8 @@ entities: - 8107 - 16242 - 19830 + - type: Fixtures + fixtures: {} - uid: 5107 components: - type: Transform @@ -7830,6 +7156,8 @@ entities: - 7956 - 10474 - 10473 + - type: Fixtures + fixtures: {} - uid: 5159 components: - type: Transform @@ -7838,6 +7166,8 @@ entities: - type: DeviceList devices: - 5168 + - type: Fixtures + fixtures: {} - uid: 5526 components: - type: Transform @@ -7853,6 +7183,8 @@ entities: - 9494 - 14797 - 19819 + - type: Fixtures + fixtures: {} - uid: 5862 components: - type: Transform @@ -7864,6 +7196,8 @@ entities: - 10342 - 10341 - 8758 + - type: Fixtures + fixtures: {} - uid: 6342 components: - type: Transform @@ -7875,6 +7209,8 @@ entities: - 14786 - 14785 - 8649 + - type: Fixtures + fixtures: {} - uid: 6347 components: - type: Transform @@ -7892,6 +7228,8 @@ entities: - 8439 - 8438 - 18862 + - type: Fixtures + fixtures: {} - uid: 6358 components: - type: Transform @@ -7905,6 +7243,8 @@ entities: - 3448 - 19873 - 19874 + - type: Fixtures + fixtures: {} - uid: 6406 components: - type: Transform @@ -7919,6 +7259,8 @@ entities: - 8433 - 8434 - 19885 + - type: Fixtures + fixtures: {} - uid: 6407 components: - type: Transform @@ -7932,6 +7274,8 @@ entities: - 8860 - 8859 - 8721 + - type: Fixtures + fixtures: {} - uid: 6410 components: - type: Transform @@ -7946,6 +7290,8 @@ entities: - 8493 - 8862 - 8863 + - type: Fixtures + fixtures: {} - uid: 6411 components: - type: Transform @@ -7965,6 +7311,8 @@ entities: - 19800 - 19801 - 8751 + - type: Fixtures + fixtures: {} - uid: 6413 components: - type: Transform @@ -7986,6 +7334,8 @@ entities: - 19805 - 19807 - 19808 + - type: Fixtures + fixtures: {} - uid: 6416 components: - type: Transform @@ -7997,6 +7347,8 @@ entities: - 8713 - 8714 - 8715 + - type: Fixtures + fixtures: {} - uid: 6646 components: - type: Transform @@ -8015,6 +7367,8 @@ entities: - 19797 - 19798 - 4002 + - type: Fixtures + fixtures: {} - uid: 7245 components: - type: Transform @@ -8025,6 +7379,8 @@ entities: devices: - 6701 - 9820 + - type: Fixtures + fixtures: {} - uid: 7310 components: - type: Transform @@ -8041,6 +7397,8 @@ entities: - 3081 - 18842 - 19920 + - type: Fixtures + fixtures: {} - uid: 7582 components: - type: Transform @@ -8053,6 +7411,8 @@ entities: - 18293 - 18312 - 6423 + - type: Fixtures + fixtures: {} - uid: 7875 components: - type: Transform @@ -8063,6 +7423,8 @@ entities: devices: - 9546 - 8705 + - type: Fixtures + fixtures: {} - uid: 8130 components: - type: Transform @@ -8072,6 +7434,8 @@ entities: - type: DeviceList devices: - 1112 + - type: Fixtures + fixtures: {} - uid: 9180 components: - type: Transform @@ -8093,6 +7457,8 @@ entities: - 5577 - 5575 - 5576 + - type: Fixtures + fixtures: {} - uid: 9190 components: - type: Transform @@ -8114,6 +7480,8 @@ entities: - 19812 - 19814 - 19813 + - type: Fixtures + fixtures: {} - uid: 9195 components: - type: Transform @@ -8133,6 +7501,8 @@ entities: - 10030 - 20047 - 20048 + - type: Fixtures + fixtures: {} - uid: 9198 components: - type: Transform @@ -8150,6 +7520,8 @@ entities: - 11336 - 18786 - 8605 + - type: Fixtures + fixtures: {} - uid: 9199 components: - type: Transform @@ -8166,6 +7538,8 @@ entities: - 19830 - 19829 - 19828 + - type: Fixtures + fixtures: {} - uid: 9216 components: - type: Transform @@ -8185,6 +7559,8 @@ entities: - 19892 - 19891 - 8759 + - type: Fixtures + fixtures: {} - uid: 9234 components: - type: Transform @@ -8206,6 +7582,8 @@ entities: - 15243 - 15173 - 14797 + - type: Fixtures + fixtures: {} - uid: 9235 components: - type: Transform @@ -8224,6 +7602,8 @@ entities: - 19877 - 19878 - 19879 + - type: Fixtures + fixtures: {} - uid: 9236 components: - type: Transform @@ -8250,6 +7630,8 @@ entities: - 8417 - 8424 - 8556 + - type: Fixtures + fixtures: {} - uid: 9239 components: - type: Transform @@ -8277,6 +7659,8 @@ entities: - 19894 - 19895 - 19899 + - type: Fixtures + fixtures: {} - uid: 9240 components: - type: Transform @@ -8296,6 +7680,8 @@ entities: - 19896 - 19897 - 19898 + - type: Fixtures + fixtures: {} - uid: 9241 components: - type: Transform @@ -8312,6 +7698,8 @@ entities: - 8790 - 19882 - 1800 + - type: Fixtures + fixtures: {} - uid: 9243 components: - type: Transform @@ -8331,6 +7719,8 @@ entities: - 7012 - 9833 - 7056 + - type: Fixtures + fixtures: {} - uid: 9248 components: - type: Transform @@ -8346,6 +7736,8 @@ entities: - 9410 - 10326 - 19920 + - type: Fixtures + fixtures: {} - uid: 9262 components: - type: Transform @@ -8364,6 +7756,8 @@ entities: - 8730 - 8479 - 8731 + - type: Fixtures + fixtures: {} - uid: 9403 components: - type: Transform @@ -8386,6 +7780,8 @@ entities: - 19886 - 19889 - 19890 + - type: Fixtures + fixtures: {} - uid: 10429 components: - type: Transform @@ -8395,6 +7791,8 @@ entities: devices: - 8622 - 9834 + - type: Fixtures + fixtures: {} - uid: 10761 components: - type: Transform @@ -8414,6 +7812,8 @@ entities: - 18399 - 18398 - 15636 + - type: Fixtures + fixtures: {} - uid: 10839 components: - type: Transform @@ -8433,6 +7833,8 @@ entities: - 3747 - 9311 - 7594 + - type: Fixtures + fixtures: {} - uid: 12980 components: - type: Transform @@ -8442,6 +7844,8 @@ entities: devices: - 10474 - 10473 + - type: Fixtures + fixtures: {} - uid: 15885 components: - type: Transform @@ -8463,6 +7867,8 @@ entities: - 14692 - 18794 - 18793 + - type: Fixtures + fixtures: {} - uid: 16120 components: - type: Transform @@ -8479,6 +7885,8 @@ entities: - 9963 - 8717 - 4002 + - type: Fixtures + fixtures: {} - uid: 16312 components: - type: Transform @@ -8499,6 +7907,8 @@ entities: - 16910 - 16911 - 17995 + - type: Fixtures + fixtures: {} - uid: 16342 components: - type: Transform @@ -8509,6 +7919,8 @@ entities: devices: - 10595 - 10279 + - type: Fixtures + fixtures: {} - uid: 16362 components: - type: Transform @@ -8526,6 +7938,8 @@ entities: - 18554 - 18525 - 18731 + - type: Fixtures + fixtures: {} - uid: 16363 components: - type: Transform @@ -8539,6 +7953,8 @@ entities: - 18726 - 18725 - 18735 + - type: Fixtures + fixtures: {} - uid: 16367 components: - type: Transform @@ -8567,6 +7983,8 @@ entities: - 15526 - 1104 - 18400 + - type: Fixtures + fixtures: {} - uid: 16603 components: - type: Transform @@ -8579,6 +7997,8 @@ entities: - 18762 - 8847 - 8849 + - type: Fixtures + fixtures: {} - uid: 17680 components: - type: Transform @@ -8595,6 +8015,8 @@ entities: - 19825 - 19892 - 19891 + - type: Fixtures + fixtures: {} - uid: 18736 components: - type: Transform @@ -8607,6 +8029,8 @@ entities: - 18731 - 18665 - 18666 + - type: Fixtures + fixtures: {} - uid: 18783 components: - type: Transform @@ -8617,6 +8041,8 @@ entities: devices: - 8762 - 813 + - type: Fixtures + fixtures: {} - uid: 18864 components: - type: Transform @@ -8631,6 +8057,8 @@ entities: - 8677 - 8678 - 262 + - type: Fixtures + fixtures: {} - uid: 19200 components: - type: Transform @@ -8650,12 +8078,16 @@ entities: - 8844 - 8792 - 8718 + - type: Fixtures + fixtures: {} - uid: 19312 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19400 components: - type: Transform @@ -8674,6 +8106,8 @@ entities: - 19822 - 19823 - 19824 + - type: Fixtures + fixtures: {} - uid: 19419 components: - type: Transform @@ -8687,6 +8121,8 @@ entities: - 18786 - 9596 - 11935 + - type: Fixtures + fixtures: {} - uid: 19853 components: - type: Transform @@ -8706,6 +8142,8 @@ entities: - 19847 - 8644 - 9840 + - type: Fixtures + fixtures: {} - uid: 19856 components: - type: Transform @@ -8719,18 +8157,11 @@ entities: - 8550 - 9383 - 9877 - - 7979 - - 11721 - - 11720 - - 11719 - - 11718 - - 11717 - - 11716 - - 11715 - - 11712 - 18681 - 18673 - 18828 + - type: Fixtures + fixtures: {} - uid: 19876 components: - type: Transform @@ -8743,6 +8174,8 @@ entities: - 8818 - 2646 - 8740 + - type: Fixtures + fixtures: {} - uid: 19880 components: - type: Transform @@ -8765,6 +8198,8 @@ entities: - 18789 - 18811 - 19882 + - type: Fixtures + fixtures: {} - uid: 19883 components: - type: Transform @@ -8774,6 +8209,8 @@ entities: devices: - 9247 - 582 + - type: Fixtures + fixtures: {} - uid: 19884 components: - type: Transform @@ -8783,6 +8220,8 @@ entities: devices: - 10371 - 10370 + - type: Fixtures + fixtures: {} - uid: 19916 components: - type: Transform @@ -8796,6 +8235,8 @@ entities: - 19915 - 18832 - 591 + - type: Fixtures + fixtures: {} - uid: 19917 components: - type: Transform @@ -8805,6 +8246,8 @@ entities: - type: DeviceList devices: - 19064 + - type: Fixtures + fixtures: {} - uid: 19922 components: - type: Transform @@ -8814,6 +8257,8 @@ entities: - type: DeviceList devices: - 19923 + - type: Fixtures + fixtures: {} - uid: 19961 components: - type: Transform @@ -8824,6 +8269,8 @@ entities: devices: - 9696 - 9699 + - type: Fixtures + fixtures: {} - uid: 19962 components: - type: Transform @@ -8834,6 +8281,8 @@ entities: devices: - 11944 - 10832 + - type: Fixtures + fixtures: {} - uid: 19963 components: - type: Transform @@ -8843,6 +8292,8 @@ entities: devices: - 9702 - 14581 + - type: Fixtures + fixtures: {} - uid: 19964 components: - type: Transform @@ -8853,6 +8304,8 @@ entities: devices: - 5830 - 9701 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 6560 @@ -9015,13 +8468,6 @@ entities: - type: Transform pos: 56.5,-29.5 parent: 2 -- proto: AirlockBrigLocked - entities: - - uid: 6126 - components: - - type: Transform - pos: 40.5,-22.5 - parent: 2 - proto: AirlockCaptainLocked entities: - uid: 1217 @@ -9064,6 +8510,18 @@ entities: - type: Transform pos: 16.5,-83.5 parent: 2 +- proto: AirlockChapelGlassLocked + entities: + - uid: 176 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 - proto: AirlockChapelLocked entities: - uid: 162 @@ -9071,18 +8529,6 @@ entities: - type: Transform pos: -21.5,-43.5 parent: 2 -- proto: AirlockChapelStandardGlassLocked - entities: - - uid: 161 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 2 - - uid: 248 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 2 - proto: AirlockChemistryGlassLocked entities: - uid: 173 @@ -9228,12 +8674,6 @@ entities: - type: Transform pos: -16.5,-62.5 parent: 2 - - uid: 4653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-53.5 - parent: 2 - proto: AirlockEngineeringLocked entities: - uid: 3 @@ -9913,6 +9353,11 @@ entities: parent: 2 - proto: AirlockGlassXeno entities: + - uid: 270 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 2 - uid: 327 components: - type: Transform @@ -9958,11 +9403,6 @@ entities: - type: Transform pos: -12.5,-43.5 parent: 2 - - uid: 931 - components: - - type: Transform - pos: 26.5,-44.5 - parent: 2 - uid: 932 components: - type: Transform @@ -10203,21 +9643,6 @@ entities: - type: Transform pos: 31.5,-54.5 parent: 2 - - uid: 3876 - components: - - type: Transform - pos: 29.5,-47.5 - parent: 2 - - uid: 4211 - components: - - type: Transform - pos: 28.5,-47.5 - parent: 2 - - uid: 4271 - components: - - type: Transform - pos: 26.5,-43.5 - parent: 2 - uid: 4584 components: - type: Transform @@ -10371,6 +9796,45 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-28.5 parent: 2 +- proto: AirlockHatch + entities: + - uid: 230 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-60.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-70.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: 28.5,-47.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 1491 @@ -10489,16 +9953,17 @@ entities: parent: 2 - proto: AirlockMaintHydroLocked entities: + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-58.5 + parent: 2 - uid: 998 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 1071 - components: - - type: Transform - pos: -4.5,-58.5 - parent: 2 - proto: AirlockMaintJanitorLocked entities: - uid: 1025 @@ -10601,7 +10066,7 @@ entities: pos: 11.5,-30.5 parent: 2 - type: Door - secondsUntilStateChange: -221892.55 + secondsUntilStateChange: -231715.92 state: Opening - type: DeviceLinkSource lastSignals: @@ -10948,6 +10413,12 @@ entities: - type: Transform pos: 34.5,-36.5 parent: 2 + - type: Door + secondsUntilStateChange: -7213.6187 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True - uid: 233 components: - type: Transform @@ -10978,11 +10449,6 @@ entities: - type: Transform pos: -48.5,-65.5 parent: 2 - - uid: 585 - components: - - type: Transform - pos: -3.5,-42.5 - parent: 2 - uid: 586 components: - type: Transform @@ -11003,11 +10469,6 @@ entities: - type: Transform pos: 4.5,-55.5 parent: 2 - - uid: 615 - components: - - type: Transform - pos: -8.5,-60.5 - parent: 2 - uid: 617 components: - type: Transform @@ -11053,11 +10514,6 @@ entities: - type: Transform pos: -1.5,-76.5 parent: 2 - - uid: 735 - components: - - type: Transform - pos: -7.5,-70.5 - parent: 2 - uid: 737 components: - type: Transform @@ -11262,16 +10718,6 @@ entities: rot: 3.141592653589793 rad pos: 72.5,-64.5 parent: 2 - - uid: 10742 - components: - - type: Transform - pos: 3.5,-59.5 - parent: 2 - - uid: 10786 - components: - - type: Transform - pos: 5.5,-59.5 - parent: 2 - uid: 10805 components: - type: Transform @@ -12096,6 +11542,14 @@ entities: - type: Transform pos: -18.5,-32.5 parent: 2 +- proto: AlwaysPoweredlightGreen + entities: + - uid: 5683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-56.5 + parent: 2 - proto: AmeController entities: - uid: 2283 @@ -12147,6 +11601,8 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 474 components: - type: MetaData @@ -12155,6 +11611,8 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3106 components: - type: MetaData @@ -12163,6 +11621,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3338 components: - type: MetaData @@ -12171,6 +11631,8 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3733 components: - type: MetaData @@ -12179,6 +11641,8 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4618 components: - type: MetaData @@ -12186,6 +11650,8 @@ entities: - type: Transform pos: 54.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4912 components: - type: MetaData @@ -12194,6 +11660,8 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5884 components: - type: MetaData @@ -12202,6 +11670,8 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7248 components: - type: MetaData @@ -12210,6 +11680,8 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8197 components: - type: MetaData @@ -12218,6 +11690,8 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9264 components: - type: MetaData @@ -12226,6 +11700,8 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9317 components: - type: MetaData @@ -12234,6 +11710,8 @@ entities: rot: 1.5707963267948966 rad pos: 77.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10475 components: - type: MetaData @@ -12241,6 +11719,8 @@ entities: - type: Transform pos: -5.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10482 components: - type: MetaData @@ -12248,6 +11728,8 @@ entities: - type: Transform pos: -18.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10484 components: - type: MetaData @@ -12255,6 +11737,8 @@ entities: - type: Transform pos: -57.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10486 components: - type: MetaData @@ -12263,6 +11747,8 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10487 components: - type: MetaData @@ -12271,6 +11757,8 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10488 components: - type: MetaData @@ -12279,6 +11767,8 @@ entities: rot: 1.5707963267948966 rad pos: -34.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10490 components: - type: MetaData @@ -12287,6 +11777,8 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10492 components: - type: MetaData @@ -12295,6 +11787,8 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10493 components: - type: MetaData @@ -12303,6 +11797,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10495 components: - type: MetaData @@ -12310,6 +11806,8 @@ entities: - type: Transform pos: 13.5,-91.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10496 components: - type: MetaData @@ -12318,6 +11816,8 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-95.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10497 components: - type: MetaData @@ -12326,6 +11826,8 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-97.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10501 components: - type: MetaData @@ -12334,6 +11836,8 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10502 components: - type: MetaData @@ -12341,6 +11845,8 @@ entities: - type: Transform pos: 43.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10504 components: - type: MetaData @@ -12348,6 +11854,8 @@ entities: - type: Transform pos: 13.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10505 components: - type: MetaData @@ -12355,6 +11863,8 @@ entities: - type: Transform pos: 13.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10506 components: - type: MetaData @@ -12362,6 +11872,8 @@ entities: - type: Transform pos: -7.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10507 components: - type: MetaData @@ -12369,6 +11881,8 @@ entities: - type: Transform pos: -19.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10509 components: - type: MetaData @@ -12377,6 +11891,8 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10512 components: - type: MetaData @@ -12385,6 +11901,8 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10518 components: - type: MetaData @@ -12392,6 +11910,8 @@ entities: - type: Transform pos: -50.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10584 components: - type: MetaData @@ -12400,6 +11920,8 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10614 components: - type: MetaData @@ -12407,6 +11929,8 @@ entities: - type: Transform pos: -6.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10838 components: - type: MetaData @@ -12414,6 +11938,8 @@ entities: - type: Transform pos: 95.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10918 components: - type: MetaData @@ -12421,6 +11947,8 @@ entities: - type: Transform pos: -37.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11011 components: - type: MetaData @@ -12429,6 +11957,8 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11213 components: - type: MetaData @@ -12437,6 +11967,8 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11214 components: - type: MetaData @@ -12444,6 +11976,8 @@ entities: - type: Transform pos: -31.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11362 components: - type: MetaData @@ -12451,6 +11985,8 @@ entities: - type: Transform pos: -12.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11432 components: - type: MetaData @@ -12459,6 +11995,8 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11637 components: - type: MetaData @@ -12467,6 +12005,8 @@ entities: rot: 3.141592653589793 rad pos: 65.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11638 components: - type: MetaData @@ -12475,6 +12015,8 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11956 components: - type: MetaData @@ -12482,6 +12024,8 @@ entities: - type: Transform pos: 9.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12036 components: - type: MetaData @@ -12490,6 +12034,8 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12164 components: - type: MetaData @@ -12498,6 +12044,8 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-91.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12869 components: - type: MetaData @@ -12505,6 +12053,8 @@ entities: - type: Transform pos: 28.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13030 components: - type: MetaData @@ -12513,6 +12063,8 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13649 components: - type: MetaData @@ -12521,6 +12073,8 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13857 components: - type: MetaData @@ -12529,6 +12083,8 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13911 components: - type: MetaData @@ -12536,6 +12092,8 @@ entities: - type: Transform pos: 62.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14739 components: - type: MetaData @@ -12543,6 +12101,8 @@ entities: - type: Transform pos: -17.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15031 components: - type: MetaData @@ -12551,6 +12111,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15107 components: - type: MetaData @@ -12559,6 +12121,8 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17057 components: - type: MetaData @@ -12567,6 +12131,8 @@ entities: rot: 3.141592653589793 rad pos: 50.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17484 components: - type: MetaData @@ -12575,6 +12141,8 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17745 components: - type: MetaData @@ -12582,6 +12150,8 @@ entities: - type: Transform pos: 14.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18694 components: - type: MetaData @@ -12590,6 +12160,8 @@ entities: rot: -1.5707963267948966 rad pos: 84.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19021 components: - type: MetaData @@ -12598,6 +12170,8 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19268 components: - type: MetaData @@ -12605,6 +12179,8 @@ entities: - type: Transform pos: -30.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19394 components: - type: MetaData @@ -12613,6 +12189,8 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19925 components: - type: MetaData @@ -12621,6 +12199,8 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHighCapacity entities: - uid: 1126 @@ -12630,6 +12210,8 @@ entities: - type: Transform pos: 31.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APECircuitboard entities: - uid: 9346 @@ -12651,12 +12233,16 @@ entities: - type: Transform pos: -1.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19445 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtifactAnalyzerMachineCircuitboard entities: - uid: 1801 @@ -13113,6 +12699,59 @@ entities: - type: Transform pos: 26.5,-79.5 parent: 2 +- proto: Barricade + entities: + - uid: 1674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-37.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-36.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-37.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-33.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-33.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-37.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: 22.5,-51.5 + parent: 2 + - uid: 14109 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 - proto: BarricadeBlock entities: - uid: 6277 @@ -13132,6 +12771,39 @@ entities: parent: 2 - proto: BarricadeDirectional entities: + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-42.5 + parent: 2 + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-40.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: 24.5,-50.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 2 - uid: 7258 components: - type: Transform @@ -13143,6 +12815,12 @@ entities: rot: 3.141592653589793 rad pos: 76.5,-41.5 parent: 2 + - uid: 8213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-56.5 + parent: 2 - uid: 13938 components: - type: Transform @@ -13150,17 +12828,23 @@ entities: parent: 2 - proto: BarSign entities: - - uid: 7070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-41.5 - parent: 2 - uid: 20080 components: - type: Transform pos: 60.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} +- proto: BarSignLV426 + entities: + - uid: 14055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: BaseChemistryEmptyVial entities: - uid: 10854 @@ -14063,13 +13747,6 @@ entities: - type: Transform pos: 5.560184,-22.212818 parent: 2 -- proto: BoxCandle - entities: - - uid: 5664 - components: - - type: Transform - pos: -25.412317,-29.355186 - parent: 2 - proto: BoxCartridgeCap entities: - uid: 17387 @@ -37969,6 +37646,96 @@ entities: - type: Transform pos: -10.5,-17.5 parent: 2 + - uid: 14162 + components: + - type: Transform + pos: 57.5,-22.5 + parent: 2 + - uid: 14163 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - uid: 14164 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + pos: 52.5,-22.5 + parent: 2 + - uid: 14168 + components: + - type: Transform + pos: 51.5,-22.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 + - uid: 14170 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: 48.5,-22.5 + parent: 2 + - uid: 14172 + components: + - type: Transform + pos: 47.5,-22.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 + - uid: 14180 + components: + - type: Transform + pos: 41.5,-22.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 - uid: 14234 components: - type: Transform @@ -38703,116 +38470,159 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,-21.5 parent: 2 -- proto: CandleGreen +- proto: CandlePurpleInfinite entities: - - uid: 19004 + - uid: 647 components: - type: Transform - pos: -20.960976,-37.37284 + rot: -1.5707963267948966 rad + pos: -21.847044,-29.3838 parent: 2 - - uid: 19006 + - uid: 795 components: - type: Transform - pos: -18.037804,-37.363953 + rot: -1.5707963267948966 rad + pos: -17.612669,-29.3838 parent: 2 - - uid: 19007 + - uid: 807 components: - type: Transform - pos: -18.860113,-37.363953 + rot: -1.5707963267948966 rad + pos: -21.550169,-35.461926 parent: 2 - - uid: 19009 + - uid: 820 components: - type: Transform - pos: -20.16005,-37.35431 + rot: -1.5707963267948966 rad + pos: -18.157604,-37.1988 parent: 2 -- proto: CandlePurple + - uid: 916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.581419,-35.60255 + parent: 2 + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.407604,-37.495674 + parent: 2 + - uid: 965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.376354,-37.245674 + parent: 2 + - uid: 1071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.626354,-37.495674 + parent: 2 + - uid: 1156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.542524,-33.32053 + parent: 2 + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.636274,-33.398655 + parent: 2 + - uid: 1163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.823774,-31.25803 + parent: 2 + - uid: 1165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.657604,-37.245674 + parent: 2 + - uid: 1166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.92323,-37.276924 + parent: 2 + - uid: 1230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.612669,-29.6963 + parent: 2 + - uid: 2340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.768919,-35.243176 + parent: 2 +- proto: CandlePurpleSmallInfinite entities: - - uid: 245 + - uid: 735 components: - type: Transform - pos: -18.208582,-33.34535 + rot: -1.5707963267948966 rad + pos: -21.878294,-29.649426 parent: 2 - - uid: 16002 + - uid: 789 components: - type: Transform - pos: -18.646082,-33.78315 + rot: -1.5707963267948966 rad + pos: -17.643919,-29.680676 parent: 2 - - uid: 18846 + - uid: 1113 components: - type: Transform - pos: -18.34701,-33.632214 + rot: -1.5707963267948966 rad + pos: -20.3394,-33.44553 parent: 2 - - uid: 19000 + - uid: 1153 components: - type: Transform - pos: -20.303846,-33.696445 + rot: -1.5707963267948966 rad + pos: -18.417524,-33.492405 parent: 2 - - uid: 19002 + - uid: 1155 components: - type: Transform - pos: -20.824678,-33.508816 + rot: -1.5707963267948966 rad + pos: -20.68315,-33.66428 parent: 2 - - uid: 19003 + - uid: 1167 components: - type: Transform - pos: -20.522596,-33.289913 + rot: -1.5707963267948966 rad + pos: -17.347044,-29.41505 parent: 2 - - uid: 19615 + - uid: 1694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.744207,-32.486958 + rot: -1.5707963267948966 rad + pos: -21.800169,-35.274426 parent: 2 - - uid: 19616 + - uid: 4701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.320597,-32.493908 + rot: -1.5707963267948966 rad + pos: -17.331419,-35.305676 parent: 2 - - uid: 19617 + - uid: 10798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.52893,-32.65374 + rot: -1.5707963267948966 rad + pos: -21.440794,-35.649426 parent: 2 -- proto: CandlePurpleSmall - entities: - - uid: 4411 + - uid: 11719 components: - type: Transform - pos: -20.781498,-31.281414 - parent: 2 - - uid: 18692 - components: - - type: Transform - pos: -20.564438,-31.177711 - parent: 2 - - uid: 18847 - components: - - type: Transform - pos: -20.864832,-31.531588 - parent: 2 - - uid: 18997 - components: - - type: Transform - pos: -20.605928,-33.769413 - parent: 2 - - uid: 19001 - components: - - type: Transform - pos: -20.189262,-33.27949 - parent: 2 -- proto: CandleRed - entities: - - uid: 19005 - components: - - type: Transform - pos: -18.447529,-37.35353 - parent: 2 - - uid: 19008 - components: - - type: Transform - pos: -20.555466,-37.371918 + rot: -1.5707963267948966 rad + pos: -20.30815,-31.75803 parent: 2 - proto: CarbonDioxideCanister entities: @@ -39025,6 +38835,31 @@ entities: - type: Transform pos: 54.5,-56.5 parent: 2 + - uid: 4669 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 2 - uid: 4752 components: - type: Transform @@ -39210,66 +39045,6 @@ entities: - type: Transform pos: 53.5,-55.5 parent: 2 - - uid: 5681 - components: - - type: Transform - pos: -20.5,-41.5 - parent: 2 - - uid: 5682 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 2 - - uid: 5683 - components: - - type: Transform - pos: -20.5,-39.5 - parent: 2 - - uid: 5684 - components: - - type: Transform - pos: -19.5,-41.5 - parent: 2 - - uid: 5685 - components: - - type: Transform - pos: -19.5,-40.5 - parent: 2 - - uid: 5686 - components: - - type: Transform - pos: -19.5,-39.5 - parent: 2 - - uid: 5687 - components: - - type: Transform - pos: -18.5,-41.5 - parent: 2 - - uid: 5688 - components: - - type: Transform - pos: -18.5,-40.5 - parent: 2 - - uid: 5689 - components: - - type: Transform - pos: -18.5,-39.5 - parent: 2 - - uid: 5690 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 2 - - uid: 5691 - components: - - type: Transform - pos: -17.5,-40.5 - parent: 2 - - uid: 5692 - components: - - type: Transform - pos: -17.5,-39.5 - parent: 2 - uid: 6223 components: - type: Transform @@ -39285,6 +39060,18 @@ entities: - type: Transform pos: 53.5,-57.5 parent: 2 + - uid: 8704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 2 + - uid: 10246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 2 - uid: 10431 components: - type: Transform @@ -40021,6 +39808,141 @@ entities: parent: 2 - proto: CartridgePistolSpent entities: + - uid: 184 + components: + - type: Transform + rot: 0.8726646259971648 rad + pos: 20.670906,-55.680134 + parent: 2 + - uid: 595 + components: + - type: Transform + rot: 0.5235987755982988 rad + pos: 22.124031,-56.91451 + parent: 2 + - uid: 1430 + components: + - type: Transform + rot: 0.17453292519943295 rad + pos: -11.63519,-33.256924 + parent: 2 + - uid: 1682 + components: + - type: Transform + rot: 0.17453292519943295 rad + pos: 21.061531,-56.492634 + parent: 2 + - uid: 1744 + components: + - type: Transform + rot: 0.2617993877991494 rad + pos: -11.343524,-33.058872 + parent: 2 + - uid: 2194 + components: + - type: Transform + rot: 5.585053606381854 rad + pos: -5.631365,-38.668835 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: -10.32269,-33.86151 + parent: 2 + - uid: 3395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.92824,-33.168835 + parent: 2 + - uid: 4664 + components: + - type: Transform + rot: 0.17453292519943295 rad + pos: 26.936531,-51.63326 + parent: 2 + - uid: 4891 + components: + - type: Transform + rot: 0.5235987755982988 rad + pos: -13.65984,-37.05946 + parent: 2 + - uid: 5084 + components: + - type: Transform + rot: 4.886921905584122 rad + pos: -8.521991,-39.200085 + parent: 2 + - uid: 5780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.146991,-34.200085 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: -2.7876148,-38.40321 + parent: 2 + - uid: 6108 + components: + - type: Transform + rot: 6.1086523819801535 rad + pos: -3.9751148,-39.200085 + parent: 2 + - uid: 6126 + components: + - type: Transform + rot: 0.2617993877991494 rad + pos: -2.5688648,-38.793835 + parent: 2 + - uid: 6260 + components: + - type: Transform + rot: 5.934119456780721 rad + pos: -5.131365,-39.450085 + parent: 2 + - uid: 7937 + components: + - type: Transform + rot: 0.5235987755982988 rad + pos: 21.827156,-56.492634 + parent: 2 + - uid: 8038 + components: + - type: Transform + rot: 6.1086523819801535 rad + pos: 27.514656,-51.13326 + parent: 2 + - uid: 8368 + components: + - type: Transform + rot: 5.934119456780721 rad + pos: 27.467781,-51.78951 + parent: 2 + - uid: 13985 + components: + - type: Transform + rot: 3.3161255787892263 rad + pos: -5.52199,-33.37196 + parent: 2 + - uid: 14059 + components: + - type: Transform + rot: 2.792526803190927 rad + pos: -6.443865,-32.46571 + parent: 2 + - uid: 14073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.256365,-33.106335 + parent: 2 + - uid: 14147 + components: + - type: Transform + pos: -4.7536306,-32.681576 + parent: 2 - uid: 16771 components: - type: Transform @@ -40328,6 +40250,12 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-25.5 parent: 2 + - uid: 1745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 2 - uid: 1856 components: - type: Transform @@ -40339,6 +40267,21 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-81.5 parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: -31.5,-48.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 - uid: 2930 components: - type: Transform @@ -40577,11 +40520,22 @@ entities: - type: Transform pos: 100.5,-37.5 parent: 2 + - uid: 4018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 2 - uid: 4193 components: - type: Transform pos: 51.5,-26.5 parent: 2 + - uid: 4393 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 - uid: 4642 components: - type: Transform @@ -40720,12 +40674,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-26.5 parent: 2 - - uid: 4835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-25.5 - parent: 2 - uid: 4836 components: - type: Transform @@ -40804,6 +40752,11 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-19.5 parent: 2 + - uid: 4932 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 - uid: 5255 components: - type: Transform @@ -40855,6 +40808,16 @@ entities: - type: Transform pos: -29.5,-70.5 parent: 2 + - uid: 5651 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 - uid: 5715 components: - type: Transform @@ -40925,12 +40888,29 @@ entities: - type: Transform pos: -22.5,-64.5 parent: 2 + - uid: 5826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 2 - uid: 5841 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-50.5 parent: 2 + - uid: 6149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + pos: 25.5,-53.5 + parent: 2 - uid: 6227 components: - type: Transform @@ -40949,6 +40929,17 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-25.5 parent: 2 + - uid: 6239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: 24.5,-53.5 + parent: 2 - uid: 6381 components: - type: Transform @@ -41335,6 +41326,12 @@ entities: - type: Transform pos: -29.5,-71.5 parent: 2 + - uid: 14021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 2 - uid: 14032 components: - type: Transform @@ -41477,12 +41474,6 @@ entities: - type: Transform pos: 68.5,-23.5 parent: 2 - - uid: 16148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-18.5 - parent: 2 - uid: 16164 components: - type: Transform @@ -41618,12 +41609,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-44.5 parent: 2 - - uid: 16769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-43.5 - parent: 2 - uid: 17174 components: - type: Transform @@ -41694,36 +41679,6 @@ entities: - type: Transform pos: 4.5,-59.5 parent: 2 - - uid: 17188 - components: - - type: Transform - pos: -9.5,-45.5 - parent: 2 - - uid: 17189 - components: - - type: Transform - pos: -8.5,-45.5 - parent: 2 - - uid: 17190 - components: - - type: Transform - pos: -7.5,-45.5 - parent: 2 - - uid: 17191 - components: - - type: Transform - pos: -6.5,-45.5 - parent: 2 - - uid: 17192 - components: - - type: Transform - pos: -5.5,-45.5 - parent: 2 - - uid: 17193 - components: - - type: Transform - pos: -4.5,-45.5 - parent: 2 - uid: 17194 components: - type: Transform @@ -41780,11 +41735,6 @@ entities: - type: Transform pos: -41.5,-35.5 parent: 2 - - uid: 17435 - components: - - type: Transform - pos: -37.5,-35.5 - parent: 2 - uid: 17513 components: - type: Transform @@ -41875,11 +41825,6 @@ entities: - type: Transform pos: 9.5,-6.5 parent: 2 - - uid: 18513 - components: - - type: Transform - pos: 30.5,-35.5 - parent: 2 - uid: 18718 components: - type: Transform @@ -42014,6 +41959,28 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-15.5 parent: 2 + - uid: 1719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-39.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-39.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: -31.5,-51.5 + parent: 2 - uid: 2921 components: - type: Transform @@ -42108,12 +42075,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-42.5 parent: 2 - - uid: 5826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-55.5 - parent: 2 - uid: 5850 components: - type: Transform @@ -42241,12 +42202,6 @@ entities: - type: Transform pos: 21.5,-81.5 parent: 2 - - uid: 19275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-56.5 - parent: 2 - uid: 19392 components: - type: Transform @@ -42416,23 +42371,12 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-20.5 parent: 2 - - uid: 7937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-23.5 - parent: 2 - uid: 8845 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-19.5 parent: 2 - - uid: 10302 - components: - - type: Transform - pos: 49.5,-20.5 - parent: 2 - uid: 19152 components: - type: Transform @@ -42890,11 +42834,11 @@ entities: parent: 2 - proto: ChurchOrganInstrument entities: - - uid: 5662 + - uid: 11365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-35.5 + rot: 3.141592653589793 rad + pos: -24.5,-31.5 parent: 2 - proto: Cigar entities: @@ -42912,6 +42856,11 @@ entities: parent: 2 - proto: CigaretteSpent entities: + - uid: 5063 + components: + - type: Transform + pos: -9.110725,-32.339916 + parent: 2 - uid: 19660 components: - type: Transform @@ -42954,23 +42903,15 @@ entities: - type: Transform pos: -9.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClockworkGrille entities: - - uid: 176 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 2 - uid: 179 components: - type: Transform pos: -17.5,-36.5 parent: 2 - - uid: 180 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 2 - uid: 183 components: - type: Transform @@ -43001,11 +42942,6 @@ entities: - type: Transform pos: -22.5,-34.5 parent: 2 - - uid: 220 - components: - - type: Transform - pos: -23.5,-36.5 - parent: 2 - uid: 221 components: - type: Transform @@ -43061,11 +42997,6 @@ entities: - type: Transform pos: -18.5,-36.5 parent: 2 - - uid: 795 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 2 - uid: 802 components: - type: Transform @@ -43076,16 +43007,6 @@ entities: - type: Transform pos: -23.5,-32.5 parent: 2 - - uid: 807 - components: - - type: Transform - pos: -17.5,-29.5 - parent: 2 - - uid: 820 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 2 - uid: 1079 components: - type: Transform @@ -43096,26 +43017,6 @@ entities: - type: Transform pos: -22.5,-28.5 parent: 2 - - uid: 1429 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 2 - - uid: 1430 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 2 - - uid: 1431 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 2 - - uid: 1432 - components: - - type: Transform - pos: -16.5,-32.5 - parent: 2 - uid: 1434 components: - type: Transform @@ -43141,11 +43042,6 @@ entities: - type: Transform pos: -23.5,-33.5 parent: 2 - - uid: 2887 - components: - - type: Transform - pos: -15.5,-32.5 - parent: 2 - uid: 4739 components: - type: Transform @@ -43166,16 +43062,6 @@ entities: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 5063 - components: - - type: Transform - pos: -17.5,-35.5 - parent: 2 - - uid: 16186 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 2 - uid: 17789 components: - type: Transform @@ -43232,6 +43118,11 @@ entities: - type: Transform pos: -49.5,-55.5 parent: 2 + - uid: 5688 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 - uid: 5909 components: - type: Transform @@ -43242,16 +43133,6 @@ entities: - type: Transform pos: -23.5,-58.5 parent: 2 - - uid: 6242 - components: - - type: Transform - pos: -34.5,-52.5 - parent: 2 - - uid: 6243 - components: - - type: Transform - pos: -35.5,-38.5 - parent: 2 - uid: 6557 components: - type: Transform @@ -43322,6 +43203,11 @@ entities: - type: Transform pos: -59.5,-24.5 parent: 2 + - uid: 14066 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 - uid: 15408 components: - type: Transform @@ -43337,11 +43223,6 @@ entities: - type: Transform pos: 47.5,-31.5 parent: 2 - - uid: 16038 - components: - - type: Transform - pos: 9.5,-37.5 - parent: 2 - uid: 17038 components: - type: Transform @@ -43357,11 +43238,6 @@ entities: - type: Transform pos: 5.5,-56.5 parent: 2 - - uid: 17889 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 2 - uid: 18596 components: - type: Transform @@ -43458,16 +43334,16 @@ entities: parent: 2 - proto: ClosetFireFilled entities: - - uid: 2335 - components: - - type: Transform - pos: -33.5,-52.5 - parent: 2 - uid: 5059 components: - type: Transform pos: -23.5,-27.5 parent: 2 + - uid: 5308 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 - uid: 5525 components: - type: Transform @@ -43518,11 +43394,6 @@ entities: - type: Transform pos: 48.5,-63.5 parent: 2 - - uid: 16039 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 2 - uid: 16050 components: - type: Transform @@ -43773,11 +43644,6 @@ entities: - type: Transform pos: 40.5,-77.5 parent: 2 - - uid: 19282 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 2 - proto: ClosetRadiationSuitFilled entities: - uid: 5058 @@ -43866,6 +43732,8 @@ entities: - 20006 - 20007 - 20008 + - type: Fixtures + fixtures: {} - proto: ClosetWallBlue entities: - uid: 5967 @@ -43884,6 +43752,8 @@ entities: - 5250 - 5251 - 5253 + - type: Fixtures + fixtures: {} - proto: ClosetWallEmergencyFilledRandom entities: - uid: 18901 @@ -43892,12 +43762,16 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18903 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetWallFireFilledRandom entities: - uid: 18904 @@ -43906,6 +43780,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetWallGrey entities: - uid: 6067 @@ -43928,6 +43804,8 @@ entities: - 6069 - 6068 - 6075 + - type: Fixtures + fixtures: {} - proto: ClothingBackpack entities: - uid: 12849 @@ -44314,10 +44192,20 @@ entities: parent: 2 - proto: ClothingHeadHatHoodNunHood entities: - - uid: 244 + - uid: 6289 components: - type: Transform - pos: -25.667696,-30.796198 + pos: -25.638721,-39.47225 + parent: 2 + - uid: 9897 + components: + - type: Transform + pos: -25.521437,-39.357975 + parent: 2 + - uid: 14161 + components: + - type: Transform + pos: -25.425758,-39.271492 parent: 2 - proto: ClothingHeadHatJesterAlt entities: @@ -44349,10 +44237,10 @@ entities: parent: 2 - proto: ClothingHeadHatSquid entities: - - uid: 18851 + - uid: 615 components: - type: Transform - pos: -25.722471,-30.292423 + pos: -19.331778,-42.418526 parent: 2 - proto: ClothingHeadHatSurgcapBlue entities: @@ -44585,13 +44473,6 @@ entities: - type: Transform pos: -31.529379,-64.33237 parent: 2 -- proto: ClothingNeckCloakPan - entities: - - uid: 11982 - components: - - type: Transform - pos: 44.485863,-38.413647 - parent: 2 - proto: ClothingNeckCloakPirateCap entities: - uid: 17307 @@ -44625,13 +44506,6 @@ entities: - type: Transform pos: 13.472904,-70.36003 parent: 2 -- proto: ClothingNeckStoleChaplain - entities: - - uid: 17362 - components: - - type: Transform - pos: -24.46909,-39.37975 - parent: 2 - proto: ClothingOuterApronChef entities: - uid: 13574 @@ -44796,10 +44670,20 @@ entities: parent: 2 - proto: ClothingOuterNunRobe entities: - - uid: 18852 + - uid: 4689 components: - type: Transform - pos: -25.556585,-31.15756 + pos: -24.861088,-39.441124 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: -25.037014,-39.492085 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: -24.703682,-39.39943 parent: 2 - proto: ClothingOuterPonchoClassic entities: @@ -44910,10 +44794,20 @@ entities: parent: 2 - proto: ClothingShoesTourist entities: - - uid: 184 + - uid: 4700 components: - type: Transform - pos: -25.441221,-31.607365 + pos: -24.425903,-39.658867 + parent: 2 + - uid: 4933 + components: + - type: Transform + pos: -24.33794,-39.607906 + parent: 2 + - uid: 10515 + components: + - type: Transform + pos: -24.550903,-39.709827 parent: 2 - uid: 17279 components: @@ -45140,11 +45034,11 @@ entities: rot: 1.5707963267948966 rad pos: 72.5,-29.5 parent: 2 - - uid: 16507 + - uid: 14159 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-34.5 + pos: 78.5,-33.5 parent: 2 - uid: 16805 components: @@ -45740,34 +45634,11 @@ entities: parent: 2 - proto: ContainmentFieldGenerator entities: - - uid: 4078 - components: - - type: MetaData - desc: A machine that generates a containment field when powered by an emitter. Don't forget to turn it on! - name: extended field generator - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-21.5 - parent: 2 - - type: ContainmentFieldGenerator - enabled: True - maxLength: 19 - uid: 5784 components: - type: Transform pos: -19.5,-77.5 parent: 2 - - uid: 6108 - components: - - type: MetaData - desc: A machine that generates a containment field when powered by an emitter. Don't forget to turn it on! - name: extended field generator - - type: Transform - pos: 59.5,-21.5 - parent: 2 - - type: ContainmentFieldGenerator - enabled: True - maxLength: 19 - uid: 18224 components: - type: Transform @@ -46362,16 +46233,6 @@ entities: - type: Transform pos: 34.5,-26.5 parent: 2 - - uid: 5029 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 2 - - uid: 5031 - components: - - type: Transform - pos: -21.5,-29.5 - parent: 2 - uid: 7605 components: - type: Transform @@ -47635,6 +47496,8 @@ entities: - type: Transform pos: 51.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DefibrillatorCabinetFilled entities: - uid: 5238 @@ -47642,50 +47505,68 @@ entities: - type: Transform pos: 16.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5239 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5935 components: - type: Transform pos: -6.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10681 components: - type: Transform pos: 13.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17131 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17273 components: - type: Transform pos: -12.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17284 components: - type: Transform pos: 5.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18378 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19260 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeskBell entities: - uid: 5856 @@ -48069,6 +47950,11 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-76.5 parent: 2 + - uid: 14183 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 - uid: 14239 components: - type: Transform @@ -48582,6 +48468,12 @@ entities: - type: Transform pos: 7.5,-60.5 parent: 2 + - uid: 11720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-24.5 + parent: 2 - uid: 15507 components: - type: Transform @@ -49522,12 +49414,6 @@ entities: - type: Transform pos: 55.5,-49.5 parent: 2 - - uid: 10515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-24.5 - parent: 2 - uid: 10561 components: - type: Transform @@ -49545,6 +49431,90 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-44.5 parent: 2 + - uid: 14184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 2 + - uid: 14187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 2 + - uid: 14188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-14.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-15.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-17.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-18.5 + parent: 2 + - uid: 14205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 14210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-21.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-22.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-23.5 + parent: 2 - uid: 14451 components: - type: Transform @@ -53201,18 +53171,6 @@ entities: - type: Transform pos: -56.629017,-61.739758 parent: 2 -- proto: DrinkChangelingStingCan - entities: - - uid: 2843 - components: - - type: Transform - pos: 38.730194,-12.548597 - parent: 2 - - uid: 2851 - components: - - type: Transform - pos: 38.338818,-12.401728 - parent: 2 - proto: DrinkCoffeeJug entities: - uid: 14280 @@ -53537,12 +53495,6 @@ entities: parent: 2 - proto: EmergencyLight entities: - - uid: 1230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 2 - uid: 1969 components: - type: Transform @@ -54063,12 +54015,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-77.5 parent: 2 - - uid: 18358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-21.5 - parent: 2 - proto: EmitterFlatpack entities: - uid: 19330 @@ -54129,40 +54075,54 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17293 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17294 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18340 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18343 components: - type: Transform pos: 12.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18344 components: - type: Transform pos: -27.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19650 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 1889 @@ -54373,6 +54333,11 @@ entities: parent: 2 - proto: filingCabinetRandom entities: + - uid: 2341 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 - uid: 5870 components: - type: Transform @@ -54406,6 +54371,8 @@ entities: - 1595 - 18775 - 3279 + - type: Fixtures + fixtures: {} - uid: 5295 components: - type: Transform @@ -54418,6 +54385,8 @@ entities: - 530 - 8870 - 8873 + - type: Fixtures + fixtures: {} - uid: 7439 components: - type: Transform @@ -54432,6 +54401,8 @@ entities: - 19831 - 19832 - 19833 + - type: Fixtures + fixtures: {} - uid: 8800 components: - type: Transform @@ -54445,6 +54416,8 @@ entities: - 872 - 8870 - 8873 + - type: Fixtures + fixtures: {} - uid: 9873 components: - type: Transform @@ -54466,6 +54439,8 @@ entities: - 7954 - 19908 - 19907 + - type: Fixtures + fixtures: {} - uid: 10791 components: - type: Transform @@ -54482,6 +54457,8 @@ entities: - 4169 - 13846 - 4171 + - type: Fixtures + fixtures: {} - uid: 14459 components: - type: Transform @@ -54503,6 +54480,8 @@ entities: - 6636 - 7459 - 1833 + - type: Fixtures + fixtures: {} - uid: 14461 components: - type: Transform @@ -54516,6 +54495,8 @@ entities: - 6633 - 19234 - 19235 + - type: Fixtures + fixtures: {} - uid: 14591 components: - type: Transform @@ -54529,6 +54510,8 @@ entities: - 7135 - 8640 - 18857 + - type: Fixtures + fixtures: {} - uid: 14683 components: - type: Transform @@ -54541,6 +54524,8 @@ entities: - 6977 - 6976 - 3659 + - type: Fixtures + fixtures: {} - uid: 14758 components: - type: Transform @@ -54558,6 +54543,8 @@ entities: - 18844 - 18843 - 1698 + - type: Fixtures + fixtures: {} - uid: 15095 components: - type: Transform @@ -54571,6 +54558,8 @@ entities: - 17153 - 17130 - 17129 + - type: Fixtures + fixtures: {} - uid: 16355 components: - type: Transform @@ -54585,6 +54574,8 @@ entities: - 2157 - 3441 - 4166 + - type: Fixtures + fixtures: {} - uid: 16357 components: - type: Transform @@ -54597,6 +54588,8 @@ entities: - 16238 - 19903 - 19904 + - type: Fixtures + fixtures: {} - uid: 18593 components: - type: Transform @@ -54613,6 +54606,8 @@ entities: - 8920 - 19838 - 19837 + - type: Fixtures + fixtures: {} - uid: 18881 components: - type: Transform @@ -54624,6 +54619,8 @@ entities: - 16165 - 14594 - 14595 + - type: Fixtures + fixtures: {} - uid: 19247 components: - type: Transform @@ -54635,23 +54632,13 @@ entities: - 4169 - 4171 - 13846 - - 11724 - - 11725 - - 11723 - - 7979 - - 11721 - - 11720 - - 11719 - - 11718 - - 11717 - - 11716 - - 11715 - - 11712 - 9297 - 7800 - 8607 - 9082 - 9066 + - type: Fixtures + fixtures: {} - uid: 19910 components: - type: Transform @@ -54665,6 +54652,8 @@ entities: - 19902 - 19908 - 19907 + - type: Fixtures + fixtures: {} - proto: FireAlarmXeno entities: - uid: 1691 @@ -54683,6 +54672,8 @@ entities: - 19886 - 19892 - 19891 + - type: Fixtures + fixtures: {} - uid: 2359 components: - type: Transform @@ -54695,6 +54686,8 @@ entities: - 8737 - 8734 - 8479 + - type: Fixtures + fixtures: {} - uid: 2409 components: - type: Transform @@ -54713,6 +54706,8 @@ entities: - 5577 - 5575 - 5576 + - type: Fixtures + fixtures: {} - uid: 2452 components: - type: Transform @@ -54730,6 +54725,8 @@ entities: - 19810 - 19811 - 19812 + - type: Fixtures + fixtures: {} - uid: 2513 components: - type: Transform @@ -54742,6 +54739,8 @@ entities: - 5577 - 5576 - 5575 + - type: Fixtures + fixtures: {} - uid: 3256 components: - type: Transform @@ -54757,6 +54756,8 @@ entities: - 11336 - 18786 - 8605 + - type: Fixtures + fixtures: {} - uid: 3258 components: - type: Transform @@ -54771,6 +54772,8 @@ entities: - 19830 - 19829 - 19828 + - type: Fixtures + fixtures: {} - uid: 5200 components: - type: Transform @@ -54786,6 +54789,8 @@ entities: - 19797 - 19798 - 4002 + - type: Fixtures + fixtures: {} - uid: 6218 components: - type: Transform @@ -54804,6 +54809,8 @@ entities: - 14799 - 15173 - 14797 + - type: Fixtures + fixtures: {} - uid: 6344 components: - type: Transform @@ -54820,6 +54827,8 @@ entities: - 19877 - 19878 - 19879 + - type: Fixtures + fixtures: {} - uid: 6345 components: - type: Transform @@ -54842,6 +54851,8 @@ entities: - 8415 - 8416 - 8417 + - type: Fixtures + fixtures: {} - uid: 6346 components: - type: Transform @@ -54861,6 +54872,8 @@ entities: - 19890 - 8434 - 8433 + - type: Fixtures + fixtures: {} - uid: 6348 components: - type: Transform @@ -54884,6 +54897,8 @@ entities: - 19893 - 19894 - 19895 + - type: Fixtures + fixtures: {} - uid: 6349 components: - type: Transform @@ -54900,6 +54915,8 @@ entities: - 19896 - 19897 - 19898 + - type: Fixtures + fixtures: {} - uid: 6350 components: - type: Transform @@ -54913,6 +54930,8 @@ entities: - 7016 - 7017 - 19882 + - type: Fixtures + fixtures: {} - uid: 6405 components: - type: Transform @@ -54925,6 +54944,8 @@ entities: - 10326 - 8402 - 19920 + - type: Fixtures + fixtures: {} - uid: 7880 components: - type: Transform @@ -54941,6 +54962,8 @@ entities: - 7011 - 7012 - 7056 + - type: Fixtures + fixtures: {} - uid: 9038 components: - type: Transform @@ -54966,6 +54989,8 @@ entities: - 19825 - 19826 - 19827 + - type: Fixtures + fixtures: {} - uid: 9039 components: - type: Transform @@ -54978,6 +55003,8 @@ entities: - 8415 - 8416 - 8417 + - type: Fixtures + fixtures: {} - uid: 9178 components: - type: Transform @@ -54996,6 +55023,8 @@ entities: - 8495 - 9715 - 2462 + - type: Fixtures + fixtures: {} - uid: 9200 components: - type: Transform @@ -55023,6 +55052,8 @@ entities: - 19829 - 19828 - 16242 + - type: Fixtures + fixtures: {} - uid: 9202 components: - type: Transform @@ -55036,6 +55067,8 @@ entities: - 8492 - 44 - 4002 + - type: Fixtures + fixtures: {} - uid: 9218 components: - type: Transform @@ -55047,6 +55080,8 @@ entities: - 8505 - 8506 - 8507 + - type: Fixtures + fixtures: {} - uid: 9233 components: - type: Transform @@ -55059,6 +55094,8 @@ entities: - 14800 - 14798 - 14797 + - type: Fixtures + fixtures: {} - uid: 9237 components: - type: Transform @@ -55077,6 +55114,8 @@ entities: - 19893 - 19894 - 19895 + - type: Fixtures + fixtures: {} - uid: 9238 components: - type: Transform @@ -55091,6 +55130,8 @@ entities: - 8439 - 8438 - 18862 + - type: Fixtures + fixtures: {} - uid: 9242 components: - type: Transform @@ -55104,6 +55145,8 @@ entities: - 7440 - 7443 - 19204 + - type: Fixtures + fixtures: {} - uid: 9249 components: - type: Transform @@ -55115,6 +55158,8 @@ entities: - 8433 - 8434 - 19885 + - type: Fixtures + fixtures: {} - uid: 9250 components: - type: Transform @@ -55124,6 +55169,8 @@ entities: - type: DeviceList devices: - 8493 + - type: Fixtures + fixtures: {} - uid: 9255 components: - type: Transform @@ -55140,6 +55187,8 @@ entities: - 19799 - 19800 - 19801 + - type: Fixtures + fixtures: {} - uid: 9256 components: - type: Transform @@ -55158,6 +55207,8 @@ entities: - 19805 - 19807 - 19808 + - type: Fixtures + fixtures: {} - uid: 9489 components: - type: Transform @@ -55172,6 +55223,8 @@ entities: - 4096 - 19820 - 19821 + - type: Fixtures + fixtures: {} - uid: 9931 components: - type: Transform @@ -55186,6 +55239,8 @@ entities: - 19841 - 19840 - 19839 + - type: Fixtures + fixtures: {} - uid: 11905 components: - type: Transform @@ -55198,6 +55253,8 @@ entities: - 8547 - 8548 - 8549 + - type: Fixtures + fixtures: {} - uid: 15092 components: - type: Transform @@ -55215,6 +55272,8 @@ entities: - 19798 - 19797 - 19796 + - type: Fixtures + fixtures: {} - uid: 16341 components: - type: Transform @@ -55233,6 +55292,8 @@ entities: - 8549 - 8548 - 8547 + - type: Fixtures + fixtures: {} - uid: 16366 components: - type: Transform @@ -55249,6 +55310,8 @@ entities: - 19831 - 19832 - 19833 + - type: Fixtures + fixtures: {} - uid: 16800 components: - type: Transform @@ -55264,6 +55327,8 @@ entities: - 9715 - 19815 - 811 + - type: Fixtures + fixtures: {} - uid: 16807 components: - type: Transform @@ -55275,6 +55340,8 @@ entities: - 8677 - 8678 - 262 + - type: Fixtures + fixtures: {} - uid: 17681 components: - type: Transform @@ -55288,6 +55355,8 @@ entities: - 19825 - 19892 - 19891 + - type: Fixtures + fixtures: {} - uid: 17872 components: - type: Transform @@ -55313,6 +55382,8 @@ entities: - 8552 - 19854 - 19851 + - type: Fixtures + fixtures: {} - uid: 19201 components: - type: Transform @@ -55328,6 +55399,8 @@ entities: - 16242 - 8107 - 19203 + - type: Fixtures + fixtures: {} - uid: 19399 components: - type: Transform @@ -55344,6 +55417,8 @@ entities: - 19822 - 19823 - 19824 + - type: Fixtures + fixtures: {} - uid: 19420 components: - type: Transform @@ -55355,6 +55430,8 @@ entities: - 18786 - 11336 - 9541 + - type: Fixtures + fixtures: {} - uid: 19852 components: - type: Transform @@ -55372,6 +55449,8 @@ entities: - 19845 - 19846 - 19847 + - type: Fixtures + fixtures: {} - uid: 19855 components: - type: Transform @@ -55387,6 +55466,8 @@ entities: - 18723 - 18709 - 18731 + - type: Fixtures + fixtures: {} - uid: 19857 components: - type: Transform @@ -55400,15 +55481,8 @@ entities: - 8550 - 9383 - 9877 - - 7979 - - 11721 - - 11720 - - 11719 - - 11718 - - 11717 - - 11716 - - 11715 - - 11712 + - type: Fixtures + fixtures: {} - uid: 19881 components: - type: Transform @@ -55428,6 +55502,8 @@ entities: - 7014 - 7013 - 19882 + - type: Fixtures + fixtures: {} - uid: 19921 components: - type: Transform @@ -55440,6 +55516,8 @@ entities: - 8400 - 8399 - 19920 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 5385 @@ -55448,11 +55526,15 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5589 components: - type: Transform pos: -49.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 17297 @@ -55462,135 +55544,6 @@ entities: parent: 2 - proto: Firelock entities: - - uid: 7979 - components: - - type: Transform - pos: 50.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11712 - components: - - type: Transform - pos: 42.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11715 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11716 - components: - - type: Transform - pos: 44.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11717 - components: - - type: Transform - pos: 45.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11718 - components: - - type: Transform - pos: 46.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11719 - components: - - type: Transform - pos: 47.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11720 - components: - - type: Transform - pos: 48.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11721 - components: - - type: Transform - pos: 49.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 19857 - - 19856 - - 19247 - - uid: 11723 - components: - - type: Transform - pos: 54.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 579 - - 19247 - - uid: 11724 - components: - - type: Transform - pos: 55.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 579 - - 19247 - - uid: 11725 - components: - - type: Transform - pos: 56.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18818 - - 579 - - 19247 - uid: 19913 components: - type: Transform @@ -56227,12 +56180,6 @@ entities: deviceLists: - 14757 - 14758 - - uid: 19015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 - parent: 2 - uid: 19815 components: - type: Transform @@ -59305,6 +59252,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Floodlight + entities: + - uid: 4078 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 14022 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 - proto: FloorCarpetItemBlack entities: - uid: 7382 @@ -59489,11 +59448,6 @@ entities: - type: Transform pos: -38.5,-36.5 parent: 2 - - uid: 17116 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 2 - uid: 17119 components: - type: Transform @@ -59586,6 +59540,16 @@ entities: parent: 2 - proto: FoodBakedCannabisBrownie entities: + - uid: 4673 + components: + - type: Transform + pos: -20.439116,-42.136227 + parent: 2 + - uid: 11457 + components: + - type: Transform + pos: -20.703005,-42.1177 + parent: 2 - uid: 18034 components: - type: Transform @@ -59868,7 +59832,7 @@ entities: - type: Transform pos: 6.386328,-82.455345 parent: 2 -- proto: FoodDonutJellySlugcat +- proto: FoodDonutJellyScurret entities: - uid: 2917 components: @@ -80298,23 +80262,6 @@ entities: - type: Transform pos: 29.714285,-78.46555 parent: 2 -- proto: GoldenPlunger - entities: - - uid: 647 - components: - - type: MetaData - desc: The prophecy tells of a day in the distant future, in which the Truest Janitor will pick up this plunger and eradicate clogging from this world forever more... - name: lubed cursed golden plunger - - type: Transform - pos: -40.50827,-77.386536 - parent: 2 - - type: WarpPoint - location: cursed golden plunger - - type: Lubed - slipStrength: 10 - slipsLeft: 1000 - - type: NameModifier - baseName: cursed golden plunger - proto: GoldRingDiamond entities: - uid: 7118 @@ -80471,6 +80418,11 @@ entities: - type: Transform pos: -5.5,2.5 parent: 2 + - uid: 161 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 - uid: 207 components: - type: Transform @@ -80966,11 +80918,6 @@ entities: - type: Transform pos: 43.5,-55.5 parent: 2 - - uid: 789 - components: - - type: Transform - pos: 26.5,-47.5 - parent: 2 - uid: 790 components: - type: Transform @@ -81061,46 +81008,6 @@ entities: - type: Transform pos: -19.5,-53.5 parent: 2 - - uid: 1153 - components: - - type: Transform - pos: -32.5,-54.5 - parent: 2 - - uid: 1155 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 2 - - uid: 1156 - components: - - type: Transform - pos: -31.5,-55.5 - parent: 2 - - uid: 1157 - components: - - type: Transform - pos: -31.5,-53.5 - parent: 2 - - uid: 1163 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 2 - - uid: 1165 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 1166 - components: - - type: Transform - pos: -31.5,-37.5 - parent: 2 - - uid: 1167 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - uid: 1292 components: - type: Transform @@ -81151,11 +81058,6 @@ entities: - type: Transform pos: -36.5,-9.5 parent: 2 - - uid: 1416 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 2 - uid: 1420 components: - type: Transform @@ -81456,86 +81358,16 @@ entities: - type: Transform pos: 16.5,-44.5 parent: 2 - - uid: 1671 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - uid: 1672 - components: - - type: Transform - pos: -41.5,-44.5 - parent: 2 - uid: 1673 components: - type: Transform - pos: -41.5,-45.5 - parent: 2 - - uid: 1674 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 2 - - uid: 1675 - components: - - type: Transform - pos: -41.5,-47.5 - parent: 2 - - uid: 1676 - components: - - type: Transform - pos: -40.5,-47.5 - parent: 2 - - uid: 1677 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 2 - - uid: 1678 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 2 - - uid: 1679 - components: - - type: Transform - pos: -37.5,-47.5 - parent: 2 - - uid: 1680 - components: - - type: Transform - pos: -37.5,-46.5 + pos: -0.5,-42.5 parent: 2 - uid: 1681 components: - type: Transform pos: 60.5,-35.5 parent: 2 - - uid: 1682 - components: - - type: Transform - pos: -37.5,-44.5 - parent: 2 - - uid: 1683 - components: - - type: Transform - pos: -37.5,-43.5 - parent: 2 - - uid: 1684 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 2 - - uid: 1685 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 2 - - uid: 1686 - components: - - type: Transform - pos: -40.5,-43.5 - parent: 2 - uid: 1688 components: - type: Transform @@ -81622,6 +81454,11 @@ entities: - type: Transform pos: 3.5,-48.5 parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 - uid: 1953 components: - type: Transform @@ -81828,6 +81665,21 @@ entities: - type: Transform pos: -18.5,-15.5 parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 - uid: 2364 components: - type: Transform @@ -81868,6 +81720,11 @@ entities: - type: Transform pos: -51.5,-55.5 parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 - uid: 2466 components: - type: Transform @@ -82454,11 +82311,6 @@ entities: - type: Transform pos: 43.5,-11.5 parent: 2 - - uid: 4089 - components: - - type: Transform - pos: 60.5,-21.5 - parent: 2 - uid: 4181 components: - type: Transform @@ -82499,6 +82351,11 @@ entities: - type: Transform pos: -1.5,-40.5 parent: 2 + - uid: 4271 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 - uid: 4301 components: - type: Transform @@ -82554,6 +82411,11 @@ entities: - type: Transform pos: 51.5,-64.5 parent: 2 + - uid: 4383 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 - uid: 4391 components: - type: Transform @@ -82709,20 +82571,25 @@ entities: - type: Transform pos: 45.5,-55.5 parent: 2 - - uid: 4655 + - uid: 4545 components: - type: Transform - pos: 22.5,-53.5 + pos: -38.5,-47.5 parent: 2 - - uid: 4661 + - uid: 4556 components: - type: Transform - pos: 24.5,-55.5 + pos: 46.5,-22.5 parent: 2 - - uid: 4693 + - uid: 4687 components: - type: Transform - pos: 24.5,-51.5 + pos: 47.5,-22.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + pos: 56.5,-22.5 parent: 2 - uid: 4716 components: @@ -83649,6 +83516,11 @@ entities: - type: Transform pos: 4.5,-14.5 parent: 2 + - uid: 7295 + components: + - type: Transform + pos: 48.5,-22.5 + parent: 2 - uid: 7438 components: - type: Transform @@ -84009,6 +83881,11 @@ entities: - type: Transform pos: 47.5,-12.5 parent: 2 + - uid: 11721 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 - uid: 11830 components: - type: Transform @@ -84114,11 +83991,26 @@ entities: - type: Transform pos: 62.5,-21.5 parent: 2 + - uid: 13959 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 - uid: 13979 components: - type: Transform pos: 7.5,-33.5 parent: 2 + - uid: 13995 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 13997 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 - uid: 14006 components: - type: Transform @@ -84139,16 +84031,46 @@ entities: - type: Transform pos: 75.5,-17.5 parent: 2 + - uid: 14100 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 - uid: 14105 components: - type: Transform pos: 75.5,-18.5 parent: 2 + - uid: 14107 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 - uid: 14126 components: - type: Transform pos: 77.5,-17.5 parent: 2 + - uid: 14131 + components: + - type: Transform + pos: -39.5,-47.5 + parent: 2 - uid: 14152 components: - type: Transform @@ -85040,75 +84962,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-45.5 parent: 2 - - uid: 4656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-54.5 - parent: 2 - - uid: 4658 - components: - - type: Transform - pos: 23.5,-51.5 - parent: 2 - - uid: 4662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-55.5 - parent: 2 - - uid: 4663 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-52.5 - parent: 2 - - uid: 4664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-54.5 - parent: 2 - - uid: 4665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-55.5 - parent: 2 - - uid: 4667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-54.5 - parent: 2 - - uid: 4673 - components: - - type: Transform - pos: 25.5,-54.5 - parent: 2 - - uid: 4675 - components: - - type: Transform - pos: 22.5,-52.5 - parent: 2 - - uid: 4676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-52.5 - parent: 2 - - uid: 4686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-52.5 - parent: 2 - - uid: 4687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-51.5 - parent: 2 - uid: 14429 components: - type: Transform @@ -85704,10 +85557,10 @@ entities: - type: Transform pos: 57.514305,-35.453518 parent: 2 - - uid: 19346 + - uid: 13988 components: - type: Transform - pos: 58.428192,-20.46732 + pos: 61.41428,-19.450556 parent: 2 - proto: HandheldGPSBasic entities: @@ -86139,10 +85992,10 @@ entities: parent: 2 - proto: HolopadMedicalVirology entities: - - uid: 18511 + - uid: 4667 components: - type: Transform - pos: 32.5,-18.5 + pos: 30.5,-18.5 parent: 2 - proto: HolopadScienceArtifact entities: @@ -86242,13 +86095,6 @@ entities: - type: Transform pos: 0.5,-54.5 parent: 2 -- proto: HolopadServiceChapel - entities: - - uid: 19163 - components: - - type: Transform - pos: -21.5,-39.5 - parent: 2 - proto: HolopadServiceClownMime entities: - uid: 19134 @@ -86524,6 +86370,45 @@ entities: - type: Transform pos: 27.635538,-72.53113 parent: 2 +- proto: InflatableWall + entities: + - uid: 1847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-37.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 54.5,-25.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: 26.5,-47.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: -41.5,-47.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: 26.5,-55.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 - proto: InflatableWallStack entities: - uid: 8002 @@ -86576,6 +86461,8 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 17760 @@ -86584,24 +86471,32 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17761 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17763 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17772 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 16536 @@ -86610,24 +86505,32 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17755 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17756 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17762 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 6295 @@ -86636,28 +86539,38 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6681 components: - type: Transform pos: 16.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17754 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17758 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17759 components: - type: Transform pos: 11.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 11363 @@ -86666,6 +86579,8 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 6087 @@ -86674,12 +86589,16 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19381 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 17768 @@ -86688,12 +86607,16 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17769 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 2999 @@ -86702,6 +86625,8 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 5623 @@ -86869,7 +86794,8 @@ entities: - uid: 5678 components: - type: Transform - pos: -16.689243,-42.33948 + rot: 1.5707963267948966 rad + pos: -18.285185,-42.4478 parent: 2 - uid: 6027 components: @@ -87000,37 +86926,15 @@ entities: parent: 2 - proto: LeavesCannabisDried entities: - - uid: 18867 + - uid: 4681 components: - type: Transform - pos: -25.706669,-32.16909 + pos: -19.954123,-42.201088 parent: 2 - - uid: 18889 + - uid: 11715 components: - type: Transform - pos: -25.789955,-32.280567 - parent: 2 - - uid: 18902 - components: - - type: Transform - pos: -25.357204,-32.064083 - parent: 2 -- proto: LeavesTobaccoDried - entities: - - uid: 19012 - components: - - type: Transform - pos: -25.30165,-31.992579 - parent: 2 - - uid: 19013 - components: - - type: Transform - pos: -25.259981,-31.89941 - parent: 2 - - uid: 19014 - components: - - type: Transform - pos: -25.64344,-32.075485 + pos: -20.113028,-42.324776 parent: 2 - proto: LiquidNitrogenCanister entities: @@ -87080,6 +86984,8 @@ entities: 3324: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChiefEngineer entities: - uid: 6608 @@ -87111,6 +87017,8 @@ entities: 15103: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonJanitor entities: - uid: 1041 @@ -87129,6 +87037,8 @@ entities: 696: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonMedical entities: - uid: 5114 @@ -87144,6 +87054,8 @@ entities: 546: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonService entities: - uid: 2479 @@ -87159,6 +87071,8 @@ entities: 252: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 4796 @@ -87332,10 +87246,10 @@ entities: parent: 2 - proto: LockerFreezerVaultFilled entities: - - uid: 5146 + - uid: 11718 components: - type: Transform - pos: 9.5,-43.5 + pos: 9.5,-44.5 parent: 2 - proto: LockerHeadOfPersonnelFilled entities: @@ -87528,13 +87442,15 @@ entities: - type: Transform pos: -16.5,-15.5 parent: 2 -- proto: LockerSecurityFilled +- proto: LockerSecurity entities: - - uid: 6149 + - uid: 4676 components: - type: Transform pos: 11.5,-47.5 parent: 2 +- proto: LockerSecurityFilled + entities: - uid: 9892 components: - type: Transform @@ -87567,6 +87483,8 @@ entities: - type: Transform pos: 12.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: LockerWardenFilled entities: - uid: 3453 @@ -87708,11 +87626,6 @@ entities: - type: Transform pos: 56.648838,-18.357616 parent: 2 - - uid: 18475 - components: - - type: Transform - pos: -23.48515,-92.497 - parent: 2 - proto: MachineAnomalyGenerator entities: - uid: 583 @@ -87873,11 +87786,6 @@ entities: - type: Transform pos: -34.5,-29.5 parent: 2 - - uid: 17361 - components: - - type: Transform - pos: -25.5,-39.5 - parent: 2 - uid: 17421 components: - type: Transform @@ -87986,16 +87894,18 @@ entities: parent: 2 - proto: Matchbox entities: - - uid: 5667 - components: - - type: Transform - pos: -25.615442,-29.699175 - parent: 2 - uid: 18996 components: - type: Transform pos: -21.27906,-47.504948 parent: 2 +- proto: MatchstickSpent + entities: + - uid: 5662 + components: + - type: Transform + pos: -9.56385,-38.433666 + parent: 2 - proto: MaterialBones1 entities: - uid: 7918 @@ -88084,13 +87994,6 @@ entities: - type: Transform pos: -3.5,-22.5 parent: 2 -- proto: MaterialDiamond1 - entities: - - uid: 17564 - components: - - type: Transform - pos: 9.487229,-44.345783 - parent: 2 - proto: MaterialDurathread entities: - uid: 16377 @@ -88129,6 +88032,21 @@ entities: parent: 2 - proto: MaterialWoodPlank1 entities: + - uid: 1679 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 - uid: 7336 components: - type: Transform @@ -88283,11 +88201,6 @@ entities: - type: Transform pos: 21.454115,-29.711697 parent: 2 - - uid: 17032 - components: - - type: Transform - pos: 21.599949,-29.378132 - parent: 2 - proto: MedkitOxygenFilled entities: - uid: 5126 @@ -88363,24 +88276,32 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6160 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6161 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7093 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MopBucketFull entities: - uid: 5622 @@ -88686,6 +88607,8 @@ entities: - type: Transform pos: 38.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 18623 @@ -88846,6 +88769,8 @@ entities: - type: Transform pos: 72.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingSadClown entities: - uid: 6001 @@ -88854,6 +88779,8 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheGreatWave entities: - uid: 18495 @@ -88861,6 +88788,8 @@ entities: - type: Transform pos: -39.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaintingTheScream entities: - uid: 7051 @@ -88868,6 +88797,8 @@ entities: - type: Transform pos: -22.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PaladinCircuitBoard entities: - uid: 18620 @@ -89238,6 +89169,13 @@ entities: - type: Transform pos: -9.678529,-26.311075 parent: 2 +- proto: PhoneInstrument + entities: + - uid: 14216 + components: + - type: Transform + pos: -48.062805,-45.86218 + parent: 2 - proto: PianoInstrument entities: - uid: 6989 @@ -89306,12 +89244,6 @@ entities: parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 1616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-21.5 - parent: 2 - uid: 3731 components: - type: Transform @@ -89324,12 +89256,42 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-47.5 parent: 2 + - uid: 4704 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + pos: 46.5,-20.5 + parent: 2 - uid: 4724 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-66.5 parent: 2 + - uid: 4921 + components: + - type: Transform + pos: 48.5,-20.5 + parent: 2 + - uid: 4923 + components: + - type: Transform + pos: 44.5,-20.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: 42.5,-20.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: 47.5,-20.5 + parent: 2 - uid: 5073 components: - type: Transform @@ -89342,17 +89304,26 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-66.5 parent: 2 + - uid: 5146 + components: + - type: Transform + pos: 43.5,-20.5 + parent: 2 - uid: 5183 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-66.5 parent: 2 - - uid: 5965 + - uid: 5691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-66.5 + pos: 54.5,-20.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: 55.5,-20.5 parent: 2 - uid: 5976 components: @@ -89384,11 +89355,41 @@ entities: rot: 3.141592653589793 rad pos: 89.5,-46.5 parent: 2 + - uid: 11723 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 - uid: 11755 components: - type: Transform pos: 89.5,-44.5 parent: 2 + - uid: 14000 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 2 + - uid: 14001 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + pos: 50.5,-20.5 + parent: 2 + - uid: 14003 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 14004 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 - uid: 16336 components: - type: Transform @@ -89407,11 +89408,6 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-61.5 parent: 2 - - uid: 18339 - components: - - type: Transform - pos: 58.5,-20.5 - parent: 2 - proto: PlasmaTank entities: - uid: 7689 @@ -89492,12 +89488,6 @@ entities: rot: 3.141592653589793 rad pos: 81.5,-44.5 parent: 2 - - uid: 2378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-45.5 - parent: 2 - uid: 2896 components: - type: Transform @@ -89592,23 +89582,11 @@ entities: parent: 2 - proto: PlasmaWindoorSecureScienceLocked entities: - - uid: 5117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-29.5 - parent: 2 - uid: 11364 components: - type: Transform pos: -7.5,-18.5 parent: 2 - - uid: 11711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-35.5 - parent: 2 - uid: 13975 components: - type: Transform @@ -89628,6 +89606,12 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-47.5 parent: 2 + - uid: 4742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-21.5 + parent: 2 - uid: 6143 components: - type: Transform @@ -89982,6 +89966,8 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - uid: 17214 @@ -89990,6 +89976,8 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 5968 @@ -89998,18 +89986,24 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19271 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19272 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonk entities: - uid: 2807 @@ -90017,98 +90011,132 @@ entities: - type: Transform pos: 13.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6807 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-99.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6808 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6809 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-90.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6810 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-93.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6811 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-94.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6813 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-94.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6956 components: - type: Transform pos: 30.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16968 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16969 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16970 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16971 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17229 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17230 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18230 components: - type: Transform pos: 36.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18530 components: - type: Transform pos: 11.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18538 components: - type: Transform pos: 16.5,-85.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandDonutCorp entities: - uid: 17316 @@ -90116,6 +90144,8 @@ entities: - type: Transform pos: 6.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEAT entities: - uid: 15130 @@ -90123,11 +90153,15 @@ entities: - type: Transform pos: 31.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16638 components: - type: Transform pos: 45.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnergySwords entities: - uid: 18496 @@ -90135,6 +90169,8 @@ entities: - type: Transform pos: -48.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandExoAcid entities: - uid: 19150 @@ -90143,34 +90179,46 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19155 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19169 components: - type: Transform pos: -41.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19176 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19211 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19240 components: - type: Transform pos: 21.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandExoChomp entities: - uid: 10734 @@ -90179,23 +90227,31 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18764 components: - type: Transform pos: -37.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19148 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19202 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandExoRun entities: - uid: 7810 @@ -90203,24 +90259,32 @@ entities: - type: Transform pos: 74.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19154 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19172 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19190 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandHackingGuide entities: - uid: 19421 @@ -90228,6 +90292,8 @@ entities: - type: Transform pos: 39.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandLamarr entities: - uid: 17407 @@ -90235,6 +90301,8 @@ entities: - type: Transform pos: 3.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRealExomorph entities: - uid: 2474 @@ -90242,16 +90310,22 @@ entities: - type: Transform pos: -23.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3137 components: - type: Transform pos: 76.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4387 components: - type: Transform pos: -21.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandRouny entities: - uid: 2672 @@ -90259,22 +90333,30 @@ entities: - type: Transform pos: -23.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7949 components: - type: Transform pos: 80.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19219 components: - type: Transform pos: -6.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19316 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 19383 @@ -90282,6 +90364,8 @@ entities: - type: Transform pos: -18.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWehWatches entities: - uid: 16274 @@ -90289,6 +90373,8 @@ entities: - type: Transform pos: 51.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 2842 @@ -90296,6 +90382,8 @@ entities: - type: Transform pos: 12.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitBuild entities: - uid: 17216 @@ -90303,17 +90391,23 @@ entities: - type: Transform pos: 27.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17217 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19242 components: - type: Transform pos: -15.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 16263 @@ -90321,6 +90415,8 @@ entities: - type: Transform pos: 71.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDoNotQuestion entities: - uid: 7071 @@ -90329,11 +90425,15 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18195 components: - type: Transform pos: 8.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitEnlist entities: - uid: 7072 @@ -90342,6 +90442,8 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitFoamForceAd entities: - uid: 8428 @@ -90349,11 +90451,15 @@ entities: - type: Transform pos: 70.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8515 components: - type: Transform pos: 68.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitHelpOthers entities: - uid: 17218 @@ -90362,6 +90468,8 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitHereForYourSafety entities: - uid: 16268 @@ -90369,11 +90477,15 @@ entities: - type: Transform pos: 70.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18196 components: - type: Transform pos: 11.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitIan entities: - uid: 18017 @@ -90381,6 +90493,8 @@ entities: - type: Transform pos: 12.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 17036 @@ -90389,6 +90503,8 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitLoveIan entities: - uid: 17035 @@ -90397,11 +90513,15 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18021 components: - type: Transform pos: 12.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitMime entities: - uid: 6000 @@ -90410,6 +90530,8 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 16107 @@ -90417,44 +90539,60 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16287 components: - type: Transform pos: 63.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16293 components: - type: Transform pos: 43.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17031 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17033 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17037 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18732 components: - type: Transform pos: 22.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18733 components: - type: Transform pos: 26.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitObey entities: - uid: 7159 @@ -90462,11 +90600,15 @@ entities: - type: Transform pos: 66.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7170 components: - type: Transform pos: 65.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitRenault entities: - uid: 18031 @@ -90475,6 +90617,8 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitReportCrimes entities: - uid: 7069 @@ -90482,11 +90626,15 @@ entities: - type: Transform pos: 31.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16269 components: - type: Transform pos: 63.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyEyeProtection entities: - uid: 19241 @@ -90494,6 +90642,8 @@ entities: - type: Transform pos: 17.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyInternals entities: - uid: 17219 @@ -90502,12 +90652,16 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18774 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothDelam entities: - uid: 17232 @@ -90516,6 +90670,8 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 16285 @@ -90523,12 +90679,16 @@ entities: - type: Transform pos: 49.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17233 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothHardhat entities: - uid: 17234 @@ -90537,12 +90697,16 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18773 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 6970 @@ -90551,12 +90715,16 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17235 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothPiping entities: - uid: 17236 @@ -90565,6 +90733,8 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyReport entities: - uid: 15143 @@ -90572,11 +90742,15 @@ entities: - type: Transform pos: 48.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16284 components: - type: Transform pos: 57.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSecWatch entities: - uid: 7068 @@ -90584,11 +90758,15 @@ entities: - type: Transform pos: 26.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16271 components: - type: Transform pos: 54.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSpaceCops entities: - uid: 16272 @@ -90596,6 +90774,8 @@ entities: - type: Transform pos: 68.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitStateLaws entities: - uid: 17222 @@ -90604,6 +90784,8 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitTyrone entities: - uid: 18011 @@ -90612,6 +90794,8 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWalk entities: - uid: 15144 @@ -90619,12 +90803,16 @@ entities: - type: Transform pos: 62.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16029 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWorkForAFuture entities: - uid: 16270 @@ -90632,12 +90820,16 @@ entities: - type: Transform pos: 73.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17220 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlant0 entities: - uid: 7767 @@ -90713,11 +90905,6 @@ entities: - type: Transform pos: 3.5,-69.5 parent: 2 - - uid: 17422 - components: - - type: Transform - pos: -2.5,-41.5 - parent: 2 - proto: PottedPlantBioluminscent entities: - uid: 8788 @@ -90847,24 +91034,6 @@ entities: parent: 2 - proto: Poweredlight entities: - - uid: 270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-40.5 - parent: 2 - - uid: 287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-46.5 - parent: 2 - - uid: 468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-15.5 - parent: 2 - uid: 806 components: - type: Transform @@ -90877,39 +91046,57 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-32.5 parent: 2 - - uid: 916 + - uid: 1337 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-29.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 2 + - uid: 1445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-12.5 + pos: -26.5,-47.5 parent: 2 - - uid: 1113 + - uid: 1616 components: - type: Transform - pos: 41.5,-23.5 + rot: -1.5707963267948966 rad + pos: -51.5,-42.5 parent: 2 - - uid: 1449 + - uid: 1671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-40.5 + rot: -1.5707963267948966 rad + pos: -47.5,-38.5 parent: 2 - - uid: 1847 + - uid: 1672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-25.5 + rot: -1.5707963267948966 rad + pos: -47.5,-52.5 parent: 2 - - uid: 1884 + - uid: 1680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-58.5 - parent: 2 - - uid: 2194 - components: - - type: Transform - pos: 26.5,-48.5 + rot: -1.5707963267948966 rad + pos: -51.5,-48.5 parent: 2 - uid: 2245 components: @@ -90917,47 +91104,16 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-70.5 parent: 2 - - uid: 2254 + - uid: 3007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-66.5 - parent: 2 - - uid: 2463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-57.5 - parent: 2 - - uid: 2649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-48.5 - parent: 2 - - uid: 2968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-62.5 - parent: 2 - - uid: 3003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-40.5 + pos: 17.5,-34.5 parent: 2 - uid: 3064 components: - type: Transform pos: 64.5,-23.5 parent: 2 - - uid: 3207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 - parent: 2 - uid: 3348 components: - type: Transform @@ -90970,44 +91126,45 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-18.5 parent: 2 - - uid: 4018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-17.5 - parent: 2 - uid: 4173 components: - type: Transform pos: 63.5,-16.5 parent: 2 - - uid: 4511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-61.5 - parent: 2 - - uid: 4921 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 2 - - uid: 4922 + - uid: 4715 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-10.5 + pos: 15.5,-59.5 parent: 2 - - uid: 5084 + - uid: 4934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + pos: -39.5,-64.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-64.5 + parent: 2 + - uid: 5029 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-21.5 + pos: -45.5,-65.5 parent: 2 - uid: 5122 components: - type: Transform - pos: -17.5,-37.5 + rot: -1.5707963267948966 rad + pos: -16.5,-16.5 parent: 2 - uid: 5184 components: @@ -91015,61 +91172,28 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-70.5 parent: 2 - - uid: 5205 + - uid: 5298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-18.5 + rot: -1.5707963267948966 rad + pos: -33.5,-64.5 parent: 2 - - uid: 5224 + - uid: 5682 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-31.5 - parent: 2 - - uid: 5376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-69.5 - parent: 2 - - uid: 5780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-84.5 - parent: 2 - - uid: 5842 - components: - - type: Transform - pos: 16.5,-27.5 + pos: -8.5,-43.5 parent: 2 - uid: 5855 components: - type: Transform pos: 12.5,-27.5 parent: 2 - - uid: 5881 + - uid: 6123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-72.5 - parent: 2 - - uid: 6206 - components: - - type: Transform - pos: 18.5,-34.5 - parent: 2 - - uid: 6260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-67.5 - parent: 2 - - uid: 6289 - components: - - type: Transform - pos: 68.5,-32.5 + rot: -1.5707963267948966 rad + pos: 26.5,-34.5 parent: 2 - uid: 6390 components: @@ -91082,42 +91206,18 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-20.5 parent: 2 - - uid: 7158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-36.5 - parent: 2 - uid: 7199 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-21.5 parent: 2 - - uid: 7234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-23.5 - parent: 2 - uid: 7271 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-16.5 parent: 2 - - uid: 7295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-52.5 - parent: 2 - - uid: 7568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-27.5 - parent: 2 - uid: 7598 components: - type: Transform @@ -91129,24 +91229,12 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-57.5 parent: 2 - - uid: 7668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-32.5 - parent: 2 - uid: 7709 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-32.5 parent: 2 - - uid: 7710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 2 - uid: 7711 components: - type: Transform @@ -91154,88 +91242,50 @@ entities: pos: 21.5,-70.5 parent: 2 - type: Timer - - uid: 7943 - components: - - type: Transform - pos: 60.5,-41.5 - parent: 2 - - uid: 7944 - components: - - type: Transform - pos: 40.5,-52.5 - parent: 2 - - uid: 8037 - components: - - type: Transform - pos: 33.5,-52.5 - parent: 2 - uid: 8181 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-64.5 parent: 2 - - uid: 8807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-51.5 - parent: 2 - - uid: 9074 - components: - - type: Transform - pos: 11.5,-77.5 - parent: 2 - - uid: 9679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-29.5 - parent: 2 - - uid: 9822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-60.5 - parent: 2 - - uid: 9885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 2 - - uid: 9957 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 2 - uid: 10225 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-15.5 parent: 2 + - uid: 10283 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 - uid: 10411 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-47.5 parent: 2 - - uid: 10494 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 2 - uid: 10645 components: - type: Transform - pos: -6.5,-30.5 + pos: 24.5,-11.5 parent: 2 - - uid: 10741 + - uid: 10742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-34.5 + rot: 3.141592653589793 rad + pos: 51.5,-24.5 + parent: 2 + - uid: 10786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 2 + - uid: 10795 + components: + - type: Transform + pos: 18.5,-11.5 parent: 2 - uid: 10830 components: @@ -91243,17 +91293,6 @@ entities: rot: -1.5707963267948966 rad pos: 94.5,-44.5 parent: 2 - - uid: 11365 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 2 - - uid: 11457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-18.5 - parent: 2 - uid: 11470 components: - type: Transform @@ -91265,58 +91304,12 @@ entities: rot: 1.5707963267948966 rad pos: 58.5,-20.5 parent: 2 - - uid: 11916 - components: - - type: Transform - pos: -22.5,-37.5 - parent: 2 - - uid: 11917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 2 - - uid: 11918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-27.5 - parent: 2 - - uid: 11947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-73.5 - parent: 2 - - uid: 12786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-65.5 - parent: 2 - uid: 12827 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-26.5 parent: 2 - - uid: 12916 - components: - - type: Transform - pos: 57.5,-23.5 - parent: 2 - - uid: 13208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-29.5 - parent: 2 - - uid: 13330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-28.5 - parent: 2 - uid: 13332 components: - type: Transform @@ -91341,12 +91334,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-29.5 parent: 2 - - uid: 13888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-16.5 - parent: 2 - uid: 13918 components: - type: Transform @@ -91357,35 +91344,18 @@ entities: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 13947 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - uid: 13949 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 2 - - uid: 13950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 2 - uid: 13951 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 2 - - uid: 13952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 2 - uid: 13954 components: - type: Transform @@ -91416,86 +91386,22 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 2 - - uid: 13959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-7.5 - parent: 2 - - uid: 13960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 2 - - uid: 13961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 2 - uid: 13962 components: - type: Transform pos: -6.5,-1.5 parent: 2 - - uid: 13963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-3.5 - parent: 2 - - uid: 13964 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - uid: 13965 components: - type: Transform pos: -4.5,2.5 parent: 2 - - uid: 13971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-12.5 - parent: 2 - - uid: 13972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 2 - - uid: 13973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 2 - - uid: 13974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 - parent: 2 - uid: 13976 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-15.5 parent: 2 - - uid: 13980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 2 - - uid: 13981 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 2 - uid: 13982 components: - type: Transform @@ -91512,77 +91418,12 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-20.5 parent: 2 - - uid: 13988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 2 - uid: 13989 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 - - uid: 14000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 2 - - uid: 14001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 2 - - uid: 14002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-33.5 - parent: 2 - - uid: 14003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 2 - - uid: 14004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 2 - - uid: 14012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-36.5 - parent: 2 - - uid: 14018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-47.5 - parent: 2 - - uid: 14019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-41.5 - parent: 2 - - uid: 14021 - components: - - type: Transform - pos: -26.5,-55.5 - parent: 2 - - uid: 14022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-51.5 - parent: 2 - uid: 14023 components: - type: Transform @@ -91594,63 +91435,23 @@ entities: - type: Transform pos: -12.5,-58.5 parent: 2 - - uid: 14037 - components: - - type: Transform - pos: -21.5,-66.5 - parent: 2 - uid: 14038 components: - type: Transform pos: -25.5,-66.5 parent: 2 - - uid: 14039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-66.5 - parent: 2 - uid: 14040 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-62.5 parent: 2 - - uid: 14048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 2 - uid: 14050 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-76.5 parent: 2 - - uid: 14054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-63.5 - parent: 2 - - uid: 14055 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-54.5 - parent: 2 - - uid: 14057 - components: - - type: Transform - pos: -31.5,-51.5 - parent: 2 - - uid: 14059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-60.5 - parent: 2 - uid: 14060 components: - type: Transform @@ -91675,125 +91476,27 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-65.5 parent: 2 - - uid: 14066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-57.5 - parent: 2 - uid: 14071 components: - type: Transform pos: 8.5,-47.5 parent: 2 - - uid: 14072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-49.5 - parent: 2 - - uid: 14073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-51.5 - parent: 2 - - uid: 14074 - components: - - type: Transform - pos: 7.5,-52.5 - parent: 2 - - uid: 14075 - components: - - type: Transform - pos: 11.5,-52.5 - parent: 2 - - uid: 14077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-57.5 - parent: 2 - - uid: 14078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-61.5 - parent: 2 - - uid: 14080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-56.5 - parent: 2 - uid: 14084 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-51.5 parent: 2 - - uid: 14085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-56.5 - parent: 2 - - uid: 14087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-55.5 - parent: 2 - - uid: 14088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-48.5 - parent: 2 - - uid: 14092 - components: - - type: Transform - pos: 5.5,-65.5 - parent: 2 - - uid: 14095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-69.5 - parent: 2 - uid: 14097 components: - type: Transform pos: -2.5,-69.5 parent: 2 - - uid: 14107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-76.5 - parent: 2 - - uid: 14108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-79.5 - parent: 2 - - uid: 14109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-79.5 - parent: 2 - uid: 14110 components: - type: Transform pos: 22.5,-76.5 parent: 2 - - uid: 14111 - components: - - type: Transform - pos: 26.5,-76.5 - parent: 2 - uid: 14112 components: - type: Transform @@ -91806,297 +91509,40 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-81.5 parent: 2 - - uid: 14114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-81.5 - parent: 2 - uid: 14116 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-21.5 parent: 2 - - uid: 14117 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 2 - - uid: 14120 - components: - - type: Transform - pos: 11.5,-71.5 - parent: 2 - - uid: 14124 - components: - - type: Transform - pos: -19.5,-15.5 - parent: 2 - - uid: 14128 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 2 - - uid: 14129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-27.5 - parent: 2 - uid: 14130 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-26.5 parent: 2 - - uid: 14131 - components: - - type: Transform - pos: -20.5,-24.5 - parent: 2 - - uid: 14133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-39.5 - parent: 2 - - uid: 14134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 2 - - uid: 14135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-41.5 - parent: 2 - - uid: 14136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 - parent: 2 - - uid: 14145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 2 - - uid: 14146 - components: - - type: Transform - pos: -19.5,-11.5 - parent: 2 - - uid: 14147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 2 - - uid: 14149 - components: - - type: Transform - pos: -25.5,-11.5 - parent: 2 - uid: 14150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-16.5 + rot: -1.5707963267948966 rad + pos: 25.5,-39.5 parent: 2 - uid: 14151 components: - type: Transform pos: -34.5,-10.5 parent: 2 - - uid: 14154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-12.5 - parent: 2 - uid: 14158 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 14159 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 14161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-22.5 - parent: 2 - - uid: 14162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-25.5 - parent: 2 - - uid: 14163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-21.5 - parent: 2 - - uid: 14164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-27.5 - parent: 2 - - uid: 14165 - components: - - type: Transform - pos: -32.5,-33.5 - parent: 2 - - uid: 14166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-37.5 - parent: 2 - - uid: 14167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-39.5 - parent: 2 - - uid: 14168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-31.5 - parent: 2 - - uid: 14169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-47.5 - parent: 2 - - uid: 14170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-43.5 - parent: 2 - - uid: 14171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-49.5 - parent: 2 - - uid: 14172 - components: - - type: Transform - pos: -32.5,-41.5 - parent: 2 - - uid: 14173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-47.5 - parent: 2 - - uid: 14174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-43.5 - parent: 2 - - uid: 14175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-48.5 - parent: 2 - - uid: 14176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-42.5 - parent: 2 - - uid: 14177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-39.5 - parent: 2 - - uid: 14180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-54.5 - parent: 2 - - uid: 14182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-48.5 - parent: 2 - - uid: 14183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-42.5 - parent: 2 - - uid: 14184 - components: - - type: Transform - pos: -50.5,-36.5 - parent: 2 - - uid: 14185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-48.5 - parent: 2 - - uid: 14186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-42.5 - parent: 2 - - uid: 14187 - components: - - type: Transform - pos: -54.5,-43.5 - parent: 2 - - uid: 14188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-47.5 - parent: 2 - - uid: 14193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-73.5 - parent: 2 - - uid: 14202 - components: - - type: Transform - pos: 18.5,-91.5 - parent: 2 - uid: 14204 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-93.5 parent: 2 - - uid: 14205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-89.5 - parent: 2 - uid: 14206 components: - type: Transform @@ -92109,115 +91555,18 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-99.5 parent: 2 - - uid: 14208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-101.5 - parent: 2 - uid: 14209 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-101.5 parent: 2 - - uid: 14210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-95.5 - parent: 2 - - uid: 14211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-93.5 - parent: 2 - uid: 14214 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-90.5 parent: 2 - - uid: 14215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-54.5 - parent: 2 - - uid: 14216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-79.5 - parent: 2 - - uid: 14217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-73.5 - parent: 2 - - type: Timer - - uid: 14218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-68.5 - parent: 2 - - type: Timer - - uid: 14219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-55.5 - parent: 2 - - uid: 14220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-64.5 - parent: 2 - - uid: 14221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-51.5 - parent: 2 - - uid: 14222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-58.5 - parent: 2 - - uid: 14223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-58.5 - parent: 2 - - uid: 14224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-55.5 - parent: 2 - - uid: 14225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-51.5 - parent: 2 - - uid: 14226 - components: - - type: Transform - pos: 22.5,-48.5 - parent: 2 - - uid: 14228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-54.5 - parent: 2 - uid: 14232 components: - type: Transform @@ -92229,52 +91578,11 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-39.5 parent: 2 - - uid: 14235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-45.5 - parent: 2 - uid: 14236 components: - type: Transform pos: 41.5,-40.5 parent: 2 - - uid: 14260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-52.5 - parent: 2 - - uid: 14284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 2 - - uid: 14285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-39.5 - parent: 2 - - uid: 14286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-45.5 - parent: 2 - - uid: 14292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-72.5 - parent: 2 - - uid: 14324 - components: - - type: Transform - pos: 39.5,-56.5 - parent: 2 - uid: 14325 components: - type: Transform @@ -92357,23 +91665,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 - - uid: 14803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-15.5 - parent: 2 - - uid: 14946 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - - uid: 15146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-31.5 - parent: 2 - uid: 15148 components: - type: Transform @@ -92390,18 +91681,6 @@ entities: - type: Transform pos: 56.5,-36.5 parent: 2 - - uid: 15201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-39.5 - parent: 2 - - uid: 15202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-28.5 - parent: 2 - uid: 15203 components: - type: Transform @@ -92414,36 +91693,12 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,-28.5 parent: 2 - - uid: 15205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-39.5 - parent: 2 - uid: 15206 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-41.5 parent: 2 - - uid: 15207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-42.5 - parent: 2 - - uid: 15208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-52.5 - parent: 2 - - uid: 15209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-51.5 - parent: 2 - uid: 15210 components: - type: Transform @@ -92456,69 +91711,12 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,-47.5 parent: 2 - - uid: 15212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-44.5 - parent: 2 - - uid: 15213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-44.5 - parent: 2 - - uid: 15215 - components: - - type: Transform - pos: 52.5,-43.5 - parent: 2 - - uid: 15216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-47.5 - parent: 2 - - uid: 15217 - components: - - type: Transform - pos: 49.5,-50.5 - parent: 2 - - uid: 15218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-46.5 - parent: 2 - - uid: 15219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-41.5 - parent: 2 - - uid: 15225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-41.5 - parent: 2 - uid: 15226 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-35.5 parent: 2 - - uid: 15227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-32.5 - parent: 2 - - uid: 15233 - components: - - type: Transform - pos: 60.5,-31.5 - parent: 2 - uid: 15234 components: - type: Transform @@ -92531,41 +91729,12 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,-34.5 parent: 2 - - uid: 15237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-44.5 - parent: 2 - - uid: 15238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-38.5 - parent: 2 - - uid: 15247 - components: - - type: Transform - pos: 88.5,-43.5 - parent: 2 - uid: 15248 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-47.5 parent: 2 - - uid: 15251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-49.5 - parent: 2 - - uid: 15252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-49.5 - parent: 2 - uid: 15253 components: - type: Transform @@ -92582,18 +91751,6 @@ entities: - type: Transform pos: 54.5,-55.5 parent: 2 - - uid: 15399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-57.5 - parent: 2 - - uid: 15411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-21.5 - parent: 2 - uid: 15442 components: - type: Transform @@ -92604,12 +91761,6 @@ entities: - type: Transform pos: 15.5,-69.5 parent: 2 - - uid: 15881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-14.5 - parent: 2 - uid: 16147 components: - type: Transform @@ -92634,39 +91785,12 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-100.5 parent: 2 - - uid: 16533 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-40.5 - parent: 2 - - uid: 16540 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 2 - uid: 16547 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-68.5 parent: 2 - - uid: 16548 - components: - - type: Transform - pos: 13.5,-65.5 - parent: 2 - - uid: 16549 - components: - - type: Transform - pos: 20.5,-65.5 - parent: 2 - - uid: 16550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-69.5 - parent: 2 - uid: 16564 components: - type: Transform @@ -92683,18 +91807,6 @@ entities: - type: Transform pos: -24.5,-16.5 parent: 2 - - uid: 17332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-67.5 - parent: 2 - - uid: 17416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 2 - uid: 17549 components: - type: Transform @@ -92707,91 +91819,12 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-75.5 parent: 2 - - uid: 17785 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 2 - - uid: 17806 - components: - - type: Transform - pos: 3.5,-34.5 - parent: 2 - uid: 17831 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-89.5 parent: 2 - - uid: 17832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-89.5 - parent: 2 - - uid: 18069 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 2 - - uid: 18070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-13.5 - parent: 2 - - uid: 18072 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-10.5 - parent: 2 - - uid: 18073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-27.5 - parent: 2 - - uid: 18074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-39.5 - parent: 2 - - uid: 18075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-39.5 - parent: 2 - - uid: 18076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-50.5 - parent: 2 - - uid: 18077 - components: - - type: Transform - pos: -50.5,-44.5 - parent: 2 - - uid: 18078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-37.5 - parent: 2 - - uid: 18079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-52.5 - parent: 2 - - uid: 18081 - components: - - type: Transform - pos: -36.5,-64.5 - parent: 2 - uid: 18082 components: - type: Transform @@ -92816,71 +91849,17 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-78.5 parent: 2 - - uid: 18086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-78.5 - parent: 2 - uid: 18087 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-78.5 parent: 2 - - uid: 18088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-78.5 - parent: 2 - uid: 18089 components: - type: Transform pos: 16.5,-65.5 parent: 2 - - uid: 18090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-69.5 - parent: 2 - - uid: 18093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-89.5 - parent: 2 - - uid: 18094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-101.5 - parent: 2 - - uid: 18095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-100.5 - parent: 2 - - uid: 18096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-100.5 - parent: 2 - - uid: 18097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-85.5 - parent: 2 - - uid: 18098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-85.5 - parent: 2 - uid: 18108 components: - type: Transform @@ -92893,120 +91872,12 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-46.5 parent: 2 - - uid: 18111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-46.5 - parent: 2 - - uid: 18112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-15.5 - parent: 2 - - uid: 18113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-17.5 - parent: 2 - - uid: 18116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-16.5 - parent: 2 - - uid: 18121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 2 - - uid: 18122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-17.5 - parent: 2 - - uid: 18123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-36.5 - parent: 2 - - uid: 18124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-36.5 - parent: 2 - uid: 18125 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-62.5 parent: 2 - - uid: 18126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-25.5 - parent: 2 - - uid: 18128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-79.5 - parent: 2 - - uid: 18138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-52.5 - parent: 2 - - uid: 18139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-38.5 - parent: 2 - - uid: 18140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-55.5 - parent: 2 - - uid: 18141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-35.5 - parent: 2 - - uid: 18142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-47.5 - parent: 2 - - uid: 18143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-43.5 - parent: 2 - - uid: 18144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-53.5 - parent: 2 - - uid: 18146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-47.5 - parent: 2 - uid: 18147 components: - type: Transform @@ -93024,42 +91895,12 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-25.5 parent: 2 - - uid: 18153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-22.5 - parent: 2 - uid: 18155 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-58.5 parent: 2 - - uid: 18157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-18.5 - parent: 2 - - uid: 18176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-64.5 - parent: 2 - - uid: 18177 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-64.5 - parent: 2 - - uid: 18178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-70.5 - parent: 2 - uid: 18179 components: - type: Transform @@ -93083,41 +91924,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-93.5 parent: 2 - - uid: 18192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-69.5 - parent: 2 - - uid: 18252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-28.5 - parent: 2 - - uid: 18306 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 - parent: 2 - - uid: 18357 - components: - - type: Transform - pos: 39.5,-63.5 - parent: 2 - - uid: 18406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-10.5 - parent: 2 - - uid: 18784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-15.5 - parent: 2 - uid: 18824 components: - type: Transform @@ -93130,75 +91936,12 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-52.5 parent: 2 - - uid: 19026 - components: - - type: Transform - pos: 32.5,-37.5 - parent: 2 - - uid: 19031 - components: - - type: Transform - pos: -49.5,-49.5 - parent: 2 - - uid: 19032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-41.5 - parent: 2 - - uid: 19033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-40.5 - parent: 2 - - uid: 19034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-50.5 - parent: 2 - - uid: 19199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-55.5 - parent: 2 - - uid: 19270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-61.5 - parent: 2 - uid: 19328 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-69.5 parent: 2 - - uid: 19398 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 2 - - uid: 19443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 2 - - uid: 19472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-24.5 - parent: 2 - - uid: 19475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-24.5 - parent: 2 - uid: 19492 components: - type: Transform @@ -93210,35 +91953,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-72.5 parent: 2 - - uid: 19511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 - parent: 2 - - uid: 19512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 2 - - uid: 19538 - components: - - type: Transform - pos: -17.5,-53.5 - parent: 2 - - uid: 19542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-14.5 - parent: 2 - - uid: 19543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-20.5 - parent: 2 - uid: 19544 components: - type: Transform @@ -93261,61 +91975,46 @@ entities: - type: Transform pos: 34.5,-17.5 parent: 2 - - uid: 19549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-24.5 - parent: 2 - - uid: 19550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-24.5 - parent: 2 - - uid: 19552 - components: - - type: Transform - pos: 39.5,-23.5 - parent: 2 - uid: 19553 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-11.5 parent: 2 - - uid: 19576 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-51.5 - parent: 2 - - uid: 19580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 2 - - uid: 19644 - components: - - type: Transform - pos: 62.5,-20.5 - parent: 2 - - uid: 19729 - components: - - type: Transform - pos: 33.5,-97.5 - parent: 2 - uid: 20052 components: - type: Transform pos: 84.5,-44.5 parent: 2 - - uid: 20053 +- proto: PoweredlightCyan + entities: + - uid: 1336 + components: + - type: Transform + pos: 10.5,-77.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-71.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 2 + - uid: 10494 components: - type: Transform rot: 3.141592653589793 rad - pos: 84.5,-46.5 + pos: 19.5,-79.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-68.5 parent: 2 - proto: PoweredlightExterior entities: @@ -93491,19 +92190,112 @@ entities: parent: 2 - proto: PoweredlightGreen entities: + - uid: 1709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-45.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-50.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-53.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-50.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + pos: 22.5,-48.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: 37.5,-53.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-46.5 + parent: 2 - uid: 5201 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-42.5 parent: 2 -- proto: PoweredlightPink - entities: - - uid: 3215 + - uid: 5654 + components: + - type: Transform + pos: -15.5,-52.5 + parent: 2 + - uid: 9848 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-43.5 + pos: -13.5,-33.5 + parent: 2 + - uid: 14019 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 +- proto: PoweredlightPink + entities: + - uid: 3495 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: 12.5,-52.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-16.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-58.5 parent: 2 - uid: 12564 components: @@ -93511,42 +92303,23 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-41.5 parent: 2 + - uid: 14027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-35.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 - uid: 16463 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-43.5 parent: 2 - - uid: 17739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-41.5 - parent: 2 - - uid: 19596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-38.5 - parent: 2 - - uid: 19598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-46.5 - parent: 2 - - uid: 19599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-38.5 - parent: 2 - - uid: 19600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-46.5 - parent: 2 - proto: PoweredLightPostSmall entities: - uid: 235 @@ -93581,12 +92354,6 @@ entities: rot: 1.5707963267948966 rad pos: -59.5,-25.5 parent: 2 - - uid: 1694 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-24.5 - parent: 2 - uid: 1702 components: - type: Transform @@ -93611,34 +92378,17 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-68.5 parent: 2 - - uid: 3395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-77.5 - parent: 2 - uid: 3486 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-61.5 parent: 2 - - uid: 3495 + - uid: 4395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-37.5 - parent: 2 - - uid: 3948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-36.5 - parent: 2 - - uid: 4303 - components: - - type: Transform - pos: -35.5,-60.5 + rot: 3.141592653589793 rad + pos: -32.5,-42.5 parent: 2 - uid: 4436 components: @@ -93658,16 +92408,39 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-61.5 parent: 2 - - uid: 5298 + - uid: 4693 components: - type: Transform - pos: 71.5,-70.5 + pos: -32.5,-48.5 parent: 2 - - uid: 5308 + - uid: 5684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-72.5 + pos: -6.5,-61.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-64.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-67.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-67.5 parent: 2 - uid: 6045 components: @@ -93686,16 +92459,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-61.5 parent: 2 - - uid: 7146 - components: - - type: Transform - pos: 43.5,-75.5 - parent: 2 - - uid: 7148 - components: - - type: Transform - pos: -47.5,-64.5 - parent: 2 - uid: 7454 components: - type: Transform @@ -93707,63 +92470,23 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-26.5 parent: 2 - - uid: 9307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-73.5 - parent: 2 - - uid: 9848 - components: - - type: Transform - pos: -42.5,-65.5 - parent: 2 - - uid: 10283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-45.5 - parent: 2 - uid: 10743 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-57.5 parent: 2 - - uid: 10795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-43.5 - parent: 2 - uid: 11130 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-80.5 parent: 2 - - uid: 11131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-78.5 - parent: 2 - uid: 11397 components: - type: Transform pos: -54.5,-27.5 parent: 2 - - uid: 12915 - components: - - type: Transform - pos: 20.5,-63.5 - parent: 2 - - uid: 13390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-101.5 - parent: 2 - uid: 13391 components: - type: Transform @@ -93797,52 +92520,17 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-25.5 parent: 2 - - uid: 13985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 2 - uid: 13994 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 13995 - components: - - type: Transform - pos: 8.5,-27.5 - parent: 2 - - uid: 14014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-43.5 - parent: 2 - - uid: 14027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-63.5 - parent: 2 - uid: 14031 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-64.5 parent: 2 - - uid: 14041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-60.5 - parent: 2 - - uid: 14076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-59.5 - parent: 2 - uid: 14079 components: - type: Transform @@ -93875,38 +92563,10 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-67.5 parent: 2 - - uid: 14100 + - uid: 14120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-64.5 - parent: 2 - - uid: 14101 - components: - - type: Transform - pos: -5.5,-61.5 - parent: 2 - - uid: 14102 - components: - - type: Transform - pos: -7.5,-61.5 - parent: 2 - - uid: 14103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-72.5 - parent: 2 - - uid: 14132 - components: - - type: Transform - pos: -24.5,-29.5 - parent: 2 - - uid: 14137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-22.5 + pos: -32.5,-48.5 parent: 2 - uid: 14142 components: @@ -93949,12 +92609,6 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-54.5 parent: 2 - - uid: 14190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-37.5 - parent: 2 - uid: 14191 components: - type: Transform @@ -93983,12 +92637,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-88.5 parent: 2 - - uid: 14197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-73.5 - parent: 2 - uid: 14198 components: - type: Transform @@ -94012,12 +92660,6 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 - - uid: 14231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-50.5 - parent: 2 - uid: 14332 components: - type: Transform @@ -94053,71 +92695,30 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-25.5 parent: 2 - - uid: 15214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-58.5 - parent: 2 - - uid: 15240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-44.5 - parent: 2 - - uid: 15245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-47.5 - parent: 2 - uid: 15246 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-45.5 parent: 2 - - uid: 15254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-50.5 - parent: 2 - uid: 15255 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-56.5 parent: 2 - - uid: 15256 - components: - - type: Transform - pos: 58.5,-68.5 - parent: 2 - uid: 15257 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-74.5 parent: 2 - - uid: 15258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-71.5 - parent: 2 - uid: 15259 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-68.5 parent: 2 - - uid: 15260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-65.5 - parent: 2 - uid: 15264 components: - type: Transform @@ -94146,121 +92747,23 @@ entities: - type: Transform pos: 66.5,-62.5 parent: 2 - - uid: 15336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-68.5 - parent: 2 - - uid: 15339 - components: - - type: Transform - pos: 75.5,-60.5 - parent: 2 - - uid: 15340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-64.5 - parent: 2 - - uid: 15359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-69.5 - parent: 2 - - uid: 15373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-66.5 - parent: 2 - uid: 15386 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-75.5 parent: 2 - - uid: 15387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-76.5 - parent: 2 - - uid: 15388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-55.5 - parent: 2 - - uid: 15430 - components: - - type: Transform - pos: 77.5,-51.5 - parent: 2 - uid: 15462 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-59.5 parent: 2 - - uid: 15546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-70.5 - parent: 2 - - uid: 15852 - components: - - type: Transform - pos: 48.5,-26.5 - parent: 2 - - uid: 15853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-32.5 - parent: 2 - - uid: 15856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-38.5 - parent: 2 - - uid: 15857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-43.5 - parent: 2 - - uid: 15858 - components: - - type: Transform - pos: 51.5,-40.5 - parent: 2 - - uid: 15883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-46.5 - parent: 2 - uid: 16021 components: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 16022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-36.5 - parent: 2 - - uid: 16028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-32.5 - parent: 2 - uid: 16041 components: - type: Transform @@ -94300,12 +92803,6 @@ entities: - type: Transform pos: -33.5,-27.5 parent: 2 - - uid: 16544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-77.5 - parent: 2 - uid: 16545 components: - type: Transform @@ -94329,16 +92826,6 @@ entities: - type: Transform pos: -34.5,-29.5 parent: 2 - - uid: 16597 - components: - - type: Transform - pos: -39.5,-77.5 - parent: 2 - - uid: 16974 - components: - - type: Transform - pos: 53.5,-96.5 - parent: 2 - uid: 17137 components: - type: Transform @@ -94377,94 +92864,18 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-21.5 parent: 2 - - uid: 18030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-23.5 - parent: 2 - - uid: 18065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-69.5 - parent: 2 - - uid: 18080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-67.5 - parent: 2 - uid: 18099 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-101.5 parent: 2 - - uid: 18107 - components: - - type: Transform - pos: 34.5,-48.5 - parent: 2 - - uid: 18118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 2 - - uid: 18120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-17.5 - parent: 2 - - uid: 18136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-29.5 - parent: 2 - uid: 18137 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-37.5 parent: 2 - - uid: 18156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-47.5 - parent: 2 - - uid: 18185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 2 - - uid: 18190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-90.5 - parent: 2 - - uid: 18401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-56.5 - parent: 2 - - uid: 19030 - components: - - type: Transform - pos: -44.5,-52.5 - parent: 2 - - uid: 19074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-34.5 - parent: 2 - uid: 19273 components: - type: Transform @@ -94482,12 +92893,6 @@ entities: - type: Transform pos: 55.5,-97.5 parent: 2 - - uid: 19418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-34.5 - parent: 2 - uid: 19474 components: - type: Transform @@ -94499,12 +92904,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-62.5 parent: 2 - - uid: 19551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-20.5 - parent: 2 - uid: 20009 components: - type: Transform @@ -94513,11 +92912,41 @@ entities: parent: 2 - proto: PoweredWarmSmallLight entities: - - uid: 15239 + - uid: 1431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-49.5 + rot: 1.5707963267948966 rad + pos: -49.5,-47.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-43.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-41.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-41.5 + parent: 2 + - uid: 9679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-32.5 parent: 2 - uid: 15241 components: @@ -94531,11 +92960,6 @@ entities: rot: 1.5707963267948966 rad pos: 68.5,-48.5 parent: 2 - - uid: 17504 - components: - - type: Transform - pos: 70.5,-46.5 - parent: 2 - proto: PrefilledSyringe entities: - uid: 17022 @@ -94595,6 +93019,11 @@ entities: - type: Transform pos: 75.5,-23.5 parent: 2 + - uid: 5842 + components: + - type: Transform + pos: 22.5,-55.5 + parent: 2 - uid: 6244 components: - type: Transform @@ -94772,6 +93201,16 @@ entities: parent: 2 - proto: PuddleBloodSmall entities: + - uid: 1683 + components: + - type: Transform + pos: 21.5,-53.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 2 - uid: 2480 components: - type: Transform @@ -94782,6 +93221,91 @@ entities: - type: Transform pos: 75.5,-54.5 parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: 21.5,-55.5 + parent: 2 + - uid: 9885 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - uid: 11724 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 2 - uid: 14315 components: - type: Transform @@ -95833,6 +94357,11 @@ entities: parent: 2 - proto: RandomArtifactSpawner entities: + - uid: 4668 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 - uid: 5150 components: - type: Transform @@ -96147,11 +94676,6 @@ entities: - type: Transform pos: -9.5,-77.5 parent: 2 - - uid: 19274 - components: - - type: Transform - pos: 19.5,-50.5 - parent: 2 - proto: RandomSoap entities: - uid: 6202 @@ -96186,31 +94710,6 @@ entities: - type: Transform pos: 2.5,-66.5 parent: 2 - - uid: 17157 - components: - - type: Transform - pos: 12.5,-52.5 - parent: 2 - - uid: 17158 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 2 - - uid: 17159 - components: - - type: Transform - pos: -11.5,-32.5 - parent: 2 - - uid: 17160 - components: - - type: Transform - pos: -27.5,-53.5 - parent: 2 - - uid: 17161 - components: - - type: Transform - pos: -29.5,-34.5 - parent: 2 - uid: 17163 components: - type: Transform @@ -96221,11 +94720,6 @@ entities: - type: Transform pos: 23.5,-65.5 parent: 2 - - uid: 17172 - components: - - type: Transform - pos: 28.5,-49.5 - parent: 2 - uid: 17320 components: - type: Transform @@ -96260,11 +94754,6 @@ entities: parent: 2 - proto: RandomVending entities: - - uid: 1710 - components: - - type: Transform - pos: -3.5,-69.5 - parent: 2 - uid: 5837 components: - type: Transform @@ -96280,16 +94769,6 @@ entities: - type: Transform pos: -4.5,-7.5 parent: 2 - - uid: 6238 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 2 - - uid: 6239 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 2 - uid: 7677 components: - type: Transform @@ -96300,54 +94779,29 @@ entities: - type: Transform pos: 73.5,-19.5 parent: 2 - - uid: 7758 - components: - - type: Transform - pos: -3.5,-70.5 - parent: 2 - - uid: 8038 - components: - - type: Transform - pos: 26.5,-35.5 - parent: 2 - - uid: 18329 - components: - - type: Transform - pos: -32.5,-51.5 - parent: 2 - - uid: 18330 - components: - - type: Transform - pos: -32.5,-39.5 - parent: 2 - proto: RandomVendingDrinks entities: + - uid: 5912 + components: + - type: Transform + pos: -34.5,-52.5 + parent: 2 - uid: 9913 components: - type: Transform pos: -42.5,-67.5 parent: 2 - - uid: 10246 - components: - - type: Transform - pos: 28.5,-57.5 - parent: 2 - uid: 10802 components: - type: Transform pos: 48.5,-50.5 parent: 2 - - uid: 14365 - components: - - type: Transform - pos: 8.5,-37.5 - parent: 2 - proto: RandomVendingSnacks entities: - - uid: 595 + - uid: 1743 components: - type: Transform - pos: 11.5,-37.5 + pos: -35.5,-38.5 parent: 2 - uid: 5273 components: @@ -96369,26 +94823,11 @@ entities: - type: Transform pos: -26.5,-18.5 parent: 2 - - uid: 14336 - components: - - type: Transform - pos: 27.5,-58.5 - parent: 2 - - uid: 14721 - components: - - type: Transform - pos: -41.5,-67.5 - parent: 2 - uid: 16051 components: - type: Transform pos: 42.5,-75.5 parent: 2 - - uid: 16117 - components: - - type: Transform - pos: 7.5,-61.5 - parent: 2 - proto: RCD entities: - uid: 5860 @@ -96493,11 +94932,6 @@ entities: - type: Transform pos: -17.5,-36.5 parent: 2 - - uid: 230 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 2 - uid: 231 components: - type: Transform @@ -96598,16 +95032,6 @@ entities: - type: Transform pos: -23.5,-34.5 parent: 2 - - uid: 4540 - components: - - type: Transform - pos: -6.5,-41.5 - parent: 2 - - uid: 4545 - components: - - type: Transform - pos: -23.5,-36.5 - parent: 2 - uid: 4546 components: - type: Transform @@ -96633,31 +95057,11 @@ entities: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 4659 - components: - - type: Transform - pos: 24.5,-55.5 - parent: 2 - - uid: 4668 - components: - - type: Transform - pos: 22.5,-53.5 - parent: 2 - - uid: 4690 - components: - - type: Transform - pos: 24.5,-51.5 - parent: 2 - uid: 4741 components: - type: Transform pos: -18.5,-28.5 parent: 2 - - uid: 4742 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 2 - uid: 4743 components: - type: Transform @@ -96713,21 +95117,6 @@ entities: - type: Transform pos: 9.5,-51.5 parent: 2 - - uid: 8213 - components: - - type: Transform - pos: -9.5,-41.5 - parent: 2 - - uid: 8367 - components: - - type: Transform - pos: -10.5,-41.5 - parent: 2 - - uid: 8368 - components: - - type: Transform - pos: -8.5,-41.5 - parent: 2 - uid: 10766 components: - type: Transform @@ -96740,12 +95129,6 @@ entities: rot: 1.5707963267948966 rad pos: 91.5,-44.5 parent: 2 - - uid: 10798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-21.5 - parent: 2 - uid: 10823 components: - type: Transform @@ -96848,11 +95231,6 @@ entities: - type: Transform pos: 14.5,-43.5 parent: 2 - - uid: 18152 - components: - - type: Transform - pos: -15.5,-32.5 - parent: 2 - uid: 18328 components: - type: Transform @@ -96906,75 +95284,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-45.5 parent: 2 - - uid: 4654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-54.5 - parent: 2 - - uid: 4657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-54.5 - parent: 2 - - uid: 4660 - components: - - type: Transform - pos: 22.5,-52.5 - parent: 2 - - uid: 4666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-52.5 - parent: 2 - - uid: 4669 - components: - - type: Transform - pos: 25.5,-54.5 - parent: 2 - - uid: 4670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-54.5 - parent: 2 - - uid: 4671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-52.5 - parent: 2 - - uid: 4672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-55.5 - parent: 2 - - uid: 4674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-52.5 - parent: 2 - - uid: 4677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-51.5 - parent: 2 - - uid: 4681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-55.5 - parent: 2 - - uid: 4689 - components: - - type: Transform - pos: 23.5,-51.5 - parent: 2 - uid: 6916 components: - type: Transform @@ -97556,6 +95865,41 @@ entities: - type: Transform pos: 10.5,-55.5 parent: 2 + - uid: 4205 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: -39.5,-47.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 - uid: 4551 components: - type: Transform @@ -97616,6 +95960,11 @@ entities: - type: Transform pos: 64.5,-21.5 parent: 2 + - uid: 6671 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 - uid: 6857 components: - type: Transform @@ -97657,6 +96006,11 @@ entities: - type: Transform pos: 60.5,-39.5 parent: 2 + - uid: 7158 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 2 - uid: 7160 components: - type: Transform @@ -97672,6 +96026,16 @@ entities: - type: Transform pos: 66.5,-49.5 parent: 2 + - uid: 7234 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 - uid: 7309 components: - type: Transform @@ -97737,6 +96101,121 @@ entities: - type: Transform pos: 25.5,-88.5 parent: 2 + - uid: 14011 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 2 + - uid: 14012 + components: + - type: Transform + pos: 26.5,-46.5 + parent: 2 + - uid: 14014 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: 26.5,-42.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 14039 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 + - uid: 14041 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 2 + - uid: 14057 + components: + - type: Transform + pos: 27.5,-47.5 + parent: 2 + - uid: 14074 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 14075 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 14076 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 14077 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 14078 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 14088 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 14117 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 - uid: 14359 components: - type: Transform @@ -98113,56 +96592,75 @@ entities: - type: Transform pos: 30.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 9822 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 17989 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19444 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19446 components: - type: Transform pos: -25.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19447 components: - type: Transform pos: 12.5,-76.5 parent: 2 - - uid: 19448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 19449 components: - type: Transform pos: -45.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19450 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19451 components: - type: Transform pos: 30.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19452 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 17356 @@ -98261,6 +96759,11 @@ entities: parent: 2 - proto: ShardGlassReinforced entities: + - uid: 2304 + components: + - type: Transform + pos: -3.7276778,-34.553207 + parent: 2 - uid: 7802 components: - type: Transform @@ -98286,6 +96789,11 @@ entities: - type: Transform pos: 1.5636982,-72.57246 parent: 2 + - uid: 14146 + components: + - type: Transform + pos: -8.546482,-37.101284 + parent: 2 - uid: 15469 components: - type: Transform @@ -98311,11 +96819,6 @@ entities: - type: Transform pos: -42.6255,-79.322044 parent: 2 - - uid: 6672 - components: - - type: Transform - pos: -20.285402,-65.214096 - parent: 2 - uid: 6969 components: - type: Transform @@ -98331,6 +96834,11 @@ entities: - type: Transform pos: 57.418205,-62.48799 parent: 2 + - uid: 8807 + components: + - type: Transform + pos: -14.446809,-60.429398 + parent: 2 - uid: 16647 components: - type: Transform @@ -98466,11 +96974,6 @@ entities: - type: Transform pos: 46.594925,-73.20312 parent: 2 - - uid: 6671 - components: - - type: Transform - pos: -20.597902,-65.12376 - parent: 2 - uid: 6932 components: - type: Transform @@ -98491,6 +96994,11 @@ entities: - type: Transform pos: 59.330914,-62.53247 parent: 2 + - uid: 9074 + components: + - type: Transform + pos: -13.478059,-60.538773 + parent: 2 - uid: 13337 components: - type: Transform @@ -98595,6 +97103,8 @@ entities: - 15265 - 15266 - 15274 + - type: Fixtures + fixtures: {} - proto: ShellShotgunImprovised entities: - uid: 17439 @@ -98617,12 +97127,16 @@ entities: rot: -1.5707963267948966 rad pos: 70.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7311 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShuttersNormal entities: - uid: 252 @@ -99032,12 +97546,16 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15199 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 7136 @@ -99046,6 +97564,8 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 3098 @@ -99071,6 +97591,8 @@ entities: - Toggle - - Pressed - AutoClose + - type: Fixtures + fixtures: {} - uid: 5999 components: - type: Transform @@ -99088,6 +97610,8 @@ entities: 6224: - - Pressed - Trigger + - type: Fixtures + fixtures: {} - uid: 6233 components: - type: Transform @@ -99105,6 +97629,8 @@ entities: 16993: - - Pressed - Trigger + - type: Fixtures + fixtures: {} - uid: 6674 components: - type: Transform @@ -99121,6 +97647,8 @@ entities: 2281: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7129 components: - type: Transform @@ -99131,6 +97659,8 @@ entities: 18451: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8850 components: - type: Transform @@ -99151,6 +97681,8 @@ entities: 8855: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10578 components: - type: Transform @@ -99235,6 +97767,8 @@ entities: - AutoClose - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 10582 components: - type: Transform @@ -99317,6 +97851,8 @@ entities: 15175: - - Pressed - Close + - type: Fixtures + fixtures: {} - uid: 13186 components: - type: Transform @@ -99396,6 +97932,8 @@ entities: 3041: - - Pressed - Close + - type: Fixtures + fixtures: {} - uid: 13187 components: - type: Transform @@ -99477,6 +98015,8 @@ entities: - Open - - Pressed - AutoClose + - type: Fixtures + fixtures: {} - uid: 16617 components: - type: Transform @@ -99491,6 +98031,8 @@ entities: 15886: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17742 components: - type: Transform @@ -99507,6 +98049,8 @@ entities: 313: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17829 components: - type: Transform @@ -99551,6 +98095,8 @@ entities: 7772: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17875 components: - type: Transform @@ -99571,6 +98117,8 @@ entities: 4945: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17876 components: - type: Transform @@ -99590,6 +98138,8 @@ entities: 4938: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 5437 @@ -99606,6 +98156,8 @@ entities: 5539: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10224 components: - type: Transform @@ -99626,6 +98178,8 @@ entities: 6210: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12415 components: - type: Transform @@ -99651,6 +98205,8 @@ entities: 654: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13194 components: - type: Transform @@ -99677,6 +98233,8 @@ entities: 626: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13195 components: - type: Transform @@ -99691,6 +98249,8 @@ entities: 546: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 15700 components: - type: Transform @@ -99777,6 +98337,8 @@ entities: 11978: - - Pressed - Forward + - type: Fixtures + fixtures: {} - uid: 15849 components: - type: Transform @@ -99863,6 +98425,8 @@ entities: 11978: - - Pressed - Off + - type: Fixtures + fixtures: {} - uid: 16241 components: - type: Transform @@ -99880,6 +98444,8 @@ entities: 10890: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18371 components: - type: Transform @@ -99897,6 +98463,8 @@ entities: 18213: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 19574 components: - type: Transform @@ -99961,6 +98529,8 @@ entities: 14056: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 16210 @@ -99969,11 +98539,15 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19256 components: - type: Transform pos: -26.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 16191 @@ -99981,6 +98555,8 @@ entities: - type: Transform pos: -8.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 208 @@ -99988,11 +98564,15 @@ entities: - type: Transform pos: 66.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8576 components: - type: Transform pos: 57.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 8652 @@ -100000,21 +98580,29 @@ entities: - type: Transform pos: 26.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16106 components: - type: Transform pos: 36.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16109 components: - type: Transform pos: 34.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16192 components: - type: Transform pos: 26.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 16195 @@ -100022,6 +98610,8 @@ entities: - type: Transform pos: 30.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBio entities: - uid: 16817 @@ -100029,6 +98619,8 @@ entities: - type: Transform pos: 4.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 200 @@ -100037,12 +98629,16 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7289 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCansScience entities: - uid: 14148 @@ -100050,6 +98646,8 @@ entities: - type: Transform pos: -23.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 6764 @@ -100058,12 +98656,16 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18850 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 16196 @@ -100071,11 +98673,15 @@ entities: - type: Transform pos: 19.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16197 components: - type: Transform pos: 29.5,-102.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 13203 @@ -100083,22 +98689,15 @@ entities: - type: Transform pos: -26.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16198 components: - type: Transform pos: -15.5,-40.5 parent: 2 - - uid: 16211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-38.5 - parent: 2 - - uid: 16418 - components: - - type: Transform - pos: -15.5,-36.5 - parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 2732 @@ -100107,28 +98706,38 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9406 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14139 components: - type: Transform pos: -0.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16179 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19281 components: - type: Transform pos: 11.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignConference entities: - uid: 5608 @@ -100137,6 +98746,8 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 19069 @@ -100144,6 +98755,8 @@ entities: - type: Transform pos: 4.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 3832 @@ -100151,6 +98764,8 @@ entities: - type: Transform pos: -3.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDangerMed entities: - uid: 17782 @@ -100159,36 +98774,48 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18269 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18374 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18375 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18376 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18377 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalAtmos entities: - uid: 9434 @@ -100197,40 +98824,54 @@ entities: rot: 3.141592653589793 rad pos: -15.498708,-51.71671 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16151 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5008106,-33.718235 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17980 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.500819,-41.285877 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17982 components: - type: Transform pos: 22.49896,-37.2837 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17983 components: - type: Transform pos: 22.498604,-59.285027 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17985 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19621 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 16128 @@ -100239,6 +98880,8 @@ entities: rot: 1.5707963267948966 rad pos: 1.4994224,-33.715874 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 12825 @@ -100247,47 +98890,63 @@ entities: rot: -1.5707963267948966 rad pos: -2.5007706,-29.713655 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13202 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16141 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16158 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.49973,-51.71622 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16185 components: - type: Transform rot: 3.141592653589793 rad pos: -26.50135,-54.28437 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16187 components: - type: Transform pos: -30.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19629 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19631 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5013075,-33.288094 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 12824 @@ -100296,11 +98955,15 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16189 components: - type: Transform pos: -30.500944,-18.284409 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChemistry entities: - uid: 6271 @@ -100309,27 +98972,37 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9290 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16113 components: - type: Transform pos: 22.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16127 components: - type: Transform pos: 6.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16134 components: - type: Transform pos: 2.498827,-33.284237 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 16159 @@ -100338,18 +99011,24 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16180 components: - type: Transform rot: 3.141592653589793 rad pos: 7.50015,-51.284824 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17820 components: - type: Transform rot: 3.141592653589793 rad pos: 1.4999281,-29.715975 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 3123 @@ -100358,22 +99037,30 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10764 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16140 components: - type: Transform pos: -15.501332,-42.715443 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16184 components: - type: Transform pos: -35.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 35 @@ -100382,61 +99069,83 @@ entities: rot: -1.5707963267948966 rad pos: -2.5007706,-29.284346 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 1429 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 14203 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.501791,-54.716873 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14808 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15613 components: - type: Transform pos: -26.499496,-33.933483 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16139 components: - type: Transform pos: -15.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16150 components: - type: Transform pos: -1.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16154 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.498922,-55.28569 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16188 components: - type: Transform pos: -30.500944,-18.717422 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16199 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-80.5 parent: 2 - - uid: 19632 - components: - - type: Transform - pos: -15.5013685,-35.71809 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 19633 components: - type: Transform rot: 3.141592653589793 rad pos: 6.50085,-51.716766 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 516 @@ -100445,223 +99154,299 @@ entities: rot: -1.5707963267948966 rad pos: 44.501007,-25.282156 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1830 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 3321 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5213 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5015326,-8.71623 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7888 components: - type: Transform pos: 4.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7935 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.49919,-51.71689 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9298 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-77.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13204 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5012168,-12.284781 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14008 components: - type: Transform rot: 3.141592653589793 rad pos: -26.501286,-54.06827 parent: 2 - - uid: 15790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 15910 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16142 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16144 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16162 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.49889,-51.283894 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16168 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.50092,-33.28325 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16174 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16177 components: - type: Transform rot: 3.141592653589793 rad pos: 26.501543,-75.28514 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16358 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.499287,-25.282099 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16365 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16369 components: - type: Transform rot: 3.141592653589793 rad pos: 28.50031,-21.283514 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16372 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16414 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16432 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16979 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.4993314,-15.717761 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17221 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.4992862,-8.714865 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17409 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.499661,-41.28664 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17707 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5012491,-29.285704 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17809 components: - type: Transform rot: 3.141592653589793 rad pos: -26.50015,-33.06894 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17810 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18198 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18205 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18210 components: - type: Transform pos: -5.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18871 components: - type: Transform pos: 36.5,-77.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19406 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19442 components: - type: Transform pos: -1.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19454 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5003424,-8.714865 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19630 components: - type: Transform rot: 3.141592653589793 rad pos: 6.498548,-51.284073 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19637 components: - type: Transform pos: -5.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 5177 @@ -100669,35 +99454,47 @@ entities: - type: Transform pos: 0.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7936 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.499363,-51.284214 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16130 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.4994224,-33.283478 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16176 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18204 components: - type: Transform pos: 22.498983,-37.717163 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19636 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.499051,-51.286167 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 16132 @@ -100705,18 +99502,24 @@ entities: - type: Transform pos: 2.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16152 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18200 components: - type: Transform rot: 3.141592653589793 rad pos: 7.498763,-69.71605 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 14430 @@ -100724,23 +99527,31 @@ entities: - type: Transform pos: 15.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16133 components: - type: Transform pos: 2.5014625,-33.715656 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16153 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.498922,-55.715004 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19736 components: - type: Transform rot: 3.141592653589793 rad pos: 39.49834,-48.28038 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 16166 @@ -100748,17 +99559,23 @@ entities: - type: Transform pos: -11.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16167 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.500022,-33.28552 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17078 components: - type: Transform pos: -1.4999341,-15.283161 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 16136 @@ -100766,11 +99583,15 @@ entities: - type: Transform pos: 3.4989862,-33.716446 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16163 components: - type: Transform pos: 6.499085,-55.716106 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 1024 @@ -100779,57 +99600,77 @@ entities: rot: 3.141592653589793 rad pos: -15.499675,-51.285248 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3000 components: - type: Transform pos: 17.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14822 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.499496,-33.717285 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16160 components: - type: Transform rot: 3.141592653589793 rad pos: 22.499716,-47.716415 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16161 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16178 components: - type: Transform pos: -1.4999341,-12.716049 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16373 components: - type: Transform pos: 23.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17984 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18201 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5010014,-69.072586 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19639 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.499754,-10.717974 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSalvage entities: - uid: 16209 @@ -100838,6 +99679,8 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-96.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 11099 @@ -100846,42 +99689,56 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16149 components: - type: Transform rot: 3.141592653589793 rad pos: 7.50015,-51.71722 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16156 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16157 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17808 components: - type: Transform rot: 3.141592653589793 rad pos: -26.50015,-33.285137 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17811 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18199 components: - type: Transform rot: 3.141592653589793 rad pos: 7.4985375,-69.28461 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 10664 @@ -100890,58 +99747,78 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10762 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16122 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16123 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16124 components: - type: Transform pos: 22.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16125 components: - type: Transform pos: -1.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16359 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17813 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.499488,-41.71687 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17922 components: - type: Transform rot: 3.141592653589793 rad pos: 26.500002,-75.714455 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19635 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.499051,-51.718567 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 6964 @@ -100950,146 +99827,196 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7659 components: - type: Transform pos: 78.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7661 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7662 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9299 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9300 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-77.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9876 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.501007,-25.714556 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10773 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14068 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14725 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14819 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16114 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16116 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16370 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.499249,-21.715097 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16374 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16378 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16420 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-73.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17814 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17815 components: - type: Transform pos: -35.50011,-57.715824 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17816 components: - type: Transform pos: -52.5,-67.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17817 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.50103,-63.718613 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18869 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18870 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-79.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18905 components: - type: Transform pos: 86.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19269 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.500843,-58.713875 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 16112 @@ -101097,50 +100024,68 @@ entities: - type: Transform pos: 22.498564,-59.717285 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16135 components: - type: Transform pos: 3.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16143 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.501286,-54.50067 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17364 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17807 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.499496,-33.501083 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17812 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18035 components: - type: Transform pos: -4.500692,-12.716591 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18202 components: - type: Transform pos: 12.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19634 components: - type: Transform pos: 6.499085,-55.283707 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDisposalSpace entities: - uid: 19775 @@ -101149,6 +100094,8 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDoors entities: - uid: 18160 @@ -101157,6 +100104,8 @@ entities: rot: 3.141592653589793 rad pos: 84.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 15718 @@ -101165,35 +100114,47 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16759 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16760 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16761 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16762 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19407 components: - type: Transform pos: 33.5,-96.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 522 @@ -101201,6 +100162,8 @@ entities: - type: Transform pos: -6.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 10822 @@ -101209,17 +100172,23 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17380 components: - type: Transform pos: -32.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17986 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 16999 @@ -101228,24 +100197,32 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17003 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17028 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17029 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 16190 @@ -101253,6 +100230,8 @@ entities: - type: Transform pos: 3.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 5207 @@ -101260,6 +100239,8 @@ entities: - type: Transform pos: 11.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 16203 @@ -101268,6 +100249,8 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 16201 @@ -101276,12 +100259,16 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16202 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 14927 @@ -101290,11 +100277,15 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18313 components: - type: Transform pos: 14.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 7095 @@ -101302,6 +100293,8 @@ entities: - type: Transform pos: 50.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 5617 @@ -101310,6 +100303,8 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKitchen entities: - uid: 18300 @@ -101317,6 +100312,8 @@ entities: - type: Transform pos: 1.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLaserMed entities: - uid: 18442 @@ -101325,12 +100322,16 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18443 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 12853 @@ -101338,6 +100339,8 @@ entities: - type: Transform pos: 49.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 16204 @@ -101346,6 +100349,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMail entities: - uid: 5369 @@ -101353,6 +100358,8 @@ entities: - type: Transform pos: 16.5,-99.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 19071 @@ -101360,6 +100367,8 @@ entities: - type: Transform pos: -32.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 8046 @@ -101368,21 +100377,29 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17923 components: - type: Transform pos: 11.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18314 components: - type: Transform pos: 18.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19638 components: - type: Transform pos: 7.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 9303 @@ -101390,11 +100407,15 @@ entities: - type: Transform pos: 30.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14731 components: - type: Transform pos: 27.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 2923 @@ -101403,6 +100424,8 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPrison entities: - uid: 12852 @@ -101410,6 +100433,8 @@ entities: - type: Transform pos: 64.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiation entities: - uid: 18444 @@ -101418,12 +100443,16 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-81.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18447 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 10796 @@ -101432,45 +100461,61 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16756 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16757 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17544 components: - type: Transform pos: -23.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18445 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18446 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19128 components: - type: Transform pos: -10.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19258 components: - type: Transform pos: -12.5,-78.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 19073 @@ -101478,6 +100523,8 @@ entities: - type: Transform pos: -2.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 2221 @@ -101485,6 +100532,8 @@ entities: - type: Transform pos: -12.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 6923 @@ -101492,23 +100541,31 @@ entities: - type: Transform pos: 46.5,-97.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16207 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-104.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16208 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-100.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19731 components: - type: Transform pos: 53.5,-104.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 6645 @@ -101516,12 +100573,16 @@ entities: - type: Transform pos: -8.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18197 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-74.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurearea entities: - uid: 3107 @@ -101530,22 +100591,30 @@ entities: rot: 3.141592653589793 rad pos: 74.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3783 components: - type: Transform pos: 77.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7961 components: - type: Transform pos: 75.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10775 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 6707 @@ -101553,36 +100622,48 @@ entities: - type: Transform pos: 31.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6709 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-90.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15694 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15696 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18910 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-84.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18911 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMedRed entities: - uid: 5972 @@ -101590,23 +100671,31 @@ entities: - type: Transform pos: -64.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5973 components: - type: Transform pos: -62.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8052 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8053 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureSmall entities: - uid: 3559 @@ -101614,53 +100703,55 @@ entities: - type: Transform pos: 53.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7151 components: - type: Transform pos: 51.5,-22.5 parent: 2 - - uid: 11713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-20.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 11730 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11731 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17981 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18145 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-55.5 parent: 2 - - uid: 18361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-20.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 18362 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureSmallRed entities: - uid: 18912 @@ -101669,12 +100760,16 @@ entities: rot: 3.141592653589793 rad pos: 38.50035,-87.62597 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18913 components: - type: Transform rot: 3.141592653589793 rad pos: 36.500515,-82.37051 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 3616 @@ -101683,23 +100778,31 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3620 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15670 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18041 components: - type: Transform pos: 64.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 19640 @@ -101708,38 +100811,57 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19641 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShock entities: + - uid: 3003 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 11726 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11727 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11728 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11729 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 6957 @@ -101747,41 +100869,57 @@ entities: - type: Transform pos: 22.5,-100.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8658 components: - type: Transform pos: 81.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13331 components: - type: Transform pos: 84.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19276 components: - type: Transform pos: 31.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19277 components: - type: Transform pos: 38.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19278 components: - type: Transform pos: 29.5,-84.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19279 components: - type: Transform pos: 36.5,-87.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19280 components: - type: Transform pos: 84.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 14675 @@ -101790,6 +100928,8 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 5613 @@ -101798,6 +100938,8 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVault entities: - uid: 19066 @@ -101805,6 +100947,8 @@ entities: - type: Transform pos: 8.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 7615 @@ -101813,12 +100957,16 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8787 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SingularityGenerator entities: - uid: 5744 @@ -101976,6 +101124,13 @@ entities: - type: Transform pos: -12.5,-63.5 parent: 2 +- proto: SmokingPipeFilledCannabis + entities: + - uid: 11711 + components: + - type: Transform + pos: -20.534903,-42.4654 + parent: 2 - proto: SnapPopBox entities: - uid: 17566 @@ -103168,6 +102323,14 @@ entities: - type: Transform pos: 1.3780347,-62.383446 parent: 2 +- proto: SprayPainter + entities: + - uid: 14149 + components: + - type: Transform + rot: 5.934119456780721 rad + pos: 7.4473543,-9.529352 + parent: 2 - proto: StairDark entities: - uid: 4632 @@ -103440,142 +102603,133 @@ entities: - type: Transform pos: 66.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5854 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-86.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6270 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6959 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-80.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6960 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-92.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7096 components: - type: Transform pos: 52.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13197 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13960 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 14154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-44.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 14818 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14820 components: - type: Transform pos: -26.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14821 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 14827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 2 + - type: Fixtures + fixtures: {} - uid: 14828 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14830 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17803 components: - type: Transform pos: 4.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18203 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18834 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SteelBench entities: - - uid: 5649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-40.5 - parent: 2 - - uid: 5650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-40.5 - parent: 2 - - uid: 5651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-40.5 - parent: 2 - - uid: 5652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-40.5 - parent: 2 - - uid: 5653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-41.5 - parent: 2 - - uid: 5654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-41.5 - parent: 2 - - uid: 5655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-41.5 - parent: 2 - - uid: 5656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-41.5 - parent: 2 - uid: 7781 components: - type: Transform @@ -103620,11 +102774,11 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-37.5 parent: 2 - - uid: 15513 + - uid: 9307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-35.5 + rot: 3.141592653589793 rad + pos: -24.5,-32.5 parent: 2 - proto: StoolBar entities: @@ -103718,13 +102872,6 @@ entities: - type: Transform pos: 72.37239,-40.623806 parent: 2 - - uid: 19378 - components: - - type: Transform - pos: 9.691935,-47.56793 - parent: 2 - - type: Battery - startingCharge: 0 - proto: SubstationBasic entities: - uid: 2711 @@ -104550,6 +103697,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Medical/Genpop Hallway + - uid: 13950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: AME West - uid: 16546 components: - type: Transform @@ -104820,17 +103978,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: AME Hall, North - - uid: 18742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: AME Hall, West - uid: 18743 components: - type: Transform @@ -105796,6 +104943,12 @@ entities: - type: Transform pos: 30.5,-16.5 parent: 2 + - uid: 4690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-19.5 + parent: 2 - uid: 4855 components: - type: Transform @@ -106201,6 +105354,12 @@ entities: - type: Transform pos: 20.5,-17.5 parent: 2 + - uid: 11398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-19.5 + parent: 2 - uid: 11772 components: - type: Transform @@ -106286,11 +105445,6 @@ entities: - type: Transform pos: 1.5,-62.5 parent: 2 - - uid: 17931 - components: - - type: Transform - pos: 58.5,-20.5 - parent: 2 - uid: 18148 components: - type: Transform @@ -107370,10 +106524,28 @@ entities: - type: Transform pos: 42.5,-34.5 parent: 2 - - uid: 3438 + - uid: 1720 components: - type: Transform - pos: -25.5,-32.5 + rot: -1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: -31.5,-58.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-42.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-40.5 parent: 2 - uid: 5082 components: @@ -107405,6 +106577,12 @@ entities: - type: Transform pos: -15.5,-18.5 parent: 2 + - uid: 7148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-39.5 + parent: 2 - uid: 7429 components: - type: Transform @@ -107479,30 +106657,23 @@ entities: - type: Transform pos: -42.5,-79.5 parent: 2 - - uid: 11398 + - uid: 11712 components: - type: Transform - pos: -25.5,-31.5 + rot: -1.5707963267948966 rad + pos: -20.5,-42.5 parent: 2 - - uid: 12420 + - uid: 11713 components: - type: Transform - pos: -23.5,-39.5 + rot: -1.5707963267948966 rad + pos: -20.5,-40.5 parent: 2 - - uid: 13338 + - uid: 11717 components: - type: Transform - pos: -24.5,-39.5 - parent: 2 - - uid: 13997 - components: - - type: Transform - pos: -25.5,-30.5 - parent: 2 - - uid: 14011 - components: - - type: Transform - pos: -25.5,-29.5 + rot: -1.5707963267948966 rad + pos: -18.5,-40.5 parent: 2 - uid: 14013 components: @@ -107534,6 +106705,11 @@ entities: - type: Transform pos: -33.5,-25.5 parent: 2 + - uid: 14111 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 - uid: 14119 components: - type: Transform @@ -107612,11 +106788,6 @@ entities: - type: Transform pos: -32.5,-29.5 parent: 2 - - uid: 16435 - components: - - type: Transform - pos: -25.5,-39.5 - parent: 2 - uid: 16438 components: - type: Transform @@ -107647,11 +106818,6 @@ entities: - type: Transform pos: -40.5,-80.5 parent: 2 - - uid: 17088 - components: - - type: Transform - pos: 9.5,-44.5 - parent: 2 - uid: 17143 components: - type: Transform @@ -108143,11 +107309,6 @@ entities: - type: Transform pos: -22.379463,-51.43902 parent: 2 - - uid: 5912 - components: - - type: Transform - pos: 6.3929605,-3.2707329 - parent: 2 - uid: 5913 components: - type: Transform @@ -108215,13 +107376,6 @@ entities: - type: Transform pos: 91.23651,-82.45368 parent: 2 -- proto: ToyFigurineChaplain - entities: - - uid: 19391 - components: - - type: Transform - pos: -18.517744,-31.41124 - parent: 2 - proto: ToyFigurineFootsoldier entities: - uid: 16126 @@ -108262,13 +107416,6 @@ entities: - type: Transform pos: 52.988304,-98.97241 parent: 2 -- proto: ToyFigurineScientist - entities: - - uid: 15611 - components: - - type: Transform - pos: -22.517565,-35.42746 - parent: 2 - proto: ToyHammer entities: - uid: 15275 @@ -108281,7 +107428,7 @@ entities: - uid: 5148 components: - type: Transform - pos: 9.85424,-44.367374 + pos: 11.488949,-44.128864 parent: 2 - uid: 17381 components: @@ -108614,42 +107761,6 @@ entities: - Forward - - Middle - Off - - uid: 18264 - components: - - type: Transform - pos: 60.5,-20.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 18358: - - - Left - - On - - - Right - - On - - - Middle - - Off - 6123: - - - Left - - Open - - - Right - - Open - - - Middle - - Close - - - Left - - AutoClose - - - Right - - AutoClose - 4205: - - - Left - - Open - - - Right - - Open - - - Middle - - Close - - - Left - - AutoClose - - - Right - - AutoClose - proto: UnfinishedMachineFrame entities: - uid: 8057 @@ -108788,21 +107899,11 @@ entities: - type: Transform pos: 34.5,-46.5 parent: 2 - - uid: 17443 - components: - - type: Transform - pos: -14.5,-31.5 - parent: 2 - uid: 17444 components: - type: Transform pos: -47.5,-55.5 parent: 2 - - uid: 17822 - components: - - type: Transform - pos: 20.5,-48.5 - parent: 2 - proto: VendingMachineClothing entities: - uid: 6158 @@ -109097,18 +108198,24 @@ entities: - type: Transform pos: 14.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5936 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6254 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: VendingMachineWinter entities: - uid: 6159 @@ -109146,6 +108253,8 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelevision entities: - uid: 15276 @@ -109153,6 +108262,8 @@ entities: - type: Transform pos: 50.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 43 @@ -111035,6 +110146,11 @@ entities: - type: Transform pos: 22.5,-10.5 parent: 2 + - uid: 11725 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 - uid: 11800 components: - type: Transform @@ -111096,6 +110212,22 @@ entities: - type: Transform pos: 43.5,-15.5 parent: 2 + - uid: 14124 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 - uid: 14271 components: - type: Transform @@ -111563,11 +110695,6 @@ entities: - type: Transform pos: -33.5,-8.5 parent: 2 - - uid: 389 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 2 - uid: 393 components: - type: Transform @@ -112671,26 +111798,6 @@ entities: - type: Transform pos: -33.5,-39.5 parent: 2 - - uid: 1336 - components: - - type: Transform - pos: -33.5,-40.5 - parent: 2 - - uid: 1337 - components: - - type: Transform - pos: -32.5,-40.5 - parent: 2 - - uid: 1338 - components: - - type: Transform - pos: -31.5,-40.5 - parent: 2 - - uid: 1339 - components: - - type: Transform - pos: -30.5,-40.5 - parent: 2 - uid: 1363 components: - type: Transform @@ -112931,11 +112038,6 @@ entities: - type: Transform pos: -44.5,-12.5 parent: 2 - - uid: 1445 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 2 - uid: 1504 components: - type: Transform @@ -113426,45 +112528,10 @@ entities: - type: Transform pos: -57.5,-30.5 parent: 2 - - uid: 1709 + - uid: 1710 components: - type: Transform - pos: -30.5,-43.5 - parent: 2 - - uid: 1716 - components: - - type: Transform - pos: -31.5,-43.5 - parent: 2 - - uid: 1717 - components: - - type: Transform - pos: -32.5,-43.5 - parent: 2 - - uid: 1718 - components: - - type: Transform - pos: -33.5,-43.5 - parent: 2 - - uid: 1719 - components: - - type: Transform - pos: -33.5,-47.5 - parent: 2 - - uid: 1720 - components: - - type: Transform - pos: -32.5,-47.5 - parent: 2 - - uid: 1721 - components: - - type: Transform - pos: -31.5,-47.5 - parent: 2 - - uid: 1722 - components: - - type: Transform - pos: -30.5,-47.5 + pos: -16.5,-28.5 parent: 2 - uid: 1723 components: @@ -114956,11 +114023,6 @@ entities: - type: Transform pos: 55.5,-58.5 parent: 2 - - uid: 2289 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 2 - uid: 2295 components: - type: Transform @@ -114996,21 +114058,6 @@ entities: - type: Transform pos: -10.5,-67.5 parent: 2 - - uid: 2303 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 2 - - uid: 2304 - components: - - type: Transform - pos: -15.5,-35.5 - parent: 2 - - uid: 2305 - components: - - type: Transform - pos: -15.5,-29.5 - parent: 2 - uid: 2307 components: - type: Transform @@ -115531,11 +114578,6 @@ entities: - type: Transform pos: 9.5,-81.5 parent: 2 - - uid: 2836 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 2 - uid: 2845 components: - type: Transform @@ -115566,11 +114608,6 @@ entities: - type: Transform pos: 41.5,-78.5 parent: 2 - - uid: 2886 - components: - - type: Transform - pos: -15.5,-36.5 - parent: 2 - uid: 2931 components: - type: Transform @@ -115736,11 +114773,6 @@ entities: - type: Transform pos: 65.5,-74.5 parent: 2 - - uid: 3007 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 2 - uid: 3010 components: - type: Transform @@ -119017,21 +118049,51 @@ entities: - type: Transform pos: -8.5,-26.5 parent: 2 + - uid: 11916 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 11917 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 + - uid: 11918 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 - uid: 11945 components: - type: Transform pos: 44.5,-73.5 parent: 2 + - uid: 11947 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 - uid: 11981 components: - type: Transform pos: 49.5,-32.5 parent: 2 + - uid: 12420 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 - uid: 12709 components: - type: Transform pos: -24.5,-15.5 parent: 2 + - uid: 12786 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 - uid: 12799 components: - type: Transform @@ -119042,6 +118104,16 @@ entities: - type: Transform pos: -23.5,-19.5 parent: 2 + - uid: 12915 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 - uid: 12929 components: - type: Transform @@ -119057,11 +118129,31 @@ entities: - type: Transform pos: 73.5,-39.5 parent: 2 + - uid: 13208 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 - uid: 13254 components: - type: Transform pos: 73.5,-38.5 parent: 2 + - uid: 13330 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 13390 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 - uid: 13393 components: - type: Transform @@ -119122,6 +118214,36 @@ entities: - type: Transform pos: 72.5,-37.5 parent: 2 + - uid: 13964 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + pos: -30.5,-50.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + pos: -31.5,-50.5 + parent: 2 + - uid: 13974 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + pos: -33.5,-50.5 + parent: 2 - uid: 14010 components: - type: Transform @@ -120667,11 +119789,6 @@ entities: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 965 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 2 - uid: 966 components: - type: Transform @@ -121793,35 +120910,11 @@ entities: - type: Transform pos: -55.5,-65.5 parent: 2 - - uid: 1740 - components: - - type: Transform - pos: -34.5,-51.5 - parent: 2 - uid: 1741 components: - type: Transform - pos: -33.5,-51.5 - parent: 2 - - uid: 1742 - components: - - type: Transform - pos: -33.5,-50.5 - parent: 2 - - uid: 1743 - components: - - type: Transform - pos: -32.5,-50.5 - parent: 2 - - uid: 1744 - components: - - type: Transform - pos: -31.5,-50.5 - parent: 2 - - uid: 1745 - components: - - type: Transform - pos: -30.5,-50.5 + rot: 3.141592653589793 rad + pos: -14.5,-33.5 parent: 2 - uid: 1807 components: @@ -122065,6 +121158,12 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-19.5 parent: 2 + - uid: 2343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-36.5 + parent: 2 - uid: 2380 components: - type: Transform @@ -122790,6 +121889,12 @@ entities: - type: Transform pos: 71.5,-25.5 parent: 2 + - uid: 3948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-36.5 + parent: 2 - uid: 3951 components: - type: Transform @@ -123419,11 +122524,6 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-21.5 parent: 2 - - uid: 7097 - components: - - type: Transform - pos: 3.5,-60.5 - parent: 2 - uid: 7115 components: - type: Transform @@ -123517,6 +122617,12 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-36.5 parent: 2 + - uid: 7568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-31.5 + parent: 2 - uid: 7578 components: - type: Transform @@ -123746,11 +122852,6 @@ entities: - type: Transform pos: 54.5,-47.5 parent: 2 - - uid: 8704 - components: - - type: Transform - pos: -31.5,-54.5 - parent: 2 - uid: 8813 components: - type: Transform @@ -124036,6 +123137,11 @@ entities: - type: Transform pos: 36.5,-30.5 parent: 2 + - uid: 11982 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 2 - uid: 12408 components: - type: Transform @@ -124208,12 +123314,35 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-33.5 parent: 2 + - uid: 13947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-34.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-35.5 + parent: 2 - uid: 14046 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-38.5 parent: 2 + - uid: 14072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-54.5 + parent: 2 - uid: 14093 components: - type: Transform @@ -124594,11 +123723,6 @@ entities: - type: Transform pos: 61.5,-15.5 parent: 2 - - uid: 7260 - components: - - type: Transform - pos: 66.5,-27.5 - parent: 2 - uid: 8231 components: - type: Transform @@ -124624,6 +123748,8 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 7812 @@ -124632,6 +123758,8 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 7811 @@ -124640,6 +123768,8 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 7815 @@ -124648,6 +123778,8 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 7814 @@ -124656,12 +123788,16 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7816 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 3191 @@ -124925,6 +124061,16 @@ entities: parent: 2 - proto: WeaponTurretXeno entities: + - uid: 1718 + components: + - type: Transform + pos: 41.5,-21.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 - uid: 12956 components: - type: Transform @@ -125046,6 +124192,18 @@ entities: parent: 2 - proto: Windoor entities: + - uid: 4706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-59.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-55.5 + parent: 2 - uid: 6205 components: - type: Transform @@ -125311,18 +124469,6 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-40.5 parent: 2 - - uid: 9896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-42.5 - parent: 2 - - uid: 9897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-43.5 - parent: 2 - proto: WindoorSecureAtmosphericsLocked entities: - uid: 8009 @@ -125353,6 +124499,12 @@ entities: parent: 2 - proto: WindoorSecureEngineeringLocked entities: + - uid: 4657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-53.5 + parent: 2 - uid: 4865 components: - type: Transform @@ -125512,12 +124664,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-29.5 parent: 2 - - uid: 4205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-21.5 - parent: 2 - uid: 4377 components: - type: Transform @@ -125548,12 +124694,6 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,-27.5 parent: 2 - - uid: 6123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-21.5 - parent: 2 - uid: 7067 components: - type: Transform @@ -125578,6 +124718,18 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-27.5 parent: 2 + - uid: 14133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-42.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-43.5 + parent: 2 - uid: 19647 components: - type: Transform @@ -125725,12 +124877,73 @@ entities: rot: 3.141592653589793 rad pos: 76.5,-62.5 parent: 2 + - uid: 4569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-52.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-51.5 + parent: 2 - uid: 4610 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-31.5 parent: 2 + - uid: 4654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-55.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-54.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: 24.5,-55.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-52.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-51.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 2 - uid: 4866 components: - type: Transform @@ -125759,6 +124972,18 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-85.5 parent: 2 + - uid: 7070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-51.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-52.5 + parent: 2 - uid: 7272 components: - type: Transform @@ -125769,6 +124994,48 @@ entities: - type: Transform pos: 33.5,-72.5 parent: 2 + - uid: 7668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-51.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-51.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-53.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-54.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-52.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-51.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-55.5 + parent: 2 - uid: 8826 components: - type: Transform @@ -125814,6 +125081,29 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-15.5 parent: 2 + - uid: 14135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-36.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-37.5 + parent: 2 + - uid: 14145 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 2 - uid: 16394 components: - type: Transform @@ -125841,35 +125131,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-72.5 parent: 2 - - uid: 19483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-36.5 - parent: 2 - - uid: 19484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-34.5 - parent: 2 - - uid: 19485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-37.5 - parent: 2 - - uid: 19486 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 2 - - uid: 19488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 2 - uid: 19535 components: - type: Transform @@ -125949,6 +125210,11 @@ entities: - type: Transform pos: 51.5,-64.5 parent: 2 + - uid: 585 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 - uid: 760 components: - type: Transform @@ -126072,6 +125338,16 @@ entities: - type: Transform pos: -16.5,-10.5 parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 - uid: 1804 components: - type: Transform @@ -126222,31 +125498,11 @@ entities: - type: Transform pos: 17.5,-47.5 parent: 2 - - uid: 2316 - components: - - type: Transform - pos: 26.5,-46.5 - parent: 2 - - uid: 2317 - components: - - type: Transform - pos: 26.5,-42.5 - parent: 2 - uid: 2318 components: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 2319 - components: - - type: Transform - pos: 27.5,-47.5 - parent: 2 - - uid: 2321 - components: - - type: Transform - pos: 26.5,-47.5 - parent: 2 - uid: 2322 components: - type: Transform @@ -126257,36 +125513,6 @@ entities: - type: Transform pos: 15.5,-47.5 parent: 2 - - uid: 2324 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 2340 - components: - - type: Transform - pos: -31.5,-37.5 - parent: 2 - - uid: 2341 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - - uid: 2342 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 2 - - uid: 2343 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 2 - - uid: 2344 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 2 - uid: 2345 components: - type: Transform @@ -126337,6 +125563,11 @@ entities: - type: Transform pos: -56.5,-30.5 parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 47.5,-22.5 + parent: 2 - uid: 2389 components: - type: Transform @@ -126382,6 +125613,11 @@ entities: - type: Transform pos: -25.5,-44.5 parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 - uid: 2673 components: - type: Transform @@ -126395,23 +125631,53 @@ entities: - uid: 2704 components: - type: Transform - pos: -32.5,-44.5 + pos: 40.5,-22.5 parent: 2 - uid: 2709 components: - type: Transform - pos: -32.5,-45.5 + pos: 48.5,-22.5 parent: 2 - uid: 2726 components: - type: Transform - pos: -32.5,-46.5 + pos: 43.5,-22.5 parent: 2 - uid: 2727 components: - type: Transform pos: 19.5,-37.5 parent: 2 + - uid: 2836 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 - uid: 3105 components: - type: Transform @@ -126677,21 +125943,6 @@ entities: - type: Transform pos: -8.5,-80.5 parent: 2 - - uid: 4383 - components: - - type: Transform - pos: 26.5,-45.5 - parent: 2 - - uid: 4384 - components: - - type: Transform - pos: 26.5,-40.5 - parent: 2 - - uid: 4385 - components: - - type: Transform - pos: 26.5,-41.5 - parent: 2 - uid: 4386 components: - type: Transform @@ -126712,26 +125963,6 @@ entities: - type: Transform pos: -5.5,-18.5 parent: 2 - - uid: 4393 - components: - - type: Transform - pos: -31.5,-53.5 - parent: 2 - - uid: 4394 - components: - - type: Transform - pos: -31.5,-55.5 - parent: 2 - - uid: 4395 - components: - - type: Transform - pos: -32.5,-54.5 - parent: 2 - - uid: 4396 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 2 - uid: 4397 components: - type: Transform @@ -127037,21 +126268,6 @@ entities: - type: Transform pos: 39.5,-14.5 parent: 2 - - uid: 4556 - components: - - type: Transform - pos: -30.5,-46.5 - parent: 2 - - uid: 4569 - components: - - type: Transform - pos: -30.5,-45.5 - parent: 2 - - uid: 4570 - components: - - type: Transform - pos: -30.5,-44.5 - parent: 2 - uid: 4571 components: - type: Transform @@ -127102,46 +126318,6 @@ entities: - type: Transform pos: -32.5,-8.5 parent: 2 - - uid: 4700 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 2 - - uid: 4701 - components: - - type: Transform - pos: -40.5,-9.5 - parent: 2 - - uid: 4702 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 2 - - uid: 4703 - components: - - type: Transform - pos: -38.5,-9.5 - parent: 2 - - uid: 4704 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 2 - - uid: 4706 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 2 - - uid: 4715 - components: - - type: Transform - pos: -40.5,-7.5 - parent: 2 - - uid: 4723 - components: - - type: Transform - pos: -40.5,-8.5 - parent: 2 - uid: 4761 components: - type: Transform @@ -127157,81 +126333,6 @@ entities: - type: Transform pos: 21.5,-75.5 parent: 2 - - uid: 4850 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - uid: 4891 - components: - - type: Transform - pos: -41.5,-44.5 - parent: 2 - - uid: 4892 - components: - - type: Transform - pos: -41.5,-45.5 - parent: 2 - - uid: 4923 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 2 - - uid: 4924 - components: - - type: Transform - pos: -41.5,-47.5 - parent: 2 - - uid: 4927 - components: - - type: Transform - pos: -40.5,-47.5 - parent: 2 - - uid: 4928 - components: - - type: Transform - pos: -39.5,-47.5 - parent: 2 - - uid: 4929 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 2 - - uid: 4930 - components: - - type: Transform - pos: -37.5,-47.5 - parent: 2 - - uid: 4931 - components: - - type: Transform - pos: -37.5,-44.5 - parent: 2 - - uid: 4932 - components: - - type: Transform - pos: -37.5,-46.5 - parent: 2 - - uid: 4933 - components: - - type: Transform - pos: -37.5,-43.5 - parent: 2 - - uid: 4934 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 2 - - uid: 4935 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 2 - - uid: 4936 - components: - - type: Transform - pos: -40.5,-43.5 - parent: 2 - uid: 4937 components: - type: Transform @@ -127702,6 +126803,11 @@ entities: - type: Transform pos: -17.5,-73.5 parent: 2 + - uid: 11716 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 - uid: 11872 components: - type: Transform @@ -127722,6 +126828,21 @@ entities: - type: Transform pos: 51.5,-60.5 parent: 2 + - uid: 13888 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 13981 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 - uid: 14115 components: - type: Transform From af2bea7f66a1e482bc14235a81f8f093e43ca83c Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Wed, 27 Aug 2025 16:30:53 -0400 Subject: [PATCH 169/194] Add test of disposal unit throw-insert behavior (#39479) * Add test of disposal unit throw-insert behavior * Remove initially-empty check --- .../Disposal/DisposalUnitInteractionTest.cs | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 Content.IntegrationTests/Tests/Disposal/DisposalUnitInteractionTest.cs diff --git a/Content.IntegrationTests/Tests/Disposal/DisposalUnitInteractionTest.cs b/Content.IntegrationTests/Tests/Disposal/DisposalUnitInteractionTest.cs new file mode 100644 index 0000000000..d4b20a55a8 --- /dev/null +++ b/Content.IntegrationTests/Tests/Disposal/DisposalUnitInteractionTest.cs @@ -0,0 +1,54 @@ +using Content.IntegrationTests.Tests.Interaction; +using Content.Server.Containers; +using Robust.Shared.Containers; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests.Disposal; + +public sealed class DisposalUnitInteractionTest : InteractionTest +{ + private static readonly EntProtoId DisposalUnit = "DisposalUnit"; + private static readonly EntProtoId TrashItem = "BrokenBottle"; + + private const string TestDisposalUnitId = "TestDisposalUnit"; + + [TestPrototypes] + private static readonly string TestPrototypes = $@" +# A modified disposal unit with a 100% chance of a thrown item being inserted +- type: entity + parent: {DisposalUnit.Id} + id: {TestDisposalUnitId} + components: + - type: ThrowInsertContainer + probability: 1 +"; + + /// + /// Spawns a disposal unit, gives the player a trash item, and makes the + /// player throw the item at the disposal unit. + /// After a short delay, verifies that the thrown item is contained inside + /// the disposal unit. + /// + [Test] + public async Task ThrowItemIntoDisposalUnitTest() + { + var containerSys = Server.System(); + + // Spawn the target disposal unit + var disposalUnit = await SpawnTarget(TestDisposalUnitId); + + // Give the player some trash to throw + var trash = await PlaceInHands(TrashItem); + + // Throw the item at the disposal unit + await ThrowItem(); + + // Wait a moment + await RunTicks(10); + + // Make sure the trash is in the disposal unit + var throwInsertComp = Comp(); + var container = containerSys.GetContainer(ToServer(disposalUnit), throwInsertComp.ContainerId); + Assert.That(container.ContainedEntities, Contains.Item(ToServer(trash))); + } +} From ecc499a7d5df976772cb6950bb48ef0ab48642b1 Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Wed, 27 Aug 2025 13:37:31 -0700 Subject: [PATCH 170/194] [Bugfix] Generators can now be weightless. (#39787) FIX Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- .../Structures/Power/Generation/generators.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml index 410df05021..456a83046b 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml @@ -2,6 +2,7 @@ - type: entity abstract: true + parent: BaseMachine id: BaseGenerator description: A high efficiency thermoelectric generator. name: generator @@ -12,10 +13,6 @@ range: 5 sound: path: /Audio/Ambience/Objects/engine_hum.ogg - - type: Clickable - - type: InteractionOutline - - type: Physics - bodyType: Static - type: Fixtures fixtures: fix1: @@ -27,9 +24,6 @@ - MachineMask layer: - MachineLayer - - type: Transform - anchored: true - noRot: true - type: Sprite sprite: Structures/Power/power.rsi state: generator @@ -49,8 +43,7 @@ supplyRate: 3000 supplyRampRate: 500 supplyRampTolerance: 500 - - type: Anchorable - - type: Pullable + - type: Anchorable # Reduces anchor time to 1 second - type: Damageable damageContainer: StructuralInorganic damageModifierSet: Metallic From 63f38558ca88d527dc99d7f84b8618783aea0fb7 Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Wed, 27 Aug 2025 13:43:55 -0700 Subject: [PATCH 171/194] [Cleanup] Remove FellDownEvent (#39762) * Remove * Better description maybe --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- Content.Server/Hands/Systems/HandsSystem.cs | 3 --- Content.Shared/Standing/StandingStateSystem.cs | 18 ++---------------- 2 files changed, 2 insertions(+), 19 deletions(-) diff --git a/Content.Server/Hands/Systems/HandsSystem.cs b/Content.Server/Hands/Systems/HandsSystem.cs index 0f7b6ce3f9..4d47ea4a78 100644 --- a/Content.Server/Hands/Systems/HandsSystem.cs +++ b/Content.Server/Hands/Systems/HandsSystem.cs @@ -201,9 +201,6 @@ namespace Content.Server.Hands.Systems var holderVelocity = _physicsQuery.TryComp(entity, out var physics) ? physics.LinearVelocity : Vector2.Zero; var spreadMaxAngle = Angle.FromDegrees(DropHeldItemsSpread); - var fellEvent = new FellDownEvent(entity); - RaiseLocalEvent(entity, fellEvent); - foreach (var hand in entity.Comp.Hands.Keys) { if (!TryGetHeldItem(entity.AsNullable(), hand, out var heldEntity)) diff --git a/Content.Shared/Standing/StandingStateSystem.cs b/Content.Shared/Standing/StandingStateSystem.cs index ffe8f2c156..e7bd9e5f58 100644 --- a/Content.Shared/Standing/StandingStateSystem.cs +++ b/Content.Shared/Standing/StandingStateSystem.cs @@ -243,22 +243,8 @@ public sealed class DownedEvent : EntityEventArgs, IInventoryRelayEvent } /// -/// Raised after an entity falls down. -/// -public sealed class FellDownEvent : EntityEventArgs -{ - public EntityUid Uid { get; } - - public FellDownEvent(EntityUid uid) - { - Uid = uid; - } -} - -/// -/// Raised on the entity being thrown due to the holder falling down. +/// Raised on an inhand entity being held by an entity who is dropping items as part of an attempted state change to down. +/// If cancelled the inhand entity will not be dropped. /// [ByRefEvent] public record struct FellDownThrowAttemptEvent(EntityUid Thrower, bool Cancelled = false); - - From 2ebdd9d4cd04a5fdfd671db5e3ff05e52b3c8976 Mon Sep 17 00:00:00 2001 From: Blaine Pavlock <146504016+PavlockBlaine03@users.noreply.github.com> Date: Wed, 27 Aug 2025 16:06:50 -0500 Subject: [PATCH 172/194] Reagents now drop when dispensers are deconstructed (#39676) * Reagents now drop when dispensers are deconstructed * Updated containers to include beakerSlot types * Update Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Structures/Dispensers/base_structuredispensers.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml index e9797ee24a..d69ab97bab 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/base_structuredispensers.yml @@ -77,3 +77,7 @@ - type: StaticPrice price: 1000 - type: WiresPanel + - type: EmptyOnMachineDeconstruct + containers: + - storagebase + - beakerSlot From a7087c1512914732beeaaf4a85a415cb8e342414 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 27 Aug 2025 21:08:01 +0000 Subject: [PATCH 173/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index cf84bd37fc..9f489f18f9 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: drakewill-CRL - changes: - - message: You can now see mutations on plants and produce. - type: Tweak - id: 8383 - time: '2025-04-29T04:45:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32650 - author: lzk228 changes: - message: When an entity becomes SSD, it will be forced to sleep after 10 minutes. @@ -3948,3 +3941,10 @@ id: 8895 time: '2025-08-27T15:04:39.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39542 +- author: PavlockBlaine03 + changes: + - message: Fixed bug where items would not drop if a dispenser was deconstructed. + type: Fix + id: 8896 + time: '2025-08-27T21:06:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39676 From 1ecf62e72ad36585c1d0cbb1160609141b8ef500 Mon Sep 17 00:00:00 2001 From: Perry Fraser Date: Wed, 27 Aug 2025 17:08:54 -0400 Subject: [PATCH 174/194] fix: monoify card_drag, card_tube_bonk (#39511) Also move an attribution to the right directory. --- Resources/Audio/Effects/attributions.yml | 7 +------ Resources/Audio/Effects/card_drag.ogg | Bin 21803 -> 39438 bytes Resources/Audio/Items/Toys/attributions.yml | 6 ++++++ Resources/Audio/Items/Toys/card_tube_bonk.ogg | Bin 8379 -> 9903 bytes 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Resources/Audio/Effects/attributions.yml b/Resources/Audio/Effects/attributions.yml index 9f85c4fb05..efac498a3b 100644 --- a/Resources/Audio/Effects/attributions.yml +++ b/Resources/Audio/Effects/attributions.yml @@ -258,11 +258,6 @@ source: "https://freesound.org/people/CheChoDj/sounds/609353/" - files: [card_drag.ogg] - copyright: 'created by Tao7891' + copyright: 'created by Tao7891; perryprog (GitHub) downmixed to mono' license: CC0-1.0 source: https://github.com/space-wizards/space-station-14/pull/37363 - -- files: [card_tube_bonk.ogg] - copyright: 'created by Crinkem on Freesound' - license: "CC0-1.0" - source: https://freesound.org/people/Crinkem/sounds/492027/ diff --git a/Resources/Audio/Effects/card_drag.ogg b/Resources/Audio/Effects/card_drag.ogg index 8ecf632e8abb092b042de64b42dca3fac9518d25..d79309953efac0c67ef87c528b03c95b9e4e4261 100644 GIT binary patch delta 38175 zcmb@tXIKnNz#%* zat6ss*c<%4@Bi+e=RV$i=;`XJuIjF?s_vXW{LC_d2Y9J^$5jikqHT;2l$D)b!{z=Kp<--Tsdg z4@jV6?PSHS>}>he&e~MVG1{LCi>0E<{|>O;iAxtq7?YErOZZLur{D|TQ$wi5lkaoh zh$M+f=Re7&a)K{V`2$cyXtcf_OZ2nvCip^{O3VckYiLsaxWMVgmQ8qf@_W5Y(N%|A@_-# zY+=9`wHFA4ikuBIf=peG&5cm)9s)#IGozm9$+2~PhTAtwv6 z(v>Yljp`ziC^BJO<{)rb0HQiU_cIhh0(*h@CmjJwN7dX&uhvkrzUg9v>;k11f>X4G z)}U=7pj}k3enG?&m<@B+sBSo04Hc|}*ZtqzNx)&DKm=PCsFZ)hVgq|9AUi4K{;>k3 zqje*YC<=8saE3Mtg`EHytPh1EgM(degrLYkUfpE2Y!HZXD;DHwYao}3)ekwy(|e$C z-lgkG>zabDp z1!i;eu;afof`>3DrJB*U|!14rfQGypZZLXa@5qDxIqjv4G62JK1#1%rzgUeTqi zE_b6buuaz%^fDZL&?BXP$x6q+nXqaP!uk5oZl8dZiunSx?aOSW+P+{;$P#a)d_YGn#4R%w& z2k;<}mrf7}Zn>%%{A2W2&`WPY3L%g{sN6rzQUsBK)VK(qw*Yh%9JXBHe{h`Ie;_l% z4Vn&Ip&P6u=zTXJs5iOv8!#&_P7)UZx{X|65U6uRoQCd81V{`jOY1+?+8`m2KiD{s zueT_*WCWNg?z8@zBo?Fu4 zPWI2h17QztMs5p5>;A*q_M!d_+c53vvVg zEAnE89+Cm8{{#2kEJnECD%A}-4Xy-Q{D<3+SN;*tQi;N`iEn0v3odQA$v=z#B9{~Q zPoMEx6o|Bd$2T?%h9w3BXzOe>eS*x)@!-JO+#Z7K6TDzG)SVPw5->^aJ!}mmQ*q~O^yun!~ zi3mVmF-!<_$PK?+uyXo0>lp|{ni-q|{{O5@{C}SL-$K0vz5JgE+<<1`f&l1u|6wG5 z{68>(ziyoQA3{Zv83A^|`M1h+fhuzUi+C*e0ulGWybw3O_&+3%Z!Aeo=s&vvYasX^ ztA8e@CWrSQ-9H2n_xNU*|8)UP?uIby9|kP`S?Ue18-}2{()}+2l=M&fKZKejF2nyp z+(-h4^&bM1^uM(mE)dACe@pr(p2RetT$|>@^Lyj~<9|N20PcMMOKd~`zYLy((dBw4oCR)ZW+C;GPif}vn!hoULq{k*3$ z@*wLJ+frVfOgLd4V!|eZcP-7EQ0Qz_H==%(#^sm98jXt_65Rg=L~-bR{?wy%Z2NiF z<^l+WaOZ7`LF=~N6FtocaDbxq0r;=B8ybl^GTTAHQ>s9Gp);BXkRK6FkXQPgF<*pw z%ZEcLm0JlvfI;ORBoy4r!ojc;_}{Xae*VwB|8J-6!iGQ?1t1V?owm}x;i8DeJf(wd zf?Jut9;HUpC8|MVi6o*%Rl?$pL$sU%Nd1GPZ}zeu;MNujDg_=%7>739sn?Jbw5eE& zqx+avohIM&Ktf5^md)(P3npmI6RyA~)l<3~U>G+ou5by5$`*De$gMq%wI{R$o`N<6 za)SH@2RR9OmYtluwEpJ|g7=7=ju|Q_A*%|8Nbq_JIRoR8mVc;~#j1dih}bL1*V1q0 z6qHodH2%*y(%;|zAMGo!^!NYoq}WRNuj$`O@rKae>Ha>Arm~`nl8U~*hM^%~guy6c zFt;$6I~dG;42A$K6?O(bt(wOh|J`*tYPSweK6aYh2u(MWAMj~j<+F_%OcSh?9rkgc zb~Rt0{Wdx{U3CkRZKRah{Olq|>hBxszqy3MUs^168HoQnoqpyr&E~0Arp2P)x8aR= z+}=Cfb&!UEhF32!ZJDd!2IQXy~||8l^ctf97`evw@4pNbwtOG&<yCyzTM z>@%zESSj7wyfc%16PL@jFE^pe(_76wm@15k776Qz~vjW2%!TF69V${*>D)L zpH+EuAT!_M6M1~;;y{k6nMJvIjw`Wppq<6M2X*+%dk3yoTephcv<+_gkA?~_570ev zj?v=nC{$BSfCMXILt3#~u{syOe#C+V?z8uVefhhn)dyf!2N_PqM{OJS5-r_>8m}6G z-oc^t%ggj!CvT44-J0gk@{AU~A*}EGL-GYzA=iW1G(Xat;9+ZcA4=j(3|ry+I($Dq z?#(|r$`w%{u!6jR%XKFElWsx zg{x+Du7Pshfg@@0572!aVelNFpwur#);_l-qVM*B(SfpRoelc+i^uG%hpH3-fecg- z$kE1XQMnFD$+b-3UxVGLkeI(49r|@qMyoM%Q4HhUd^Jsto=j_1+m)4J*B!z8rad6j z2Te;MMywZk2lp{w=U!psn_%(Z`eEWAR{&8CF3(aElD{Ecu-dPcHSy5%i zWxK1xpLo{{(2fqeO#Aw6Iw9F{NNh;l!rfXa&V$y8`6qsJ8z%=1Yn84Wm&Hr85#`_z5U z`fuAE&Dr{=b_5-6tdPD9uUqe;(;K(T5?gd09G?56U7zTdiOcL@zC`(+?qv$^sSzkg zgbFlq(0}T29McJ{#@+Hc(xQQ?G6!<&R>NVC+1s+ zB4m&Oi9)H*Z%{+3GJX|QA~0lX7> z&yLQT(n89#2hr}Q_I6PiFZZ}jln&HrZ?`67*0U+4ETg^LU~yAqjunrgd)=pH$7_tCV-&)B@AJjUvY6(k z+e-m2!s~mS`v&l5RP=L`F@R&QD3emy@VE6(AK)$I?9sgiIeL_blmh`xP_L&|&!*U) zwtlq4EHaC+^t>5AX|{Mv+L+*6qcXWw|Sw0NfRfRa-6Df z6*1@Xzj&;=%51+8zi7?Ac*H6@?gAfv1@XT#=PF-AfR?3{wyG;0;)w(%7frZOdD~2u zYl0GNLT-PTta;sIC_eoj9^ol8;-3{bAmO6U!->Ke=A0R4)x3`;UFja;dlQi|;Nep7 z3pqTWfEG z-%p`=!V*%aAXi!})N+?^N?g(*w=?Tf8bqK za?Q@Uwy~1$Lv5O`m8I7zeY7j_%+zFF2`+gxbGooz@pt6*;9`Md%_h^Be><6b)ovo% zqVjS3VPS;;Wm?c10a-lwoA}}Jem~cVbl0qw#Nr6suMf97DoS(aqgOB^AylA+dwv;H2rt+*>*wwAs~gZI}CRpE36x z_p2f(cp@^0@sfMJr>pg&ugCk}Q_UzJ{w{}|T@@_Upe?zi6|8CCmVJ(BX321qz=2eb z`@`@i&7EHXQ4h~lN^E*!NO52_*eu;r_7=7j_KQC;wdy#Cu(_4g z8tRwjh60X37uJh+ezZt^Qv7AXP-`=^&8%lotG~x9V((Hw<@G}s$q}ym*`nb1SZ)}p z%c)4sk3>(OGVPm+Qm)cmI7J%3E_6q>=T9b|9>10x3#q|3r`skBXAI00eO*Uxb#A7n z6K4H_BRy)fZTIuS=1(u)5QmrSQf$4bA3t-aiMfGVTD=K8$P;PD^-nv>O<9N6ugTtq zDb|Q<5g)VCPShu|(~+~TS|o1$wQ)QRu#Y&pKX_8JpL0e!|K4yFnXBY#-pafBHkJ$R zO7CIUE-LXtV08cZX;%yP2h5Xm`3Sk59?Wg0{KktwSPtC6JFHPkHS8@ezzF2`1!8ggQ;WA+5;f4<65$F)Hqh3wyAlacf1t#yJpKazR{wt zAYkLUpvQNYO=`<9;|q@;SFQu^!Gn#T8zmkPn=FXidY&i98Kql1^l3CMRqSu2b=R&h z;S?3as*r-0UnP+EIz6@c_*6`o?YYR0sE4jXbul5R92A+}B-bGxo8L6UTR0C&cDB&d z0N2vwSB30Ox*tZZ)M?2fEx3<0MA3PB=}~?yP4@48C*OlNEG5sU=5cS?nAPAHS<|!w zma`rYgy%9}-mO0k^0XVN&n$1UrpQ6NPJ77wN;&Q_ZTQ6~nt5quSaj*6=19;xM7Ji* zt?EkAgnvL@vPIcU;~>M8UsVHpX3pY06o0YkH&DVU(udemDMVUtFHvO1|Pg z$(;D1vEGk&e}2%|)tyaSb`%=oSRAn`rj@rg8R*WbDDynt6N&ilL)m``objo}HC-B= zzL#_yEBJdFOx$ng$G{e!R;8pZNbL1;=p^5lql0MMXj>ibKkzxer^bE9%b=+b2wSMP z$@%bY_q@u^vGZZbewLqy6iF1R-|;xqm^eDW=6Txo$d;-n4VR)4&H5$f6maE%%7Ms?105oEeW(cl;a1WZawKW=Ck z?Hl_!-*2Y3P9;-+U8+hQF!$iSm8tDfxd!ipc{}cn#_soOGDc1lf!b~lfqX4WbM?h8 zl$Zjga-FxdaeaxjwD!?;2|$ed5U?j!8OWh7(;cB-kAAN%-;?16*0(e=Raw@kHqI>P zUi`RtvAt)~C);d45PJWexW`Vj1AlaCH$m&)i@OFPtc9=%^-l^-r{ouHb4C?NB4s1b zO9l^r;Dg$;&jJlullR24=ZPHQ?~d7#y^g%}k-N5-G$6M4W^ldZsg~tE~Q5uj_dz z!MT0;Ygrao9NIio9irS3w!hfKJDm|3UPC?YL0Bi)ov})|CnN;=hybD zb>%og&foL`0M!^l`n$m;{*X6C%v&sN`@>(SNRVtjjJ$(z`!&(&2USU$^ZRuq5aVa% zBlUGz?)Pc)GxW6U(cRTLW6}oxT2tJt2i&FW zhD*nSEERgv1o%50$B%wP&BWjjeY|BJnhYddWPIhS(*%&$mPIBCdWO-lou6?s`YQUy zefd)`JDYVEc)cHtP{i+U>%17nPii+#l~tZ4#|D^Ev}*Pvre9yffA;ghoJ~vb(d`|3 zPu6#et{&pA(8gHLbeSo9L)N5XkIkv19u-GDWa=x9aaMgrboRKBfW2ILXm_5yP=g6+4A}QqxYJUKxQ2!^J0X`$% zTsQB%Zr+HEedN7MhQU0>UyAZ z24;I^Rb}?`Vo0gxu5j(_XdjS26-7s*s0gq4^Xl=zQyr1C;Dh}Njgbd;6+h3$M;OR= zAmcTpNr_?J2N?@JFpd4h?rT055izk?O8d^uwT>AD z3$M2|fr;Ao&Ew%@v#DMEPgqU$yauHC$KI~iP*e~k#xC_erKJtaDa-{T2MOTiY8V=w zO&k;Xtt`riv_|M}lQO|tJEXP&k6?H;TcvL%=3Zwc_dXmo5gk~Dd(k4?x6G3-97Bv* z+D4&$D9Swod;9J+gn&Ioz)slrOFY!`Q5OxO++w5G!6Ct5#!9i4dg0v!& zRewZC$*QCy(+g`>#a}4mhyPU-+3td7JSHQ!}qVFi9&~L6sxquh>Iq7tD(txdIoErh4B%i-?^`y>&zMX#?ky& ztRt(N7wlpDR}no@9&#mQXNrIrAMC9iYf|S zChE~#f(Mz}@wij(g)2JoAIR_S5RjdaXNhOnyT60ibT7t^PX!<5&Eu7}XtUsb6@dLF zoh^UP)!8D!`cPo&(u*w&8McujasSSnxyC3GVgJ8OK&K_@nYt&3==AM7R?%NZ)NASZ z-&FOkkZw(W$`a$)Dv3KzG!bt5{O701-Y5Pt!Kpq|TI`s?D>l7|6D* zVEz3&YzP1ma|=t8rN{9fQGL$W_}o?4x zq5z(a!sOCsT8Azc9C0~GPQPA+WANHXCcO0V*y^1lQ`b#T(=OF{Rk=Va{Hc#h%Z1);1BA(){$0 z@9%w?T2dCyDudp~&*^!pW)Z*H-5|eOatAo_IZh+=JS3hH2$B+cuu-JqZdQ%U03vr? z94|k#9BAqVkq&H>bFf=#Es`2%-dO_pU!L*0HLRMsi4%{m&TlovynfQq%wCaC-Y>z` zsj7F2YO%(*kf&ai{lHfFfQvaMyjoRURaL8LwEax3lO^2y9qq5)B|K~Apf1{k*;PQ| zuSw@wQ=fFT{hqLI&bLZAjmZ}9WiLI%&^5Lulo7NG3f5|rZJc&2GD+`&;pu0nh2+ja z^!wUa2m8DyRU;=Ul3@{Jx7+REK{Fx~?=Thljt~8P$t zx#in8@p`KNp!jL;wQOxTzSzmqJ@Tl)?Zap%3U>ps1N&LO1s4)p^mQ)7c1yN^)v@F^ zPVvSrD>w#!!$aWE#ydLCMuoJ|a}v|$DPK4oYU+t$+wQVP&KwQR#axNVt^ix`$$<1U z?Y<@5nm}Z|uBU!U>{nY!AcmfQmAg=dbJ&F!3*tW<|NQi)=`^P*^v{qhR{J$~vghy| z`gU2)8?ofhpogzHJhNRI4Uuk1kv?xjTW-gWJ-uIALsdS!XG1Ff;z@11@L7VB&W;X) zb_Z@^{J}<%z$xF!iB2H?xH5?0S2_iF3`M~b?)OOibUJjJBM!GKD~xgJWs4mmtEz~g zuYdkU{~)=_z~U}-fXayD_|wYjg2P?=*VHzL6^-V{Jkr(t2WneeC>(0x6>Fzb&0QRn z&gYKUibwaSwGU@3>FDo<5&8Hy@i#Mhib_)U{~v zeqEOCawIeDHx#W~6VaA6vl@8n?Jg=__FJ-Hf=ahbynmybmyGq|u?|s(J=RvZ!Yv|K z`Qs^VlfwbA)Af(Ob@4%;$tl#!@UnvSqY#w3E@gHt+0pXn5jxJ<;sSB#d zVc$)3gtUf33_9*Xse;G#Y)*t6eBVh*LGNo>LLfjy;WtPJpIzblXOa?xzhsnlDUXn{ z;qesd{YQt0vy8ibrn0lx%GjlX!M(KubsNJ2e{8&tN!((*=}iX_(=yoUmUn`h{EnyR zS!^@)dSZ>WEU;Q50c7LWZDsKV2dA|$wio^PLNa5o0r#{LHnZ~6%ZiY{og<=aA6KTL z{NX*QUWbI1-BF*z++uMkEG3Ty$dgKS*-QM4W7={pRHpvME4x9@tJJb@pTkt3&m$T#>(*A%c6 zKK|#7uGj#}bDMImwM%tsMJG3h5DCx-+(w$@&F@JYZ;6%^i0M-+(Vj+h!{pfJg?3n- zH?BSuq;*JdzO~!aBpLZ@H&$-J*fm47qfmknepx$v#mP%PrsvpOQkvEF^vTxu z6d$|rn$D9y{d=i%Jc=VCr5+OjHR-HAnZ891E~uso5V^WmH2g~J@nYbbZe8A%hlcNdjHuI1jhvsZR7i;VnbD>p%pW9<7RKT)U2>efoh7Nr+lb91yb4vDaV+Y6o8Si-1wy z`GP(y+LeKt{&h}+VIYfr?qWs%#dqg<)|6OFiH2}i!!FhsDxzV5Z`DR5X)B|Q;kI5I zxqvlASatqP!qfZmR$sn;$}9W6>L4R!H|3V=L5y;-60PAeX>Os)(mFNB%Js#TF{kS8 zAM9w=KTaK)2rAwPJRq$J){%zM%5f9;xa13aT33=|TWw^IrA7HlzMB6M@}c{FRSM%Q zuL+c^C4K~tK;q9alt4T=!Nm*V3q?h;MgU_me&IB@kitS7S%Mz-Yv1t9^o!`Zd7IQ` zwoK^DS|x$~kIN}DE&1Y0{iahjKLWaHnuEQX(o)P%=qHs=yRofuzh#Mx9XZks1{zSGh<3rIL?SpLhx&-qK(HB#rO}j&j5!YxF9B&|$ zPz>E7$P)WldBVVemtLFc-lvib;jZe{eCOK}lOo;e<{p1(d-rUr%U+^8vR52&6c3Iz zTxzDL6R(>&Q@1iPOB9v!Mj6F3<~>BJn~D=Jq^9M&2w!@rZnu<4sD_{WUZCMauoM4B z1H_hP4;z~#y!!{j?-uA0yXT0s-ckWFl~|idw!JddW=ig5i{-sNn<{7&>@Q11BI!$m zDlQq-t6PxclixGO3AAM9i>yWCV)P?sO5P-Sto$8uCAI^sK%ekSILuXIz{2{Su&K!+ zYfU42b%jZggjHt*H5^vwWoaGeGN$KcFn3o|O4O>_7E!M`3uMM=#4gY|k^$LDV{w~M z*D2ira(T5(3JFIiQ{5Dbj;A8-mr?JZ&zU@&74U;jiu`!>r=+GHHA^x^;q8m2(BQTZ z2NnJg29pn|{P5PdG*L^X=&&V-iRBpMfL>zq#>JjL5ZW zLpe+7d3?vmYU#{f-Hp|yy`S+s{vbAa+_Ir@iL*$D{>+##~itgG&xU`+0z?CKg&z>>rE@^Zan!sjeP(_W` zJ>jae9M~;;IYRgvmR2J@$EUN+zV9j1Q0Vo$orqq{n-cR%D&fD=I^w%Dd$CTI-e>i! zzWoSN^Ppb3YphAHN(4Z%Q`eM#=q_KmqSS-p4sZK2(#nC#oQt0IhYov0_Yhd_buRaM z+Wif5c@`zO{+7m(61$W{y_;58xN6#9$u%%UV2|16*Ng4>%#=duIFDF|z<3h&?8 z#Pj7eW*+B+TJhIh`egIbj-Q4cnxt68+V0f-Xrs-djUH zb1ywscdb8LuN_`xg^>H9kec<&1+d7!8xb;|k{Bo(gM(igms(s;3?9Fk10u{MV+M3_ zJv>6_BQVs5WdgpdfAerI_1pbg9FT2a(Pt67Gg||d-5)|ve>P_7ra&eCR?hyQ7{~l@ zcAwrw+P(LB6Dh>|oK%^>aKiTQuLw%>&chz#R~RggY~D|r!NmhYg*X!-X#i@G@4@ho zm4k_oSG9Zwuuk3>rDeH*@bv$f}>``|=wkTitJ+5P?9|YO zS&8lwd%~ldwjWQspEi@Xh*9S$MzU#1OQYdu&|{0mDgAuj$v~3(@_$BgJ9`S5aj0v; zzm_dUo4CUs5-6wk=EVb-E3LY8iUu4uX+|aY8bZRz?2$WdZMZ%scpZ%2h#gn!WZ!zS zSUU1b6>oYa(971b9hmJ5{D=k}OWa^Ox47PVqZY$%>1Xuje%cVp$hAn2 zgONOqYK?lnMmsSVwrWDN&%Ou)L#-K8dGrV7ignc-*<2?4VFNoUJzRf>`HySQZ<%b9 zB_*0fXJ6@U?(gtwv9JPj;$`uIj4ZtstFb?57$)0i7JD&Mqm5Or&7)d})KAHzYER{U z?!D2H7;Bu1%ZUdB1kJC$d1^;Erca#Y@;kgV9`h{t=GN4oBc|UyyC(pCvvrM#O~CJg zIGG-&*(WMp)G+n-FtvWo8^0rKzZloPsl3|L$@@GcBYbCB@okD1FMm#S<@-{X?X+F& zj_FDcuai{E>CH?pz1oN|(=7?o`pNWz13AdZ#>6k4KZW{0uj>308Sb}Rt|bvfMRZGh zMiisy_6MivRhJ*HfX{KG24)T|?PLQY@75P`CO+k|WXkcl$+LB?=?R1||r)}bizCarqDbhDaN zr5CJDfLiqufYl`|sC@{xiy+!j%|rTY-nK+A3#Kjn?br-sAd(G{GrRivCt$xPYAuM{ z&eY-4qy$G;nIIOVL5kl$$#2mMs<_dbIf_EMugv%ndGFBXj?FKY6UUO-ZY5Q%-IkrT zWN~biP2_19aYIGDS_@bWnI7P+U0d@%WqI#cp7@{~2u0y-W_!~O>br^G{#jv<#ky7x zZ0hKIZ_Jq_PHS8>)W=yB9Tr_(JKtv|U#Aq>a_R>m5nP*q`iPMPlJYrqp9gceH5lU`$eUHVU{@>(%sbB}ahgjO%!! zm-p+l9&sLyh8Dn9vQMVvilWEnzfcygjwBsG=V3)O(u}4BOURr(Ii=A0aLqP>Y=*TF zJ)&Du%tn#j=+4z&R}<7tC4zO|v%X!*=8r_7RALugYJBc8WF0Q>T(=M( zvbh#frnJQh>(yO?NI$*m18Lfs!#;%YYP8svk0M-kO>t_(S*Vf-KN2@@BY7qcMo>uQ zi2l__l#`IX=qO~ZFkLo?&s`VN_Ep%*yF>xG^mwW{A{X}QjoP@k>`Y&LU0#AxHx04? zkp8v4yJ6j7oE3uKzl07r_t5Tjt~MCy=n8m}^GRM_=q+vV@!v>-?KpWH@%>v zTuORtO+^`)&dxPp?*8@hJQ8aX>%B(8UC!=sn?%gqcCMmmXwehkNP?-ab@ZvyaiE=M z$PS+!g8y}A{}_CG7B*|ExGUd?cIhtz(w`!`y{^LLj`hr0(=M`;IG)OM1(-4BE0tfB zeUD|EFD0+KRuTC2u69}4UBZ?;*~8#ZHz2hPQ+z0(*0x{9RT7ye#oQO+%-g625&PV> z7s*-hjR-GJ83WbIbrGy1g8ea=v+~tVy+s;B0o&7^@~`ArfWLSXSF$h^P%5$ncp9R2 z;TT>|%eeg8<)gztKNhzMQ^Y2b=tCQ%^XE;0Z--4NoE9AMS$Zn?rnN8dJ1d6eDtfyO^D}khl)I^)lxyry0z&g5o44{ZZjp3{5$zWWX1Yxz z@oikf+pNbQZ>d=^^PN&Hp!5Jzd#i+^iZ82lE8MGyBSs)xT&KjIrrI8liezDn_#V4W z!pX2zx78CH#oa=(D%BjWeAPAARBY#t&Lxi#{Me{-kG-tX&mkC#u-vmhMX}H-w5G^V zg|P2IypuxSReiTk#cC;mg;%~Jf7&}kRtg3(JRC0j^>s&Y%c*unZ{p3URJc<8#s{_4`y0VE=%l98L1xIIki?E3C~$dCo7F< znQhDT5zJAZmv`tq6fH6GYqv)c<7=ePM7Md*)@306HZ1Y5uUvYKPO1CcRVkCnu%WHT zu_}qSQkEZFd2U1-XEvHY&QIB0VA#}o5rVoSS+MRWmwno<3cmt`Z8aZmw5Unb_D|zy zbO(Fep2v8sJmL7lezKHqW!f{@NG!gzH15#9QHc+{yI!{vDKA|&>Yba49q@2)Cbsi3 z%B8(poj1QWpa=i+nsWmmPvzQ3IE|a0ZBxut?^^JYaw_aQDnZT3m@6&D-_gQjU;UQx z=B6bXQmbd0F!txAJ&!XK z^V-buz9{Gay0%70Zn~M;(vf-+nS8Af3nm_Zw$W5CFmh$ma~HX!)rYrc_)tA+ASEBK zbGP64%*k4IxWDasLDuf!VRdqAFaD$)ktjD_8#0yz7@up z6)B$DXC(r}x9f^djpVRgVK?Jr2HuS;sE)mfFFmF(8l1=eZ1F8BT~iqAMd=HH7UI1l zB7QNAY9q(-;epZGxV!^pyFW)iC~n0tZ8gUBc8*YL&xBpyk)ht#dRCP%{vx=9pB?>Z ze1x+1{=H4ui&dK?ea~EHwQTJPmBl@#sCylBR1&on!2F-yT#JCoA@#?bnQqz`@yvGE zE5(6>g#E$&5Y5tSYTrfL>svlA?$A6YUHMkT7&VD~yxY_i_SpJ6=D4r9!hjlfI>cNQ zC4*uR4q5tjDQ+)vJL-{)7v`E~?TIVs7uN}gfuD45seB0dY13$v+sJFdry9`Maybw( zw}Tsq0Fvssd5BIt|3o(tpN8ahJe}hpXF8UPB3jZ(-h9s)x<>6itPU+xMoC6II$BqczD;Z+Kfm_Db^E;?=R5x>|eABZ;>WA*saf`fLX}Xhr+!ym`)WM z*#X79?(c6zc|=OZzy}Z|h2p44@E~5G47i>@n15J>htPXJJ)U@1kNK0{%vSV?w5#R* znNX?np1!bcJ9}&|jIvm*QCmu7@4vkfQY_28uYgcyWc6Mh~Tv%+6 zG;d{9+3rCwVe{rHQKdMmt+S}51V-vyfTs%UEQw~`ou(iQ^ zck|rC{V+`uKc<67*w7_V*_Ji5ioFZBz@k}{jj!L=sx`(F=CD1OA$FMNaK{Zm|0Y~s zTGkS)X|}R&q0pN;RTfrsrvhwIWt1alr}`)CeI}WN^J*pOo_6Yn!l&j`i7u?1Wwm#9 z0-8Vw*rAgino{-&zdalI~x8N`4)O)qQ zb?@Z9Q*cENeR#`V=36kTcx-9*I-szw=l9O?=Y-kYOIEG#>D!d9&BPxGrUM}(f&7Ub zUH!Qow;WU1;-i97SJd3q3}Tj%;Hk<^p%eU~A7bMvpxm#^lkGV%Tyx9Fz8(MMR4Y}6 z>9=r5X|M748`?~GX$pqTuVPS=db3dgO~sa!r3|d-90_+OTT~Q{Z)<#*tBf^WDD7dD zMtbYJaV&X}Uf)f5qk%6m0wngDHBhg5lG}9?vs*ehf3@S;8xtmyzmhT^J#u7IbnGcP zIZra&3^>R7&BuPP1)Iz(T+>Q}h z42?TGz8x}hEJp})_x7RT#WS_(+34MJBEFHVPh1TS?q>Kwr^&=XKoU&{BPPaqM)iC2&D=*=9g;r76!#4>tNqXQ$CfGQx{?;Ss27G_#*I{Y_Wt3n-s&;x9P@zwGMe0zLHH_A!iqN_!w<^M` zIXW=)Xi96itTBw)TeIU)y{l2L(b9W6X8Di3HasiqCHP^=dIPKW1JhD5x0vgXwb+9c ziVruV8lpqCf9i|bc0lXqM}5cBt38x9LmOME=N?ab_odfIR-Rrn`OKZxc>>eGdZPF4 zIFRf@xe{6`*4QW$5B*b2{pU3aSLXqfZ>$jG8W&3t>H_uIU<7&g;I{3bcS1%~2np=N z-I~e#D$xMvzut^ELyhQNl2lkxb4CpDyH}yxjO-;5`2bTn=?OtT*L%WOJcesRIm4erhna%RL8(jRsn8D7p(&@QPtLo)M7n2+haIcv z$?jGugOUA-M4@vPDZL$Q05?B4^^L>tXS&KfAxr$ikJ%DdGWQ}joVYCq+n&ai_QWQT z`^;E2q#)mj#}M*G+fj%C$OgP|X^N0fZ8?=sVo7ZcNF;P4FLZMWb|g5KaHUyj5s8wi z$a}d%<*#-7e_IXJ6cLPT^PKjRe#*~NB6a10nkvAn-QhL2x4eMeS+S%jUK3|`FM85( zzf|NleNSxACd}YPA@~zd)8yc?-nK+`*?Aa5rZCqcLW`_n*C`5skX{P$QHdMWYG0yL zM#{1!(SBuRmzn8G3Yu5Z_15q6cdpdgNP|M=WRPBR$jNYnC9YDx@W*#qzP-LudoybL zqx7R#xEQ7Hv}0O^dUDg`nX&qY;y2$@-$>)#%=C~QySV_-knTO=f*z% z))3^_!|H41|BxVSJVxRQCwv!eZuskoBlm$dygIx`BwjZ~x77Q{a9X}x^NJUITFr1H zD#DM!GIp{0YhsIXI8XEN-5fQm8#MP8J~a02&m5dbO(_BR+o@|_dVCZmWbyXq0$5iT zxn|u0yjmYO@E9g?c|<3yBOCL)ia(7sCF%dI*htlN*GtA5=x@7MNyK$oTx(<3%{71G z`Ne~uE-A{kZ0JvyzEI9{Be68yl=a+1FYdpFwBFpVo+UvDBHarM zv-L|~2Z9iwRJUwR0&TsQdX!OGA3D3c`pev7>w)tu&RU`=B0oyJnWwujAlha6WR`LF zNMj67geWKPNHo_=ec` zE04#|Y~E9<*j-3ADNg1?6z(BSTSMgvn=|oecO$aH-c}B;8btB$*pX6K`M9IB^Tv;o z3nel1kcj0ne(YX_?$$aHBcxt+4r7~hXV?k0{ejoMc+_8h{k3mFdgnAwle5gM_h@Y| zY7z&4@J;HZOkHQ#ip>BXF804SUH#hv`KV2lKuXr+IcH6RS+(`4XQdIPcM8|W=7pV1_)25zPLXvSk zl3)dY-GUgp<$T6}jAiWcpx+_T$R_=9ibV!cYN2RQG%{*;ysk!LH&ugXBf%pN7?l#k zmV)&Rdzpw(U5NN@7#a#2Y!VhS?y%R}*rt#^zn#);=T_yA9Fj-QZk;_}L9^Mz(XWz5 zAEtTWh@c<&=2puomEZ68 z6#bqR+HM?Zqu?H(dNs5Gh5aLjgg$J4Ql~RvL!x0fuI1 z&L3<#Jrgxxz?1s`f{-*j2aok{O`%UPj5pn3M!yY}ffKCcTeH`iOb%1=M4N1TaF z@l0brdq}UkK^qi^hz}aeICn%-`SVV%FDEsMV$QDLKIFVbeIO=?aG(1bJMH^7 z8e(I#5w8*r+eqA|19{cmy$!gXsr}B=$c->|_^yV7O=x@8lQb^nZ96@0=0%yrw~!b) zNKO_RaoV{&zrd@1@?!2ap@2%!QT~DqZT5|0!Z$i5? z_XLqQ=N|_@y&t%T9yH$H&?q_5JP{xz=W;LNukyW}WSRLGdG~zz6v2T`W_e=AmfHHO zw(VW2A|zcfpk&DN|2%FDrJKclf)jJAAOJn;<<&OoN4{oJN=wnKLX zC7-X+&dj5Zs6{|=8K`=;`(r^Qeq8rt=?A~^6k8|7!@eEZb>?M`h4KXH&X*AL>Nvwy zS&g9d13rq;dtsabZq>RteB;<(wp3fT>|>^Z&wdYifeeAGlApFX(kV=dtOueFEQ z{g9?Rb$WdeuScQkN4YO-?t}j6_1ae_JL_EARR@+7OPLO^+2!h3Y&z22>0lO!#7;O7 z_voYH-)>5}+DZb={1SGx3J{bY-(Gq5>=`FgPE97-?t_`@JRTyq6nwXES0fm=+hRwV ztG-n{bZfom(i&5hU_SRj4vC7~@CRk!?;PUI|8fI6E%W4WRyih<(m`Jf*fnMSek!0Xr)tYefD?8q#obV!oycw<;`WK5BXNu- zz0--voojLyiNdy7DT?RElQE{Qj+A*G9%! zfhroD;kt1F(&yzA5F{`(hlO@_>bK7Yuq?}Ke!9;pP(7ayjT@kGChKp(rts1CVfN}0 zSyX;adH2e5f6paPa^e7Hj_>EWk_U*{er(nfo@+|1uz~5j%2enLo8J`wq8K%mWG*M- z3se6(ErpE5(u+P5e{C1}X&K&hlM{gS-=U7(>h1b47^ z0I`vDb$w@(>U_kVd(JMH(^Fi78lcIKaU9Lv9hXAUgkQ*cIEicbNXXV`*C*wlD@DNG z*VrpRoi&_Be2(+otw5+_;P7c${utmZiQp+wPE&ImUuKlP;QH!I~ZdWf%eTFHSx1@Qlkr^I21s znw{uFmRT3ARrPvW``HJ`Gp;qX%34IOkru@>`y9ReES7)`c5;71DZ8VJ-Z4`v9F8F z9NzivNE_JqjpFzP3$&b8S*h||Kl7M>+(4t&`raT;xWA4k-7*PM-}fpMnXhcjf&Y~~ zk3ujX$cJS;X+?{tn$Hc|l5eO)KSq>KeQd~YG)0lOHf}7)Oq#ULg%n6N6(pdgtsuV| zV|s-B_#E?+PC8)>E2rls_U04+Hqm-&Ebti8TOo@KHL$S+RjU>%b?D-s=W2ZBkAM4j zo0U9aVZYMhdvr7Q(2)V>lLw8wm+d8FqW3paK#|4~pD#W3WbLePmennMI`xsR9GDpJ zxhJ*@s~T`p^*?urF7mtD=%1`L@G;r7e`8h9pUEtCGj@LT^gF`x_Pd~7_JT^{#k3kZ zwH4T2)ZJ3{%BQY%bgVg-P_^+43-2Qm=at9eHGkHRmMovU7{-2qF8y}E6 zuvm?4XRst{x9|IjY93l#OnYG97}ySPYW9M~OESxMslv~wnV;Vn_$|t2e7pYJtvS`a zXk1syjw_+jGRqa-41F88v|c~{v`PgNN&i0vMjB>6#kBuG49wDj#e0EkgaI)y))tii zgD;-_572o1zn=gJZE)aQCB?^B^X`(pEpu5wn<^w|6&Ko@K>0A-XDA#1z zZHZ)hl$bb__vM;&(qOJf$5!=3`6f}|X*^S=S1f|0j_|~t&2PRI2fSmLeIK+|NikV) zH>TbsW&p&N(blSTGLwdjY=Q+uUey@+1j^%KISsT{0)dh48%_~<-e-3iO|SaDu33P} zo4E`^G*~}xo+MoQ9nHOKYy9%5`NG_ES*o={^QXUx_a+@nkIE>bdzy2 zZR16b->}>!>9_c0C27&6bz2;=2>e)x^g5)oG91VucX$>_e?n>aX0mPJgFkjqh=3%I zsOU=OnaU4|_6azRS>Iy&a^Qxed0B4aEYP*QJncpByJ?RerMy1^9~jlF#!qXZ}x?8XPDd9uvmYPr5FjYU`GU2FweyTO(eZ6Y-EHN!zBm zU8mEEk<&R&Xs$Ug`7xBKpmcF>aDB8VYwXLjVh)+^T~40Q``GpAt3*JD+)`IlG?x}| z#}7)wMHl{dB@bCOR&g?SHD=`J<*9b110N@>#H8v$dkR;BkV}8bmz0DwkRP5`s?9xJ z9e0%9r=DC0B16SG8zUR1-1rly;t-PQGme6grq14Zq@|${QQ(i>)Ay6c6i$X3(+I18 zN+N5g4F-~6NC$l|x!!y&fifKp0fJb5t!F1w*usTCo@2yz3U|ZZh-lErJe5m z$R*W2#_k#-UPC8%qM*P_K^X=sg6n#-mIy;NG683UhqYd-0)>{PmQUhoYk3H8Gp87_ zJ@Z+>7s3FA0W#d?vaW@d+4dRg4A9&kM{%Coah@h`n_3Ye?d+F&+u{yCOgMYA3imZV z0(fvW6i7(ly4JWSgH_tqWm*<~_LWK8{Q6>xVhxbp&>PkTAvOR`nz5<7ZSnM*6~5qU zoQrnvnWM=inxq3)$l8~ezQScgVtdNk{ocUNMEhB@9d*spf}#FV_`fFST}8?JG8m7Q zX{>)+a{a{%EhJ4#al5ap-}i`+XoS}sQ~#do9HNi4_*JsMizDJ-d1}68n z3Val)gd2?x2Vbo{v90Ti6~Mh<#U64{0WOOL+o>jX<03-muS>VF$)37KA{zg6kmp zOqbL3`x@Yt_x_sD$ZUK(D)eGTRG9}+(KJq?c=GTL8Do(AAM)H4s}+MHI*Ua16l+&1 zS_i^di-LbwxTkqYFf--p$^FCW8@+X#Zn1(9r_Vi#W6YW6?)(p1l#9eqm^J8IsmXc-nxqGoMaeIcr}R3V~l%HGrM z7lM{2>f=zWih!>ioZft;Cvn!6w(!&Qrjpzh+he-e7Tnc_5JN>%Vs5y-qmgUL)D*ZQ zx>pjF%Nc<{Xl`^vz9};Eqea#IuI6^lcY)r8+25_KBENaocLO&yqazSk3RDD*M)@OwX@d2byD{kgq!_ozHjUZ(?{P)Z`DrvNc)mXZ`cOL zwux4*^DWjMzPD7&&){wEryo(jk0npWtJ8-sQ_A+O@K{Fjt5^#Jrd*~tTHKwRB!Gj9 z^UZ1shw3`W%7`DeCMrm=oTj24DmpG%1VM!tQLZF&CdPMEsFLX8RuMF-f;)D3XB9K- zajeCIUKTL#Hr_pf8?yi7z%52jsp*0SrNLZvHxL`oiZHJ+&!K5Qxw zp+1;-6#q0#F<-EsAr#t;6b-@w%!ptL20U?+FuzHg9t^3+5xbo2$V_bBUH}V4;Oi#)aPcp; z3~2=UE2y`uH$jogmcdb?{^etpMy;a=qcjLiF1{IN)F6a*Z64>oDN3PqyfiAp8p3s& zY3%L$kexLI0}u_i(RR1D6pQWjq2k5`aYI^qB^C8q(Q)GmirFpp=n6H`3fvQ~dyK!0 zUvK}(8E!G(pV^b`2Vf|r{%%6%>{R~>-RcheIBW7MnkbHh31!j7l0}CX^~b4sgw=g7 zbflgIhfU>bIpOn~@OfxpJ+7oz^wS-GRUW-mW^-vDH?K0n{`MFL(@dGDWc@osvs!2F zNWA}!C~`87o?J>{eL;lWzDv>I%L_`{Gu_)5-;Nf89Pp~X2Qoa#qs-dhaNa=^sr9LN9Q$#Pf%cYfoGWQ=M$euTL|{=W6TV{uo&f3&;rKdl|#0lo&YFWTdp;$Y#~; zrC68QT-F!e*z)5WdGDR4Qq{DqNb&exQ>&!6hxgp5+AX7f?|lI3^__38MhYlcL&mLM z0@9lBLsLNq2q|a&3YWU{R2uxW+D$+2^C^F$hu`W4}xpn>;1*6de+m zHpCOyt!2+|bB%EJveg}Q8s+Fk*j}SOpD*MtRU6p`6GjQ#&F^l9^pxBeF5Ml(tCq)Y zzSo%@EV@G9I?g?b{D_ln;$vYkkCb&_?1NKx>X@$qzc?`wx-H3IP}Nuw?Xf!p-Rs=e z6RpS^e>Z`U(l!ejQqdJHf0OU}@rW?~TZyH=l-8w7quB6Ibh{BoYnlQ5T~HHtqZ>vOtfo#vYx>LWbaU)n398<784&|nQaj<|?-!KaikG@^UTY?rf@ zIkAld9{w6Q?bJF-S1G-Xaet&w<+oEbLwi4X-WLi(@5^U&d{ya8T$H$IvR_b2&rG@1 zg7~gT_=`0xcsy8#e{Yoqg((is_*keP!_P}+KzA%PgRxqR&orYe2q7QP(Riq^in+AJ zu^+{G#6vCB^f|rF%0|G`|AqyFS1Kc(!V4hV!As)L2q(nW$BO*yrnyaj5~58@>d~2O z=eIbiA35QFD%e+&*J-~2-(KmfyFMI7`Vh!0D!qlO9EyHtv7?k?oN~)MZ=3l@r++XZ zY8}L&zL@@Tgv>c9bzj+Fi7g&Hn{`^9@J4RtG=?+HWO({Q*SDar^JKj?*hA;IybSPa zmf#h7PP_07)+;j;eO8CIC*-nNdnu+)$feM`vT%ghG3@DTY-pY|OoOL(%CFI>a9%59 zZ2f+z{fA?2Z7LIbl1r{Eh>b@mGa_L8;hm&{M^NYxHI<`(b9D< zL-#2`$I!(H*4peD&^`qmG$k$hR7Nf2lJLw=m7d1;>x0_<9ohUI@ix_P{~9okumU&2 zH*fFkd0Q_${(3&o+R0wIt1slVZGsz1Y&-su-^Hl(y!v~8h|dlSQk{fveVNaXLh^NA z+O_f?yb^jRaNKnV;5kte;?xku)f?n*R@{!O^1FD5vYg0<`j;)jEG=T6+;nALP4S`* zR{cPpj{Tk?YL93=@YKwNrUA*d3+04f5f72fkJDatwSpL;Ql^}_xNH^O5A2Dt&(jpTw`Z3x(HD~`EQ`a$rxnvCRM%%Y`$_|2GhcSMzrmPi$6F*FryE6dP*rCu zw;>G>IeGsXc{`{5>C{m1k9?#>`K(hN;wr)-jb@UjE>*t2)~YLw(gEB=+d>E>xFFau zpwCvdDgP!j#((oY?N%G{+~ge>8m`!^(FtC|A=%AT&16(oQxzKxUdVJnj19;%h_xx6 zIuU7kFP)qiWhCy&Pt#O;o|^EgWZpC~QPmL1fI3Z}Q_C*z1g&ufl$3V8=|5!gYpNw& zp(t9L69Ug8Cz4%7fSZW7GD0=!=OO)#b^5XPlhOq`Wrp7{gMl%xhrQ%gMXqC?ezL&u z@*p-f+sja)j;cBA)_Nvn4QeQs?VpaCn^KKT~6+h=jz7#CApMJWr zbsIW*62`mO(tU9G&;y7ZNHFj1iG(ahW247MxZ`*_f@+{i@^%y};ARa|VF^eG<8KzITg(;NQ}*=WW* zV%mSm28Mfpg@X*f!yp?NN(M$x^5)@z?Eec(FfU2kK5EoF#{+!|_}+AMRQo~!s;)3K z@%!Sy+lxm%vM+C`(RoYK4#;mEWbq5oN8Jqt=`NJ*9ByCVef*`YR>Bd#c4pMHB`U5$ zzCiD11HbkV3S5?+D&Oj0vHQ6J@1d8sTMFBEz8m~9oyY7o@*5tbpD+>z%YYfK=NOJN z&M9wp!)(j(JAL8x^%;QQ^T3+LkUYyHt$loGB=tW^g-357Cdr*Tz|iPLH$wPite?7h zgiwX4^0ORCt=kW>l^S0`tmWd#2p-|`#TL+BqL-K1(&=$kk-j_K-F3`c4)h$5s5HK#mucje;lsn z+!0rX0&`gpJzWOCO~khO7g3hKVIV&%Vv+ZwzY31+%~E(-(vjDJa`74Pku=g=@> zD^We~-!Xb7TVA1$6?Si4yx*-QqhPi_*YUMPEIY6i<}^;hF_=6r-KqsjRDA zdt3XQ!HqIE?CjouyqcS~Ere2SNx=o2McLUlMoDPJ_xG-RGYA)U^5uX>+L6ym z{rgJ{Gn0Kkb}#y!mOECeM1b*l^yG^1kj>>%n~}}w#FxREFBlel=A}_-+SI@0k+J&2 zOcl4}GG_cT#OOO~iQyFd+xGffeW5-_AY12Dy-~(~=x7l4Q&T$5zmv@Wow|8e4j<1>p++zNB zCJg(T9rsg`r!n@Q+BlSNGP9Wfu6kZvjrfp-5b6j}4C`&UWa12flfYI#PG&{?@R2aN zt&=+i@CAe>hmMhZ)`Kd0hp$asKZSQhnJCADSs;A$rykTFjfA(wuP@A=E9}zqQ1yQ5 z{lWDstX*?K%?mVH;)PJWewo#3y zmDaq`K~UAnTSmXVPPi9yo$+Ia6HVur@nXaE>!!V@bvW0j1^ zRZWXJe>?HT#$bRXHA$AM*QFjh5Xm^p4<`>)2@tSg#loWIgI%^2gev{C9uQa3kf{)i zKwf)(bGVIjuM`&+uD|lU*WRe|ksR!HJ6Dt-h;N6If;NthVDY-<>a$@Hk^-#y2=g(y zA|b?qk)0xs13XiR5!mcaRx~*$Oop4vI`xwI{?(zGBe5Q*WRjCGb*O1XmIYZuOw{lx zou_3I7WJUzqAdNu}BW2ZbGde16 zC!ydXtS?7z3ILsSI;RVVCpT<^*Sq>F#M`94wEzhP!}qHH^`H zf{$W8vyW_4M9coaG~55m1Kz_CBNF22OJt<(|42M|gGam3-pz+es$ZR9RZl|Hg{f|d_Z^+f23cZCO8X0Gw1Xc} zZE=!|4(kyLd^G<(f%^=`DVgM!Hok&*I7WHHL|;mE{RB{USt!2#_JLN5DXMTy-N~hm zM#9g68_7aK95SBw2Yds6UnB7mAX(GNY&W29=tdo%@;BAonOMU3zjj+aG^_36UOZq9 zA2X7}3F^V3!3Wq(5)X%$mbR7ClvD7{M*Fo(D`A_u=c$^^*E$#f9HJ$hOrge20`kQZGCe;I~ zC-hH|_LTY>a|#6&oy$CF*%}!JNmePnnJ0;}-QnQ~{5dN{NKES<|Gs+|kF|C0mZZU5 ztzPtgnWVr|N{FWY>MHkk!3mS!H9NEO#I?QIOMAKFv+wB&l+I~s(C<4yH(D(%N~HXL zr{3vyo;>bGSH_y{`EgudpOfUL$b3L$#{x_H9=ma9EpsyHii!&L|-99N+4th9pY z0n4%gZJE$Sc>AkS?ILgyJNaJoxEI`5^MD_N`_1e1a6soT@DkE}AKd7$&r@cQL9D>K zB=)!YXj9Br2-ah@`#INISwq5SD;!Y}K~6X0zPOCRJHKhrto+H2Tk6=`k8mXy*Ea);P^+U?6bzDRK@c$I@e(R3?tpC571*IHpR{EH2U-vMUkPSqzCS2*K4kgerTML!jo~5Sdu? zVgy7;j&CVe&41^~m`Te~6NdM^U4Bd&O?`~5!5eIyL)KWifP;A|lq(NAwbwePO z1Uth$GLc%nSdMwAJ=#qc3IQGbna~RrPXt63NAz{Yqs{DpnAYgiYZ?KxBvME}++(o# z4awRu{oAL{o;o1-4eYRK&;J{^{SaMDuR zX;g82rlwqW7CYB@1BJ7W{-&C}w?QWeZtFiZL7MwlpeV|h#0R=c^oA0I+9rhE`ez~9 z;-Cx8e*ZKbz+>LGpE|GZH3!uk$12Pv;ML=s&yQwMCvZ&%qT5ueYtrsrnj3E+xj8@8 zMNM`v8`=S5&i#!wjViXSo4G#MUv-Z?n>=p< z9`wvH5k{L_pdLN>Q{GP~*7Af|tC=OR-~*N8Xeb{*6H+l(6I{EvYqNR99=^F)D=FbZ zQ)}yO>$g?y<8Sau+TSuFtFq1QPbalKO|4j-p1ZmnR7+}xU9 z^lZ`w+1U7QQey&^!KqgxcO8cWsrXe(dR`ScHP;?nQFm{%1L-|`{Mn}FcpSU7&%n(0 z4b*^xUEx%f5FvBmQFJua_Ak26veW(-s&~R4Z(mBUA zQdoXS`tWO`Js;`z@}M=7>a@E$mEGyL3eTGFTPMRtUz1(PMRz2uBfbaDY1eW}e~$b?t?c`Y@=Yf@7l zCg0W9kT-03)sf@}S=+9@9Ga6&XFKDUCy}EH6SnH<*AGqg?PGFTsyR0^0}9=kDg&t& zoLs0HjvjW}n}1@QeJCoRUZ>TDD8{zX>Y?#`4-bxt(ZxTujWL=aJB5mQ2vfS0?2fi3i|AEeQE-1;WBBHTWsx8 z9*opwr8VUmtx`CSHl{d+E)6q7ZihY**rDU)BKl4dq7Y6Ep z)?}R>C(5w)t_rvlD(uqlaXEuA{%iMgfr5`upS&u}UVDqw?>rfI_`xqkYHrbGqfwHt z74p`#$j5y?FnxwU#no2sZ@~;#S2<8B^I9k=HuvTeC7mi^>e#b?66GV%km*+?6=^?m zPu|uYG@Nn;N8dFwtbck?6>ov5OTGth>8wUMT zn~)*ekJd0}t>&kc(3g$`j${X~uP>z(uzrH8pcqC-*SMZ>CcCz%nWb#~_?cKD-b@__ z)nGoA{$|Hpl^Sxsn(IWq_FZE5nA&9WNKF!(2kiXa`#OX}g>(JtMRk>8Ov#=7>CPcr zGM2Mnw(n2o>zN$SUk!gtPi_JKM{}G~J<=Mw9h&Cut^iEo&*d;(be1ZBv9(^!(&m;vRI>qXo=Gu0sl6t#C`fBlC z2Da`N?Sk@0MSexm5CG|3uSNZkYnPd^()&V-DXSLt3kNqgiQ+1oWQ9)R=tNYI?8@e; zZAEgq71Sr|?xGmDf3qZzrQ2LWxfV^qMwgNMpO*9gqaAaYM@;(u493STKh#5jM5CKr7g?hwErnJ zCdvm=;2Lc$5oIvi|X8z zZ?M<4QJ=7<32&#r+M(yfcz>D3-N#$N>L|l&1T7La1|RS*eRZqz`AW<6fOBR(tQwv% zfxhqH!tZwC^Ph>H`PgoiE+m>Wl0=9~V{zRJy*sza#??SDiN z!hRi9(uBa2>W%?bGOjC870FagPL^zvw+gd8BfPs~s_5OMni;xjo_DJ^J5A%jFV%)q zRR3N^TOwaYX#|1*d6^lum-cK{NKTdok`J#D-HfzPL?;0Xyy=Cb6#}(0i)mIPO2Y=`Sw0QaoJodX^{@tbYVeDZ1U^{tc0+KJM6!_S4Is=2TG za_$%JN3TekS1!%}9KSZ!s!NRXbS=HV_Ir0uFtI>(-j!fla?`w7u6}Pg(*$Fam2n7}KrKlu zOnyw`%}zB$?Nc*BaN||gpe6|n(jHg|K%K<7YGF+7vhf5_Ww+7E`v72v1vELwxnwm{J-&&kXtO$E5R2+cQl58e30mS0 z2T7g2sGH`8j!MC``laSmfWpDn@Q>!kmNxJdz@NrJ&^w(RJ8PstjC=5Mag}9f$;4Ed zn;&oe_9nCdc&-Bdh0w3A$Y4$6eMvv|4>8?y*AtO0KFXfd-$gpXccEP5Zvj zO`035g*I^Jr9F-*qje&+rG`|-paDzfqr~V=BmZL4P!*z_3J*%4RDygi($y%83=^cf z<5!c%Uhd%1Tcl@Y7Y%tD`Sa1Myio9fthW}EL!$Z`G#H{>;}?_0f5@5HA>h^mN=wfE zCtx}~F$pR!UXrXH2bD~m=1|Gx$2@9c!Bz}*GN!2AxV{WTR!AW6Je*zV;z;CRVb6+3 zD4de#n91XMnhm(?a&H#ZMLRkE!v`sIQD3m0_L!XmfsK5i0-GCaF((^S28T@OQ4G+j#$*S^&f+N*r5Q8Ixu*`YOKUFV0+V!pyuQfLL8@*;_8 ze5k=PI z=ENoZ2hg(2I9BY+e&#c`*Xx}2tntBPDD#6y{AP~3yMDU=9J6|2Rh2r7PN8(Dw7sd# zzsb~DxOlXcctdahN;fL`WNv2xAp<$x1D(XhNw0iEZ5%y(lO$9g`Ndo6@SHR!`a*^5 zgzn(!x8Gei^{K1U{%0~BTU-Yw8I65zQck)!?SS36!!I4#xhSyGOT^@Wj!2%;;F5o9 z$;D<4-Lul++1?)kacsE@wwTnxq7{P|PUB@&jFbd*G`l4@?S7V1wKJ0ao&XI9t1@rq zqbuC^i8wO!bgUk3?H`!jc#x@x9bCs&f17dng!`f%|_m>}&N zum>U-m-^X>E~|=TmUiRZg-t7KSVJ?(qOW6)}e*%#;7)Z(4AjNct4<_Ucim*T_sYUo>unebS!vm@3GbFKS#_SYErez%{K zj`K*P@#Vpj@P(3zS<3Kf1<9q0-$vcXl35HHLsy3GdFdX?5sKD7oHvVFK^6O?3v*{q z#v787=-5E#o_1upxM1vZMyHU6ilk}>{IA(T-nr3bmCxf1`(2lKot4P*a zFY%DSFa{CnHKJ^H&MMvJw>Og5Ui$^@;E}*dx{?8R00J#D!U^Z|7J z#sZa|zc=78@6S(+3O0jRuM=T?ZrI{(bd(NnDl43BGb{@r?g5PVE0$0`EYEaX-{}@T zWYg94YrK?1OWdusG#S^haPoLb?6y6$3Fds^@64#N9Cr!ia36Wu$gt~FwQ*`?$+_)= z`?GHo%i7xDLtR{0DF1|rN=f9uG!Pd-hshI9IzscJPa`>r=V5{1FjR%C&+r8uw$bv9 ztL<`br_RFkdMPl&vT)GmW8ywA<~l52d@*bD&$fHKlY4`P_L2No(2c79ma9@@@2sdy zh{FaYTd=hQQeu^DYN^g@r{GVG^ZKX(kzh!uyM|ZO=htRU7csS_cZueHBBEhrqK^M5 z-4^9!s6Pm8S}**?!606Bo-V%LFJi$5%8OieDHEqQ`#@9FmpFD?(YiYA!LF~p4O1@D zt7RD`5A(3O(A=RF&T|<1X52vfY49?_j~vdB)8;K|CijIhXZz0 z-1NQsP~iH6kfW>3=IGYdDD;L4;3LR#lgOn1kjTc-HJhdX;LKMANH2#Bp4h5mLck z6SRvKr}9}OX8B@Etv@%uPIEunSg{HFAyAJDu;;m!8qsz%`1=N$pr6T1EGFaKRvV`@ z75O8k#~OtzmR?`2%|-{h@MP?}|7(zZmp(dD3}6H-xW)^9{sXo(@i!blH<#w7Kegwr zo`*G=x9t|hBAvCEKDGwdDv?~C+iBVF^~HGEHyQh(CUDh6$TzZT)R^`~Ow(7V@&Fq) zCnbdHRLiR#1+vZCOmvT5RD5-`QP}uHu9B2dLBaNLH5}3Frp0 zfq2!uPZFwGhyK-7_despi)F44eGjBslTVt`MZ}nOGUie9PyGr!v~IG6dPMN4;5E#E zPvlRZqKwZ1i-&3prS(n%zqn0Q*EZXJ25}`^`>Q?M?SKQl&1bN!`r$ zxRBHF-_aSGU(A75_x9B=j9;WAQ;o}0z`}b>nPQhRvoE#Gs#WA-0_kie$|!`L#e|D^ zv~ADqFevG4!R{t5zEE|fd2;Q1aoV=_$^Ue(+9BhxJTQ6l+6tYJ%2W}e5il`&QwCnw zHuD(}ez%}Bo=L=EL+oKFv@c%jF|fLWR?PF9ir%QnI1nnbMQHE*EHw+74#~*^275l|qHu7}E<1a^swRK(M(qQQxraz;(4&c2UZR@@}(UM{(e z6Yfs8%LwcP@0#hS!XEIHA^%Qtm7hLePT$oXehislNP8^!PNJYBpl%^Ps@nOxEzXg69&#baieKA{7wM0YLP9d8qN_kTIv`1vhcxfo<+izRCiPxGy_DwzhOpa_m zD~2u_K1johG^C#6x)E8zAAfgQKBM$D5#lkt4f84cR?-A;InIMh2jICUKBfn^`$n#8 zIE($6w^Sh$!^pF0uApac!&`)g=N7UwE+1A>ZI5?E;dPy&ceqs_i~|MC5~RpyNU^$*dhg=jzpx`T^~&8~|Vu5P)R9$H3ida|f+sF=SnZ}G`q zjC@fwyyjqQRG-v1=aF$Z$<%OCUCa#-zIcuHit zgl8ZYf$H1i7u*p!pk@ZnOohT7!ccs$pS zkISI#QAr4>DJeK$v&=azBO9n)&{;1)qCYkNX#GG&L(xsp+;MtG8S1_0z(0PM?_7ihzETYqKelKzA9D=fvG0yt}twlUU?E;Q$h zYkp>TkIr{RbG~SoSQtEZIL+zxE{u$}D-fFdc z+rsnSagYT3w_3=SJk6%};)}l&SEj4BmP=v_;#jTS;=jPe^MpWVSS{n9-!e5(N=R)w zLCuqv3-sg-_7qP#F!6Fp&|*W`WwgR)#sISu?(QJ!$IlB2z7IJ>@ZlifBuXU-zRgkm zaoKiqHYQO$AFKQuAe=0b}=uB1{MXyq&kwrQ! z-%~kLy%44}cQ9;yq5Kke-&DzDGfY14XBFXh=X|w6jP)%5wfwZ384TV%{PB|L^^Zm4 zyPdl?>8gmwP?Ky(s%#oVH~CnO==tdJX@l<}e^w8(;HrvUYXv-~kE!QheExJ=AwI%9 z#2p?pJL`<-3?)1$gf~l8VXsG6Q5;=6SF)rp5-s_~_5J3uRbsvmf)t~&^=q(M{}hs| z8q1jHKqUvL_a-7RbIYvZNM=ZpcQ^Sf!N}JTquqC;Odq^w@ni(KR>lhV zRuk-BSK-+8Q%{-Cj?oKbsCMxEoWHHH4+q_Vh?6)bXn>@SKvtA1NB=4M_ zS6f<&I*V?LFKuD9PU!J$_(OZ*kZ-OXU!M8PQTr2gFTKZc(AeD3w|VK59&^}jNPDWy zx(X=b;w-=IadYoMyk@OEc_k$39#Vv-BcGVWLA6lrRX#_Z<>k`W=(eh2D@pRs&#clN z_GkPQU#zHKJ}o;(J)7EG2YVdP5VPHd1#2YR>Z2%`9BNH&+F7 zNBU=Mnx1#1^;Z3#0J9HF@QnRA9qQYqL1?49pN{ozoP<}_d2F4n^!=wG=E-7;&9s#| zG-7}FXt@nDNnSVij0-1TB!*Q1007>*`3p0s98~(0=Pp(ApqCeENxV`@K>00zYTyDM z8Yz5+5-A=kJ>+4%&=X%{ISIu=^ZD*&I%99Qo{bILqDeh#YTxP3df8i9uLS7at(iYa zYnGH=8LV+f>vj`^&dzS$s?z@LRt-jz0_cA*Ty361CaK38A69!$kVW{^E#AY2+iDqy&|q7@up;xhy>|WU)7KR)EE9v8;;n2qMg${VU3IQ8Vuxhq)(%#FoZHQr=) ze=d;~CfeABx^hN#u8vbb#7)`fE}xjJZ?|>6An!6-`z1y>65o))NE{m zg|_;mlkUpl5$!%dB$GVONem=4j&u+6aVj+3eayjdGe2FQrlV^d?7Ml5k4Jx-*%;id zn#wex;`8A&u6{W1-7CkZa~5NAXlPjjnGRFM?E3MumjnPn#gXr_4=+aL)t6yU>+37) zTRb6(!^O_8d&u>TVxK!>#=-eVJ_4;f(&cWs?Z_`1MtYbhZYz}S1h6uyDoAp~{Yq7) zR%%i)Z5#DgjOqKw3y3G1##?{nxO&cW@Ay@T``MjokASJB6~a^N^Yk4KyUV6+A0vJ* zDh^!_4eG--Oc^l`VYPCtE^Y1k$RMx z4y`%1(R8{}8(rDsKO8ge>rGI0yVVryp20w;#}aC?ecMplvSpQYHE|A|+b>3jE{W@>_B>H-5B%CTiu4!KMM*3PDJvo1#SZ9o4p1g=BCU*>F zztMdirXgZ^GqS4*bQaA$p8rxt&zXXCS-eDGBtRnW|dNFu{E0+ia_ z@6DZK1;#Dq3_X9^?Q+^;JMZbWO()Z|i*D>xICAczW2eU6jOjHr>-bVWrY!LL(8^4I zD1Cb##sd20(du@MKR1MN6wHGn)<8uqz{dFsU z8`HO+a((N>-|&u#O$I+1t4q&v?_o4#6ywQ>GUjN8M0002KcAJ3-(gEOnC;HDT zp7+`;MK!eNpcSq!4sH_11-Q4F^b9Za-_GV{&9{hK;Gp}3w zXx7J&{hfbixRfhM9PVOx{m=ArleWZk+i^p>6ZcdQY!c1-m38@JY_{+0vCQTw=6!AA zsaA}K`%t9^&8_3!Zuzuz$mu&Y#V)J$LbDmhNiK6{AlUJF@}xw^{YYKPB{5l z5Vm&j$Mx=`iTE6+?FQ?$Q;d&XHxwH@OzLoYC8U2ML;T?Ga?q|EYcp7!%nQtJrq=a7 zrekokAJ=p*iw8mKe1ArRk;JG>)59^3&1|vBQQp>}PK~*j*leY9$H$k|gOwbN3`cej zaiB{kM_nJ1WH55F-K3dJTT}r6KoQbo`-gptb>qbg?kgPJ>tKDNcr|}X#)f`nuK@Kv96yJY;hx4Iy`!+gK z1^wvDRSnn6XPlQ62N^=k%l_QAFvl9JCr@$Uy^fsszJ+>=FK@>-PH${a6jN7b*^)t3 zOT6ppzCu{@{-O6Z@KJ0;YqPiUpLh1hoi%@yG>>JMbN*7*QZ?2H9?ce|a0KRrR zuuEXHfv`oxE!9ryMCV3J%}1j(*}r|c6U?g9Q$yl8K4}lts)VyuvFo~ZkiS_J8!CU^ z7Ds$nP$$RGbZ9H?>`c28&E{~~TH34+18+E<3^z5oczTv=a^i_$=FQ^fe2{rkC%s)a zhk?^=nkfc)W=)X9&1R=H89D^hPZrY%TaWf{EiY_ZOY3QS<%FlAqe&yWHD)ebf&dcq zWb$HgH!azFGg*%xvJXB7sf(!V&FOzo({`r2006V5nOzVY~_CNl{4AFV(Hj}pgX7<#m$=swS_Uy;l~_sqnQIzclwRDohO6A`ouX8 zHFO%o9M7pq(iu(P-8yatTVo0U03gvwmrKl0Wa}U|n!%i6uFclMsHl?*_U3=l9?2U9 zXH4h%n016Cj=jexH1_^gl$~_|%YHa#@uTdM_S%$H83#J+w5Hn#Y50!{+DET>pXaRu z$?30T7P+OZp>O`Z6vF(x_b0@6hj-lSPjIY86vJAZ{wsRar)Z1dDcJq6hO>ttrtZS8tJ-)pW zk5LZD8q?Mkb+(JvN}AzNt*u@H%hcBj`#272vD#F6Ug$;deIH*Z6qCtp7P~}hl0#2{ z1OT3PyJ``2r8R)_JyQE8`_ax~&J7QtyO#ExhN0=6FgNS8j9oh16~ljnxrWVf`>thL zcXu_fCUtkz8uIk;>Iui&*GJ?iNL9JkcD?QB#H3$TS6`3P^ZF(SI^P&1rbBYoGhZCE zY1*lC=HZTH#Qai?^>U;nJYo!(b6mCBZNIwZxPZNSsfnA%vczK@nqruwIb&uP{$IY~lO(CG4bAJeIrIj_W zo8ZB~oc6~}OK(oR9_D7^4A6I^-#j@nw6kqxANy4~KAw3$# zbm(TQwaXRexx{SWowNQD0NAzeM&tHhP-yBcJNxfZ*WvgRZO(t>7neVGcO7iQXX(wu zF|-M#A9UrZ)yE@NHq}i+S5K;|^7`>d<>k&KfhwdA^Hi;F!uMSB6;rL0k$zu4yN}96 zE1PfK@wywTBX$-##XvZrl>LRSs?%j;+sh(y3mW^Ki3h(F^H0000_XJ=CY1kC~g000000FYq;ObP%101|(T*F**X{|Nv0{&l-inNVdm z1VdB}H))-UFINUTsV0Y)x~uxD5#8>sK4Po~I)-E6pr_YSZQVT@(}OeJB~m+*IOfD> zVUC@_{p8%AzY7Duu(cD^a57QClig$S4CkQYW{fAQhxwDaK6Q)r)}AKuo5nJJ%8Qe? zu8yi0$cYexJ;c zrPAKyGnxLQXEwa)cTB=*n`D8sA`3+@XF25^=Fae`Ap7m*(;?)ZWlDV)Uu= z;va+MeLnDA`d1yiiNSCo4=}YPdN8=3TvwfY?MHv&Z2HQvQ^Oz}QPyK$)z)P3@)0e< z0=2T5m|r&+mgfTiLQ@8zpJjb=Y=lmzP`EVs$o+xF#)N?n9Oe=H-W7*<=RTNk@u6XPlh|S|4)x>b82)~*2XBVAJCn} zlcawYelA_KDi+vhnHPUKc>FJ?Eh1nTQ516}#1^f-pR>|(^o2S`8ZFm`L7%{u@2?fV zRvOvUubvZ>f47Q!+q~f_r7<{p-sGN$)z(gI*Y>s480*i*C?oSo+vz$<6GC41X}wv1T$I_3l|?sMEBbB0QksAjCHc#;8aGB&Za_^2tJHJ&QQLyD@=?7 zR~9!u&(G(c&-m8B=e4TurE1q?I!}M5hvv!IAdGm#;&ufwtDXP(2MGXpoyS;IJzOhm z4^C}#zI4dr)vU$GXP)}1+{(Q&=-;wZgKe+qX2)$TX+WKzM;%RnD8jY9Z0^^$7HRJ^ z(-qO>54vURhr2fJQpFyP)+|C;d0cmJi;d&E@$Zi(4T-(#lg;*CUX6V>{*ixKQ2hOF za_lw+xXpIh46JkAvbDJ#8F`Nb50Zpu>ny_QOh(f8*xTZQ!`W3G8{sL zk`kNCIV-c&9GlB5%kFHro6GN5_x-%j@BO{k_kP#)Uf+M;adX^fPwVWp*V=2?>#W|i zDHu=#{=UA^e`n^8Ez^L^gCuWB;6*3S7O4p?{M}^h@5W~#t7m)u>zeHe0iUk5wBik@ zGymx-RR2AcBiMo+9UrxDb;2fGY&4Jc3jod==V0$(Z@%W<5hi2le`tL-nV z@Xd8ibupWJZRW%ELSP^Q0J4{PCMsz5#uJ)nVZmFrX+pR8@rnd(g0w14+o2nm?&mOB zb0ENNQd*tw_R_lPw!4m9Q@@WNX^<6u;*!R?-HE-f&ny1EY5kf94ty7P4WkHzJA8I{ zp-o+B0yxy~Y2g3?I89(xA9g%M6)VG)x%iY~AF|D}x~C6WJqB1d%- z05XWnt6NR4ZndNZSzb*bYW~7-Hvq0FIf&Sq;J7N$@oM5SFs<4~y;kgZ^Ml`eO z*#Uq|GVR=IdJV)zkljFn)0)KP!-@XGASz}t^1r`Qf6)s#5%bE8C42#VaY5KGv-iLf9FyR4r?mv`@u4!=N0;0MqyyP=>Bre`cXF6H{^Etg!CK=%;gjxUZ6V1 z_&wg=WKqAqqPNxcG1wz#>~PFEt#x4TOGL$=H??NV{xkWI!F3B8!FE-q;r8Tf@KEM; z<_G3&+pmA1iqvgWGcPaS)2BW?Fvw^@?Y6XEGsgiy2I3bL|8x6A%D<_&rbtA%ZhgAP z;RbQ`CU5U`d)3&E@X#fJR7`XNsW?wHaU}7Ct5-~|YKUW7TO8zLQ~R5vz(vJH6i_sb zelbZ_X~K1z;~-c3`@&6I-a?x7{ad>A)|75AA547?cEO96Ga1Y^$#EfvlJ1_#TsM;R zaCpzd;k*rVv;H$-{flz|kZCf0@nkVCmvprvJ-}V-_X7XJIa^Uz3r(*TTKb-{^zSF$ zeCN3OyQ!YCviM@W})%pK6{fl!}C0K$934GVRtn zIOmAwt@P-BX@~$W1*|v%HujpWc;5OCU4t(&?Ppl0)tA9nTQ-mp-R2l3`>$V40007r zCLjO|uap1vPSsup0N_#-5d!KLUPX}*KoA*nL=ymtB2(u5*Tejum;NV!5P>xSWJ}nX zc+(qd`QahtBBBmA1n^hiVN6CrW*e)`zMYBVe2k{GW5j#_0RtYzqi*y&(#Ks&YNI9H zTZz5{)WS$m3Ch7cf?4E|=P7ksx88&EwiZdE)j;tAq8&DicIPM`qJCghw-11`1X>=u zlsrq3Sc^dYNp^iJ@y2^99pxX)TzBXxyX1L}#Japrc77oU=+-Y01uAz@<^L*n^hbfa zFt{79n_E7SGdqGzc0vbiIpF9Iwj72@qRQ*)WuPP>|7tjxv~I3&woC>}7q!_&%yq*D zBL&f5zw;-E>WtsdMpZJ|%kw8}ZvdbIHF_{IMB~xy(DxN9E^^KQ}| zl{u^L%4DzFnrHDpoD_C<7WuEvw}5z0iZnVqE53<30I)h900@m?Nf`$u$`(-2sm;pE z3=-T1)VVawYY^^UHkk$gU-E|tz&--R-xi80Dx7jx`5YEe0$LU+kj-%fP9`5Pi;pWy(%$ zOdiepaOiApjKaz0S)#9UkP|LfSyks2&6dekL-^t#hb~kwm@Ch)@A`xdmy@1z4j8n3 zo)>HfHjV*l!6G8BzKa7Aj#gxDp50(^VlNCJFLwdR^Rbi#ModgtwbtBuf?o@B4zwXb z((9U~uvxkas=+3LWQNO_wZv-RzbYu8dI_$XQTRU<$1;k7u7f>hD?o7bYw!H-VLht} z`_%udqPDm==vQC(FBKUyMQ1ft1CVx$gTQ{7AdKI-Gl&pv5XP?xAJAk)xoiEdC@uoq z)&5-p0s_bXy8;9R4)ePQn3+|<56-ro&HTF8&*s3#-}m1YwICp{@ORNHAn@_;@qPg+ z4kG-11h-%H+1<~AVAm0__{1``RVW8P@-LnREi{CtvT2CZkehJb+gst`X*^L?Gvcjj zu44N};waa>eJa!7HX8MrxrEx%110V^N`rKHwxn&jq*boZ817fG;Fg^R0P08wLpX|@ znyL%9ki81j0Bs#zvvwMpywJS5r7GUfWkIDg08oTIh#X-jj&#h}noy@M=!9kM2D)#L zcwIOvSg5}CcIP@xcepzujcrPXXt}sN&RXzbI>V%*Dwy$-48j2bQ{WM}eT@Qmyrk^u zi|NmR7ShPvhU7{?{;GBcJ_CSPkU%Jmns9Mjwu0Y1T@q{4u#5%7&Vk0a2m~-EgXs?w@Ebv_VuKs0Z;N$PP1%l~C_RPy zJI$Xw{4p31Yok8=^#Lh0`tm_tzxrK=u3_ucA0bd^6PDLED$G3!j>U$xg-q&u0!3|W$jpPw71wOmGh#L zEiRx5G!INJdG5=+GUyD*=X)^XoT1-$tqty~;w*{q+g@04qa2UW)-Y{P6_I$iFa2S9 zg8kSZ_5Oa}Df`D=MfOK&~qjCeR+XO)S?2&?i1YSmWbbfd-|%Tc=%dxtUI=aS;cNh6M2lb8f#?IHyJ#(RBauT1XHa6UFWbl{E+>y*OPkx%H1F1+u+Ar zaVBJFr#353=&3G}vh8(!Us;U^Wu3AbzTV8&@rsg7AtQalDy*3?09ZPIi8z$+p7r#f z%=>#%yIM<^1P2G403zloC6tHj{3)nbw-y;ia|p{wvc8Glv|#krIm2_eAmu9ECC2L7 z#;nc=yY{>;L0T4*bgNcGJcSBj@vol;fWztO77!kf7ck$mXR0NmaI`hmUQM9XXc!V1 z+q0^>p#s5KU{!9rI)v@ss-oxx$2B$bgn2AEzC_4I=cz<#gwNNz?gYp>Bs#2*=*f3p zJE^alD}AGAz->I+>uA?@C9DGzg?(apqN3Gb4`bJ8XlsEF>_)M^SY5EHTAnDrx&+p58=bZcT)n(t|t#?Wf*?zjFf6R>8KoG%&eESbijvg6KG`)*K zE;ZmrtTZ{fWrgLm0+IcuUDjKHiNak(B9xScx@Uym&E5T|ke?qc?bxJZTCJQYY44?=ZCU zyis!QD)C8Nr z1><@dMVq3wl91u#ZG6(BznV_T_!LUD2eT1yLqsE1ZanhfidEWB8Z4Ab;_nPwxz%cs ze~o%k4FbbIoTWATz%%O1q%_&!$m@q}nNRG6gp+pm6`p=W(c(pJebw3b``tGMTzGk9 zMO}b~|A#$u#@_v@3=gcmv}CxwsQ`X)#QBN;)yL`&nxSNkr#Nm}^L)Sos|hi@m|8xD z&+HbmyA#z+k;m~4Xr;QLn6!AQ{bDf*z;W|vN&+S}Zc5M3Bp6AV8f;p^i0kOp=tPOb z9F3{DXmY%Hy;W!o%-(ZQ%YE$2ir}FehLmbR!&auvJ=XJR`yWdY0|xRO4h~Qg4oOG? za#?Htm~@XFf?jxKlpbw!Xl0G+B=6~V@6|IeM=UnW!n^moejD9vWTHASlh9&$#r589tXt>iO+2GLai@bChx}JbzFoR;+KYj@?YsBpwd@tZ z-s~E7N1Py|r2MH_5f6C=V!+|&&mBw8jPusgT&3U9(V@@l;Q9GYJ$ghYmWW0m0E(*M zjodZP;=Cq)ln!?Bm8VItJNS~JxJE)&trich;-45c-}80Fg106sZn4%F26pQ!g>W_$ zk*BX=Ah|Vt#7gmfUF*rDtxfkXKisX8d$3{S5gr2Cw$xLWaG$Hj{gZb8M9PCrf6~vm zEH^}ICI&XBZ9_v|bM6FUZ@=I9IgeVCw}M!)X{%dQxgo{f8*SM7<*7I92&6X=TV8W@ zU#ZO%_6I6af(=LJ;V4M0{@@4u-TpkoHw#dSUV)1EgXVEYWdK5!!Hfz`kOeG&GusGj zUt~5R4VStIk&BgV?Zx68(qaVSH`uSuLi%#gia@F0px zB}v`->LtdvBVrGqug?of8vgh(WohE|6}nC?`8eA%)sv~j&F5bYe256%FT7XvZAoJ5 ztL=tpjk^y*7smhjV(q>y+<-#Q^Enw$f3D|J(`g-C(_Qi}SO2X4e9N~aYwM@4Z!6c` zZQIRzvi;;DzL(v#v!*TygtZmag8qkha#ntfw^7~8_uqC`X}`5#f63OK>H}zCUKWFh zIRzNFWSOJInM46Je@Sbbd&LrO7yJ=5qJ558M`=h8rKh#EwNM=>#n^Z9%Y`Ei!f1A^ zUTA}i=C5>8uuQ}`JYyl7{Jd!cH? z^P%{w3`WwRsZY;bd1Llwq19tVc!y|+tBz;s3c7GSiiMz+d_nc8^{W7P6j3iMh(}@E zJIm8y*SkJ`+Dxu>Sm%97wA*ia^_m_RSj=B`m$&4UTih>FKXyCw<`B_MBy@4(W^`<~ zylj?(3VG5vb~I{|od0=^|JfX?EEuwy#DWaloN4DkfqB^-g3MxEc#DmG4n)U>(j^$s zbFP6r_r@KpX5_Pbz^$pXG{?-;RB5p)0}1#IG&$+EH>$?&mPs(Xf~oQm4v~cx3l-7n zr99)0EGIvxc*r<6imJ*Zu$`QT1c`1X)gLMP<5C_G5D23>Ik{{EH8YDJ;E&J7ZDqG$ zsNyb6bN_V8#RQnuaGmh&4^GS2zvWz4TFQetBKOcMPbaC0$i)DpNkDN-@II!15 zad+PKWa+p@Gc5FOW7vQq{@bTN-zdF$oj9MX>~@77nxhFlrY==!b#-A#lE}DQm+sE& z^_xq5wT$8@!wVsPN#99YI;=Qy9~@tDn8gMzXN{-AtpMVKr^ZE^_)?&8$NnX`Wsr%N z>OrnPNL+HfR~U)3aaFxAr_E%6YDyg*qyvB9KYaJdm@J97d)lB+H`tNdlx?& zQYsBwr>D-;@j$BhNQxN1dx<^=9ZO@R+b|GK+E^-`qNBzmGe&>@EN*@i5+lb}j*Q?7 zUSBD0v^eVeQT8ei@Ly`|x9jW3bFbDwDl|_GNB;8p^5Ka63nJiVjyjhte=r7D-i+SPI5VikDjw7k?#-hP=to2A#@VukM9csLG%F>^ziNg%L5 zi*F}4EP9f>E$LQr==GK8iW};i$aacUT$V`7$1tMG;_B+1hZDdW2b3*+hEkX0ms>4K~9orU*s2{BAZv*C?u}szKr?l#B z^))EPnW1{(;iIeG)U)u0@Osl)pZOEGi2_k+87h%$m5fUUfTd#C(t$2sRhmtmK!gm> z<0;aFTFs5uL{5hC(Wv_plAB|i0+3)qLrsK@+bo_N5EzUYYX+i#P^E@C9*3K#{j{xP zv6{6S9@7`{M_=Jb9L&E?9%vq&ohaHgp_7`a)7?DINXvev@gX{H%3}znwq`K#NopAIqvq^AV z8F|k!wb<(7wmkK%XLk2DU8$Tx2GW?%_bqaI5URIr~-ozhl5%>E97Yw zSH9@k0Y{I0SY^C7>_J{^8AHiK-e%`k{Z#1@$EyNs%>F8;e*Svd`}!+~*=Y+jOn})* zlhgG8mwQoqUN2S-3UNi2rTY1%u0rJLQmj}BPTV!2Lmv=?3Ay3MbvDUa(IY18*gI)q z)oF@Kg_KEQ<{{}FB4jAF!2<=@MbV+)9^L@(?nXh`C#E~{s=d~0DUwG-QA}L`-WJnc zWL+iX(*}pZ`oa9ZPCDIwi7Nwaded2z3Sv2}<`THgBd3E(dT zNy;H`C!TJID zhp)3su^#@5g5}vS9EZZ5HO_cbKgQNsWpQKT8j)41Vi(w;23kHi#uaNIseqWj&O673 zAfltUNt^XvYHX!_w-6nsY5eV5*!v&8h1qkl8D%KUbVheZdj|MAqxo@0ZAN1TF{3_X zG6SE{{`_+W3gSxuAEH2xd6*Rec(x`iLw`vZBD!&PB<7%(pjfm+8!@Zgd zK2E_9fhf9MdMPiD78lp3TqPgjN~&1x0fWX$J_J=gWX`L!Htxg|*nxRmSYH(SIMQm{ z@{s4Jf&gS_2M_TIFrlg&=W<6TdJt@&?}eiXhFz05tO# zWGU>Dotx__g}jF5tgsjgc}h7liY;w+E`?i(=BF_aQyZH)0&}A}tZ`}B!VemZl-N9# zF>KYE)^+_|X(Lf_>3pi3M^=}OAW$@_o(Up&ly7r^V|aMx!0^{lI=*P0rXhetI<;eo*Tprj6c2a*92LF@%tfk4AYU#;i~G{}NaWjx4|8nI zhY#t1&aKN?x@eC=7(WPs&yfVaSbWGQ>_GZ(EvG>CZpod^+Ra>ZZIbF0bkO`o60C^O?)N;Wk>2 z=Ey3RbW-)lBAr)Ae||A1f3}{8+FXTGKaLpgJ$^T&_`{EH8Q-rwzm-w2rqX%!B5#a* zNGrIoG#RgkGlnRoL4OU3K9FOTQB=nfE)+?svgW+LMBL-9(x|r%SzW9n9~6PdE_<_d z7dOqfDYakJTM(AjYzZ@*=!A{!S*?mh;%`7*gsus=WQ1WnwMU;g(V~`b+7Seh<<7|> zSUWEqZDP{MZ^c#vytrd^NoZvgl&<2h>uC1u;3!xP+Ca+HMRKDQ|6zRXfqnf)+1^Qe zt9Y?=75ve8bY^8~Uu0-0B0tOT=1`ko=sj4C8a5dpXJX)c+c+1nezI)GsZ<&Eb`{b> z_9il9oBI6>empY!E6n%Rg^;>e$*Jr?d>X7z6cGp<$z}-jyIO#*6ff8duC6Y3 zcbKX@B`d>1iPC&x<2lu$&+ExAHSkeuc$)2G%(7{tKrrVPgY{F0@ZxGQT ztM%v6!o?C%fRe4dd#jc}DO5mEY3pZzHYEnenH?hsJq5*je&kXc!G2z_SE@YeO$wiff6Xip{*!q4dKNnyS2*z?3|R~Y%S zjf;i1-Vw9>&F4=}Up}zLc)Q6t{FQDs{16^cW4)!TD)$r1<7(C(U2wgp1uqif2{MTa zH-c5dWnD6nNKH^R;MsZpV4Ktd2{XfX3gck%b`6mHvn^BMUF17P$`Mc%gofi@=CbdV zV&axJo-99)_Av)EH9_lE-^S06*wxbkTDJw)k)RyqavD`kd))@~F0nA0)F|OM;8_fS z3?=CW+tK9WQWi<65$W@~8}eS~W|Q@w6W!??%n7QkLvqQEA^~Gshb!iy@=Ep1N-%B` zw^d!{{waf~IDI8QosCrBUbH{m(6^;_{jND5JNh1!hpwO6*KgUUy?^mrLQ2&)M~X(k z=^sNC8jZ_WYrdGnLf|r{gBM)haOPm@6yh5ooSP^^t-nx6Tx8r(KWE8igo1C;49gH! z>_6I}J%ET+fbndzv-UQ!ZwYEknB!gKz!lVHJX61c7_?07xwtc&++*HJm)&cn^rV*A zJCF=@Txvk!+3DEP+wwrBQKt~81SD&`C&`W#3hIig(kyMh%*j@U#bilE(QuKGtMB4J zqW;i{k9qMrI2SIE$)dt8Dk^I{UNRNdGEa!Tb+d$yrgliBp7-|MUyx%Ng%WpacM)Xp zQhu18lf4%r>WV6MT*pV1=2tWSIcMS2o~Hv{<)th9U~j8XJ1f`U2#*|%)n6p{2+xgL zDOvtv^9#0)0axuA{p9M(nB+V6(xTSk2m())wxBNZU;{Y6)g1&Z#a75vcPeVWJ+W|* zxe)YbjHe(G0QSCl%6cdi@LV!B7Hu$f5aZ(FBCPEx^8u$`W(GA40@)ov-)T~!r>6YH zv{+pebvX|!3Ika+nR~pM)gYLiwo?p?)+uAN(S5eNWr=AnXAJ|9n;A!uMoVuXVNYs2 z(Fgo(=U;NX`O#PxsKQQtk4V%J3;H-tBT|9P8YELltfLwnFB0H2K+{R0ZX%8XU&(jZ zjXrKsV1Acu-`rN^5F$N^dTT>pwQa;X2It!L@sm@#zk2<-^y!tI+g;DZoi6Imr5=se z`EEmQ95JRbs;|GtIh=Iid>>}eph#-E=uz_P`%5}bmVC{fW82549_K-I?KReCGvIyt zU1Sd$kNzLotznZlC!*?no;@N@fvy}YE6*v=BCkziPC+lxtCE!_q}MG04!|v?$$@jsta=IAxW;rEkpZ915dD5CHjr zY4F!SRl;BIIOorp{Z6jK7K{VYd3aHuNN6X^z^^+S{AtpsJFrsz1@q19lR>5AC+_*K zQw3w>F~_Hu^D{I<-mG*>nQQC>un|G?gw_&R-NF8|7W?+iX>E-kuM@~JfF=n}TYyG} z-))wmA&k4cMujRbjx49sX^2alrw1~o^(Wu~$lKgTG&DpV~iOFHv5c-NkJ+2Fg>ZZMBDUZW#~35lNGJTI?gOTdF)*91edRe9qcMTUq3SHG2`Y< zT~Qtv3NZon()2jAT%{W8(|i9VCrG|Z9ijPJguN}VW=kM}0 z@5LCNzvJ7t^+%{LM@?@;#(#OOh@yQ`e|7xwz{L|Uh zeuF1EkTjyL;b^{ZnZ=>taR$Gy3U19&60~J<`LM#)886kw+F|o33|nlvl#5b`=(Gq! zaKmJz>bg_9$n##CGjZvG1*C#iOG>6z0iQGqi8!Q7X>V>$o`G_Kse_>5e_piAuF^B=FGT$ibngLF0?$YhS!q z1vqcJx$j*7RUNLzB0W6e^KIqkWy3p`d^<{pDzOlTVke&yIT@G)IU|rLv0@=}-qD`N zRf7-mbh!{Ero%5BePO1)jn3G8Wml0P&&98?bvOL#X;Y1pm&0vdtlF{cYQz^nA>;$3 zk)!oz8cer-O}yOp6xC~rND#U0zSp%apzM?|H@M7Y?S;pv&K++e70In0AO*`>0|C(9 z?6Jn5O%*s*yGD2-TlJuFBQt2@@dQh&62d|72r8hnW9kv^QGpK;2FRW32w9iv30PKW zqqiPWVdN~m$xlazj&VCh%!ZOWY?jbmgto1N@$S1b?fi*odo_$6m*lsew4V9dUk3*W z6gKno+Xw%+kWbIJzP&dtX%N@NZ4%P3kGF?zRIifZImmd6&uxs$5BC~`?t9>MzG#EL zp3(PwRYs`aD2JL0$7K9`wrTY{Excf)3bw-mzW(u-kN3)#c>&7?4wSVXb5GB@o))ih z<|;R)(-*RefADI!4qTwBY6&dsvNs>_Y@jegwchhtOkk9Zl!xiIhs$~|!xcm?k_7-TP+mrAO)6&aS4Z27Dzy!8HiF4R}= zcxUc6x-upQA^uE%4`l6=vs zOs59tkn$ma!vRM-<{(0yj8u9u6?hFQSyw_sMPdt|%IL36$M5{PTg|vpU#{kI4)^ZL zi_~czG^n|A?wS+UzGj-2F5=4$?_T{wbvismbKZoO&bS@?`@(LdVdVih%=Y5snV8=0 zieQOmGaiy3ZMMei1Bk~j%8G{LCu7yxzcy|rVm^q&b8&0o+A_d1yR|fF9=k*8tSyr` zZSwnLDMQy8i0U-*Da5h8-D=mXgXGVM!^UKuDzH&jc*vY{Rqi3(#q0;%hN-p7bJ5#a&eao;OcN%`oi4ZUxnY@6<=eM7ClKrKyO>)TC%sz**Ej;>(PLR+J-vq z>tEoiOkiI-9%sFJ_oI6i{A}^b$H30FS9ckEb!>ivdU3FmqJ4F_N6<}6O zME*(s7P<$SF-5Ga=R48vbfM^I5<@-~#XFtktJ>TdsH59ZSF6YGY-(ym=~_!!Xo{n# z$@RI{*@fRv$m)ICFiJIT4ibhuNJ~+O=U=ajdbrh$^NL2|R^<0~h7UZ57af zbfLb2PNg-0JO!D$DfSR+H)Cj2SgL3DDgO9kJm$;s%b7b#TOPl`xjZ2iF57)K6#DM+ zT4>WRfnyxY5nhs0Pm z3{lOFY4U_H!l~p%H*2A4QDiczh1V((c43&uDY1cIxI$nf94D2rZ8M4-enJFag|FNyroSw_& z?rW+pediJ?GMZdEta*$+0q)enj7Ef3;k|GKQXWji8Mop*ArP8{OgT~o8MNqnSgx|3 z4eQxED@M2i{gUn7xp*~=7u=LEh3gw=JZNesT7o`l+(b)HM-S-0tOdnrc@{0sp58vx zJH!JIpQd5~2zc~uA`kB@$g|HRJj+Xj!Ct!j@h+nTV=lFOW* z)es&!TKj2Pwg@0obTF;>l6NVmM5haXG!niR5xmXD72fu)iR(t*aQ>u`Wrdk4!RU9E z%C}*2&2Gk-)VKPto5GjXY+kV%@G>jZTM0?HtX+n%J9=Ygs3?W~E#>Bh&>v4L^#WRm zx6QFs3Q@{4URBr`MdB%GRBAPw5eUY@ymo{9OzzQe6ySJIrvJ&rr-rQAmC8`l@6ZQz z%Zh-hmJZ@0P;B|e(n*p*hc?C;_?NL4nOZXU)F7RvZT<18UtyN z$wcJ7;zt%=F6OQ|5dC&2W4L$oJLj^)NJ!u-Yl6Gjn{xYS-^VRF2UmTzYkc%>PW?vP z4LT_U6LSy;43}@%4|{NMO>IvA4*vqtf)N;9kzxy_m(?;O3r3$?NH zi=5o3t$q0UHmtB?Q+thLZn+K)zdmM630Hz~Ok|)#*t|w{r?K4xX}kZ?S?Ve(7m+97 zFp<+$Uh{_+yJjERbvSovRUCfXJ{Rf);iBE1C*2BjySri0U&iSdN*-k8kt&);*4w#hhZT4p@G z>+ep$R$AYk&|2~^_ugcV&U>TsLX>Lob2bEply?f78eIL(TlVkqhqYy$UHN+F)q;pn zbu7|^%D2D2yV*iNRom*^p@q*-$MR2hpSd*}^YHb744b&rJZIj@4XaPhwbI;qZj(Tr z0d)if?hgrNNsITM>T9-K*-W)P+?*-B&VuUUB_cSRo|h-;vrZGL;n;%`>CmGr{yuF# zD)|nA=^_6s;Os#u@F1IE-_wN$ZvXv1-U9oTd-5kIK7JfGVIMq;5_|CIV)4=%0N{(l zV#=FYs*$_lbDW(=LSgD8XgjKtr&K~(@i;3sTrvc`((OVnf5l#|?ZTKrF&UN%0#X)P-&8kSd3SV4Rt< zwK3B!ws|90k|xQjDyge=GPJc~_31zC-8B}Nm=*eGF02nH1$re<7KW1>(^$~(&bISH z0#+of?>eB{7f{U5C)p{=H{H$=NhBgCnUr%|#6?i13TpPP-+%N(Y-scSeF`NEK;jlX zci9zCQQzgy3>1*L6N`?it;G^&_YLwS&cKiuY1%$&6mnF zr|vfQ8l7CQzUXk>xi@>RH1=$WMYk?cOo|0-z6^ZYcmgsW^YJt=zURlKW&6!MxqNK) zmf)kGXr?irUfYg8(>1IXNzkBF{(4Eg_=~rn(YI0GDm3VN1}<;cO)*^?0rhd2GV_?H zIoBxFKz}agEu+q-QahDOSf$Sc&#e-QpS1K$b*Bc`mg@smEFDQRZxc@?QNNM5>V1vMCWEUXz9>yYrP2m870sbu+XveJLSzQ*H1#n8^Xje5=+Hy!D*1g z=@&1p(J|fCB97nKv%+NgnTG1O0o0xO>(88a=#P1N!&mU#15odhAk*P{7JDUTT!$XL zd$Cd+YywaMZ%f$Sbi1A0zBFqQ9P@eCBriJ(iAtw*@@`wp^6*{U_0#=BGhon7R!`{J zd&aPBk51{8oryo^r2V4h8PESnWZbw` z#gDY3oQu&8-|eR#YP}ccD8q(BYx>twCqnnmLjmE{9x+hRyG^6!`YfD(&D`Gc+~DPT z9dnCD4tT9D`)PlXy$OY+#86QXU$}A4iqJ=&$0EFTPp=()bme2_oKz(%_289{CDUJ< zcgAMD{^RS+&DN3N13O+a&a)Z_jX#e6C~ewT)Xt?f(h%~uMgXWNY$6*#fvac2SEv`^ z0GD|Qtw(5cY7&aCxAtuV_eM}H0?)5O1R&J~V9FGP`iYa5mG61LGQ@i;CL zu(MQo&G}~X;bP-UtsQT*uKT7e&+*clfngTzqAF3UwtpWdodY#+ zbDf*C!qWf|%OrJ4AV_<>sEY+9O1ZhLh5-pXu(35Q>e70`y3_i0I1!B27?qiOD_sqA zMd`+&xPZ%)xrYf13+SI|E%$%K^t_K36~k)`5Q*{N1;*kLyYzYbyeA3Z_acD}dUers z^#-AWt(%Vq&~xB80h+=`}}t!(xu8f;o?xB3XiP;*^wvT*(FBb7^AWJ6LnCIq^7 z?}mW=yPwRssuR^;%g?(ia@wr#KY6qCZlcSfx4}q++LKFR=WagEtJbhn(@LZ^CI|1@ zExj9wyex8{2!A9r{bbC@<*z+YtQMoBVX3uA!3cF?)s<%{U(f#aaM9T}*9u|=oSqc5?Ij|-QVkCGq-Mh-5U_*07kRwTzPSG7 zNzPID3{}3p$;>Wd{C$JY)fG@Q14VD*p+cFIJH~Yc0b9qqi%YzVv76yAloAnBk9Xlx zJ?#cyY-ZfxnM>Zgka^&feon)}ycGd2e|)~Z$uUSdx?7$Tx!CT4w&K#3n4LpACUb#3 zr+-@AcqEJFBj4{l+MG6L&Go*U_euI|bX2_aB!J@)cU@Scq*2G5B5FlMDvA5X`RfI}f+wI=ugQvCG$R>#s zZ@!`X+LZARivr^odAE%(>JL_xxWh4llw4sSCGMNg*wPTB_*f@<0ajh@o86?vk>WRU zZXSA&*E%xc`_L@2ii8bC6xgN3ByKRwfB01O2^iROx_MVsMgJT&k`&@@q$eJ+hAtiK zbv1NhJz#pXk2n|JTMNZ)NZwa&Mj^5KgaUYq9(4wXR})t8b%7{*42-sv?=bmO=O6dP zPf)so*X&0ZF!2Awpv4kX&?$ij{|G;4=7LU%KV~4{e8N0j=)!!51gDHxqF8xX+j>FMamH#PMK5TPbZP1^Y*(qnZ@`N&v!jI7g9 z&Xw`P!i2S9r~TO+)y6PvsUQj6DGI{}RvH)|INVEc-Y_R;&FVc#$UV|vt6MJ^;TsGw z%M@|*mH1IRb75K(wAGWGi!-L`c-3CqWuyAGv;9zZ3ua;Lk_U^o3g75)&N2m}ym=X<0lT zf`El9ghCkeF3}(Vu(F|b^Zo^!bZ97|1|udnib1DQa?ydEZgC)nCS|9L6 zOq}s-<2wH#Ip?a#njfuGxPY{cKG^zht_%=h6@vD>&t>4(TO^^VX8PN+lios;!sMb4 zCEvfDtFK5}aLkU!?2}moB5NF|mm+A#S8Rr&N2BaK?Ypw>1%`TOlX8j&S+#@Gm+qrn zM*!Q3hc(98)WvnY{dDr8emdzy0kI9T&v~HM^hexVrvsMTd>?9jqt15`d0mcJvtsev z1v=JjN2vzc3jh2hUjac7F-Ro~jcBB)mQFwQOiddi-~}2;8WJ>zRe%VlfH4^iSa_4f zSa*b@z=A5SWP^n;O-ZxSm5QcCS}vJ(&4q%U|K&)#h;hjPe5a^3dhXq;|lm)17!nbgb${Aex%1 zifZjhvVv(;cFFo6(^rmky-n|0xxIE#-!Unk*WngO-}Ch;8cxcdr7lOPX$7Zb_|Rp;5BH3imh?|FarK7ItqJ|BMM>T67^ zhRa%9XLAb}edj@#^$%~M_Epwl6AKXeBQrt@mi)%OeP&kc(=!kAPso~0~2U$Oc4l4qYb zIqaNV*_9BouWWq6ffz}6mP)g24nQO2B-*q`cD5l%17d< zw}(D_2C|%Kel=p)n>pu@iAAVx6wf9jP@)-Vd-h)IwCE+(}uVm5&Xsqz;c8e|j^ z!=zAx`|i`d@j#W3CPt#kIx_HZ)LNqt!l~3|$LQhlU|=KF2^-tQQQg{eF5R#?t*fdJ z3-l2LQVx?cPH+I$Z!)dx$Kgudy!4a0!U%e5Y4z#j(>Tupz7_=e&X{LD0e&WdV-f;7 z!O(*qKjOrrN8m?g&7v?7hZO6t-XIc@WL+E*WBGkhRLRar;&&BHj!`#JqS;ByZKoqbFDD(@m|jgd~|`1mfj{( zAkyOw>kfZRG&X9?3T8D4e+an?|=}jzYYj zU7v2s)C0E<$ZGGVI}r&}W=MCWo8_y8J~?Z#7M>_ai8h9_(AMCZ`AgpuiQ-Cd%MW#G zR`vU&5Qxbl)TSQ>!208+O9`LuMU#hH<0BK=nB(yrG zF^#57{i!m4?e`YLX1SJFwe>or($SPbHWHx~_17)C))448f{`VSp*L;zy7w20+w1nx zDbDU$(zeMvHUoJt=l2w*UHbgye+4HC*z|da7_Ca6XrNn&>T~f@Z13NK9dyD!@Xj+e zH5vy!(g+yzuq^c#rQv`SpchrV!YN{LGeXB%-JMp91;sjyA`16c?oR)?_S*j1;iONQ zCa$zXMa%1bs5=XyiXa%U)_VZ}K4%=V0Sx@u0H-Yztfp8DD`MCvLT>kR zV1vO}#9CF!J!h6Gi!W-Y)8~~rvj18CtXPYU1rTr($zKPm0V`OG1tFYsD63dO5ycv8 zvBs!q1yw*4tHwqU5v>45tg&bmM6g&4ht&4KBGv#FLBv#=&aAut_`T3A>TtzgZSb*L z<3OglU_m&ps|bhDTv_`#XT^W95+b6yIDp71s79jOs8Z`g9AX1n!Kx@CAgE%|3K&sP zFoHFxidEYRMhjrDh{Jyfq`MrMp0Kgjs4A#}2r6Q&hzNiP7K=f!qP0;L002H{3^)Yv z1HfU>7;p&S2Y|x`R-A=oI5;>sa&QoE#A0GhOw0}rjvRb%O0sZdkyf@jd18w}(I|?bh`7c`aHG+HAff?- zA{mw$*6xx_L4?w&w#P0omw9bG_t)d&$zW;h0H!hC#c1-V^<)Bhv)DJ>Ky;79Bu8sw zS58SWiTpOWK!Fwou~-n*$nLg;qZ{>X*|fGG^GO$o!J^Tk*dU^s002H3)q*7vv;o4g z9F1zhk_g%W;aGk^hK!1=k@aM~87Toa2QdK$2S<)lu^2NuIEbZkG#yd^0MuZ_U{$Pw z6)_?h1yxaF9V?dBtXol=ZBk2XmWBWTimEYyTKT%j?Jn6LWWTO668iIo4;>#*b1hi3 ziUk0uhb1NvjoMWz)J}jZA7AYpnc#t{7{nT@ipAn8{yqULAQ)AniYfpofLPHA_Pe{2 zdbqO>j;BZSt8!g1d2eGwBVQ-IkFf5#z`C({;@q&+3Be-kR;!M65=YL4ujA4rQ}dIC zZ43SxF(3#S(TWOkWGsLCYA}U}Xcfh_AX;pV(F!600wP#r8$nb-T#>76R`N;GZDK2` zh^T@sS|JMn9;q}MM+zg-fN`YKXdEewNCU<%AXU{?YU@c0i&hE_#10MusZu#Oh&iwr zi#ZTaM-C|ffLf!7F^Ul@s%m2zwx+$EsI4s~VoRH?n5Hc(4Xl_Lf@tKH^plXxaZ9@{ zO!sWd_Xjaml41wtbyr;WUG1qzkX-x7S?_4EZzne^qUcnxh!u>{sDc=*ps2uNR|<_0 zqabLFBDnf!tLEa!%jA45>ydZq7DpLXz$I~;4VgM0Hl)gBR~gwmeA!7B-=%gQa6955 z8(Yc!lh+NKF7i@#@U&g!UO*}`KDwss>4rqG=Axm+VhbWFfM8HTRMCopbjiIxjBO3Z z7_lIH-PF9nQhN$mBgR$`i+BV8zKHaa#f=dItZ`UGddcF(hym6(d_ZJ9bx~BKTGj~w z1r`>Yi6dg-RKyO%4i3cZh?vDv92_}vBnAMeAYu_?jT%)ERU_6~0gJV&hD9t^(_(99 zul6vZKAE2H-fu+EsEV;DVq@tn_gnCKwi)l42wzh^TSZ(Yq7JD(pP&MpC4MPpXVBPP*kD>Iq&~k;*zQ1K7#yo=i$IIbVi(>@V8< z0GmK_s=CjSzxPc|W`7Er|+!Pt1l>%S@S^kQr^Gq?Sthn z%_kP_hFkcZ7zvH|w#hf(gsh&W1^`}%oQ#aRF$X|H9db4zp}_!93vi>vT2y7V;q83XA zt}=2ZV#?DJ8jwJ=8jC@Z-_nuMAQLW@2qkTPntz-Rb$%l3ns($m1YdqNrUP21u&ik+=lkSQ}m z3_F`GOlyo9xwHM*HA=)7B?xL*wT)^GTBXz*P*fZc2G|j{WB^qdfCB~@u&gk!OoIW& zEH-L0ETM2e??CniEwOX(yUGo5d#Ax^)`2|^peRIRA4^MJ#x$47{IxVx3sLV>D YS_1H>PWD5#Xqh+#0LKFs7yu3d0MA|vLjV8( diff --git a/Resources/Audio/Items/Toys/attributions.yml b/Resources/Audio/Items/Toys/attributions.yml index 23caefc0d0..504e5b7ac6 100644 --- a/Resources/Audio/Items/Toys/attributions.yml +++ b/Resources/Audio/Items/Toys/attributions.yml @@ -107,3 +107,9 @@ license: "CC0-1.0" copyright: "Created by Orsoniks, from the game Casualties Unknown" source: "https://orsonik.itch.io/scav-prototype" + +- files: [card_tube_bonk.ogg] + copyright: 'created by Crinkem on Freesound; perryprog (GitHub) downmixed to mono' + license: "CC0-1.0" + source: https://freesound.org/people/Crinkem/sounds/492027/ + diff --git a/Resources/Audio/Items/Toys/card_tube_bonk.ogg b/Resources/Audio/Items/Toys/card_tube_bonk.ogg index b300702c25c7addd53796def93a5e5ab1bb3bccd..de84b852a88f0b1529132fa952bf262a052ae2b7 100644 GIT binary patch delta 8186 zcmb_>c|25a^#8R*NTOt45@yOavM*UGF_tv;;X_%nOo%}#TxBgpmaJJ~i0q7#EZLQP z%dW+igzRhcdq$tn_xJm~UcWzo_w{n!^PKaX<^7yud4K}COF{k*k)EMWi;%_0WVob>Gz-ay^nYK2RDb75KfA-J zCnYHU2WEaZ+>w@zIzjc0jiC2gPYGC|8G5PF)(F!6$cqTMLh`@|S1BTSxS-URn zqe9sy(b{=|(HI1QV1RZ;64(vVV&2RcdIDfLA&Dm~&|)o5P;^OnjMQ9q5C#hv&lN-n zUMG10uyICK4q*!p zt!I<1lNs7#czrajKzx@v63hV3*msdt^{FEW*?m}T0?`1iBSaX|Ko$~*Y;^O8oM>&J z3agz*9KaS964{mLkioz$m{9Q?`vgT`vqcaNtrLKCVkOyng%QSyJjJ=N1z67mA>vS# zL(Y+?7H->41;R;NXJpF&HbShD+qOXF?qTd~z%3$Rh_wJv4&4$1Gjt1^Injrzfb}74 zWFe8$5Dg-9*3D~%*=;+BM0PxwLN-EV2fA9>abgg3qn-lduMd(kaBM?E{PYk67PKYx z0v)oMJ*b7Bz#hnqY)-^8pCPd0nKW9!6S|%JgyacgAukOx8i_mwK?YwSi1|ifPSZCi zIHZ6Y(x8OcgW_yD6z2HBG6Y4#m;kgU$nj;iWAYG#Uvehof4Ofnl&{5v46yLo^vNFowl}dZlFo zg{;}5tr>r1*s&p)HsdgFPXeqMZ5UA@sd#27x@UMs4O#&YkPO*&7!4-@f-YK1D4R_I zBpXHwnMp9f2n%H!VUZBD2moG$>opM4c0y1zEd&W@(tg06oSs(fgrk)>vs4@&oV%j zQbKtU6of(_BFh=f4y5S_(poTT7PyVh`%A}R{*p)`GFt$w5Sgn1s*g+p+|Vz`WM*8P z1|0#E4LUCvU`~iL!k!}lVE~rNUuc~RA!vn~7RsRHGPx>`2PLh3M8K9= zgWPsB=wRR}JK0moOvaO(Wh{^u4FoX)1ZY8#9VQrB8%fR#a=MW7jhq1gk~rWDnPgWw zmdG1;?SV*aD_5+aiGG7u=p+-NQz%t9tz+YE>UdI?lrrS zDR7=5KpBFxkO1Qd6euz>?&Jj_lZUsQ*xyX-@a(^I2YE3f6lS@}>{Pry$oPj;kXk_G znH1It>Qm&1=)lrO+&s+qXmnQGA)fIjoP^Xs7IF@Qwj@LVxh_`Op@2lj1INX@SpW&L zvY-_7D_kCt%{Gz;^spylEu8pY00=A&CTAq*eZxRzDEShSECb@Q1oHr+lQ>6?A3POS z<&xD5S>l&f$ZCkQsSiNZiOTYjn$WO(Bf8K0tK*%+sK+5l6A40K`gdjG|5oPTg*peS z{4fQ`q+Nsp4C?MLN2Bfk-~{!Mi}{dYpn)WSDYS>HED&UX{*S?eMiAou(?uZH;=dv+ z=;U1jxUt4pR(+KKfVgkO9ZBklp+{1*9BVF!PWDZiksl)n{UX`tOOX1%i4Gm-IwDn@uiUJ2p^cjfu8T)kQ$*VsVL& z3^eAmv-{AuOJ&gNWVkS(GKQq)U&Y0s(S^-ywh>8z7|c1)I6)U2V$wj15!o!lOJ}h- z+RSXwIK^O)TSYa2(P&)Z47+WK!rZ7j0!bXUiIDk>eZZ7g0W=UdEpeR+VW6|4hB)z^ zGF#(1Ky@;%NQO2Y&zwUTc8-*pOMSqsxIKW4teWNZ>`|ZN^+Xqf{jW=fR={_qifD%G zl$o0hJg!JL<@_3CH*Q&FD=p9!HDn3ndp?k5)Zen>x)rv#gP0Vzc^RR$$UBglrDROB z;-`|nFs^I$%nw0Rp@+i2Ru%!;PSD?Fv3c^hy#IGmw@^cnusj4&n|&zi=*y4%mZQJ= z@;GIB&xw?00tpyYEUS9dfI)ctjZl+2fu{q4HOYHf8`#>y04VsU%yC0Dzp9MT3eKf- zaRQH0D^hjZ8P)Z%I5E36gb1qgq*Tz!ic#zj(8g_EmwHB^wDX#uqv!ZzJx@5m{2+&b zCg=-ras)c_GAZf%{K__T^aO_h5~ZN7eI2w&aPdRipf8yOggM@tl~+{0sHSmQQwy!D zZ-6oSpW|mhK)|7_8n_1p93D*}HHpI^hxI*iS0O06 zc0O4+iqWC5j>PLs2)T<6vW%3?ia5^(wo2VzVWtI>OZ-lcNX6)s*&nX`wY9R5HD8LC zr65R+e%VFoN|oBf;nPQbVLD1E3E^j|X-S-In9ZLf#9}l2EV%aMtV5;aH5S6W_I&EDz*7}jJ&gYKA zgUMPyQj3^tu&BebDg~60@O^$+luCuUdxhz?q>8>v7z9#prRIb^| zsb;X;7EN+I^JBpZ$gQ9!mK6D7byj_zS7LAnU)z7R_T?Gp@+$)Usl8!{aUweE(vhu% z>6@OJ_uu|jOw+~Jyk08qD)9Dh4P66oDOTO^@Mzk3VV7@D2LJT%x@HTd4Bq2xDNLBk zgh6y2y%CVc$&zOjDsMjKzLB{8cHvlk&HcsHaKnis3!pZ%y2Xe2+J(JFZfRPn>f>L> zW_(s;hoI>zGL8D?uPXW0pHs#4NtyUe6Gk_ol zd{5n1iaro|GuAMn+S?JbTm0302jG9lC8q9pO*yHv<=_w1bZ_D$pSmS$o9OP=%RNQD z_~se^olez{r(MTSFTqU|Kjn!2TOn0IdIK3&5i zFTkOo_cC8}ki4Z-`7LNdPD$J)hShX&T-6>8^2Df&B8=PnKv@5)$dLWrl-BQGd{+#t zO+SmCHDLt^iw+e`N(aCAobk+jzx?9xONlY@PkDOg@?4Uw_q9MbkO>s#J>CNbu%9cJ$~=kxn8#K@l|Ifq4lzOQ(F!`tarE-=5%dzEMDA;4#aOD z^g7{Twz@y=s>Lo_scD3X?@_b1HTm7{--o-;aDC4|r6l+|eRgjx>HVaa9z5o)Gvz-z z{qT0=j}773&@8{B{i?d+%dxlL^T_7z^~c^|YP@yRBw>2!-fRxQwo2np$H+ovzD3JA zgwGNj+YS~}SX z329-mmOTY{!aqjbFnf1Y=j7ucu5n(TOR#eJvoh8%Pn&2t7<5!kYG2R9bAFYgSEbXZD z^nWv=_?1U5G-{}LODriZ{>)oPuY$T4hGMa0+Y2`z%uN>8v^bXKblok-=NaPq-Ps-Q z;l{nH1#ezRYl@vIEWPj}HftyQ?oTZyn2(UAr^7M0Ew3Y;J4a$+`tgpVR;g;Bs0VMFpe|dzeT82# z4H}=(J^PEZZ=@F8Q{G`Ec4eY*{AgW~1dAczy0>>HV zEz1>cY>pkfa%%HM*PK$TN1eIJ+oDqcjaYo++$lLOE8XAWt?1o( zC-PpyUhoMHx}5XxZFNj|#(pLq5ocR``Jj`E!(xBQLg@;4y#trO)1EV=s30rOtn4&* zfVK{2W0c{Wi+ndjm8+QZ!z>2_uT8JLUPa%_t`=N6zA+I#V6J6cW9f8kP1}6)#U#<} z>`6yH*@fNaD&?A~yTm_s@Rmz%kw;6if62U7-lJgR=a!a=&Z?uvibK8A+U5AI z3VdRZ)aM7j02#zTO>>FCu-2tAT zQh%SdzDJX;d?!EAt4eD=S($6`?6v-Z$J03ByJPu<^Or?)&wg{Zt9+r`b8~XaY_&nk zTevwn?GD4yg--_GW2IPH#kyJf61P@|C1awlrMech%G{TX+Z-@D?kx>Vzj&G4WgMU4 z;>;XkFkCS#tywAlXN#~{rrf%?KOCypnTHMW|D!^Ws@_*_I|i`H+>7Powy(@^2&Twh zS9ccop&XtXwsiQX;kno6)N1c4-Yb{20@GuNN^5quX;g zbA=H7wdKVTdCCegT%8Fu*fOuzYwIk@MPY@GS#*D9i$}Zs44`|>XLz+9xCnf=J@Wps zMCh~ED=C*+KDuQw@*{jD+ykCWvhnUqc_ho9Qk{&rJncM~EywFu3gfYB=~35eP@^$} z3*0>ViyR{1L27=c-+ZMCZ zqSG7CkIEOt^wyo-7M`lX8HM-0t3{m_GUgTUSo39)yZY|bB+ra>^4hdEXI{l(`Yzpa z3&WdX2-_gz;vv41jE_S3i1TQ4VqGB z`Z!QiKQJ#qHo+O~+DTMf$sNC1>MbPIj>c6Cx}mPFozsg)J!ay1X-|~7$CY;3)mUWs zqm_^2zRbLP%EM^qyEd}#8@N8?qp_twS^FBZ)I~T)X64GF95{rd?(NYo;A>E2roBG0 zGWwRU$^-pGY2EBd-lnA*Bb0A2be{Su03#&Eo973+vNlijYUb?Sfe>hwT)C zuJD!8+kDyjI0RAF2L#`s^vM6vb_@Tg6q0s+pj^yY)h{Fy6c4Ii?q6iZa6FU=e?`uOQvu4ZU$$IJXjpJV88Bb zQJ8P_-q}piw2+q=T$6jAO0VX_vtDtqUf?VRQK?Bb{azRIzq+?{JLY ziDO1lv4|#s>ezL^dvZUFe_m#5q<&kX|8Pf#LsNdw-rsRK zi=%MXxaZRuqR%9)mb86 zJGhxUuwujc(odb%1H(=W#fis#NAVeaHc&;bL450KuMPJhAkf*i<{(Ad^St^L7q9NY ziUK=nMW1d38}NmEmKqB;5GbN3!5|)?3TyUm;-pkE3pu*C^pPgd-|Z*-P7Q$@!`s`X zMBgc;CNpwHIJH7ymyq2L-AiBJcd1k9(r*5991C!NDRqc=!d4t6xO=yzYc#)vr>^FuBtEAKZT2ZJe%My@wuL z_M@`;r1R$m=5(o=~G@ST=X3t zZe;t&@xI%^4X*?74Th%?(lr}Dl~q$;GHG2k-j1%MqI;lNWi}RS(SGSFh)k)Vf$2r^fBeM(&fr` z^a|3~?*6c5e3a7hQdeTT6z-v3vi-+o;$k-uqVjK%082BKitk zYILmMQCyUN(BE{_%CkwBv*JYj?NM(?avhw@p@1(x#RIIpYi=n2K3JTqu$SlK)!q?- z_SZ79Qp2x7hhHJ6Z7%)I6!KRHGCb_hSJ!As6no#m`CAxZ1#dF3KVh(sIk37&Bl)H8 zUfHCoaW&M63}_P1adHc}dE6&r5?Vk?;bI38u{qq zudy82EAm9v+te5H7K*KqOP&CN8)G5)r&51DECd5_z7mgv^Ug9O^?P-YD%%5>k277J{|>{h5@+q02>P-;Gw2_MK?s%6)hR)3U#=EqGFF zl!`cQO7y;=j^Qihy!thYYNySK;2LdLM4zdWmF@JvOOq7xgqoqZ&;$B&Wp9~*+YzFd zv1J+!`CPWglf@E1#V4nZc)tRZ3Mf3|MaNme#;cn=)a?nH6qad|XdJxWDaJ%0>TPCBo z5XNa=iJpIEM+R&LuIHZo5d?Zg@N-SWAQq~A2c+IXP3Tv{YoUg%P10;Wy~O1rqsN>e zx`un0H2Aukwp<=(`iTAilJE1c7%7QJ_6BPIhp3QpGNow4s?k8-fo z?+2$l(Z+7r&Qip_9|{xx=eW6AmgdXrqMzpZ!)|}%tb5_WaRExjYirY-od6#u!Ry*3 li{l>~{dt^24g5kJVhR|>X3W5^eutMqq){L~-W2rP{{>Grhx7md literal 8379 zcmeG>cUaTOwv&XCgd)-eL<|t51tbuJu%MwSgdTd68Y!}hGyz3J6%g160g<+p5D6jz z0xIZ=0*ay(0a4Z!L`0FRf>>A4Hv!$dci+A5zVEx=`|nNWH{Z-TXXebDGIM6)5E9}H zklFiPw`y;b+qHLE@_o zr22<+47ECzCM59)iwxCvhzh|)gax{-aKKsPbajZjI=VV~I5meK_k=}8(WB{mV$@NP zd=h@<4t92y_AbsQIxES-U<+Aahoncc(6t~D^@w__;D0QMa5!BEBEsLlPTz4nO7m}I z-(ml{*T2N*>FVjg`H*!jU`d3fj-I|giC5P%)zi}>ua_!C`ws5d5o>R5vqsLjW`+BHH458AD800K@?B$E%AL z?6Ov`WmTyq6tk>&wO*a9VpdkKOi&K-+V=uS3YG$Z4=~g)c{Q`v;RECl8P&X~N^+RJ z;Yplew$l_DbM@_}pgo*c&h9+}>MCdvPkx>qP^=WwC271OFjFx@1{O!;qxuw2mPKJT z>MB#Px_!7*TirQ!fxXdOT}__RbG6nXGa;?kJ5*cZm|IZeB>~@q(F5eCW#06^ z*FBCt9v3?vm*iQT?tMPV^L)DZy>#FA=>aks-|~l~$@jdxvUD5*R4S8;9;;U?$yHC2 zt5Ing4M-5o6A2EJucV$|W6jwW-WXQe9(t<%$Nm;Ve~a)63AA!P-fTc+SPAF9Xbqw^hS|(M3b&Z8^gRK#^MIc_Vydw zHQ$xMQ#$|@qI~Z@`5RCgG_8>+efMaS@o2koC<>lL{^yjuVlQwZisieC!Wn2iX26PA z7;spbDzv%qDkn&gSv7+z87f)2O%^SAQpuGp9l4U_QmT4^TU@%L!H5Cb$55B*H&66d zo){{L9rlh?feU=H7uY*{5Zq*JJ}AUD%xxLGFDI*w=HYWVY^tB&=nzN>$q~ zxU7!%%`CV(%LcBHAHg136Q#Q^V0>ZiV{qBa+ZZ0~ujWI6dJDKGbFDlDmy{f5eV}CuD?t3qGay)5r zJlAhs#$OHV56=P6Y0_4Fk`?2MztudPZ7){I7#pHkX7>FGs*^Q8(U<(0|1z?8F8BG)w4`hC2%G<49C_3K~<7+D(vQC#Ao%Raf5bbg__jIt8saE?nn&Oi>LAdRqL6s~Jy^fH# zL&@9ljyhhl9szceh}#mY$1Ug@CQ&3zC=!;d*#E4Aj7Uy=Fn=2cG8%S443oa`f?T@v zEGZ;-lKkiCpYU?hM>zb67lmX;ak2Z)IsN|#|1W`mD*Q^WoUlmRXQA}S!U z6%XmF<0>t>iRHS789g@?GVNq>Zb>BXM&4|S@It+rclt{3;w&H052Q#7D{pyjBYVfT=D7z;&UGZq&7)*V~<60FrVoN+1*3LQVjcSSuVPZicN2ur;$%45raE z)N8S38Y+b}Q>$7wO_!=wTSVhmEX=2Jacmk*ogXkZ7{bp3ou1La2VTQyFNhU*i~JOC zMkUUcMT;xe%E0i3D;dO#aaj387$@6PZxlnAYHcv2D=VNGL6|5EIAS0Pn?*BwRu&E8 zk8((Y0F+f}XGhrUh`X$aTMBed@zhnJ3dL=m&q=6Ig>h?mK6@2XVm$aw`Uw@^WE|xS zwZRjVNSfY>hxcrSsz5`uh2+?L7I9#|He$6aIWh7nFM}UG_Zh_$CMe;1CIb zMpHm+T0wPl7d+^Yyz?@Rh*pO&mw+N$%*;wXo%xUEk6^$)46$!Flr1>{-)j4?f4;T+ z{r>WQS-a=8`*fQdkQqovQ9RRf^&0TyQh5UF35 zuk6!inM8Cgd(LH-UNq!kT+!cIR5Em3s5AyHD$@KZ&+!9`g!nXxmhilh1=SwB1!=(R8m#I>TB? zn$ETNGC>W*r(Ol(S3f8?YeC}O&=!<~bGg^Npy6QXIk{S6tmpxLKrt}{6crg$RasZ* zfEvs?1;&bEF2Fk^G`(v)3**@pjV%)m%?y{uyNR*UD+p5oGo;gwa= z46}-0l8`@)H-c>oRc5P5}V5R#yTo zNl8u?28I+XCK6zUgg10sQYhMrHC>gFwuY+ZTi^>o<}IN_vPx%{=M=~X08uanx3Bv^NvZn8 z<7W#W0A{VMqB@am%6oJGU_JN%fEA6AnHf53Xk@&VVrH@3ifU``2)8%H%1KB82sC>2 z!pUo+(JK!>e1YaG{Q>Xchj%PC_ZlWEXc7oy13ldiEj4XzH3Q=ZlS2bTW9QDFK389N zl>M`hRM-I9KVH;$AX}J9>DB8(f!b$SnRC*EA@may*beHC?PY_v#&8-+fF*UpHM5to zRwZ>J`;PV5JsVK6qa#>Je$M(MbiD_L%wo0wFty}-A_S(Ia$z#g5 z)^9a>Ra{feQ^Y`ik6cE;dEGq$VxhwA zxlPML`-?)8ht^(it}dLtJb{QXYp&4my(c(Big9ytTI?ZU7a0$wv3X_T_rUgJnhhHz zPkF5mS$oW**9>4S?A14`^q%l_@}sVRc?B|Bnh&9FCod#jCct(OW&p`u zmPt(y@TM8}Eg!XIief1fl)b7R)ooR`<4x5~#B?y-hEK8|qXV0AHym}5#0Lsl9uT~@ zm1RSC(L86RtY~o%5Qe3?#-5{7+OUG;3<`qlsiq{CNfa0pF)?dCLd3?uH49Tlm!06F&ZmGs5q^ zHJp4~EwPDQHG)&)o8uAJ>k>FwC`~VfX;+aHYIN6zZsGUsHui6epLm&_RC*=8D12+9 z|Mq3RJqo7`laG`}a%1%A!<-P6;JU+~-o_mMd=Xu(d2NyKuyn7NmsVzK6UOS)@GNVh z61#`sDD75Zf6=$R!)W;7n36eb`}NF{`j-9S&(2J8KQ-DTb2Q{~H89x+hPL30=5OHS zi(H({illDJozC6P9ID5$j<=oFAv;dD2LjKrnKC|u!m7}one&NO#U?FU=5MD4Qo7~@ zDt}|7y3$({CwBTgDd*f#()2oDpWmFpS3lKl|N6>dPtPM<@~45ot2FG4(b$N}mCa-L z?2)yXBwv&=UyqCPH_*&bf|BBMt)cIYKRu3~%-csG*eoYq`1&P2;n2sopFW;$B8F>-6+r?jpcI?c#e!Ya?lvzR0Nh@4?U z3BHPI>Rpx}To$feBV{XS>q?P)_LK5ksphGAMPU%o!;odBX9y#jTh1h=)Pl|1IUc^@ z633GxhMg_$8Y)+}n@Jyde=24(YU$OHh?1H#+OGXaxYsrqrX-zx%;l7Q=(y`&rtD=v z9yKm2>vS+UdD~i!Bbb>Gclq6sgc0HByu<4U+$R!qpTEUtQw5i1zR(Y8i&YAw^}NCv z1RL4exqSR-VU0U&cj9}Sjs*5&;s605kF>EmY6{#ssSjo9y4FqIV2 zeX*X(tfZuoNp8Zp>H|ZL%uQh_*#S1|t&l+fuJjv%+mj$yBSeqoJ0Am78=^&g;iBme zvBB1UXoOdcU;ua5iJNZqN+IjXnw>%Ss7hblIOUj!;R;d0%!m=E-7ZsvqPaQ4;{wK^ za*=oo8h>A6|Cq|5ON`#svq#PMe>KwE#yWgx*U}`=wp#p>ZrXEPWNG)S+OYhYhIqa% z1N3WtMAwUR{dXLXi@6s|sOKU06%vfkP$C&&Jz59IL3oAS<3fstQ#$_7j3v#dH34H? zEGgghlrU1V&tJxh%*PZvE?K!f%l4p9n@o@z5IaUe>I?$FJQ9Sf-!AomVS3%I_oY;D zAy#&1ab%?PC5w}kE}~-_r|ZN$b7$YIZdi-*Eq*m*3E}J(rt#_4X zl6=c$gv#De8W>#IFFG38!iX0knxgh{_}BP6wRUK{1ulx{&I$tjwb;$cwsxc;CS2vSUH?VPm|HL+gJ@ZeE|@O2Xk{5e@be&6$Zd`J@OTD z?19zu>TxIjzu`>vMMmE=nK|!&*g6=qr#n+sNX6-90LVPlA(+wW-OYDG&b#sC4|joX zH;IID%ydAV+#2%qHu+!$(RuUi`6JV@4&C&?Ymd5j`x@bFFq;nEPsKg7rugWiLlw{H zpc(7<&VfFpSf|HB(G&n^=78r*I@cA?9 z^Qg;P<^U(_W|Ow2u8M&uLqWvRyqku}spsE^w2Q|SC-XgIpA-bo_O?6go^G$s{p`RRiBkGglo7}+KFFGWUpt^k78v`3z>+3s8On}4xX}~mP9fgIuXEB zL^XDo2XQ7tP&&e>*3BJ)?|yr+1#_tYfjayWln2k8nfby9-uQaW4Njxk*{f4iGJ8N1 zV~o13skPk}&nLz_Eb6cS84q2-1$=S;{JU5Rs&>9{>2yRCN%+h!)3bZ?9}PAply`14 zNo3f`RQLhlxGiYOwNRF_$pwr%yNRjMvzR#3v?c}qg=y1K-g6AR@~Mv8SU>buwC5KD zz%QGCgdvTBbs4zi9IQg0Oo>*dQ?$~EJ<9OO(6S|b0Fg6v22W8rax(FBbd+3T#&mQE zr}XDdvqD2)M!CRB0RyDFt{C}S3xTe^9{`H<8FeN94Bs#ApFg_DZcDgwP-xNMf=;?{ zvHR!cTHURQH_pfY_DaEjjc^Yo&uLDwtl?aKOFmy`+i>I@v+jO-_T=$-C5P#P>yMB9 z%$qBS=AIb`Soj=c;ql9-XI=p4_))+EvatCM*Awo@Q9HBF0@Y$UP(fWYvKdAwg%?Pa zy&ab~`p@_7@$}!BAHv8;?%W1Q0LQ!xCZaK**oKAh&q3H;7XlXr4#K~Kz|_aDIojdO zQ9mgPc{qCpWU(*-N2$Fm|TD@l<5=khP z>n`lTUUi`~JXp@09UFuH1Zv92;0gplhTHi2MW*Re96`_uB>w*O=%b&u`4!BF9Ttdm zSh_PEAnn*?=B5v1wFf4W4ox9bhn9cSA%T%MZ$Q~A0pLHG)ocW0y)io&8zXI^FO7CL zZW3V&0gB(c%~J@*I~Li=5o~q;{Kh~HvB5$Z)8GL8^0rb=KS>hnbCu$;MdNt zpB(2jgHv_7pThTxXB>O|SX*W=1Fgmgq}vuh7t2pPv>2I}La{7|69YpFFY)5H7A^vC z>C&gh$D;8OelZ4sxg&mSw;h;@Pdt!d*MaE!Q5N_o9(pSRMnp=xq*k_>gV5k*7(Q48 zR>A$?GF|wK-#9xj=*iYwd*d6WCbzw5+6ub&{8n|yuQVq3!$Axf%9HUjMdvdd6~+B0 z*ct`hN;pIL9dUrd?Oc4^EKD1>2|6<`>{V3TJU+&5t!wTcW3w|(oY?$1HZG=$BZuqcDPtG#UH-Av`9w2Lwq8~Q8tJzU2ohDSz*Mm*=# z@*d2E`pyQ+d-5v_&8X#tPsmO5Ym~;b&#)xa+txQWGUk%!-pdxR+27ds;lq^A;?@Tj OULQ2f6C4 Date: Thu, 28 Aug 2025 00:56:09 +0300 Subject: [PATCH 175/194] New Feature: Symptoms of radiation poisoning (#39805) * New Feature * Cleanup * Bump threshold * Update * Update * Single change * Me when I forgor the yaml --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- .../Thresholds/Behaviors/PopupBehavior.cs | 12 +++++++++++- .../Thresholds/Behaviors/VomitBehavior.cs | 12 ++++++++++++ Resources/Locale/en-US/damage/radiation.ftl | 1 + Resources/Prototypes/Entities/Mobs/base.yml | 15 +++++++++++++++ 4 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 Content.Server/Destructible/Thresholds/Behaviors/VomitBehavior.cs create mode 100644 Resources/Locale/en-US/damage/radiation.ftl diff --git a/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs index 1d7ce24f60..0bca5451c4 100644 --- a/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs +++ b/Content.Server/Destructible/Thresholds/Behaviors/PopupBehavior.cs @@ -20,11 +20,21 @@ public sealed partial class PopupBehavior : IThresholdBehavior [DataField("popupType")] public PopupType PopupType; + /// + /// Only the affected entity will see the popup. + /// + [DataField] + public bool TargetOnly; + public void Execute(EntityUid uid, DestructibleSystem system, EntityUid? cause = null) { var popup = system.EntityManager.System(); // popup is placed at coords since the entity could be deleted after, no more popup then var coords = system.EntityManager.GetComponent(uid).Coordinates; - popup.PopupCoordinates(Loc.GetString(Popup), coords, PopupType); + + if (TargetOnly) + popup.PopupCoordinates(Loc.GetString(Popup), coords, uid, PopupType); + else + popup.PopupCoordinates(Loc.GetString(Popup), coords, PopupType); } } diff --git a/Content.Server/Destructible/Thresholds/Behaviors/VomitBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/VomitBehavior.cs new file mode 100644 index 0000000000..067e7d4565 --- /dev/null +++ b/Content.Server/Destructible/Thresholds/Behaviors/VomitBehavior.cs @@ -0,0 +1,12 @@ +using Content.Server.Medical; + +namespace Content.Server.Destructible.Thresholds.Behaviors; + +[DataDefinition] +public sealed partial class VomitBehavior : IThresholdBehavior +{ + public void Execute(EntityUid uid, DestructibleSystem system, EntityUid? cause = null) + { + system.EntityManager.System().Vomit(uid); + } +} diff --git a/Resources/Locale/en-US/damage/radiation.ftl b/Resources/Locale/en-US/damage/radiation.ftl new file mode 100644 index 0000000000..bfe32fa9bb --- /dev/null +++ b/Resources/Locale/en-US/damage/radiation.ftl @@ -0,0 +1 @@ +mouth-taste-metal = You taste something metallic in your mouth! diff --git a/Resources/Prototypes/Entities/Mobs/base.yml b/Resources/Prototypes/Entities/Mobs/base.yml index 90bb90e663..a0b2da3975 100644 --- a/Resources/Prototypes/Entities/Mobs/base.yml +++ b/Resources/Prototypes/Entities/Mobs/base.yml @@ -85,6 +85,21 @@ - !type:PlaySoundBehavior sound: collection: MeatLaserImpact + - trigger: + !type:DamageTypeTrigger + damageType: Radiation + damage: 15 + behaviors: + - !type:PopupBehavior + popup: mouth-taste-metal + popupType: LargeCaution + targetOnly: true + - trigger: + !type:DamageTypeTrigger + damageType: Radiation + damage: 40 + behaviors: + - !type:VomitBehavior - type: RadiationReceiver - type: Stamina - type: MobState From 420fb5cebfdb707b9b7d664a78956c9875dbca6a Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 27 Aug 2025 21:57:17 +0000 Subject: [PATCH 176/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9f489f18f9..1b218be9a0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: When an entity becomes SSD, it will be forced to sleep after 10 minutes. - It can be awakened if no more SSD. - type: Tweak - id: 8384 - time: '2025-04-29T05:24:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/34039 - author: TytosB changes: - message: adjusted pka damage and range @@ -3948,3 +3940,11 @@ id: 8896 time: '2025-08-27T21:06:51.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39676 +- author: Winkarst-cpu + changes: + - message: Living beings are now vomiting from being irradiated. Also, irradiated + players will see a popup about tasting something metallic. + type: Add + id: 8897 + time: '2025-08-27T21:56:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39805 From 60ea135fd3b07c69519f1823ae55b19959fb37de Mon Sep 17 00:00:00 2001 From: Fildrance Date: Thu, 28 Aug 2025 11:46:24 +0300 Subject: [PATCH 177/194] Revert "Added button and manager for in game bug reports (Part 1)" (#39872) Revert "Added button and manager for in game bug reports (Part 1) (#35350)" This reverts commit a8d6dbc3241c880f846a7abba8bd330788df9fc1. --- .../BugReport/BugReportUIController.cs | 113 ----- .../BugReport/Windows/BugReportWindow.xaml | 31 -- .../BugReport/Windows/BugReportWindow.xaml.cs | 181 -------- .../MenuBar/GameTopMenuBarUIController.cs | 4 - .../MenuBar/Widgets/GameTopMenuBar.xaml | 9 - Content.Server/BugReports/BugReportManager.cs | 221 ---------- Content.Server/BugReports/IBugReportEvents.cs | 94 ---- .../BugReports/IBugReportManager.cs | 22 - Content.Server/Entry/EntryPoint.cs | 10 +- .../GameTicking/GameTicker.RoundFlow.cs | 2 - Content.Server/GameTicking/GameTicker.cs | 2 - .../Github/Commands/TestGithubApiCommand.cs | 71 --- Content.Server/Github/GithubApiManager.cs | 53 --- .../Github/GithubBackgroundWorker.cs | 74 ---- Content.Server/Github/GithubClient.cs | 417 ------------------ .../Github/Requests/CreateIssueRequest.cs | 38 -- .../Github/Requests/IGithubRequest.cs | 44 -- .../Github/Requests/InstallationsRequest.cs | 18 - .../Github/Requests/TokenRequest.cs | 22 - .../Github/Responses/InstallationResponse.cs | 21 - .../Github/Responses/TokenResponse.cs | 15 - Content.Server/Github/RetryHttpHandler.cs | 100 ----- Content.Server/IoC/ServerContentIoC.cs | 7 +- Content.Shared.Database/LogType.cs | 6 - Content.Shared/BugReport/BugReportMessage.cs | 42 -- Content.Shared/CCVar/CCVars.BugReports.cs | 64 --- Content.Shared/CCVar/CCVars.Github.cs | 71 --- Resources/Locale/en-US/HUD/game-hud.ftl | 1 - .../en-US/bugreport/bug-report-report.ftl | 1 - .../en-US/bugreport/bug-report-window.ftl | 13 - Resources/Locale/en-US/github/github-api.ftl | 36 -- Resources/Textures/Interface/bug.svg | 13 - .../Textures/Interface/bug.svg.192dpi.png | Bin 1852 -> 0 bytes .../Textures/Interface/bug.svg.192dpi.png.yml | 2 - Resources/Textures/Interface/splat.svg | 14 - .../Textures/Interface/splat.svg.192dpi.png | Bin 2069 -> 0 bytes .../Interface/splat.svg.192dpi.png.yml | 2 - 37 files changed, 3 insertions(+), 1831 deletions(-) delete mode 100644 Content.Client/UserInterface/Systems/BugReport/BugReportUIController.cs delete mode 100644 Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml delete mode 100644 Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml.cs delete mode 100644 Content.Server/BugReports/BugReportManager.cs delete mode 100644 Content.Server/BugReports/IBugReportEvents.cs delete mode 100644 Content.Server/BugReports/IBugReportManager.cs delete mode 100644 Content.Server/Github/Commands/TestGithubApiCommand.cs delete mode 100644 Content.Server/Github/GithubApiManager.cs delete mode 100644 Content.Server/Github/GithubBackgroundWorker.cs delete mode 100644 Content.Server/Github/GithubClient.cs delete mode 100644 Content.Server/Github/Requests/CreateIssueRequest.cs delete mode 100644 Content.Server/Github/Requests/IGithubRequest.cs delete mode 100644 Content.Server/Github/Requests/InstallationsRequest.cs delete mode 100644 Content.Server/Github/Requests/TokenRequest.cs delete mode 100644 Content.Server/Github/Responses/InstallationResponse.cs delete mode 100644 Content.Server/Github/Responses/TokenResponse.cs delete mode 100644 Content.Server/Github/RetryHttpHandler.cs delete mode 100644 Content.Shared/BugReport/BugReportMessage.cs delete mode 100644 Content.Shared/CCVar/CCVars.BugReports.cs delete mode 100644 Content.Shared/CCVar/CCVars.Github.cs delete mode 100644 Resources/Locale/en-US/bugreport/bug-report-report.ftl delete mode 100644 Resources/Locale/en-US/bugreport/bug-report-window.ftl delete mode 100644 Resources/Locale/en-US/github/github-api.ftl delete mode 100644 Resources/Textures/Interface/bug.svg delete mode 100644 Resources/Textures/Interface/bug.svg.192dpi.png delete mode 100644 Resources/Textures/Interface/bug.svg.192dpi.png.yml delete mode 100644 Resources/Textures/Interface/splat.svg delete mode 100644 Resources/Textures/Interface/splat.svg.192dpi.png delete mode 100644 Resources/Textures/Interface/splat.svg.192dpi.png.yml diff --git a/Content.Client/UserInterface/Systems/BugReport/BugReportUIController.cs b/Content.Client/UserInterface/Systems/BugReport/BugReportUIController.cs deleted file mode 100644 index 7d45829bd2..0000000000 --- a/Content.Client/UserInterface/Systems/BugReport/BugReportUIController.cs +++ /dev/null @@ -1,113 +0,0 @@ -using Content.Client.Gameplay; -using Content.Client.Resources; -using Content.Client.UserInterface.Controls; -using Content.Client.UserInterface.Systems.BugReport.Windows; -using Content.Client.UserInterface.Systems.MenuBar.Widgets; -using Content.Shared.BugReport; -using Content.Shared.CCVar; -using JetBrains.Annotations; -using Robust.Client.ResourceManagement; -using Robust.Client.UserInterface.Controllers; -using Robust.Client.UserInterface.Controls; -using Robust.Shared.Configuration; -using Robust.Shared.Network; -using Robust.Shared.Utility; - -namespace Content.Client.UserInterface.Systems.BugReport; - -[UsedImplicitly] -public sealed class BugReportUIController : UIController, IOnStateEntered, IOnStateExited -{ - [Dependency] private readonly IClientNetManager _net = default!; - [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly IResourceCache _resource = default!; - - // This is the link to the hotbar button - private MenuButton? BugReportButton => UIManager.GetActiveUIWidgetOrNull()?.ReportBugButton; - - // Don't clear this window. It needs to be saved so the input doesn't get erased when it's closed! - private BugReportWindow _bugReportWindow = default!; - - private ResPath Bug = new("/Textures/Interface/bug.svg.192dpi.png"); - private ResPath Splat = new("/Textures/Interface/splat.svg.192dpi.png"); - - public void OnStateEntered(GameplayState state) - { - SetupWindow(); - } - - public void OnStateExited(GameplayState state) - { - CleanupWindow(); - } - - public void LoadButton() - { - if (BugReportButton != null) - BugReportButton.OnPressed += ButtonToggleWindow; - } - - public void UnloadButton() - { - if (BugReportButton != null) - BugReportButton.OnPressed -= ButtonToggleWindow; - } - - private void SetupWindow() - { - if (BugReportButton == null) - return; - - _bugReportWindow = UIManager.CreateWindow(); - // This is to make sure the hotbar button gets checked and unchecked when the window is opened / closed. - _bugReportWindow.OnClose += () => - { - BugReportButton.Pressed = false; - BugReportButton.Icon = _resource.GetTexture(Bug); - }; - _bugReportWindow.OnOpen += () => - { - BugReportButton.Pressed = true; - BugReportButton.Icon = _resource.GetTexture(Splat); - }; - - _bugReportWindow.OnBugReportSubmitted += OnBugReportSubmitted; - - _cfg.OnValueChanged(CCVars.EnablePlayerBugReports, UpdateButtonVisibility, true); - } - - private void CleanupWindow() - { - _bugReportWindow.CleanupCCvars(); - - _cfg.UnsubValueChanged(CCVars.EnablePlayerBugReports, UpdateButtonVisibility); - } - - private void ToggleWindow() - { - if (_bugReportWindow.IsOpen) - _bugReportWindow.Close(); - else - _bugReportWindow.OpenCentered(); - } - - private void OnBugReportSubmitted(PlayerBugReportInformation report) - { - var message = new BugReportMessage { ReportInformation = report }; - _net.ClientSendMessage(message); - _bugReportWindow.Close(); - } - - private void ButtonToggleWindow(BaseButton.ButtonEventArgs obj) - { - ToggleWindow(); - } - - private void UpdateButtonVisibility(bool val) - { - if (BugReportButton == null) - return; - - BugReportButton.Visible = val; - } -} diff --git a/Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml b/Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml deleted file mode 100644 index d3d6570a41..0000000000 --- a/Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml.cs b/Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml.cs deleted file mode 100644 index a43ba15d68..0000000000 --- a/Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml.cs +++ /dev/null @@ -1,181 +0,0 @@ -using System.Diagnostics.CodeAnalysis; -using Content.Client.Players.PlayTimeTracking; -using Content.Shared.BugReport; -using Content.Shared.CCVar; -using Robust.Client.AutoGenerated; -using Robust.Client.UserInterface.CustomControls; -using Robust.Client.UserInterface.XAML; -using Robust.Shared.Configuration; -using Robust.Shared.Timing; -using Robust.Shared.Utility; - -namespace Content.Client.UserInterface.Systems.BugReport.Windows; - -[GenerateTypedNameReferences] -public sealed partial class BugReportWindow : DefaultWindow -{ - [Dependency] private readonly IConfigurationManager _cfg = default!; - // TODO: Use SharedPlaytimeManager when its refactored out of job requirements - [Dependency] private readonly JobRequirementsManager _job = default!; - - // This action gets invoked when the user submits a bug report. - public event Action? OnBugReportSubmitted; - - private DateTime _lastIsEnabledUpdated; - private readonly TimeSpan _isEnabledUpdateInterval = TimeSpan.FromSeconds(1); - - // These are NOT always up to date. If someone disconnects and reconnects, the values will be reset. - // The only other way of getting updated values would be a message from client -> server then from server -> client. - // I don't think that is worth the added complexity. - private DateTime _lastBugReportSubmittedTime = DateTime.MinValue; - private int _amountOfBugReportsSubmitted; - - private readonly ConfigurationMultiSubscriptionBuilder _configSub; - - #region ccvar - - private bool _enablePlayerBugReports; - private int _minimumPlaytimeBugReports; - private int _minimumTimeBetweenBugReports; - private int _maximumBugReportsPerRound; - - private int _maximumBugReportTitleLength; - private int _minimumBugReportTitleLength; - private int _maximumBugReportDescriptionLength; - private int _minimumBugReportDescriptionLength; - - #endregion - - public BugReportWindow() - { - RobustXamlLoader.Load(this); - IoCManager.InjectDependencies(this); - - _configSub = _cfg.SubscribeMultiple() - .OnValueChanged(CCVars.EnablePlayerBugReports, x => _enablePlayerBugReports = x, true) - .OnValueChanged(CCVars.MinimumPlaytimeInMinutesToEnableBugReports, x => _minimumPlaytimeBugReports = x, true) - .OnValueChanged(CCVars.MinimumSecondsBetweenBugReports, x => _minimumTimeBetweenBugReports = x, true) - .OnValueChanged(CCVars.MaximumBugReportsPerRound, x => _maximumBugReportsPerRound = x, true) - .OnValueChanged(CCVars.MaximumBugReportTitleLength, x => _maximumBugReportTitleLength = x, true) - .OnValueChanged(CCVars.MinimumBugReportTitleLength, x => _minimumBugReportTitleLength = x, true) - .OnValueChanged(CCVars.MaximumBugReportDescriptionLength, x => _maximumBugReportDescriptionLength = x, true) - .OnValueChanged(CCVars.MinimumBugReportDescriptionLength, x => _minimumBugReportDescriptionLength = x, true); - - // Hook up the events - SubmitButton.OnPressed += _ => OnSubmitButtonPressed(); - BugReportTitle.OnTextChanged += _ => HandleInputChange(); - BugReportDescription.OnTextChanged += _ => HandleInputChange(); - OnOpen += UpdateEnabled; - - HandleInputChange(); - UpdateEnabled(); - } - - private void OnSubmitButtonPressed() - { - var report = new PlayerBugReportInformation - { - BugReportTitle = BugReportTitle.Text, - BugReportDescription = Rope.Collapse(BugReportDescription.TextRope), - }; - OnBugReportSubmitted?.Invoke(report); - - _lastBugReportSubmittedTime = DateTime.UtcNow; - _amountOfBugReportsSubmitted++; - - BugReportTitle.Text = string.Empty; - BugReportDescription.TextRope = Rope.Leaf.Empty; - - HandleInputChange(); - UpdateEnabled(); - } - - /// - /// Deals with the user changing their input. Ensures that things that depend on what the user has inputted get updated - /// (E.g. the amount of characters they have typed) - /// - private void HandleInputChange() - { - var titleLen = BugReportTitle.Text.Length; - var descriptionLen = BugReportDescription.TextLength; - - var invalidTitleLen = titleLen < _minimumBugReportTitleLength || titleLen > _maximumBugReportTitleLength; - var invalidDescriptionLen = descriptionLen < _minimumBugReportDescriptionLength || descriptionLen > _maximumBugReportDescriptionLength; - - TitleCharacterCounter.Text = Loc.GetString("bug-report-window-submit-char-split", ("typed", titleLen), ("total", _maximumBugReportTitleLength)); - TitleCharacterCounter.FontColorOverride = invalidTitleLen ? Color.Red : Color.Green; - - DescriptionCharacterCounter.Text = Loc.GetString("bug-report-window-submit-char-split", ("typed", descriptionLen), ("total", _maximumBugReportDescriptionLength)); - - DescriptionCharacterCounter.FontColorOverride = invalidDescriptionLen ? Color.Red : Color.Green; - - SubmitButton.Disabled = invalidTitleLen || invalidDescriptionLen; - - PlaceholderCenter.Visible = descriptionLen == 0; - } - - /// - /// Checks if the bug report window should be enabled for this client. - /// - private bool IsEnabled([NotNullWhen(false)] out string? errorMessage) - { - errorMessage = null; - - if (!_enablePlayerBugReports) - { - errorMessage = Loc.GetString("bug-report-window-disabled-not-enabled"); - return false; - } - - if (TimeSpan.FromMinutes(_minimumPlaytimeBugReports) > _job.FetchOverallPlaytime()) - { - errorMessage = Loc.GetString("bug-report-window-disabled-playtime"); - return false; - } - - if (_amountOfBugReportsSubmitted >= _maximumBugReportsPerRound) - { - errorMessage = Loc.GetString("bug-report-window-disabled-submissions", ("num", _maximumBugReportsPerRound)); - return false; - } - - var timeSinceLastReport = DateTime.UtcNow - _lastBugReportSubmittedTime; - var timeBetweenBugReports = TimeSpan.FromSeconds(_minimumTimeBetweenBugReports); - - if (timeSinceLastReport <= timeBetweenBugReports) - { - var time = timeBetweenBugReports - timeSinceLastReport; - errorMessage = Loc.GetString("bug-report-window-disabled-cooldown", ("time", time.ToString(@"d\.hh\:mm\:ss"))); - return false; - } - - return true; - } - - // Update the state of the window to display either the bug report window or an error explaining why you can't submit a report. - private void UpdateEnabled() - { - var isEnabled = IsEnabled(out var errorMessage); - DisabledLabel.Text = errorMessage; - - DisabledLabel.Visible = !isEnabled; - BugReportContainer.Visible = isEnabled; - _lastIsEnabledUpdated = DateTime.UtcNow; - } - - protected override void FrameUpdate(FrameEventArgs args) - { - base.FrameUpdate(args); - - if (!Visible) // Don't bother updating if no one can see the window anyway. - return; - - if(DateTime.UtcNow - _lastIsEnabledUpdated > _isEnabledUpdateInterval) - UpdateEnabled(); - } - - public void CleanupCCvars() - { - _configSub.Dispose(); - } -} diff --git a/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs b/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs index fb7c7f9d25..e314310bc0 100644 --- a/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs +++ b/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs @@ -1,6 +1,5 @@ using Content.Client.UserInterface.Systems.Actions; using Content.Client.UserInterface.Systems.Admin; -using Content.Client.UserInterface.Systems.BugReport; using Content.Client.UserInterface.Systems.Bwoink; using Content.Client.UserInterface.Systems.Character; using Content.Client.UserInterface.Systems.Crafting; @@ -25,7 +24,6 @@ public sealed class GameTopMenuBarUIController : UIController [Dependency] private readonly SandboxUIController _sandbox = default!; [Dependency] private readonly GuidebookUIController _guidebook = default!; [Dependency] private readonly EmotesUIController _emotes = default!; - [Dependency] private readonly BugReportUIController _bug = default!; private GameTopMenuBar? GameTopMenuBar => UIManager.GetActiveUIWidgetOrNull(); @@ -49,7 +47,6 @@ public sealed class GameTopMenuBarUIController : UIController _action.UnloadButton(); _sandbox.UnloadButton(); _emotes.UnloadButton(); - _bug.UnloadButton(); } public void LoadButtons() @@ -63,6 +60,5 @@ public sealed class GameTopMenuBarUIController : UIController _action.LoadButton(); _sandbox.LoadButton(); _emotes.LoadButton(); - _bug.LoadButton(); } } diff --git a/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml b/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml index 2c09666fdf..dc8972970a 100644 --- a/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml +++ b/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml @@ -93,15 +93,6 @@ HorizontalExpand="True" AppendStyleClass="{x:Static style:StyleBase.ButtonSquare}" /> - -public sealed class BugReportManager : IBugReportManager, IPostInjectInit -{ - [Dependency] private readonly IServerNetManager _net = default!; - [Dependency] private readonly IEntityManager _entity = default!; - [Dependency] private readonly PlayTimeTrackingManager _playTime = default!; - [Dependency] private readonly IPlayerManager _player = default!; - [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly IAdminLogManager _admin = default!; - [Dependency] private readonly IGameMapManager _map = default!; - [Dependency] private readonly GithubApiManager _githubApiManager = default!; - [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly ILogManager _log = default!; - - private ISawmill _sawmill = default!; - - /// - /// List of player NetIds and the number of bug reports they have submitted this round. - /// UserId -> (bug reports this round, last submitted bug report) - /// - private readonly Dictionary _bugReportsPerPlayerThisRound = new(); - - private BugReportLimits _limits = default!; - - private List _tags = []; - - private ConfigurationMultiSubscriptionBuilder _configSub = default!; - - public void Initialize() - { - _net.RegisterNetMessage(ReceivedPlayerBugReport); - - _limits = new BugReportLimits(); - - _configSub = _cfg.SubscribeMultiple() - .OnValueChanged(CCVars.MaximumBugReportTitleLength, x => _limits.TitleMaxLength = x, true) - .OnValueChanged(CCVars.MinimumBugReportTitleLength, x => _limits.TitleMinLength = x, true) - .OnValueChanged(CCVars.MaximumBugReportDescriptionLength, x => _limits.DescriptionMaxLength = x, true) - .OnValueChanged(CCVars.MinimumBugReportDescriptionLength, x => _limits.DescriptionMinLength = x, true) - .OnValueChanged(CCVars.MinimumPlaytimeInMinutesToEnableBugReports, x => _limits.MinimumPlaytimeToEnableBugReports = TimeSpan.FromMinutes(x), true) - .OnValueChanged(CCVars.MaximumBugReportsPerRound, x => _limits.MaximumBugReportsForPlayerPerRound = x, true) - .OnValueChanged(CCVars.MinimumSecondsBetweenBugReports, x => _limits.MinimumTimeBetweenBugReports = TimeSpan.FromSeconds(x), true) - .OnValueChanged(CCVars.BugReportTags, x => _tags = x.Split(",").ToList(), true); - } - - public void Restart() - { - // When the round restarts, clear the dictionary. - _bugReportsPerPlayerThisRound.Clear(); - } - - public void Shutdown() - { - _configSub.Dispose(); - } - - private void ReceivedPlayerBugReport(BugReportMessage message) - { - if (!_cfg.GetCVar(CCVars.EnablePlayerBugReports)) - return; - - var netId = message.MsgChannel.UserId; - var userName = message.MsgChannel.UserName; - var report = message.ReportInformation; - if (!IsBugReportValid(report, (NetId: netId, UserName: userName)) || !CanPlayerSendReport(netId, userName)) - return; - - var playerBugReportingStats = _bugReportsPerPlayerThisRound.GetValueOrDefault(netId); - _bugReportsPerPlayerThisRound[netId] = (playerBugReportingStats.ReportsCount + 1, DateTime.UtcNow); - - var title = report.BugReportTitle; - var description = report.BugReportDescription; - - _admin.Add(LogType.BugReport, LogImpact.High, $"{message.MsgChannel.UserName}, {netId}: submitted a bug report. Title: {title}, Description: {description}"); - - var bugReport = CreateBugReport(message); - - _githubApiManager.TryCreateIssue(bugReport); - } - - /// - /// Checks that the given report is valid (E.g. not too long etc...). - /// Logs problems if report is invalid. - /// - /// True if the report is valid, false there is an issue with the report. - private bool IsBugReportValid(PlayerBugReportInformation report, (NetUserId NetId, string UserName) userData) - { - var descriptionLen = report.BugReportDescription.Length; - var titleLen = report.BugReportTitle.Length; - - // These should only happen if there is a hacked client or a glitch! - if (titleLen < _limits.TitleMinLength || titleLen > _limits.TitleMaxLength) - { - _sawmill.Warning( - $"{userData.UserName}, {userData.NetId}: has tried to submit a bug report " - + $"with a title of {titleLen} characters, min/max: {_limits.TitleMinLength}/{_limits.TitleMaxLength}." - ); - return false; - } - - if (descriptionLen < _limits.DescriptionMinLength || descriptionLen > _limits.DescriptionMaxLength) - { - _sawmill.Warning( - $"{userData.UserName}, {userData.NetId}: has tried to submit a bug report " - + $"with a description of {descriptionLen} characters, min/max: {_limits.DescriptionMinLength}/{_limits.DescriptionMaxLength}." - ); - return false; - } - - return true; - } - - /// - /// Checks that the player sending the report is allowed to (E.g. not spamming etc...). - /// Logs problems if report is invalid. - /// - /// True if the player can submit a report, false if they can't. - private bool CanPlayerSendReport(NetUserId netId, string userName) - { - var session = _player.GetSessionById(netId); - var playtime = _playTime.GetOverallPlaytime(session); - if (_limits.MinimumPlaytimeToEnableBugReports > playtime) - return false; - - var playerBugReportingStats = _bugReportsPerPlayerThisRound.GetValueOrDefault(netId); - var maximumBugReportsForPlayerPerRound = _limits.MaximumBugReportsForPlayerPerRound; - if (playerBugReportingStats.ReportsCount >= maximumBugReportsForPlayerPerRound) - { - _admin.Add(LogType.BugReport, - LogImpact.High, - $"{userName}, {netId}: has tried to submit more than {maximumBugReportsForPlayerPerRound} bug reports this round."); - return false; - } - - var timeSinceLastReport = DateTime.UtcNow - playerBugReportingStats.ReportedDateTime; - var timeBetweenBugReports = _limits.MinimumTimeBetweenBugReports; - if (timeSinceLastReport <= timeBetweenBugReports) - { - _admin.Add(LogType.BugReport, - LogImpact.High, - $"{userName}, {netId}: has tried to submit a bug report. " - + $"Last bug report was {timeSinceLastReport:g} ago. The limit is {timeBetweenBugReports:g} minutes." - ); - return false; - } - - return true; - } - - /// - /// Create a bug report out of the given message. Add will extra metadata that could be useful, along with - /// the original text report from the user. - /// - /// The message from user. - /// A based of the user report. - private ValidPlayerBugReportReceivedEvent CreateBugReport(BugReportMessage message) - { - // todo: dont request entity system out of sim, check if you are in-sim before doing so. Bug report should work out of sim too. - var ticker = _entity.System(); - var metadata = new BugReportMetaData - { - Username = message.MsgChannel.UserName, - PlayerGUID = message.MsgChannel.UserData.UserId, - ServerName = _cfg.GetCVar(CCVars.AdminLogsServerName), - NumberOfPlayers = _player.PlayerCount, - SubmittedTime = DateTime.UtcNow, - BuildVersion = _cfg.GetCVar(CVars.BuildVersion), - EngineVersion = _cfg.GetCVar(CVars.BuildEngineVersion), - }; - - // Only add these if your in round. - if (ticker.Preset != null) - { - metadata.RoundTime = _timing.CurTime.Subtract(ticker.RoundStartTimeSpan); - metadata.RoundNumber = ticker.RoundId; - metadata.RoundType = Loc.GetString(ticker.CurrentPreset?.ModeTitle ?? "bug-report-report-unknown"); - metadata.Map = _map.GetSelectedMap()?.MapName ?? Loc.GetString("bug-report-report-unknown"); - } - - return new ValidPlayerBugReportReceivedEvent( - message.ReportInformation.BugReportTitle.Trim(), - message.ReportInformation.BugReportDescription.Trim(), - metadata, - _tags - ); - } - - void IPostInjectInit.PostInject() - { - _sawmill = _log.GetSawmill("BugReport"); - } - - private sealed class BugReportLimits - { - public int TitleMaxLength; - public int TitleMinLength; - public int DescriptionMaxLength; - public int DescriptionMinLength; - - public TimeSpan MinimumPlaytimeToEnableBugReports; - public int MaximumBugReportsForPlayerPerRound; - public TimeSpan MinimumTimeBetweenBugReports; - } -} diff --git a/Content.Server/BugReports/IBugReportEvents.cs b/Content.Server/BugReports/IBugReportEvents.cs deleted file mode 100644 index 3e79ff542e..0000000000 --- a/Content.Server/BugReports/IBugReportEvents.cs +++ /dev/null @@ -1,94 +0,0 @@ -using Robust.Shared.Network; - -namespace Content.Server.BugReports; - -/// -/// This event stores information related to a player submitted bug report. -/// -public sealed class ValidPlayerBugReportReceivedEvent(string title, string description, BugReportMetaData metaData, List tags) : EventArgs -{ - /// - /// Title for the bug report. This is player controlled! - /// - public string Title = title; - - /// - /// Description for the bug report. This is player controlled! - /// - public string Description = description; - - /// - /// Metadata for bug report, containing data collected by server. - /// - public BugReportMetaData MetaData = metaData; - - public List Tags = tags; -} - -/// -/// Metadata for a bug report. Holds relevant data for bug reports that aren't directly player controlled. -/// -public sealed class BugReportMetaData -{ - /// - /// Bug reporter SS14 username. - /// - /// piggylongsnout - public required string Username; - - /// - /// The GUID of the player who reported the bug. - /// - public required NetUserId PlayerGUID; - - /// - /// Name of the server from which bug report was issued. - /// - /// DeltaV> - public required string ServerName; - - /// - /// Date and time on which player submitted report (NOT round time). - /// The time is UTC and based off the servers clock. - /// - public required DateTime SubmittedTime; - - /// - /// Time that has elapsed in the round. Can be null if bug was not reported during a round. - /// - public TimeSpan? RoundTime; - - /// - /// Round number during which bug report was issued. Can be null if bug was reported not during round. - /// - /// 1311 - public int? RoundNumber; - - /// - /// Type preset title (type of round that is being played). Can be null if bug was reported not during round. - /// - /// Sandbox - public string? RoundType; - - /// - /// The map being played. - /// - /// "Dev"> - public string? Map; - - /// - /// Number of players currently on server. - /// - public int NumberOfPlayers; - - /// - /// Build version of the game. - /// - public required string BuildVersion; - - /// - /// Engine version of the game. - /// - /// 253.0.0 - public required string EngineVersion; -} diff --git a/Content.Server/BugReports/IBugReportManager.cs b/Content.Server/BugReports/IBugReportManager.cs deleted file mode 100644 index 28264bc8c0..0000000000 --- a/Content.Server/BugReports/IBugReportManager.cs +++ /dev/null @@ -1,22 +0,0 @@ -namespace Content.Server.BugReports; - -/// -/// Manager for validating client bug reports, issued in-game, and relaying creation of issue in tracker to dedicated api client. -/// -public interface IBugReportManager -{ - /// Will get called when the manager is first initialized. - public void Initialize(); - - /// - /// Will get called whenever the round is restarted. - /// Should be used to clean up anything that needs reset after each round. - /// - public void Restart(); - - /// - /// Will get called whenever the round is restarted. - /// Should be used to clean up anything that needs reset after each round. - /// - public void Shutdown(); -} diff --git a/Content.Server/Entry/EntryPoint.cs b/Content.Server/Entry/EntryPoint.cs index 1f2d035a4a..df4af14f1e 100644 --- a/Content.Server/Entry/EntryPoint.cs +++ b/Content.Server/Entry/EntryPoint.cs @@ -3,7 +3,6 @@ using Content.Server.Administration; using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; using Content.Server.Afk; -using Content.Server.BugReports; using Content.Server.Chat.Managers; using Content.Server.Connection; using Content.Server.Database; @@ -11,12 +10,13 @@ using Content.Server.Discord.DiscordLink; using Content.Server.EUI; using Content.Server.GameTicking; using Content.Server.GhostKick; -using Content.Server.Github; using Content.Server.GuideGenerator; using Content.Server.Info; using Content.Server.IoC; using Content.Server.Maps; using Content.Server.NodeContainer.NodeGroups; +using Content.Server.Objectives; +using Content.Server.Players; using Content.Server.Players.JobWhitelist; using Content.Server.Players.PlayTimeTracking; using Content.Server.Players.RateLimiting; @@ -111,10 +111,6 @@ namespace Content.Server.Entry IoCManager.Resolve().Initialize(); IoCManager.Resolve().Initialize(); IoCManager.Resolve().Initialize(); - IoCManager.Resolve().Initialize(); - IoCManager.Resolve().Initialize(); - IoCManager.Resolve().Initialize(); - IoCManager.Resolve().Initialize(); _voteManager.Initialize(); _updateManager.Initialize(); @@ -196,8 +192,6 @@ namespace Content.Server.Entry IoCManager.Resolve().Shutdown(); IoCManager.Resolve().Shutdown(); - - IoCManager.Resolve().Shutdown(); } private static void LoadConfigPresets(IConfigurationManager cfg, IResourceManager res, ISawmill sawmill) diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index cb5a1a4187..1dadca4c03 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -725,8 +725,6 @@ namespace Content.Server.GameTicking _banManager.Restart(); - _bugManager.Restart(); - _gameMapManager.ClearSelectedMap(); // Clear up any game rules. diff --git a/Content.Server/GameTicking/GameTicker.cs b/Content.Server/GameTicking/GameTicker.cs index 290d363047..55bf51db02 100644 --- a/Content.Server/GameTicking/GameTicker.cs +++ b/Content.Server/GameTicking/GameTicker.cs @@ -1,6 +1,5 @@ using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; -using Content.Server.BugReports; using Content.Server.Chat.Managers; using Content.Server.Chat.Systems; using Content.Server.Database; @@ -66,7 +65,6 @@ namespace Content.Server.GameTicking [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedRoleSystem _roles = default!; [Dependency] private readonly ServerDbEntryManager _dbEntryManager = default!; - [Dependency] private readonly IBugReportManager _bugManager = default!; [ViewVariables] private bool _initialized; [ViewVariables] private bool _postInitialized; diff --git a/Content.Server/Github/Commands/TestGithubApiCommand.cs b/Content.Server/Github/Commands/TestGithubApiCommand.cs deleted file mode 100644 index 85ac798057..0000000000 --- a/Content.Server/Github/Commands/TestGithubApiCommand.cs +++ /dev/null @@ -1,71 +0,0 @@ -using Content.Server.Administration; -using Content.Server.Github.Requests; -using Content.Shared.Administration; -using Content.Shared.CCVar; -using Robust.Shared.Configuration; -using Robust.Shared.Console; - -namespace Content.Server.Github.Commands; - -/// -/// Simple command for testing if the GitHub api is set up correctly! It ensures that all necessary ccvars are set, -/// and will also create one new issue on the targeted repository. -/// -[AdminCommand(AdminFlags.Server)] -public sealed class TestGithubApiCommand : LocalizedCommands -{ - [Dependency] private readonly GithubApiManager _git = default!; - [Dependency] private readonly IConfigurationManager _cfg = default!; - - public override string Command => Loc.GetString("github-command-test-name"); - - public override async void Execute(IConsoleShell shell, string argStr, string[] args) - { - var enabled = _cfg.GetCVar(CCVars.GithubEnabled); - var path = _cfg.GetCVar(CCVars.GithubAppPrivateKeyPath); - var appId = _cfg.GetCVar(CCVars.GithubAppId); - var repoName = _cfg.GetCVar(CCVars.GithubRepositoryName); - var owner = _cfg.GetCVar(CCVars.GithubRepositoryOwner); - - if (!enabled) - { - shell.WriteError(Loc.GetString("github-command-not-enabled")); - return; - } - - if (string.IsNullOrWhiteSpace(path)) - { - shell.WriteError(Loc.GetString("github-command-no-path")); - return; - } - - if (string.IsNullOrWhiteSpace(appId)) - { - shell.WriteError(Loc.GetString("github-command-no-app-id")); - return; - } - - if (string.IsNullOrWhiteSpace(repoName)) - { - shell.WriteError(Loc.GetString("github-command-no-repo-name")); - return; - } - - if (string.IsNullOrWhiteSpace(owner)) - { - shell.WriteError(Loc.GetString("github-command-no-owner")); - return; - } - - // Create two issues and send them to the api. - var request = new CreateIssueRequest - { - Title = Loc.GetString("github-command-issue-title-one"), - Body = Loc.GetString("github-command-issue-description-one"), - }; - - _git.TryMakeRequest(request); - - shell.WriteLine(Loc.GetString("github-command-finish")); - } -} diff --git a/Content.Server/Github/GithubApiManager.cs b/Content.Server/Github/GithubApiManager.cs deleted file mode 100644 index 44f164fdf0..0000000000 --- a/Content.Server/Github/GithubApiManager.cs +++ /dev/null @@ -1,53 +0,0 @@ -using Content.Server.Github.Requests; -using System.Threading.Tasks; -using Content.Server.BugReports; - -namespace Content.Server.Github; - -public sealed class GithubApiManager -{ - [Dependency] private readonly GithubBackgroundWorker _githubWorker = default!; - - public void Initialize() - { - Task.Run(() => _githubWorker.HandleQueue()); - } - - public bool TryCreateIssue(ValidPlayerBugReportReceivedEvent bugReport) - { - var createIssueRequest = ConvertToCreateIssue(bugReport); - return TryMakeRequest(createIssueRequest); - } - - public bool TryMakeRequest(IGithubRequest request) - { - return _githubWorker.Writer.TryWrite(request); - } - - private CreateIssueRequest ConvertToCreateIssue(ValidPlayerBugReportReceivedEvent bugReport) - { - var request = new CreateIssueRequest - { - Title = bugReport.Title, - Labels = bugReport.Tags, - }; - - var metadata = bugReport.MetaData; - - request.Body = Loc.GetString("github-issue-format", - ("description", bugReport.Description), - ("buildVersion", metadata.BuildVersion), - ("engineVersion", metadata.EngineVersion), - ("serverName", metadata.ServerName), - ("submittedTime", metadata.SubmittedTime), - ("roundNumber", metadata.RoundNumber.ToString() ?? ""), - ("roundTime", metadata.RoundTime.ToString() ?? ""), - ("roundType", metadata.RoundType ?? ""), - ("map", metadata.Map ?? ""), - ("numberOfPlayers", metadata.NumberOfPlayers), - ("username", metadata.Username), - ("playerGUID", metadata.PlayerGUID)); - - return request; - } -} diff --git a/Content.Server/Github/GithubBackgroundWorker.cs b/Content.Server/Github/GithubBackgroundWorker.cs deleted file mode 100644 index 06d85dd001..0000000000 --- a/Content.Server/Github/GithubBackgroundWorker.cs +++ /dev/null @@ -1,74 +0,0 @@ -using System.Threading; -using System.Threading.Channels; -using System.Threading.Tasks; -using Content.Server.Github.Requests; -using Content.Shared.CCVar; -using Robust.Shared.Configuration; - -namespace Content.Server.Github; - -public sealed class GithubBackgroundWorker -{ - [Dependency] private readonly GithubClient _client = default!; - [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly ILogManager _log = default!; - - private ISawmill _sawmill = default!; - - private bool _enabled; - private readonly Channel _channel = Channel.CreateUnbounded(); - private readonly CancellationTokenSource _cts = new CancellationTokenSource(); - - public ChannelWriter Writer => _channel.Writer; - - public void Initialize() - { - _sawmill = _log.GetSawmill("github-ratelimit"); - _cfg.OnValueChanged(CCVars.GithubEnabled, val => Interlocked.Exchange(ref _enabled, val), true); - } - - public async Task HandleQueue() - { - var token = _cts.Token; - var reader = _channel.Reader; - while (!token.IsCancellationRequested) - { - await reader.WaitToReadAsync(token); - if (!reader.TryRead(out var request)) - continue; - - await SendRequest(request, token); - } - } - - // this should be called in BaseServer.Cleanup! - public void Shutdown() - { - _cts.Cancel(); - } - - /// - /// Directly send a request to the API. This does not have any rate limits checks so be careful! - /// Only use this if you have a very good reason to! - /// - /// The request to make. - /// Request cancellation token. - /// The direct HTTP response from the API. If null the request could not be made. - private async Task SendRequest(T request, CancellationToken ct) where T : IGithubRequest - { - if (!_enabled) - { - _sawmill.Info("Tried to make a github api request but the api was not enabled."); - return; - } - - try - { - await _client.TryMakeRequestSafe(request, ct); - } - catch (Exception e) - { - _sawmill.Error("Github API exception: {error}", e.ToString()); - } - } -} diff --git a/Content.Server/Github/GithubClient.cs b/Content.Server/Github/GithubClient.cs deleted file mode 100644 index ed7563dd3f..0000000000 --- a/Content.Server/Github/GithubClient.cs +++ /dev/null @@ -1,417 +0,0 @@ -using System.Diagnostics.CodeAnalysis; -using System.IO; -using System.Linq; -using System.Net.Http; -using System.Net.Http.Headers; -using System.Net.Http.Json; -using System.Security.Cryptography; -using System.Text; -using System.Text.Json; -using System.Threading; -using System.Threading.Tasks; -using Content.Server.Github.Requests; -using Content.Server.Github.Responses; -using Content.Shared.CCVar; -using JetBrains.Annotations; -using Robust.Shared.Configuration; - -namespace Content.Server.Github; - -/// -/// Basic implementation of the GitHub api. This was mainly created for making issues from users bug reports - it is not -/// a full implementation! I tried to follow the spec very closely and the docs are really well done. I highly recommend -/// taking a look at them! -///
-///
Some useful information about the api: -///
Api home page -///
Best practices -///
Rate limit information -///
Troubleshooting -///
-/// As it uses async, it should be called from background worker when possible, like . -public sealed class GithubClient -{ - [Dependency] private readonly ILogManager _log = default!; - [Dependency] private readonly IConfigurationManager _cfg = default!; - private HttpClient _httpClient = default!; - - private ISawmill _sawmill = default!; - - // Token data for the GitHub app (This is used to authenticate stuff like new issue creation) - private (DateTime? Expiery, string Token) _tokenData; - - // Json web token for the GitHub app (This is used to authenticate stuff like seeing where the app is installed) - // The token is created locally. - private (DateTime? Expiery, string JWT) _jwtData; - - private const int ErrorResponseMaxLogSize = 200; - - private readonly JsonSerializerOptions _jsonSerializerOptions = new() - { - PropertyNamingPolicy = JsonNamingPolicy.CamelCase, - }; - - // Docs say 10 should be the maximum. - private readonly TimeSpan _jwtExpiration = TimeSpan.FromMinutes(10); - private readonly TimeSpan _jwtBackDate = TimeSpan.FromMinutes(1); - - // Buffers because requests can take a while. We don't want the tokens to expire in the middle of doing requests! - private readonly TimeSpan _jwtBuffer = TimeSpan.FromMinutes(2); - private readonly TimeSpan _tokenBuffer = TimeSpan.FromMinutes(2); - - private string _privateKey = ""; - - #region Header constants - - private const string ProductName = "SpaceStation14GithubApi"; - private const string ProductVersion = "1"; - - private const string AcceptHeader = "Accept"; - private const string AcceptHeaderType = "application/vnd.github+json"; - - private const string AuthHeader = "Authorization"; - private const string AuthHeaderBearer = "Bearer "; - - private const string VersionHeader = "X-GitHub-Api-Version"; - private const string VersionNumber = "2022-11-28"; - - #endregion - - private readonly Uri _baseUri = new("https://api.github.com/"); - - #region CCvar values - - private string _appId = ""; - private string _repository = ""; - private string _owner = ""; - private int _maxRetries; - - #endregion - - public void Initialize() - { - _sawmill = _log.GetSawmill("github"); - _tokenData = (null, ""); - _jwtData = (null, ""); - - _cfg.OnValueChanged(CCVars.GithubAppPrivateKeyPath, OnPrivateKeyPathChanged, true); - _cfg.OnValueChanged(CCVars.GithubAppId, val => Interlocked.Exchange(ref _appId, val), true); - _cfg.OnValueChanged(CCVars.GithubRepositoryName, val => Interlocked.Exchange(ref _repository, val), true); - _cfg.OnValueChanged(CCVars.GithubRepositoryOwner, val => Interlocked.Exchange(ref _owner, val), true); - _cfg.OnValueChanged(CCVars.GithubMaxRetries, val => SetValueAndInitHttpClient(ref _maxRetries, val), true); - } - - private void OnPrivateKeyPathChanged(string path) - { - if (string.IsNullOrEmpty(path)) - return; - - if (!File.Exists(path)) - { - _sawmill.Error($"\"{path}\" does not exist."); - return; - } - - string fileText; - try - { - fileText = File.ReadAllText(path); - } - catch (Exception e) - { - _sawmill.Error($"\"{path}\" could not be read!\n{e}"); - return; - } - - var rsa = RSA.Create(); - try - { - rsa.ImportFromPem(fileText); - } - catch - { - _sawmill.Error($"\"{path}\" does not contain a valid private key!"); - return; - } - - _privateKey = fileText; - } - - private void SetValueAndInitHttpClient(ref T toSet, T value) - { - Interlocked.Exchange(ref toSet, value); - - var httpMessageHandler = new RetryHandler(new HttpClientHandler(), _maxRetries, _sawmill); - var newClient = new HttpClient(httpMessageHandler) - { - BaseAddress = _baseUri, - DefaultRequestHeaders = - { - { AcceptHeader, AcceptHeaderType }, - { VersionHeader, VersionNumber }, - }, - Timeout = TimeSpan.FromSeconds(15), - }; - - newClient.DefaultRequestHeaders.UserAgent.Add(new ProductInfoHeaderValue(ProductName, ProductVersion)); - - Interlocked.Exchange(ref _httpClient, newClient); - } - - #region Public functions - - /// - /// The standard way to make requests to the GitHub api. This will ensure that the request respects the rate limit - /// and will also retry the request if it fails. Awaiting this to finish could take a very long time depending - /// on what exactly is going on! Only await for it if you're willing to wait a long time. - /// - /// The request you want to make. - /// Token for operation cancellation. - /// The direct HTTP response from the API. If null the request could not be made. - public async Task TryMakeRequestSafe(IGithubRequest request, CancellationToken ct) - { - if (!HaveFullApiData()) - { - _sawmill.Info("Tried to make a github api request but the api was not enabled."); - return null; - } - - if (request.AuthenticationMethod == GithubAuthMethod.Token && !await TryEnsureTokenNotExpired(ct)) - return null; - - return await MakeRequest(request, ct); - } - - private async Task MakeRequest(IGithubRequest request, CancellationToken ct) - { - var httpRequestMessage = BuildRequest(request); - - var response = await _httpClient.SendAsync(httpRequestMessage, ct); - - var message = $"Made a github api request to: '{httpRequestMessage.RequestUri}', status is {response.StatusCode}"; - if (response.IsSuccessStatusCode) - { - _sawmill.Info(message); - return response; - } - - _sawmill.Error(message); - var responseText = await response.Content.ReadAsStringAsync(ct); - - if (responseText.Length > ErrorResponseMaxLogSize) - responseText = responseText.Substring(0, ErrorResponseMaxLogSize); - - _sawmill.Error(message + "\r\n" + responseText); - - return null; - } - - /// - /// A simple helper function that just tries to parse a header value that is expected to be a long int. - /// In general, there are just a lot of single value headers that are longs so this removes a lot of duplicate code. - /// - /// The headers that you want to search. - /// The header you want to get the long value for. - /// Value of header, if found, null otherwise. - /// The headers value if it exists, null otherwise. - public static bool TryGetHeaderAsLong(HttpResponseHeaders? headers, string header, [NotNullWhen(true)] out long? value) - { - value = null; - if (headers == null) - return false; - - if (!headers.TryGetValues(header, out var headerValues)) - return false; - - if (!long.TryParse(headerValues.First(), out var result)) - return false; - - value = result; - return true; - } - - # endregion - - #region Helper functions - - private HttpRequestMessage BuildRequest(IGithubRequest request) - { - var json = JsonSerializer.Serialize(request, _jsonSerializerOptions); - var payload = new StringContent(json, Encoding.UTF8, "application/json"); - - var builder = new UriBuilder(_baseUri) - { - Port = -1, - Path = request.GetLocation(_owner, _repository), - }; - - var httpRequest = new HttpRequestMessage - { - Method = request.RequestMethod, - RequestUri = builder.Uri, - Content = payload, - }; - - httpRequest.Headers.Add(AuthHeader, CreateAuthenticationHeader(request)); - - return httpRequest; - } - - private bool HaveFullApiData() - { - return !string.IsNullOrWhiteSpace(_privateKey) && - !string.IsNullOrWhiteSpace(_repository) && - !string.IsNullOrWhiteSpace(_owner); - } - - private string CreateAuthenticationHeader(IGithubRequest request) - { - return request.AuthenticationMethod switch - { - GithubAuthMethod.Token => AuthHeaderBearer + _tokenData.Token, - GithubAuthMethod.JWT => AuthHeaderBearer + GetValidJwt(), - _ => throw new Exception("Unknown auth method!"), - }; - } - - // TODO: Maybe ensure that perms are only read metadata / write issues so people don't give full access - /// - /// Try to get a valid verification token from the GitHub api - /// - /// True if the token is valid and successfully found, false if there was an error. - private async Task TryEnsureTokenNotExpired(CancellationToken ct) - { - if (_tokenData.Expiery != null && _tokenData.Expiery - _tokenBuffer > DateTime.UtcNow) - return true; - - _sawmill.Info("Token expired - requesting new token!"); - - var installationRequest = new InstallationsRequest(); - var installationHttpResponse = await MakeRequest(installationRequest, ct); - if (installationHttpResponse == null) - { - _sawmill.Error("Could not make http installation request when creating token."); - return false; - } - - var installationResponse = await installationHttpResponse.Content.ReadFromJsonAsync>(_jsonSerializerOptions, ct); - if (installationResponse == null) - { - _sawmill.Error("Could not parse installation response."); - return false; - } - - if (installationResponse.Count == 0) - { - _sawmill.Error("App not installed anywhere."); - return false; - } - - int? installationId = null; - foreach (var installation in installationResponse) - { - if (installation.Account.Login != _owner) - continue; - - installationId = installation.Id; - break; - } - - if (installationId == null) - { - _sawmill.Error("App not installed in given repository."); - return false; - } - - var tokenRequest = new TokenRequest - { - InstallationId = installationId.Value, - }; - - var tokenHttpResponse = await MakeRequest(tokenRequest, ct); - if (tokenHttpResponse == null) - { - _sawmill.Error("Could not make http token request when creating token.."); - return false; - } - - var tokenResponse = await tokenHttpResponse.Content.ReadFromJsonAsync(_jsonSerializerOptions, ct); - if (tokenResponse == null) - { - _sawmill.Error("Could not parse token response."); - return false; - } - - _tokenData = (tokenResponse.ExpiresAt, tokenResponse.Token); - return true; - } - - // See: https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/generating-a-json-web-token-jwt-for-a-github-app - private string GetValidJwt() - { - if (_jwtData.Expiery != null && _jwtData.Expiery - _jwtBuffer > DateTime.UtcNow) - return _jwtData.JWT; - - var githubClientId = _appId; - var apiPrivateKey = _privateKey; - - var time = DateTime.UtcNow; - var expTime = time + _jwtExpiration; - var iatTime = time - _jwtBackDate; - - var iat = ((DateTimeOffset) iatTime).ToUnixTimeSeconds(); - var exp = ((DateTimeOffset) expTime).ToUnixTimeSeconds(); - - const string headerJson = """ - { - "typ":"JWT", - "alg":"RS256" - } - """; - - var headerEncoded = Base64EncodeUrlSafe(headerJson); - - var payloadJson = $$""" - { - "iat":{{iat}}, - "exp":{{exp}}, - "iss":"{{githubClientId}}" - } - """; - - var payloadJsonEncoded = Base64EncodeUrlSafe(payloadJson); - - var headPayload = $"{headerEncoded}.{payloadJsonEncoded}"; - - var rsa = System.Security.Cryptography.RSA.Create(); - rsa.ImportFromPem(apiPrivateKey); - - var bytesPlainTextData = Encoding.UTF8.GetBytes(headPayload); - - var signedData = rsa.SignData(bytesPlainTextData, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1); - var signBase64 = Base64EncodeUrlSafe(signedData); - - var jwt = $"{headPayload}.{signBase64}"; - - _jwtData = (expTime, jwt); - - _sawmill.Info("Generated new JWT."); - - return jwt; - } - - private string Base64EncodeUrlSafe(string plainText) - { - return Base64EncodeUrlSafe(Encoding.UTF8.GetBytes(plainText)); - } - - private string Base64EncodeUrlSafe(byte[] plainText) - { - return Convert.ToBase64String(plainText) - .TrimEnd('=') - .Replace('+', '-') - .Replace('/', '_'); - } - - #endregion -} diff --git a/Content.Server/Github/Requests/CreateIssueRequest.cs b/Content.Server/Github/Requests/CreateIssueRequest.cs deleted file mode 100644 index 92cee609fa..0000000000 --- a/Content.Server/Github/Requests/CreateIssueRequest.cs +++ /dev/null @@ -1,38 +0,0 @@ -using System.Net.Http; -using System.Text.Json.Serialization; - -namespace Content.Server.Github.Requests; - -/// -/// > -/// -public sealed class CreateIssueRequest : IGithubRequest -{ - [JsonIgnore] - public HttpMethod RequestMethod => HttpMethod.Post; - - [JsonIgnore] - public GithubAuthMethod AuthenticationMethod => GithubAuthMethod.Token; - - #region JSON fields - - [JsonInclude, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] - public required string Title; - [JsonInclude, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] - public string? Body; - [JsonInclude, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] - public string? Assignee; - [JsonInclude, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] - public string? Milestone; - [JsonInclude, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] - public List Labels = []; - [JsonInclude, JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] - public List Assignees = []; - - #endregion - - public string GetLocation(string owner, string repository) - { - return $"repos/{owner}/{repository}/issues"; - } -} diff --git a/Content.Server/Github/Requests/IGithubRequest.cs b/Content.Server/Github/Requests/IGithubRequest.cs deleted file mode 100644 index afc421722d..0000000000 --- a/Content.Server/Github/Requests/IGithubRequest.cs +++ /dev/null @@ -1,44 +0,0 @@ -using System.Net.Http; -using System.Text.Json.Serialization; - -namespace Content.Server.Github.Requests; - -/// -/// Interface for all github api requests. -/// -/// -/// WARNING: You must add this JsonDerivedType for all requests that have json otherwise they will not parse properly! -/// -[JsonPolymorphic(UnknownDerivedTypeHandling = JsonUnknownDerivedTypeHandling.FailSerialization)] -[JsonDerivedType(typeof(CreateIssueRequest))] -[JsonDerivedType(typeof(InstallationsRequest))] -[JsonDerivedType(typeof(TokenRequest))] -public interface IGithubRequest -{ - /// - /// The kind of request method for the request. - /// - [JsonIgnore] - public HttpMethod RequestMethod { get; } - - /// - /// There are different types of authentication methods depending on which endpoint you are working with. - /// E.g. the app api endpoint mostly uses JWTs, while stuff like issue creation uses Tokens - /// - [JsonIgnore] - public GithubAuthMethod AuthenticationMethod { get; } - - /// - /// Location of the api endpoint for this request. - /// - /// Owner of the repository. - /// The repository to make the request. - /// The api location for this request. - public string GetLocation(string owner, string repository); -} - -public enum GithubAuthMethod -{ - JWT, - Token, -} diff --git a/Content.Server/Github/Requests/InstallationsRequest.cs b/Content.Server/Github/Requests/InstallationsRequest.cs deleted file mode 100644 index 4e75bbdc38..0000000000 --- a/Content.Server/Github/Requests/InstallationsRequest.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System.Net.Http; - -namespace Content.Server.Github.Requests; - -/// -/// > -/// -public sealed class InstallationsRequest : IGithubRequest -{ - public HttpMethod RequestMethod => HttpMethod.Get; - - public GithubAuthMethod AuthenticationMethod => GithubAuthMethod.JWT; - - public string GetLocation(string owner, string repository) - { - return "app/installations"; - } -} diff --git a/Content.Server/Github/Requests/TokenRequest.cs b/Content.Server/Github/Requests/TokenRequest.cs deleted file mode 100644 index f07764cdf0..0000000000 --- a/Content.Server/Github/Requests/TokenRequest.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System.Net.Http; -using System.Text.Json.Serialization; - -namespace Content.Server.Github.Requests; - -/// -/// > -/// -public sealed class TokenRequest : IGithubRequest -{ - public HttpMethod RequestMethod => HttpMethod.Post; - - public GithubAuthMethod AuthenticationMethod => GithubAuthMethod.JWT; - - [JsonPropertyName("id")] - public required int InstallationId; - - public string GetLocation(string owner, string repository) - { - return $"/app/installations/{InstallationId}/access_tokens"; - } -} diff --git a/Content.Server/Github/Responses/InstallationResponse.cs b/Content.Server/Github/Responses/InstallationResponse.cs deleted file mode 100644 index ffc84a6f0c..0000000000 --- a/Content.Server/Github/Responses/InstallationResponse.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System.Text.Json.Serialization; - -namespace Content.Server.Github.Responses; - -/// -/// Not all fields are filled out - only the necessary ones. If you need more just add them. -/// > -/// -public sealed class InstallationResponse -{ - public required int Id { get; set; } - - public required GithubInstallationAccount Account { get; set; } -} - -/// -public sealed class GithubInstallationAccount -{ - public required string Login { get; set; } -} - diff --git a/Content.Server/Github/Responses/TokenResponse.cs b/Content.Server/Github/Responses/TokenResponse.cs deleted file mode 100644 index 5b3748219c..0000000000 --- a/Content.Server/Github/Responses/TokenResponse.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System.Text.Json.Serialization; - -namespace Content.Server.Github.Responses; - -/// -/// Not all fields are filled out - only the necessary ones. If you need more just add them. -/// > -/// -public sealed class TokenResponse -{ - public required string Token { get; set; } - - [JsonPropertyName("expires_at")] - public required DateTime ExpiresAt { get; set; } -} diff --git a/Content.Server/Github/RetryHttpHandler.cs b/Content.Server/Github/RetryHttpHandler.cs deleted file mode 100644 index 28dcff643b..0000000000 --- a/Content.Server/Github/RetryHttpHandler.cs +++ /dev/null @@ -1,100 +0,0 @@ -using System.Net.Http; -using System.Threading.Tasks; -using System.Threading; -using System.Net; - -namespace Content.Server.Github; - -/// -/// Basic rate limiter for the GitHub api! Will ensure there is only ever one outgoing request at a time and all -/// requests respect the rate limit the best they can. -///
-///
Links to the api for more information: -///
Best practices -///
Rate limit information -///
-/// This was designed for the 2022-11-28 version of the API. -public sealed class RetryHandler(HttpMessageHandler innerHandler, int maxRetries, ISawmill sawmill) : DelegatingHandler(innerHandler) -{ - private const int MaxWaitSeconds = 32; - - /// Extra buffer time (In seconds) after getting rate limited we don't make the request exactly when we get more credits. - private const long ExtraBufferTime = 1L; - - #region Headers - - private const string RetryAfterHeader = "retry-after"; - - private const string RemainingHeader = "x-ratelimit-remaining"; - private const string RateLimitResetHeader = "x-ratelimit-reset"; - - #endregion - - protected override async Task SendAsync( - HttpRequestMessage request, - CancellationToken cancellationToken - ) - { - HttpResponseMessage response; - var i = 0; - do - { - response = await base.SendAsync(request, cancellationToken); - if (response.IsSuccessStatusCode) - return response; - - i++; - if (i < maxRetries) - { - var waitTime = CalculateNextRequestTime(response, i); - await Task.Delay(waitTime, cancellationToken); - } - } while (!response.IsSuccessStatusCode && i < maxRetries); - - return response; - } - - /// - /// Follows these guidelines but also has a small buffer so you should never quite hit zero: - ///
- /// - ///
- /// The last response from the API. - /// Number of current call attempt. - /// The amount of time to wait until the next request. - private TimeSpan CalculateNextRequestTime(HttpResponseMessage response, int attempt) - { - var headers = response.Headers; - var statusCode = response.StatusCode; - - // Specific checks for rate limits. - if (statusCode is HttpStatusCode.Forbidden or HttpStatusCode.TooManyRequests) - { - // Retry after header - if (GithubClient.TryGetHeaderAsLong(headers, RetryAfterHeader, out var retryAfterSeconds)) - return TimeSpan.FromSeconds(retryAfterSeconds.Value + ExtraBufferTime); - - // Reset header (Tells us when we get more api credits) - if (GithubClient.TryGetHeaderAsLong(headers, RemainingHeader, out var remainingRequests) - && GithubClient.TryGetHeaderAsLong(headers, RateLimitResetHeader, out var resetTime) - && remainingRequests == 0) - { - var delayTime = resetTime.Value - DateTimeOffset.UtcNow.ToUnixTimeSeconds(); - sawmill.Warning( - "github returned '{status}' status, have to wait until limit reset - in '{delay}' seconds", - response.StatusCode, - delayTime - ); - return TimeSpan.FromSeconds(delayTime + ExtraBufferTime); - } - } - - // If the status code is not the expected one or the rate limit checks are failing, just do an exponential backoff. - return ExponentialBackoff(attempt); - } - - private static TimeSpan ExponentialBackoff(int i) - { - return TimeSpan.FromSeconds(Math.Min(MaxWaitSeconds, Math.Pow(2, i))); - } -} diff --git a/Content.Server/IoC/ServerContentIoC.cs b/Content.Server/IoC/ServerContentIoC.cs index 96124330f0..b4d999bef4 100644 --- a/Content.Server/IoC/ServerContentIoC.cs +++ b/Content.Server/IoC/ServerContentIoC.cs @@ -3,7 +3,6 @@ using Content.Server.Administration.Logs; using Content.Server.Administration.Managers; using Content.Server.Administration.Notes; using Content.Server.Afk; -using Content.Server.BugReports; using Content.Server.Chat.Managers; using Content.Server.Connection; using Content.Server.Database; @@ -12,7 +11,6 @@ using Content.Server.Discord.DiscordLink; using Content.Server.Discord.WebhookMessages; using Content.Server.EUI; using Content.Server.GhostKick; -using Content.Server.Github; using Content.Server.Info; using Content.Server.Mapping; using Content.Server.Maps; @@ -61,7 +59,6 @@ namespace Content.Server.IoC IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); - IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); @@ -79,11 +76,9 @@ namespace Content.Server.IoC IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); + IoCManager.Register(); IoCManager.Register(); - IoCManager.Register(); - IoCManager.Register(); - IoCManager.Register(); } } } diff --git a/Content.Shared.Database/LogType.cs b/Content.Shared.Database/LogType.cs index 388c44bb28..58a41a5f7a 100644 --- a/Content.Shared.Database/LogType.cs +++ b/Content.Shared.Database/LogType.cs @@ -464,7 +464,6 @@ public enum LogType /// Logs related to botany, such as planting and harvesting crops ///
Botany = 100, - /// /// Artifact node got activated. /// @@ -479,9 +478,4 @@ public enum LogType /// Events relating to midi playback. ///
Instrument = 103, - - /// - /// For anything relating to bug reports. - /// - BugReport = 104, } diff --git a/Content.Shared/BugReport/BugReportMessage.cs b/Content.Shared/BugReport/BugReportMessage.cs deleted file mode 100644 index 46976eda6e..0000000000 --- a/Content.Shared/BugReport/BugReportMessage.cs +++ /dev/null @@ -1,42 +0,0 @@ -using Lidgren.Network; -using Robust.Shared.Network; -using Robust.Shared.Serialization; - -namespace Content.Shared.BugReport; - -/// -/// Message with bug report data, which should be handled by server and used to create issue on issue tracker -/// (or some other notification). -/// -public sealed class BugReportMessage : NetMessage -{ - public override MsgGroups MsgGroup => MsgGroups.Command; - - public PlayerBugReportInformation ReportInformation = new(); - - public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer serializer) - { - ReportInformation.BugReportTitle = buffer.ReadString(); - ReportInformation.BugReportDescription = buffer.ReadString(); - } - - public override void WriteToBuffer(NetOutgoingMessage buffer, IRobustSerializer serializer) - { - buffer.Write(ReportInformation.BugReportTitle); - buffer.Write(ReportInformation.BugReportDescription); - } - - public override NetDeliveryMethod DeliveryMethod => NetDeliveryMethod.ReliableUnordered; -} - -/// -/// Stores user specified information from a bug report. -/// -/// -/// Clients can put whatever they want here so be careful! -/// -public sealed class PlayerBugReportInformation -{ - public string BugReportTitle = string.Empty; - public string BugReportDescription = string.Empty; -} diff --git a/Content.Shared/CCVar/CCVars.BugReports.cs b/Content.Shared/CCVar/CCVars.BugReports.cs deleted file mode 100644 index 789ffc9a48..0000000000 --- a/Content.Shared/CCVar/CCVars.BugReports.cs +++ /dev/null @@ -1,64 +0,0 @@ -using Robust.Shared.Configuration; - -namespace Content.Shared.CCVar; - -public sealed partial class CCVars -{ - /// - /// Allow users to submit bug reports. Will enable a button on the hotbar. See for - /// setting up the GitHub API! - /// - public static readonly CVarDef EnablePlayerBugReports = - CVarDef.Create("bug_reports.enable_player_bug_reports", false, CVar.SERVER | CVar.REPLICATED); - - /// - /// Minimum playtime that players need to have played to submit bug reports. - /// - public static readonly CVarDef MinimumPlaytimeInMinutesToEnableBugReports = - CVarDef.Create("bug_reports.minimum_playtime_in_minutes_to_enable_bug_reports", 120, CVar.SERVER | CVar.REPLICATED); - - /// - /// Maximum number of bug reports a user can submit per round. - /// - public static readonly CVarDef MaximumBugReportsPerRound = - CVarDef.Create("bug_reports.maximum_bug_reports_per_round", 5, CVar.SERVER | CVar.REPLICATED); - - /// - /// Minimum time between bug reports. - /// - public static readonly CVarDef MinimumSecondsBetweenBugReports = - CVarDef.Create("bug_reports.minimum_seconds_between_bug_reports", 120, CVar.SERVER | CVar.REPLICATED); - - /// - /// Maximum length of a bug report title. - /// - public static readonly CVarDef MaximumBugReportTitleLength = - CVarDef.Create("bug_reports.maximum_bug_report_title_length", 35, CVar.SERVER | CVar.REPLICATED); - - /// - /// Minimum length of a bug report title. - /// - public static readonly CVarDef MinimumBugReportTitleLength = - CVarDef.Create("bug_reports.minimum_bug_report_title_length", 10, CVar.SERVER | CVar.REPLICATED); - - /// - /// Maximum length of a bug report description. - /// - public static readonly CVarDef MaximumBugReportDescriptionLength = - CVarDef.Create("bug_reports.maximum_bug_report_description_length", 750, CVar.SERVER | CVar.REPLICATED); - - /// - /// Minimum length of a bug report description. - /// - public static readonly CVarDef MinimumBugReportDescriptionLength = - CVarDef.Create("bug_reports.minimum_bug_report_description_length", 10, CVar.SERVER | CVar.REPLICATED); - - /// - /// List of tags that are added to the report. Separate each value with ",". - /// - /// - /// IG report, Bug - /// - public static readonly CVarDef BugReportTags = - CVarDef.Create("bug_reports.tags", "IG bug report", CVar.SERVER | CVar.REPLICATED); -} diff --git a/Content.Shared/CCVar/CCVars.Github.cs b/Content.Shared/CCVar/CCVars.Github.cs deleted file mode 100644 index 77c1ffc2fe..0000000000 --- a/Content.Shared/CCVar/CCVars.Github.cs +++ /dev/null @@ -1,71 +0,0 @@ -using Robust.Shared.Configuration; - -namespace Content.Shared.CCVar; - -public sealed partial class CCVars -{ - /// - /// Marker, for if the GitHub api is enabled. If it is not enabled, any actions that require GitHub API will be ignored. - /// To fully set up the API, you also need to set , , - /// and . - /// - public static readonly CVarDef GithubEnabled = - CVarDef.Create("github.github_enabled", true, CVar.SERVERONLY); - - /// - /// GitHub app private keys location. PLEASE READ THIS CAREFULLY!! - /// - /// - /// Its highly recommend to create a new (private) repository specifically for this app. This will help avoid - /// moderation issues and also allow you to ignore duplicate or useless issues. You can just transfer legitimate - /// issues from the private repository to the main public one. - /// - /// - /// Only create the auth token with the MINIMUM required access (Specifically only give it access to one - /// repository - and the minimum required access for your use case). - ///

If this token is only for forwarding issues then you should only need to grant read and write - /// permission to "Issues" and read only permissions to "Metadata". - ///
- ///
- /// Also remember to use the testgithubapi command to test if you set everything up correctly. - /// [Insert YouTube video link with walkthrough here] - ///
- /// - /// (If your on linux): /home/beck/key.pem - /// - public static readonly CVarDef GithubAppPrivateKeyPath = - CVarDef.Create("github.github_app_private_key_path", "", CVar.SERVERONLY | CVar.CONFIDENTIAL); - - /// - /// The GitHub apps app id. Go to https://github.com/settings/apps/APPNAME to find the app id. - /// - /// - /// 1009555 - /// - public static readonly CVarDef GithubAppId = - CVarDef.Create("github.github_app_id", "", CVar.SERVERONLY | CVar.CONFIDENTIAL); - - /// - /// Name of the targeted GitHub repository. - /// - /// - /// If your URL was https://github.com/space-wizards/space-station-14 the repo name would be "space-station-14". - /// > - public static readonly CVarDef GithubRepositoryName = - CVarDef.Create("github.github_repository_name", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); - - /// - /// Owner of the GitHub repository. - /// - /// - /// If your URL was https://github.com/space-wizards/space-station-14 the owner would be "space-wizards". - /// - public static readonly CVarDef GithubRepositoryOwner = - CVarDef.Create("github.github_repository_owner", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); - - /// - /// The maximum number of times the api will retry requests before giving up. - /// - public static readonly CVarDef GithubMaxRetries = - CVarDef.Create("github.github_max_retries", 3, CVar.SERVERONLY | CVar.CONFIDENTIAL); -} diff --git a/Resources/Locale/en-US/HUD/game-hud.ftl b/Resources/Locale/en-US/HUD/game-hud.ftl index d88403a6af..ea423f080a 100644 --- a/Resources/Locale/en-US/HUD/game-hud.ftl +++ b/Resources/Locale/en-US/HUD/game-hud.ftl @@ -7,4 +7,3 @@ game-hud-open-crafting-menu-button-tooltip = Open crafting menu. game-hud-open-actions-menu-button-tooltip = Open actions menu. game-hud-open-admin-menu-button-tooltip = Open admin menu. game-hud-open-sandbox-menu-button-tooltip = Open sandbox menu. -game-hud-open-bug-report-window-button-tooltip = Open bug report menu. diff --git a/Resources/Locale/en-US/bugreport/bug-report-report.ftl b/Resources/Locale/en-US/bugreport/bug-report-report.ftl deleted file mode 100644 index c6296c520f..0000000000 --- a/Resources/Locale/en-US/bugreport/bug-report-report.ftl +++ /dev/null @@ -1 +0,0 @@ -bug-report-report-unknown = unknown diff --git a/Resources/Locale/en-US/bugreport/bug-report-window.ftl b/Resources/Locale/en-US/bugreport/bug-report-window.ftl deleted file mode 100644 index 794014ca98..0000000000 --- a/Resources/Locale/en-US/bugreport/bug-report-window.ftl +++ /dev/null @@ -1,13 +0,0 @@ -bug-report-window-name = Create bug report -bug-report-window-explanation = Try to be as detailed as possible. If you have recreation steps, list them! -bug-report-window-disabled-not-enabled = Bug reports are currently disabled! -bug-report-window-disabled-playtime = You do not have enough playtime to submit a bug report! -bug-report-window-disabled-cooldown = You can submit a new bug report in {$time}. -bug-report-window-disabled-submissions = You have reached the maximum number of bug reports ({$num}) for this round. -bug-report-window-title-place-holder = Bug report title -bug-report-window-description-place-holder = Type bug report here -bug-report-window-submit-button-text = Submit -bug-report-window-submit-button-confirm-text = Click again to submit! -bug-report-window-submit-button-disclaimer = Your SS14 username and other in game information will be saved. - -bug-report-window-submit-char-split = {$typed}/{$total} diff --git a/Resources/Locale/en-US/github/github-api.ftl b/Resources/Locale/en-US/github/github-api.ftl deleted file mode 100644 index c439503b60..0000000000 --- a/Resources/Locale/en-US/github/github-api.ftl +++ /dev/null @@ -1,36 +0,0 @@ -github-command-test-name = testgithubapi - -cmd-testgithubapi-desc = This command makes an issue request to the github api. Remember to check the servers console for errors. -cmd-testgithubapi-help = Usage: testgithubapi - -github-command-not-enabled = The api is not enabled! -github-command-no-path = The key path is empty! -github-command-no-app-id = The app id is empty! -github-command-no-repo-name = The repository name is empty! -github-command-no-owner = The repository owner is empty! - -github-command-issue-title-one = This is a test issue! -github-command-issue-description-one = This is the description of the first issue. :) - -github-command-finish = Check your repository for a newly created issue. If you don't see any, check the server console for errors! - -github-issue-format = ## Description: - {$description} - - ## Meta Data: - Build version: {$buildVersion} - Engine version: {$engineVersion} - - Server name: {$serverName} - Submitted time: {$submittedTime} - - -- Round information -- - Round number: {$roundNumber} - Round time: {$roundTime} - Round type: {$roundType} - Map: {$map} - Number of players: {$numberOfPlayers} - - -- Submitter information -- - Player name: {$username} - Player GUID: {$playerGUID} diff --git a/Resources/Textures/Interface/bug.svg b/Resources/Textures/Interface/bug.svg deleted file mode 100644 index f79bfe3e04..0000000000 --- a/Resources/Textures/Interface/bug.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/Resources/Textures/Interface/bug.svg.192dpi.png b/Resources/Textures/Interface/bug.svg.192dpi.png deleted file mode 100644 index d901996bd6ba1130b25e69c088893dbaa16199e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1852 zcmV-C2gCS@P)EX>4Tx04R}tkv&MmKpe$iQ>8^J4rUN>$WWauh>AFB6^c+H)C#RSm|Xe=O$fqw6tAnc`2!4RL3r>nIQsV!TLW>v=j{EWM-sA2aAT+8>x4Xsw-Egc- zDkN7|Tmsr#XZa7O)5z5>(VsK@|=Xv>K$?$k2W=z(45uWpb(Hs(_JW z9vjf1cz*Cd_}#5toEZ0$Vo9L;#dSZ1fyge4ux=P;w2Zz8& ziL%!M-W~1i?cX!4{(b<}^>Sz{?N6})000JJOGiWi{{a600FA#$9smFU32;bRa{vGx zhX4Q_hXIe}@nrx200(qQO+^Rk0u%=cBQDOb`~Uz2I!Q!9RCwC$n{Q}Ubr{FLzqRI; zfA(SpsYU+7W|Si%Qev?%XO<9V5e7x{a){2dmr=cnO0(WX80Csy)Iv-lA`KkE`a@9| zlxQt&mb2Pg>2Pi8KE3c6-F}>N&%O7YbMIO13m5jg_nhbV{e92x&+|OznKX$>Od>9T z7N7%o45&-7pE~QK18B+0;O77%{EHr7bqf8gHrwME0p?^ufK>!z4=^tQ`}53J5LRVD zfT_UY5Q1lbr+`|Z3TOtl0A0XIU>Fzz4gvdtXMiPUx7O}G6Jq-?Ff}X7pdNS$I2%It zH{fRqN3RJKgtOLHeHJ&v#lQj5!vSD%)=vZnJOuoa;J^pWrc0V{Rni8Xb4co!bXma9 zBa+^hbf2U-lIkQ)lhi2bK}nsGMg#7fCaKqKXWl1R2%HLdihF^p3b=nhush)X-+{Rk zL4f@p@iB8=T#c z+yva5#B>D~c&;|UjTc+6)#(ZFbY_pil(5@tH)l=&;BIqwkEal%eCf4kC+4?A45~`f zMoCSQ_Db66oEr(b_PC_+bAC|Lc1g1&)yCxbw>egua=tt5oSPBCV~V7;l3FDll=QN5 zZmiU&+U~8reqbxm=v`Ms`BCF>Xf$s9-gWJ9ruB}H&c`gIT?5NqSh)H> z!*Nh6X{MxGC9SXkDhmCQ-jei+bFL?;U49C%&V2o`kVM56pdm$npaFO>B=It4+}7Df zm>P*1JL+=rC$OT7j!~=inTwzNjWMmxHwHZU)(UusD}i$!mks6U_=wl()(X1F+x$dn z+8r(m$oe)^P=JPjtZ`$SuJCfNz0Wx}P$>bd?~fxmCMtlR((2AYpyYG7I!ys)dhNap z2+$Y7F;M~P0s@svV>p82{~{ld8ZLSPszc)cTSCNHHUY-84Co9AoIcN+9|(y5qtKRt zd|_LWoZIs)fu@+pVkJ;4ho*c2ys6-Kb7A-{#*Ot6(z-R7_~75?*Y!aE^{T9 zgzN#EynSFK2Ju%dXE^?Msk6!F@TsJ2A$!1A&bgzZ0+Elvi3;$m*UrN0YM;Z&GzB=~wXe^B05?Q%O!UmX&O1~8 z0;)^2^&gaI<5J+XXX@HC1#m#0*I{b~1-Q#Ib0XDPz-n|p@VgRw3<(>gni{vLoo68}90}gr}@2r3Tej(M@WvL$mW&!U81R3|1O90^hfd1bBW~DXg zDl3ZKm8Tqbu$ZM#ssJ|i2lJHC?lP`bNe%pQ;8=m7<`2M?X$b&a;g!ti!!hGt6-R)m z{J>C%2=h}C;DrJ?6kHz=rA}CW;2TNnEr{vxew#1p3t&wOtIRnR}ydR?e&ai!<#2Ii6@U6WG?(n@(V5xB&%K5L7mbm-CT=Tf<^ITJ% zr<&xPof>!M5)Ko<_MQ3&PBjs~*Bj^Z1#9LXYzQc7%*83-L*V&<-=4Gg`{TZSXCga! z1(K9aKzBlQK(}im!e+w*0Ul$qSfYsx6QUW|4xA`r;3t61<>2VbEXX1|mKN&5OU&uI qP-Qk?pYJ7o=A7%*BqlM5a^N4Qe+CTN2#ARQ0000 - - - - - - - - - - - - - diff --git a/Resources/Textures/Interface/splat.svg.192dpi.png b/Resources/Textures/Interface/splat.svg.192dpi.png deleted file mode 100644 index 9540031f0445426f6148d774edb4906bb4cc9810..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2069 zcmV+w2EX>4Tx04R}tkv&MmKpe$iQ?()$hjtKA$WWau6u)rPDionYsTEpvFuC+YXws0R zxHt-~1qVMCs}3&Cx;nTDg5U>;yWphgA|?JWDYS_3;J6>}?mh0_0YbgZRI?)nsG4P@ z6LB${TM+}V=)w>}m_$rsraqfWCE+=~?&0I>U6f~epZjz4DtVIuK9P8a>4rtTPCT_~ z>74h8!>lAJ#OK7L23?T&k?XR{Z=8z`3p_JyWYTlQVPdh^#&R38lA#h$5JwbMqkJLj zvch?bvs$jQ<~{ifgL!RviR&~6k-!2Lk%9;rRcxRP3sG7%QcR?2KknflaQrE9$>iDq zBgZ@{P$4;f@IUz7tyvf!bCZH`p!3DHKZb$8F3_mi_V=-EH%pV2qvfY2?_v+DNN+{ftykfE-UH^9Lm zFjA!KHIH|9xA*q%nPz`K`UP^`_=WEk00006VoOIv03HAy03zi}T>=0A010qNS#tmY z9ftq_9ftvr{DWHV|581~32s1`dy~sld|l&_ndoA@4ZDQxgYkPo&V0v?wOsP*(3eO$>f3% zK!K!UNqr?9m9*a&(|AE!9vB5Y1MC2rIiL0etAHs${)MFYFkpRv(m}Kfxa&eteim?& z)M-7?wLL0sfEC0;JAjgQKF(x;NDBpsC0LsF@v$&zl9ROsQ`E@?u$ zaFoDJ0q^@JU}O^BB4Bv{|C;uod;##2NBEbccy?eaaNL7)U9KBox<}}D0FwgN-JX^3 zZ7NuqG{9Gmzz2bzY2dB)7<62&DqjSga)e!&CgwoTHo7=h4KT$sTO(q?{oKKQUo<3)Q(J{#Rp@Vx2D2&4ZZ+nDpvS;{-z!2a{;5pz(3PyS( z1{nu5}+!A@>}h0lCGSKJlNOAVSvRR;E73idIBFLQTz* z#uGsAII#01^>Y5J%fZ8CU#Gp>7*ijY0bGR#g;08P*0tB?=O2mVRX2=&0# zVVur=!26cLrK%iojD3K)z&ADwk3t84fnf*g3cT(CDO8S-T@{0DQfCNI0`#`+1p$+| zA<6)ccmRsjP6!z6N%%AaW5Y1dwug__RIPSKz&KCdF9c-%0M~l=B$+L}CChEL8 zK>5maDlu6$K)IXw3hH=IfbyGxVzpDU!O%H*&jQ~TC~1j@|3yhp8e>jpN%+2!MoKD@ z)F^4EF(ztJWU$k&@eMT1GxIC5IBOGuEjIn`E6zL^qDs}WRsQVoZ}fF^lbsFO*z&9s zUKuj5sYn*$dftD4GGE8PoldK=puDkBXcTG!o^p@JcIM}LR?y+|Ce}t!F5R0213Z?- zfoG3R_0I&J_bmGsD)$Y1g{R}#3@hI&Aas4p7I8WQLxH6MSLedeCtkl{9ga(-88*PI zuz{B~L`4e9_Xrw%yoX_Uh7GX6v!wGA^e?b=gSrrv?DB*=2GHNbI4Q#hsC34EHNvYi z+g`z~woY-cO`wzkeZqhgc;2gJac^%)p1W6Tm$s$B&sh#O%5!Uj(`HILUhPTKXLJer?)T0~1MkuVH&2>?o1Om4Jbel?X@DM{g6XlK`vOU@ihQn)%7r2In;_VNh)H)J!5QUYvCL-{)3)_}m}_YnMFWW8K(9n%cEOvBPC zd;P8?0q*#KgHH>67b=3wpdq^1Z+F%O#NJKzJDvq$D=*d`eB_+ht1U*GCtppP2I;P| zS8BTG>{Xk6spbsrw?w6q8g%wndb9qgwx@pqQe3SuX=^^u00000NkvXXu0mjfb}!J1 diff --git a/Resources/Textures/Interface/splat.svg.192dpi.png.yml b/Resources/Textures/Interface/splat.svg.192dpi.png.yml deleted file mode 100644 index dabd6601f7..0000000000 --- a/Resources/Textures/Interface/splat.svg.192dpi.png.yml +++ /dev/null @@ -1,2 +0,0 @@ -sample: - filter: true From 49daf74069df0a2c762ad9abb763ce6bff9ace79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=81da?= Date: Thu, 28 Aug 2025 11:54:06 -0500 Subject: [PATCH 178/194] Fix audio mispredict when quick inserting (#39930) surprising Co-authored-by: iaada --- Content.Shared/Interaction/SmartEquipSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Interaction/SmartEquipSystem.cs b/Content.Shared/Interaction/SmartEquipSystem.cs index da79fc1e69..553a4475cb 100644 --- a/Content.Shared/Interaction/SmartEquipSystem.cs +++ b/Content.Shared/Interaction/SmartEquipSystem.cs @@ -150,7 +150,7 @@ public sealed class SmartEquipSystem : EntitySystem } _hands.TryDrop((uid, hands), hands.ActiveHandId!); - _storage.Insert(slotItem, handItem.Value, out var stacked, out _); + _storage.Insert(slotItem, handItem.Value, out var stacked, out _, user: uid); // if the hand item stacked with the things in inventory, but there's no more space left for the rest // of the stack, place the stack back in hand rather than dropping it on the floor From b093a688aa81c3a2ed557bea87993da4b596c9d5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 28 Aug 2025 16:55:13 +0000 Subject: [PATCH 179/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1b218be9a0..00269d9ac5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: TytosB - changes: - - message: adjusted pka damage and range - type: Tweak - id: 8385 - time: '2025-04-29T10:00:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37012 - author: abadaba695 changes: - message: Added 15u, 20u, and 30u transfer buttons in the chem master. @@ -3948,3 +3941,10 @@ id: 8897 time: '2025-08-27T21:56:10.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39805 +- author: aada + changes: + - message: Fixed audio mispredict when quick inserting. + type: Fix + id: 8898 + time: '2025-08-28T16:54:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39930 From 84e0a0f6fac1934abe217cb5961d9c2c9296ec3b Mon Sep 17 00:00:00 2001 From: Hitlinemoss <209321380+Hitlinemoss@users.noreply.github.com> Date: Thu, 28 Aug 2025 13:14:44 -0400 Subject: [PATCH 180/194] Improved cardboard-weapon descriptions (#39927) --- Resources/Prototypes/Entities/Objects/Fun/toys.yml | 2 +- Resources/Prototypes/Entities/Objects/Shields/shields.yml | 2 +- .../Entities/Objects/Weapons/Guns/Projectiles/arrows.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 3c142425a0..c1aea7ecd5 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -777,7 +777,7 @@ parent: BaseItem id: CardSword name: cardboard sword - description: A cardboard tube thats been fashioned into a sword. + description: A cardboard tube fashioned into the shape of a sword. components: - type: Sprite sprite: Objects/Fun/card_sword.rsi diff --git a/Resources/Prototypes/Entities/Objects/Shields/shields.yml b/Resources/Prototypes/Entities/Objects/Shields/shields.yml index 3f50a07b8d..188f4892b6 100644 --- a/Resources/Prototypes/Entities/Objects/Shields/shields.yml +++ b/Resources/Prototypes/Entities/Objects/Shields/shields.yml @@ -184,7 +184,7 @@ name: cardboard shield parent: BaseShield id: CardShield - description: A shield that wont shield you from much. + description: A shield made of cardboard. Won't protect you from much. components: - type: Sprite state: cardshield-icon diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml index 1e61fa3295..3f9a2d5435 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml @@ -190,7 +190,7 @@ parent: BaseArrow id: ArrowCard name: cardboard arrow - description: Cant kill no matter how hard you try. + description: Careful, you'll poke an eye out! components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/arrows.rsi @@ -209,4 +209,4 @@ damage: 10 - type: Construction graph: CardArrow - node: CardArrow \ No newline at end of file + node: CardArrow From 886e3c099dcff60a445177bcf08a123e43ef34a5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 28 Aug 2025 17:15:51 +0000 Subject: [PATCH 181/194] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 00269d9ac5..8ec9854035 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: abadaba695 - changes: - - message: Added 15u, 20u, and 30u transfer buttons in the chem master. - type: Add - id: 8386 - time: '2025-04-29T10:24:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36995 - author: Thinbug0 changes: - message: Science developed the Push-Horn, capable of pushing people away with @@ -3948,3 +3941,10 @@ id: 8898 time: '2025-08-28T16:54:06.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39930 +- author: Hitlinemoss + changes: + - message: Descriptions for cardboard weapons have been adjusted. + type: Tweak + id: 8899 + time: '2025-08-28T17:14:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39927 From eef99915a0d55d8001ab7a6f45c9c409c8eba295 Mon Sep 17 00:00:00 2001 From: qwerltaz <69696513+qwerltaz@users.noreply.github.com> Date: Thu, 28 Aug 2025 19:39:38 +0200 Subject: [PATCH 182/194] fix bagel mapped containers missing (#38933) Revert "remove actions" This reverts commit b887697e --- Resources/Maps/bagel.yml | 221 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 221 insertions(+) diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index bb8b60d624..fec4386175 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -61186,6 +61186,17 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4711 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 11484 components: - type: Transform @@ -64397,6 +64408,23 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18641 + - 17812 + - 18647 + - 18725 + - 19185 + - 19186 + - 19187 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateHydroponicsSeedsMedicinal entities: - uid: 2759 @@ -64529,6 +64557,22 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18835 + - 18834 + - 18823 + - 18792 + - 18731 + - 18442 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateScienceSecure entities: - uid: 13917 @@ -113355,6 +113399,19 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2619 + - 19882 + - 21020 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerFreezerVaultFilled entities: - uid: 2252 @@ -113387,6 +113444,18 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 5207 + - 4641 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerHeadOfSecurityFilled entities: - uid: 985 @@ -113530,6 +113599,17 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17673 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerSalvageSpecialistFilledHardsuit entities: - uid: 215 @@ -113621,6 +113701,21 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9114 + - 9115 + - 9116 + - 9117 + - 9118 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerWallMedicalFilled entities: - uid: 8969 @@ -117393,6 +117488,12 @@ entities: - type: Transform pos: -1.5,-75.5 parent: 60 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 4540 - proto: PottedPlant4 entities: - uid: 15519 @@ -139645,41 +139746,161 @@ entities: - type: Transform pos: 24.5,0.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 17633 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 18890 components: - type: Transform pos: 22.5,0.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 18891 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 18893 components: - type: Transform pos: 25.5,-0.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 18907 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 18909 components: - type: Transform pos: 24.5,2.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19008 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19009 components: - type: Transform pos: 25.5,2.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19039 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19040 components: - type: Transform pos: 22.5,2.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19041 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19091 components: - type: Transform pos: 21.5,2.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19092 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19096 components: - type: Transform pos: 21.5,-0.5 parent: 60 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 19097 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - uid: 19168 components: - type: Transform From 679c641611d0defbc023bf0b6ca0b794a2b2c450 Mon Sep 17 00:00:00 2001 From: Vortebo <64214314+Vortebo@users.noreply.github.com> Date: Thu, 28 Aug 2025 10:40:36 -0700 Subject: [PATCH 183/194] Major Relic Update (#39215) * goodbye cargo. you dont exist at all. no more cargo. * Med, atmos * relic is going to prison * i changed some stuff * i changed some more stuff * substantial completion for engineering * substantial completion for medical * substantial completion, atmos * substantial completion, shuttles * hallway lighting improvements * substantial completion, prison station * honestly i think this looks better * prison station electrical, spawn adjustments * prison shuttle now flyable * substantial completion, science * substantial completion, oldstation * minor accuracy adjustments * minor corrections, finishing touches * minor adjustments and fixes * electrical fix, canon camera names * signage adjustments * network fixes * more inaccuracies fixed * fixed atmos and medkit issues * arrivals shuttle flies forward * adjustments * adjustments * adjustments * deltaP adjustments * invalid configurators removed --- Resources/Maps/Shuttles/arrivals_relic.yml | 3651 +- Resources/Maps/Shuttles/cargo_relic.yml | 2098 +- Resources/Maps/Shuttles/emergency_relic.yml | 322 +- Resources/Maps/relic.yml | 48798 +++++++++++----- Resources/Prototypes/Maps/relic.yml | 35 +- Resources/Prototypes/Parallaxes/relic.yml | 9 + Resources/Textures/Parallaxes/oldspace.png | Bin 0 -> 790 bytes .../Textures/Parallaxes/oldspace.png.yml | 1 + 8 files changed, 37634 insertions(+), 17280 deletions(-) create mode 100644 Resources/Prototypes/Parallaxes/relic.yml create mode 100644 Resources/Textures/Parallaxes/oldspace.png create mode 100644 Resources/Textures/Parallaxes/oldspace.png.yml diff --git a/Resources/Maps/Shuttles/arrivals_relic.yml b/Resources/Maps/Shuttles/arrivals_relic.yml index 3f6c7e846c..4d586843fe 100644 --- a/Resources/Maps/Shuttles/arrivals_relic.yml +++ b/Resources/Maps/Shuttles/arrivals_relic.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 260.0.0 + engineVersion: 264.0.0 forkId: "" forkVersion: "" - time: 06/09/2025 21:38:40 - entityCount: 317 + time: 08/21/2025 00:31:06 + entityCount: 318 maps: [] grids: - 2 @@ -30,11 +30,27 @@ entities: chunks: 0,0: ind: 0,0 - tiles: XwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAABfAAAAAAAAXwAAAAAAAA== version: 7 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAAAAAAAAAAA== + 0,1: + ind: 0,1 + tiles: XwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAIIAAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCAAAAAAAAXwAAAAAAAF8AAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAABfAAAAAAAAXwAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,1: + ind: 1,1 + tiles: XwAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 - type: Broadphase - type: Physics @@ -63,71 +79,57 @@ entities: version: 2 data: tiles: - 0,0: - 0: 52975 - 1: 8448 - 0,-1: - 0: 61120 - 1: 292 - 0,1: - 1: 4 - 1,0: - 0: 61183 - 1,-1: - 0: 65248 - 1,1: - 1: 8464 - 0: 52416 - 2,0: - 0: 30587 - 2,1: - 0: 65328 - 1: 64 - 1,2: - 1: 8 - 2,-1: - 0: 30576 - 2,2: - 0: 12 - 1: 64 - 3,0: - 0: 4919 - 1: 16384 - 3,-1: - 0: 13072 - 1: 66 - 3,1: - 1: 16898 - 3,2: - 1: 36 - 1,-2: - 1: 4392 - 0: 52416 - 2,-2: - 0: 16380 - 1: 16384 - 2,-3: - 1: 16384 - 3,-3: - 1: 8192 - 3,-2: - 1: 580 + 0,3: + 0: 67 + 1: 28672 + -1,3: + 0: 128 + 0,4: + 1: 61159 + 0: 4104 + 1,3: + 0: 18 + 1: 3776 + 1,4: + 1: 61166 + 2,3: + 1: 8049 + 0: 8 + 2,4: + 1: 65534 + 3,3: + 0: 88 + 1: 49152 + 3,4: + 1: 61164 + 0: 2 + 4,3: + 0: 33 + 1: 4096 + -1,4: + 0: 8 + 0,5: + 1: 14 + 0: 3104 + 1,5: + 1: 59630 + 1,6: + 0: 1057 + 1: 206 + 2,5: + 1: 62463 + 2,6: + 1: 383 + 0: 1152 + 3,6: + 0: 1 + 3,5: + 1: 14 + 0: 1664 + 4,4: + 1: 1 + 0: 4098 uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 immutable: True moles: @@ -143,1849 +145,1796 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - type: ImplicitRoof - proto: AirlockCommandGlassLocked - entities: - - uid: 67 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,0.5 - parent: 2 -- proto: AirlockExternalGlassLocked - entities: - - uid: 108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 2 - - uid: 109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,7.5 - parent: 2 - - uid: 110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,6.5 - parent: 2 - - uid: 111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 2 -- proto: AirlockGlassShuttle - entities: - - uid: 66 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 2 -- proto: APCBasic - entities: - - uid: 291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 2 -- proto: CableApcExtension - entities: - - uid: 175 - components: - - type: Transform - pos: 12.5,2.5 - parent: 2 - - uid: 188 - components: - - type: Transform - pos: 12.5,1.5 - parent: 2 - - uid: 189 - components: - - type: Transform - pos: 9.5,0.5 - parent: 2 - - uid: 192 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - - uid: 193 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 194 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 2 - - uid: 195 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 2 - - uid: 196 - components: - - type: Transform - pos: 13.5,0.5 - parent: 2 - - uid: 197 - components: - - type: Transform - pos: 12.5,0.5 - parent: 2 - - uid: 198 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 2 - - uid: 199 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 2 - - uid: 200 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - - uid: 201 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 2 - - uid: 202 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - - uid: 203 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 2 - - uid: 204 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 - - uid: 205 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 2 - - uid: 206 - components: - - type: Transform - pos: 5.5,0.5 - parent: 2 - - uid: 207 - components: - - type: Transform - pos: 5.5,1.5 - parent: 2 - - uid: 208 - components: - - type: Transform - pos: 5.5,2.5 - parent: 2 - - uid: 209 - components: - - type: Transform - pos: 5.5,3.5 - parent: 2 - - uid: 210 - components: - - type: Transform - pos: 6.5,3.5 - parent: 2 - - uid: 211 - components: - - type: Transform - pos: 7.5,3.5 - parent: 2 - - uid: 212 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 - - uid: 213 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - uid: 214 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 215 - components: - - type: Transform - pos: 4.5,0.5 - parent: 2 - - uid: 216 - components: - - type: Transform - pos: 3.5,0.5 - parent: 2 - - uid: 217 - components: - - type: Transform - pos: 2.5,0.5 - parent: 2 - - uid: 218 - components: - - type: Transform - pos: 1.5,0.5 - parent: 2 - - uid: 219 - components: - - type: Transform - pos: 3.5,1.5 - parent: 2 - - uid: 220 - components: - - type: Transform - pos: 3.5,2.5 - parent: 2 - - uid: 221 - components: - - type: Transform - pos: 3.5,3.5 - parent: 2 - - uid: 222 - components: - - type: Transform - pos: 3.5,0.5 - parent: 2 - - uid: 223 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 2 - - uid: 224 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 2 - - uid: 225 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 2 - - uid: 228 - components: - - type: Transform - pos: 7.5,4.5 - parent: 2 - - uid: 229 - components: - - type: Transform - pos: 7.5,5.5 - parent: 2 - - uid: 230 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 231 - components: - - type: Transform - pos: 8.5,6.5 - parent: 2 - - uid: 232 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - - uid: 233 - components: - - type: Transform - pos: 9.5,7.5 - parent: 2 - - uid: 234 - components: - - type: Transform - pos: 10.5,7.5 - parent: 2 - - uid: 235 - components: - - type: Transform - pos: 11.5,7.5 - parent: 2 - - uid: 236 - components: - - type: Transform - pos: 11.5,8.5 - parent: 2 - - uid: 237 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 2 - - uid: 238 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 - - uid: 239 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 - - uid: 240 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 2 - - uid: 241 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 - - uid: 242 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 2 - - uid: 243 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 2 - - uid: 244 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 2 - - uid: 245 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 2 - - uid: 292 - components: - - type: Transform - pos: 8.5,0.5 - parent: 2 - - uid: 293 - components: - - type: Transform - pos: 7.5,0.5 - parent: 2 - - uid: 294 - components: - - type: Transform - pos: 6.5,0.5 - parent: 2 -- proto: CableHV - entities: - - uid: 1 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 174 - components: - - type: Transform - pos: 7.5,4.5 - parent: 2 - - uid: 176 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 2 - - uid: 177 - components: - - type: Transform - pos: 12.5,-1.5 - parent: 2 - - uid: 178 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 2 - - uid: 179 - components: - - type: Transform - pos: 12.5,0.5 - parent: 2 - - uid: 180 - components: - - type: Transform - pos: 12.5,1.5 - parent: 2 - - uid: 181 - components: - - type: Transform - pos: 12.5,2.5 - parent: 2 - - uid: 182 - components: - - type: Transform - pos: 12.5,3.5 - parent: 2 - - uid: 186 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - - uid: 289 - components: - - type: Transform - pos: 8.5,6.5 - parent: 2 - - uid: 290 - components: - - type: Transform - pos: 7.5,3.5 - parent: 2 - - uid: 295 - components: - - type: Transform - pos: 7.5,2.5 - parent: 2 - - uid: 296 - components: - - type: Transform - pos: 7.5,1.5 - parent: 2 - - uid: 297 - components: - - type: Transform - pos: 7.5,0.5 - parent: 2 - - uid: 298 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 2 - - uid: 299 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 2 - - uid: 300 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 2 - - uid: 301 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 - - uid: 302 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 - - uid: 303 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 2 - - uid: 304 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 2 - - uid: 305 - components: - - type: Transform - pos: 7.5,5.5 - parent: 2 - - uid: 306 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 - - uid: 307 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - uid: 308 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 309 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 2 - - uid: 310 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 2 - - uid: 313 - components: - - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 314 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 2 - - uid: 315 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 316 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - - uid: 317 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 -- proto: CableMV - entities: - - uid: 184 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 190 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - - uid: 191 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 -- proto: CableTerminal - entities: - - uid: 311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 2 - - uid: 312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 2 -- proto: Chair - entities: - - uid: 68 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,2.5 - parent: 2 - - uid: 69 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 2 - - uid: 70 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,2.5 - parent: 2 - - uid: 71 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 2 - - uid: 72 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 2 - - uid: 73 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 2 - - uid: 74 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 2 - - uid: 75 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,1.5 - parent: 2 - - uid: 76 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,1.5 - parent: 2 - - uid: 77 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 2 - - uid: 78 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,1.5 - parent: 2 - - uid: 79 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 2 - - uid: 80 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 2 - - uid: 81 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 2 - - uid: 82 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 2 - - uid: 83 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 2 - - uid: 84 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 2 - - uid: 85 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 2 - - uid: 86 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 2 - - uid: 87 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 2 - - uid: 88 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 2 - - uid: 89 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 2 -- proto: ComputerShuttle - entities: - - uid: 63 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 2 -- proto: GasPipeBend - entities: - - uid: 261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,7.5 - parent: 2 - - uid: 264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 2 - - uid: 275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 2 - - uid: 278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,8.5 - parent: 2 -- proto: GasPipeStraight - entities: - - uid: 265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,7.5 - parent: 2 - - uid: 267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 2 - - uid: 268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 2 - - uid: 269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 2 - - uid: 273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 2 - - uid: 274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 2 - - uid: 279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 2 - - uid: 280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 2 -- proto: GasPipeTJunction - entities: - - uid: 173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 2 - - uid: 258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-5.5 - parent: 2 - - uid: 259 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 260 - components: - - type: Transform - pos: 6.5,6.5 - parent: 2 - - uid: 262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 2 - - uid: 263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 2 - - uid: 266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-6.5 - parent: 2 - - uid: 270 - components: - - type: Transform - pos: 11.5,-6.5 - parent: 2 - - uid: 271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,7.5 - parent: 2 - - uid: 272 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 2 - - uid: 276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,8.5 - parent: 2 - - uid: 277 - components: - - type: Transform - pos: 13.5,7.5 - parent: 2 -- proto: GasPort - entities: - - uid: 252 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 2 - - uid: 253 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 - - uid: 254 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 2 - - uid: 255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 2 - - uid: 256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 2 - - uid: 257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 2 -- proto: GeneratorBasic15kW - entities: - - uid: 185 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - - uid: 187 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 -- proto: GravityGeneratorMini - entities: - - uid: 287 - components: - - type: Transform - pos: 11.5,8.5 - parent: 2 -- proto: Grille - entities: - - uid: 51 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,4.5 - parent: 2 - - uid: 152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 2 - - uid: 160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 2 - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 2 - - uid: 162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 2 - - uid: 163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 2 - - uid: 164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 2 - - uid: 165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 2 - - uid: 166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 2 - - uid: 167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 2 - - uid: 168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 2 - - uid: 169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,8.5 - parent: 2 - - uid: 170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 2 - - uid: 171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,9.5 - parent: 2 - - uid: 172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 - parent: 2 - - uid: 227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 2 -- proto: Gyroscope - entities: - - uid: 288 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 2 -- proto: LiquidCarbonDioxideCanister - entities: - - uid: 285 - components: - - type: Transform - anchored: True - pos: 8.5,5.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 286 - components: - - type: Transform - anchored: True - pos: 8.5,-4.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: LiquidOxygenCanister - entities: - - uid: 283 - components: - - type: Transform - anchored: True - pos: 7.5,5.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 284 - components: - - type: Transform - anchored: True - pos: 7.5,-4.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: LockerSteel - entities: - - uid: 90 - components: - - type: Transform - anchored: True - pos: 10.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 91 - components: - - type: Transform - anchored: True - pos: 9.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 92 - components: - - type: Transform - anchored: True - pos: 8.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 93 - components: - - type: Transform - anchored: True - pos: 7.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 94 - components: - - type: Transform - anchored: True - pos: 6.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 95 - components: - - type: Transform - anchored: True - pos: 5.5,3.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 96 - components: - - type: Transform - anchored: True - pos: 10.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 97 - components: - - type: Transform - anchored: True - pos: 9.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 98 - components: - - type: Transform - anchored: True - pos: 8.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 99 - components: - - type: Transform - anchored: True - pos: 7.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 100 - components: - - type: Transform - anchored: True - pos: 6.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 101 - components: - - type: Transform - anchored: True - pos: 5.5,-2.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: PlasmaCanister - entities: - - uid: 281 - components: - - type: Transform - anchored: True - pos: 6.5,5.5 - parent: 2 - - type: Physics - bodyType: Static - - uid: 282 - components: - - type: Transform - anchored: True - pos: 6.5,-4.5 - parent: 2 - - type: Physics - bodyType: Static -- proto: PoweredlightLED - entities: - - uid: 246 - components: - - type: Transform - pos: 4.5,1.5 - parent: 2 - - uid: 247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 2 - - uid: 248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 2 - - uid: 249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 2 - - uid: 250 - components: - - type: Transform - pos: 8.5,7.5 - parent: 2 - - uid: 251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 2 -- proto: ShuttleWindow - entities: - - uid: 40 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,4.5 - parent: 2 - - uid: 132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 - parent: 2 - - uid: 146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,9.5 - parent: 2 - - uid: 147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 2 - - uid: 148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 2 - - uid: 149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 2 - - uid: 150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,8.5 - parent: 2 - - uid: 151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,7.5 - parent: 2 - - uid: 153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 2 - - uid: 154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-7.5 - parent: 2 - - uid: 155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 2 - - uid: 156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-6.5 - parent: 2 - - uid: 157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-7.5 - parent: 2 - - uid: 158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-8.5 - parent: 2 - - uid: 159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 2 - - uid: 226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 2 -- proto: SMESBasic - entities: - - uid: 64 - components: - - type: Transform - pos: 12.5,3.5 - parent: 2 - - uid: 65 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 2 -- proto: SubstationWallBasic - entities: - - uid: 183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,1.5 - parent: 2 -- proto: Thruster - entities: - - uid: 136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-5.5 - parent: 2 - - uid: 137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 2 - - uid: 138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-7.5 - parent: 2 - - uid: 139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 - parent: 2 - - uid: 140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,9.5 - parent: 2 - - uid: 141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 2 - - uid: 142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,7.5 - parent: 2 - - uid: 143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,6.5 - parent: 2 - - uid: 144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 2 - - uid: 145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 2 -- proto: WallShuttle entities: - uid: 3 components: - type: Transform - pos: 8.5,-7.5 - parent: 2 - - uid: 4 - components: - - type: Transform - pos: 0.5,1.5 - parent: 2 - - uid: 5 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 2 - - uid: 6 - components: - - type: Transform - pos: 14.5,1.5 - parent: 2 - - uid: 7 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 2 - - uid: 8 - components: - - type: Transform - pos: 14.5,2.5 - parent: 2 - - uid: 9 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 2 - - uid: 20 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 2 - - uid: 21 - components: - - type: Transform - pos: 3.5,4.5 - parent: 2 - - uid: 22 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - uid: 23 - components: - - type: Transform - pos: 4.5,4.5 - parent: 2 - - uid: 24 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 2 - - uid: 25 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 2 - - uid: 26 - components: - - type: Transform - pos: 4.5,3.5 - parent: 2 - - uid: 27 - components: - - type: Transform - pos: 4.5,2.5 - parent: 2 - - uid: 36 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-2.5 - parent: 2 - - uid: 37 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,3.5 - parent: 2 - - uid: 38 - components: - - type: Transform - pos: 5.5,4.5 - parent: 2 - - uid: 39 - components: - - type: Transform - pos: 6.5,4.5 - parent: 2 - - uid: 41 - components: - - type: Transform - pos: 8.5,4.5 - parent: 2 - - uid: 42 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - - uid: 43 - components: - - type: Transform - pos: 10.5,4.5 - parent: 2 - - uid: 44 - components: - - type: Transform - pos: 11.5,4.5 - parent: 2 - - uid: 45 - components: - - type: Transform - pos: 12.5,4.5 - parent: 2 - - uid: 46 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 2 - - uid: 47 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 2 - - uid: 48 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 2 - - uid: 49 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 2 - - uid: 50 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 2 - - uid: 52 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - - uid: 53 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 2 - - uid: 54 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 2 - - uid: 55 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 2 - - uid: 56 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 2 - - uid: 57 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 58 - components: - - type: Transform - pos: 11.5,2.5 - parent: 2 - - uid: 59 - components: - - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 60 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 112 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 2 - - uid: 113 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 114 - components: - - type: Transform - pos: 8.5,8.5 - parent: 2 - - uid: 115 - components: - - type: Transform - pos: 9.5,8.5 - parent: 2 - - uid: 116 - components: - - type: Transform - pos: 5.5,5.5 - parent: 2 - - uid: 117 - components: - - type: Transform - pos: 5.5,-4.5 + rot: -1.5707963267948966 rad + pos: 8.5,12.5 parent: 2 +- proto: AirlockExternalGlassLocked + entities: - uid: 118 - components: - - type: Transform - pos: 11.5,-8.5 - parent: 2 -- proto: WallShuttleDiagonal - entities: - - uid: 10 - components: - - type: Transform - pos: 0.5,2.5 - parent: 2 - - uid: 11 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 2 - - uid: 12 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 2 - - uid: 13 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 2 - - uid: 14 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 2 - - uid: 15 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 2 - - uid: 16 - components: - - type: Transform - pos: 1.5,3.5 - parent: 2 - - uid: 17 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 2 - - uid: 18 - components: - - type: Transform - pos: 2.5,4.5 - parent: 2 - - uid: 19 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 2 - - uid: 28 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 2 - - uid: 29 - components: - - type: Transform - pos: 4.5,5.5 - parent: 2 - - uid: 30 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,3.5 - parent: 2 - - uid: 31 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 2 - - uid: 32 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 2 - - uid: 33 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,2.5 - parent: 2 - - uid: 34 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,4.5 - parent: 2 - - uid: 35 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-3.5 - parent: 2 - - uid: 61 - components: - - type: Transform - pos: 10.5,1.5 - parent: 2 - - uid: 62 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-0.5 + pos: 15.5,20.5 parent: 2 - uid: 119 - components: - - type: Transform - pos: 5.5,7.5 - parent: 2 - - uid: 120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 2 - - uid: 121 - components: - - type: Transform - pos: 7.5,8.5 - parent: 2 - - uid: 122 - components: - - type: Transform - pos: 10.5,9.5 - parent: 2 - - uid: 123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,8.5 - parent: 2 - - uid: 124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,7.5 - parent: 2 - - uid: 125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 2 - - uid: 126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 2 - - uid: 127 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-7.5 - parent: 2 - - uid: 128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 + pos: 1.5,20.5 parent: 2 - uid: 129 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-4.5 + pos: 2.5,15.5 + parent: 2 + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,26.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 171 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 +- proto: CableHV + entities: + - uid: 225 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 10.5,19.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 +- proto: CableMV + entities: + - uid: 229 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 265 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 +- proto: Chair + entities: + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,16.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,17.5 + parent: 2 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 2 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,19.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,20.5 + parent: 2 + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 2 + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 2 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 2 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,18.5 + parent: 2 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 2 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,17.5 + parent: 2 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 2 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,19.5 + parent: 2 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 2 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,17.5 + parent: 2 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 2 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,19.5 + parent: 2 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,20.5 + parent: 2 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,21.5 + parent: 2 +- proto: ComputerShuttle + entities: + - uid: 302 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 284 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 +- proto: GasPipeStraight + entities: + - uid: 289 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 +- proto: GasPipeTJunction + entities: + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 2 + - uid: 276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,19.5 + parent: 2 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 2 + - uid: 281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 +- proto: GasPort + entities: + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 2 + - uid: 270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - uid: 272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,18.5 + parent: 2 +- proto: GeneratorBasic15kW + entities: + - uid: 310 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 318 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 +- proto: Grille + entities: + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 309 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 +- proto: LiquidCarbonDioxideCanister + entities: + - uid: 316 + components: + - type: Transform + anchored: True + pos: 13.5,18.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 317 + components: + - type: Transform + anchored: True + pos: 3.5,18.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LiquidOxygenCanister + entities: + - uid: 314 + components: + - type: Transform + anchored: True + pos: 13.5,19.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 315 + components: + - type: Transform + anchored: True + pos: 3.5,19.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: LockerSteel + entities: + - uid: 41 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 312 + components: + - type: Transform + anchored: True + pos: 13.5,20.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 313 + components: + - type: Transform + anchored: True + pos: 3.5,20.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: PoweredlightLED + entities: + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,17.5 + parent: 2 + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,22.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,22.5 + parent: 2 + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 +- proto: ShuttleWindow + entities: + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,21.5 + parent: 2 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 2 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 2 + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - uid: 165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 2 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - uid: 167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 2 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 299 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,15.5 + parent: 2 +- proto: Thruster + entities: + - uid: 108 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 2 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 2 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 2 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 2 + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 2 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 2 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 1 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 2 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 21 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 25 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: 11.5,22.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 +- proto: WallShuttleDiagonal + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,12.5 + parent: 2 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 2 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 2 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,16.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,24.5 + parent: 2 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,24.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,24.5 + parent: 2 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,26.5 + parent: 2 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,25.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,22.5 + parent: 2 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,19.5 + parent: 2 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,19.5 + parent: 2 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,17.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,16.5 parent: 2 - uid: 130 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-5.5 + pos: 16.5,16.5 parent: 2 - uid: 131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,16.5 parent: 2 - uid: 133 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,5.5 + pos: -0.5,16.5 parent: 2 - - uid: 134 + - uid: 137 components: - type: Transform - pos: 10.5,6.5 + rot: -1.5707963267948966 rad + pos: 14.5,16.5 parent: 2 - - uid: 135 + - uid: 138 components: - type: Transform - pos: 9.5,5.5 + pos: 2.5,16.5 parent: 2 - proto: WardrobeBlueFilled entities: - - uid: 105 + - uid: 88 components: - type: Transform - anchored: True - pos: 3.5,-2.5 + pos: 5.5,23.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 106 + - uid: 89 components: - type: Transform - anchored: True - pos: 3.5,-1.5 + pos: 6.5,23.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 107 + - uid: 90 components: - type: Transform - anchored: True - pos: 2.5,-1.5 + pos: 6.5,24.5 parent: 2 - - type: Physics - bodyType: Static - proto: WardrobeMixedFilled entities: - - uid: 102 + - uid: 85 components: - type: Transform - anchored: True - pos: 3.5,3.5 + pos: 11.5,23.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 103 + - uid: 86 components: - type: Transform - anchored: True - pos: 3.5,2.5 + pos: 10.5,23.5 parent: 2 - - type: Physics - bodyType: Static - - uid: 104 + - uid: 87 components: - type: Transform - anchored: True - pos: 2.5,2.5 + pos: 10.5,24.5 parent: 2 - - type: Physics - bodyType: Static ... diff --git a/Resources/Maps/Shuttles/cargo_relic.yml b/Resources/Maps/Shuttles/cargo_relic.yml index 68a9892277..7b3e935ea0 100644 --- a/Resources/Maps/Shuttles/cargo_relic.yml +++ b/Resources/Maps/Shuttles/cargo_relic.yml @@ -1,54 +1,43 @@ meta: format: 7 category: Grid - engineVersion: 249.0.0 + engineVersion: 264.0.0 forkId: "" forkVersion: "" - time: 03/23/2025 22:34:49 + time: 08/06/2025 14:30:26 entityCount: 176 maps: [] grids: -- 173 +- 1 orphans: -- 173 +- 1 nullspace: [] tilemap: - 0: Space - 1: FloorReinforced - 84: FloorShuttleBlue - 89: FloorShuttleWhite - 93: FloorSteel - 108: FloorTechMaint - 2: Lattice - 126: Plating + 2: Space + 0: FloorShuttleBlue + 3: FloorShuttleOrange + 4: Lattice + 1: Plating entities: - proto: "" entities: - - uid: 173 + - uid: 1 components: - type: MetaData - name: Cargo shuttle + name: prison shuttle - type: Transform - pos: 2.2710133,-2.4148211 + pos: -7.265625,2.28125 parent: invalid - type: MapGrid chunks: - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 0,0: ind: 0,0 - tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAQAAAAAA - version: 6 + tiles: AAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAEAAAAAAAAAQAAAAAAAAMAAAAAAAABAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAAEAAAAAAAADAAAAAAAAAQAAAAAAAAQAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -58,125 +47,49 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: CargoShuttle + - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - - type: CargoShuttle - type: DecalGrid chunkCollection: version: 2 - nodes: - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 14: -1,1 - 15: -1,3 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 26: -4,4 - 27: -4,3 - 29: -4,0 - 30: -4,1 - 31: -4,2 - 33: -6,4 - 34: -6,3 - 35: -6,2 - 36: -6,1 - 37: -6,0 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 78: -8,2 - 79: -2,2 - - node: - color: '#A4610696' - id: CheckerNWSE - decals: - 17: -3,1 - 19: -3,3 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 55: -3,5 - 57: -5,5 - 58: -4,5 - 59: -6,5 - 60: -7,5 - 61: -7,4 - 62: -7,3 - 63: -7,2 - 64: -7,1 - 65: -7,0 - 66: -7,-1 - 67: -6,-1 - 68: -5,-1 - 71: -3,-1 - 72: -3,0 - 75: -3,4 - 76: -4,-1 - 81: -3,2 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 39: -3,0 - 40: -3,-1 - 42: -5,-1 - 43: -6,-1 - 44: -7,-1 - 45: -7,0 - 46: -7,1 - 47: -7,2 - 48: -7,3 - 49: -7,4 - 50: -7,5 - 51: -6,5 - 52: -5,5 - 53: -4,5 - 54: -3,5 - 73: -3,4 - 74: -4,-1 - 80: -3,2 + nodes: [] - type: GridAtmosphere version: 2 data: tiles: - -4,0: - 0: 8 - -3,0: - 1: 65520 - -4,1: - 0: 8 - -3,-1: - 0: 26624 - -3,1: - 0: 2144 - -2,0: - 1: 65534 - -2,1: - 1: 254 - -2,-1: - 1: 61440 - -1,0: - 1: 65535 - -1,1: - 1: 63 - 0: 2048 - -1,-1: - 1: 12288 - 0: 2048 0,0: - 1: 4112 - 0,1: - 0: 256 + 0: 16 + 1: 14 0,-1: - 0: 256 + 1: 61166 + 1,0: + 1: 15 + 1,-1: + 1: 65535 + 2,0: + 1: 27 + 0: 64 + 2,-1: + 1: 65531 + 3,0: + 1: 1 + 0: 64 + 3,-1: + 1: 13105 + 0,-2: + 0: 4096 + 2,-2: + 1: 4096 + 0: 16384 + 3,-2: + 0: 16384 uniqueMixes: - volume: 2500 immutable: True @@ -209,1051 +122,1024 @@ entities: - 0 - 0 chunkSize: 4 - - type: OccluderTree - - type: Shuttle - - type: GridPathfinding - - type: RadiationGridResistance - - type: SpreaderGrid - - type: GravityShake - shakeTimes: 10 - type: GasTileOverlay + - type: RadiationGridResistance + - type: ImplicitRoof - proto: AirCanister entities: - - uid: 176 + - uid: 140 components: - type: Transform - pos: -9.5,3.5 - parent: 173 -- proto: AirlockGlassShuttle - entities: - - uid: 2 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 173 - - uid: 53 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 173 -- proto: APCHyperCapacity - entities: - - uid: 15 - components: - - type: Transform - pos: -2.5,6.5 - parent: 173 -- proto: AtmosDeviceFanDirectional - entities: - - uid: 169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 173 - - uid: 170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 173 -- proto: BlastDoor - entities: - - uid: 1 - components: - - type: Transform - pos: 0.5,4.5 - parent: 173 - - uid: 54 - components: - - type: Transform - pos: 0.5,0.5 - parent: 173 -- proto: ButtonFrameCaution - entities: - - uid: 68 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 173 - - uid: 102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 173 -- proto: CableApcExtension - entities: - - uid: 11 - components: - - type: Transform - pos: -0.5,0.5 - parent: 173 - - uid: 58 - components: - - type: Transform - pos: -8.5,3.5 - parent: 173 - - uid: 62 - components: - - type: Transform - pos: -0.5,4.5 - parent: 173 - - uid: 64 - components: - - type: Transform - pos: -5.5,4.5 - parent: 173 - - uid: 65 - components: - - type: Transform - pos: -5.5,5.5 - parent: 173 - - uid: 66 - components: - - type: Transform - pos: -7.5,0.5 - parent: 173 - - uid: 67 - components: - - type: Transform - pos: -8.5,1.5 - parent: 173 - - uid: 84 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 173 - - uid: 85 - components: - - type: Transform - pos: -5.5,0.5 - parent: 173 - - uid: 90 - components: - - type: Transform - pos: -5.5,1.5 - parent: 173 - - uid: 91 - components: - - type: Transform - pos: -2.5,6.5 - parent: 173 - - uid: 96 - components: - - type: Transform - pos: -7.5,5.5 - parent: 173 - - uid: 100 - components: - - type: Transform - pos: -7.5,4.5 - parent: 173 - - uid: 101 - components: - - type: Transform - pos: -9.5,3.5 - parent: 173 - - uid: 103 - components: - - type: Transform - pos: -2.5,5.5 - parent: 173 - - uid: 104 - components: - - type: Transform - pos: -9.5,1.5 - parent: 173 - - uid: 109 - components: - - type: Transform - pos: -2.5,4.5 - parent: 173 - - uid: 110 - components: - - type: Transform - pos: -2.5,3.5 - parent: 173 - - uid: 111 - components: - - type: Transform - pos: -2.5,2.5 - parent: 173 - - uid: 112 - components: - - type: Transform - pos: -2.5,1.5 - parent: 173 - - uid: 113 - components: - - type: Transform - pos: -2.5,0.5 - parent: 173 - - uid: 114 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 173 - - uid: 117 - components: - - type: Transform - pos: -6.5,1.5 - parent: 173 - - uid: 118 - components: - - type: Transform - pos: -5.5,1.5 - parent: 173 - - uid: 122 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 173 - - uid: 125 - components: - - type: Transform - pos: -1.5,3.5 - parent: 173 - - uid: 126 - components: - - type: Transform - pos: -0.5,3.5 - parent: 173 - - uid: 127 - components: - - type: Transform - pos: -1.5,1.5 - parent: 173 - - uid: 128 - components: - - type: Transform - pos: -0.5,1.5 - parent: 173 - - uid: 129 - components: - - type: Transform - pos: -3.5,1.5 - parent: 173 - - uid: 130 - components: - - type: Transform - pos: -4.5,1.5 - parent: 173 - - uid: 131 - components: - - type: Transform - pos: -3.5,3.5 - parent: 173 - - uid: 132 - components: - - type: Transform - pos: -4.5,3.5 - parent: 173 - - uid: 136 - components: - - type: Transform - pos: -5.5,3.5 - parent: 173 - - uid: 137 - components: - - type: Transform - pos: -6.5,3.5 - parent: 173 - - uid: 138 - components: - - type: Transform - pos: -7.5,1.5 - parent: 173 - - uid: 139 - components: - - type: Transform - pos: -7.5,3.5 - parent: 173 -- proto: CableHV - entities: - - uid: 155 - components: - - type: Transform - pos: -11.5,1.5 - parent: 173 - - uid: 156 - components: - - type: Transform - pos: -10.5,1.5 - parent: 173 - - uid: 157 - components: - - type: Transform - pos: -9.5,1.5 - parent: 173 -- proto: CableMV - entities: - - uid: 3 - components: - - type: Transform - pos: -9.5,1.5 - parent: 173 - - uid: 6 - components: - - type: Transform - pos: -2.5,2.5 - parent: 173 - - uid: 28 - components: - - type: Transform - pos: -5.5,1.5 - parent: 173 - - uid: 29 - components: - - type: Transform - pos: -3.5,1.5 - parent: 173 - - uid: 41 - components: - - type: Transform - pos: -2.5,3.5 - parent: 173 - - uid: 42 - components: - - type: Transform - pos: -2.5,1.5 - parent: 173 - - uid: 43 - components: - - type: Transform - pos: -2.5,4.5 - parent: 173 - - uid: 45 - components: - - type: Transform - pos: -2.5,5.5 - parent: 173 - - uid: 47 - components: - - type: Transform - pos: -2.5,6.5 - parent: 173 - - uid: 52 - components: - - type: Transform - pos: -4.5,1.5 - parent: 173 - - uid: 81 - components: - - type: Transform - pos: -8.5,1.5 - parent: 173 - - uid: 82 - components: - - type: Transform - pos: -7.5,1.5 - parent: 173 - - uid: 98 - components: - - type: Transform - pos: -6.5,1.5 - parent: 173 -- proto: CableTerminal - entities: - - uid: 158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 173 -- proto: CargoPallet - entities: - - uid: 12 - components: - - type: Transform - pos: -3.5,1.5 - parent: 173 - - uid: 48 - components: - - type: Transform - pos: -3.5,4.5 - parent: 173 - - uid: 49 - components: - - type: Transform - pos: -3.5,3.5 - parent: 173 - - uid: 50 - components: - - type: Transform - pos: -3.5,0.5 - parent: 173 - - uid: 55 - components: - - type: Transform - pos: -5.5,3.5 - parent: 173 - - uid: 63 - components: - - type: Transform - pos: -5.5,4.5 - parent: 173 - - uid: 69 - components: - - type: Transform - pos: -5.5,2.5 - parent: 173 - - uid: 99 - components: - - type: Transform - pos: -5.5,1.5 - parent: 173 - - uid: 120 - components: - - type: Transform - pos: -5.5,0.5 - parent: 173 - - uid: 159 - components: - - type: Transform - pos: -3.5,2.5 - parent: 173 -- proto: Chair - entities: - - uid: 20 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,3.5 - parent: 173 - - uid: 95 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 173 -- proto: ChairPilotSeat - entities: - - uid: 75 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 173 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 19 - components: - - type: Transform - pos: -7.5,5.5 - parent: 173 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 107 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 173 -- proto: ComputerShuttle - entities: - - uid: 94 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,2.5 - parent: 173 -- proto: ConveyorBelt - entities: - - uid: 38 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 173 - - uid: 39 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 173 - - uid: 40 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 173 - - uid: 46 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 173 - - uid: 51 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,0.5 - parent: 173 - - uid: 167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 173 -- proto: GasPipeBend - entities: - - uid: 60 - components: - - type: Transform - pos: -1.5,3.5 - parent: 173 -- proto: GasPipeStraight - entities: - - uid: 164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 173 - - uid: 165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 173 - - uid: 168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 173 - - uid: 171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 173 - - uid: 172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 173 - - uid: 174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 173 - - uid: 175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,3.5 - parent: 173 -- proto: GasPort - entities: - - uid: 163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 173 -- proto: GasVentPump + anchored: True + pos: 4.5,-3.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockShuttle entities: - uid: 59 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 60 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 173 -- proto: GeneratorBasic15kW + pos: 8.5,1.5 + parent: 1 +- proto: APCBasic entities: - - uid: 13 + - uid: 174 components: - type: Transform - pos: -11.5,1.5 - parent: 173 -- proto: GravityGeneratorMini + pos: 6.5,1.5 + parent: 1 +- proto: CableApcExtension entities: - - uid: 162 + - uid: 111 components: - type: Transform - pos: -10.5,3.5 - parent: 173 -- proto: Grille - entities: - - uid: 5 + pos: 4.5,-0.5 + parent: 1 + - uid: 112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 - parent: 173 - - uid: 9 + pos: 3.5,-0.5 + parent: 1 + - uid: 113 components: - type: Transform - pos: -11.5,4.5 - parent: 173 - - uid: 72 + pos: 2.5,-0.5 + parent: 1 + - uid: 114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 173 - - uid: 73 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,1.5 - parent: 173 - - uid: 83 - components: - - type: Transform - pos: -10.5,4.5 - parent: 173 - - uid: 88 - components: - - type: Transform - pos: -11.5,0.5 - parent: 173 - - uid: 97 - components: - - type: Transform - pos: -10.5,0.5 - parent: 173 -- proto: GrilleDiagonal - entities: - - uid: 14 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 173 - - uid: 134 - components: - - type: Transform - pos: -12.5,4.5 - parent: 173 -- proto: Gyroscope - entities: - - uid: 161 - components: - - type: Transform - pos: -11.5,3.5 - parent: 173 -- proto: HolopadCargoShuttle - entities: - - uid: 116 - components: - - type: Transform - pos: -7.5,2.5 - parent: 173 -- proto: LockableButtonCargo - entities: - - uid: 79 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 1: - - Pressed: Toggle + pos: 2.5,-1.5 + parent: 1 - uid: 115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 54: - - Pressed: Toggle -- proto: PlasticFlapsAirtightClear - entities: - - uid: 44 + pos: 2.5,-2.5 + parent: 1 + - uid: 116 components: - type: Transform - pos: 0.5,0.5 - parent: 173 - - uid: 166 + pos: 5.5,-0.5 + parent: 1 + - uid: 117 components: - type: Transform - pos: 0.5,4.5 - parent: 173 -- proto: Poweredlight - entities: - - uid: 22 + pos: 6.5,-0.5 + parent: 1 + - uid: 118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 173 - - uid: 23 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 173 - - uid: 25 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,5.5 - parent: 173 - - uid: 57 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 173 - - uid: 70 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 173 - - uid: 108 - components: - - type: Transform - pos: -3.5,5.5 - parent: 173 - - uid: 147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 173 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: ShuttleWindow - entities: - - uid: 4 - components: - - type: Transform - pos: -12.5,3.5 - parent: 173 - - uid: 74 - components: - - type: Transform - pos: -11.5,4.5 - parent: 173 - - uid: 76 - components: - - type: Transform - pos: -12.5,2.5 - parent: 173 - - uid: 92 - components: - - type: Transform - pos: -11.5,0.5 - parent: 173 - - uid: 93 - components: - - type: Transform - pos: -12.5,1.5 - parent: 173 - - uid: 133 - components: - - type: Transform - pos: -10.5,4.5 - parent: 173 - - uid: 148 - components: - - type: Transform - pos: -10.5,0.5 - parent: 173 -- proto: ShuttleWindowDiagonal - entities: - - uid: 8 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 173 - - uid: 135 - components: - - type: Transform - pos: -12.5,4.5 - parent: 173 -- proto: SMESBasic - entities: - - uid: 89 - components: - - type: Transform - pos: -10.5,1.5 - parent: 173 -- proto: SubstationBasic - entities: - - uid: 160 - components: - - type: Transform - pos: -9.5,1.5 - parent: 173 -- proto: Thruster - entities: - - uid: 24 - components: - - type: Transform - pos: -0.5,6.5 - parent: 173 - - uid: 34 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-0.5 - parent: 173 - - uid: 37 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 173 - - uid: 78 - components: - - type: Transform - pos: -10.5,5.5 - parent: 173 - - uid: 80 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 173 - - uid: 87 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 173 - - uid: 121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,6.5 - parent: 173 - - uid: 124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 173 -- proto: TwoWayLever - entities: - - uid: 35 - components: - - type: Transform - pos: -1.5,1.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 51: - - Left: Forward - - Right: Reverse - - Middle: Off - 46: - - Left: Forward - - Right: Reverse - - Middle: Off - 167: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 36 - components: - - type: Transform - pos: -1.5,3.5 - parent: 173 - - type: DeviceLinkSource - linkedPorts: - 38: - - Left: Forward - - Right: Reverse - - Middle: Off - 39: - - Left: Forward - - Right: Reverse - - Middle: Off - 40: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: WallShuttle - entities: - - uid: 16 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 173 - - uid: 17 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 173 - - uid: 18 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 173 - - uid: 21 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 173 - - uid: 26 - components: - - type: Transform - pos: -4.5,6.5 - parent: 173 - - uid: 27 - components: - - type: Transform - pos: -5.5,6.5 - parent: 173 - - uid: 30 - components: - - type: Transform - pos: 0.5,5.5 - parent: 173 - - uid: 31 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 173 - - uid: 32 - components: - - type: Transform - pos: 0.5,2.5 - parent: 173 - - uid: 33 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 173 - - uid: 56 - components: - - type: Transform - pos: -0.5,5.5 - parent: 173 - - uid: 61 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 173 - - uid: 71 - components: - - type: Transform - pos: -7.5,0.5 - parent: 173 - - uid: 86 - components: - - type: Transform - pos: -7.5,4.5 - parent: 173 - - uid: 105 - components: - - type: Transform - pos: -9.5,0.5 - parent: 173 - - uid: 106 - components: - - type: Transform - pos: -8.5,4.5 - parent: 173 + pos: 9.5,0.5 + parent: 1 - uid: 119 components: - type: Transform - pos: -1.5,-1.5 - parent: 173 + pos: 8.5,0.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 - uid: 123 components: - type: Transform - pos: -1.5,5.5 - parent: 173 - - uid: 140 + pos: 6.5,-1.5 + parent: 1 + - uid: 124 components: - type: Transform - pos: -1.5,6.5 - parent: 173 - - uid: 141 + pos: 6.5,-2.5 + parent: 1 + - uid: 125 components: - type: Transform - pos: -2.5,6.5 - parent: 173 - - uid: 142 + pos: 7.5,-2.5 + parent: 1 + - uid: 126 components: - type: Transform - pos: -3.5,6.5 - parent: 173 - - uid: 143 + pos: 8.5,-2.5 + parent: 1 + - uid: 127 components: - type: Transform - pos: -8.5,5.5 - parent: 173 - - uid: 144 + pos: 9.5,-2.5 + parent: 1 + - uid: 128 components: - type: Transform - pos: -8.5,6.5 - parent: 173 - - uid: 145 + pos: 10.5,-2.5 + parent: 1 + - uid: 129 components: - type: Transform - pos: -7.5,6.5 - parent: 173 - - uid: 146 + pos: 11.5,-2.5 + parent: 1 + - uid: 130 components: - type: Transform - pos: -6.5,6.5 - parent: 173 - - uid: 149 + pos: 9.5,-0.5 + parent: 1 + - uid: 131 components: - type: Transform - pos: -9.5,4.5 - parent: 173 - - uid: 150 + pos: 10.5,-0.5 + parent: 1 + - uid: 132 components: - type: Transform - pos: -8.5,-1.5 - parent: 173 - - uid: 151 + pos: 11.5,-0.5 + parent: 1 + - uid: 162 components: - type: Transform - pos: -8.5,-0.5 - parent: 173 - - uid: 152 + pos: 1.5,-0.5 + parent: 1 + - uid: 163 components: - type: Transform - pos: -8.5,0.5 - parent: 173 - - uid: 153 + pos: 1.5,-2.5 + parent: 1 + - uid: 164 components: - type: Transform - pos: -7.5,-1.5 - parent: 173 - - uid: 154 + pos: 12.5,-0.5 + parent: 1 + - uid: 165 components: - type: Transform - pos: -6.5,-1.5 - parent: 173 -- proto: WindoorCargoLocked + pos: 13.5,-0.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 +- proto: CableHV entities: - - uid: 10 + - uid: 103 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 12 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 102 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 173 -- proto: WindowReinforcedDirectional + pos: 1.5,0.5 + parent: 1 +- proto: Chair entities: - uid: 7 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 173 - - uid: 77 + pos: 7.5,-1.5 + parent: 1 + - uid: 8 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 173 + pos: 7.5,-2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 +- proto: ChemistryBottleEpinephrine + entities: + - uid: 86 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: ChemistryBottleNocturine + entities: + - uid: 139 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: ComputerShuttleCargo + entities: + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 +- proto: GasPort + entities: + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 +- proto: GasVentScrubber + entities: + - uid: 153 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 99 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 98 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: Grille + entities: + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 110 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 80 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 +- proto: ParchisBoard + entities: + - uid: 79 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 +- proto: PillCanisterCharcoal + entities: + - uid: 93 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: PoweredlightLED + entities: + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 +- proto: PrefilledSyringe + entities: + - uid: 6 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 94 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 32 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 100 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: StorageCanister + entities: + - uid: 158 + components: + - type: Transform + anchored: True + pos: 6.5,-3.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: SubstationBasic + entities: + - uid: 101 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: Table + entities: + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 +- proto: Thruster + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 2 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 13.5,1.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 +- proto: WardrobePrisonFilled + entities: + - uid: 92 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 +- proto: WeaponTaser + entities: + - uid: 85 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 +- proto: Windoor + entities: + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 11 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: WindowDirectional + entities: + - uid: 36 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 ... diff --git a/Resources/Maps/Shuttles/emergency_relic.yml b/Resources/Maps/Shuttles/emergency_relic.yml index 03567878ef..b5c48b5786 100644 --- a/Resources/Maps/Shuttles/emergency_relic.yml +++ b/Resources/Maps/Shuttles/emergency_relic.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 247.2.0 + engineVersion: 264.0.0 forkId: "" forkVersion: "" - time: 03/22/2025 16:54:04 - entityCount: 138 + time: 07/25/2025 18:00:45 + entityCount: 176 maps: [] grids: - 1 @@ -22,7 +22,7 @@ entities: - uid: 1 components: - type: MetaData - name: grid + name: NT Evac Reliquary - type: Transform pos: -7.265625,2.28125 parent: invalid @@ -30,12 +30,12 @@ entities: chunks: 0,0: ind: 0,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -48,6 +48,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -102,6 +103,17 @@ entities: configurators: [] deviceLists: [] transmitFrequencyId: ShuttleTimer + - type: ImplicitRoof +- proto: AirCanister + entities: + - uid: 139 + components: + - type: Transform + anchored: True + pos: 3.5,-3.5 + parent: 1 + - type: Physics + bodyType: Static - proto: AirlockFreezerLocked entities: - uid: 10 @@ -122,7 +134,7 @@ entities: - - Engineering - - Medical - type: Door - secondsUntilStateChange: -60.848633 + secondsUntilStateChange: -613.913 state: Opening - type: DeviceLinkSource lastSignals: @@ -345,14 +357,33 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-1.5 parent: 1 -- proto: ClosetFireFilled +- proto: ChemistryBottleEpinephrine entities: - - uid: 88 + - uid: 173 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: ClothingMaskGas + entities: + - uid: 171 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 90 + - uid: 172 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 +- proto: ClothingOuterSuitFire + entities: + - uid: 169 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 170 components: - type: Transform pos: 7.5,0.5 @@ -365,6 +396,174 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-1.5 parent: 1 +- proto: GasPipeBend + entities: + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 157 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 +- proto: GasPort + entities: + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 +- proto: GasVentScrubber + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 - proto: GeneratorWallmountAPU entities: - uid: 99 @@ -491,6 +690,18 @@ entities: - type: Transform pos: 1.5,-2.5 parent: 1 +- proto: OxygenTankFilled + entities: + - uid: 167 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 - proto: ParchisBoard entities: - uid: 79 @@ -498,6 +709,13 @@ entities: - type: Transform pos: 12.5,0.5 parent: 1 +- proto: PillCanisterCharcoal + entities: + - uid: 174 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 - proto: PoweredlightLED entities: - uid: 133 @@ -535,6 +753,34 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,0.5 parent: 1 +- proto: PrefilledSyringe + entities: + - uid: 175 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 +- proto: Rack + entities: + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 +- proto: RadioHandheld + entities: + - uid: 176 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 - proto: ReinforcedWindow entities: - uid: 86 @@ -613,6 +859,16 @@ entities: - type: Transform pos: 1.5,-3.5 parent: 1 +- proto: StorageCanister + entities: + - uid: 140 + components: + - type: Transform + anchored: True + pos: 3.5,-1.5 + parent: 1 + - type: Physics + bodyType: Static - proto: SubstationBasic entities: - uid: 101 @@ -670,6 +926,16 @@ entities: - type: Transform pos: 0.5,1.5 parent: 1 + - uid: 11 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 - uid: 13 components: - type: Transform @@ -780,6 +1046,16 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 1 + - uid: 46 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 - uid: 48 components: - type: Transform @@ -795,28 +1071,6 @@ entities: - type: Transform pos: 0.5,-3.5 parent: 1 -- proto: WallShuttleInterior - entities: - - uid: 11 - components: - - type: Transform - pos: 4.5,1.5 - parent: 1 - - uid: 12 - components: - - type: Transform - pos: 4.5,0.5 - parent: 1 - - uid: 46 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 1 - - uid: 47 - components: - - type: Transform - pos: 10.5,0.5 - parent: 1 - proto: Windoor entities: - uid: 73 diff --git a/Resources/Maps/relic.yml b/Resources/Maps/relic.yml index da123e3276..250c80a59a 100644 --- a/Resources/Maps/relic.yml +++ b/Resources/Maps/relic.yml @@ -1,15 +1,16 @@ meta: format: 7 category: Map - engineVersion: 262.0.0 + engineVersion: 264.0.0 forkId: "" forkVersion: "" - time: 06/11/2025 22:11:12 - entityCount: 8332 + time: 08/24/2025 21:13:10 + entityCount: 11566 maps: - 1 grids: - 2 +- 3564 orphans: [] nullspace: [] tilemap: @@ -22,6 +23,7 @@ tilemap: 2: FloorDark 6: FloorElevatorShaft 47: FloorFreezer + 20: FloorGreenCircuit 18: FloorHullReinforced 1: FloorHydro 64: FloorKitchen @@ -31,6 +33,7 @@ tilemap: 101: FloorSteelDamaged 11: FloorSteelDirty 4: FloorTechMaint + 19: FloorTechMaint2 3: FloorWhite 126: FloorWood 14: FloorWoodLarge @@ -50,10 +53,12 @@ entities: - type: GridTree - type: Broadphase - type: OccluderTree + - type: Parallax + parallax: RelicStation - uid: 2 components: - type: MetaData - name: grid + name: oldstation - type: Transform pos: -2.6405587,0.6332514 parent: 1 @@ -61,87 +66,87 @@ entities: chunks: 0,0: ind: 0,0 - tiles: YgAAAAADAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAACAAIAAAAAAAACAAAAAAMAAgAAAAAAAAIAAAAAAQACAAAAAAMABwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwACAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAwADAAAAAAIAAgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAEAAwAAAAAAAAIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAAcAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAgADAAAAAAMAAwAAAAACAAMAAAAAAAACAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAMAAwAAAAACAAMAAAAAAwADAAAAAAIAAgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAACAA== + tiles: YgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwAKAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAwAKAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAABAAIAAAAAAgACAAAAAAEAAgAAAAADAAIAAAAAAwACAAAAAAIABwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAAAAAIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAAAAgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAADAAIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAAcAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAQACAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAAAAgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAA== version: 7 0,-1: ind: 0,-1 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAADAA== version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAAgAAAAABAAIAAAAAAQACAAAAAAAAAgAAAAABAAIAAAAAAAACAAAAAAEAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAAIAAAAAAAACAAAAAAEAAgAAAAACAAIAAAAAAwACAAAAAAEAAgAAAAABAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAwACAAAAAAIAAgAAAAABAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAAACAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAQACAAAAAAAAAgAAAAABAAIAAAAAAAACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAAIAAAAAAgACAAAAAAAAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAABAAIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwACAAAAAAAAAgAAAAADAAIAAAAAAQACAAAAAAIAAgAAAAABAAIAAAAAAQACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAAgAAAAABAAIAAAAAAgACAAAAAAEAAgAAAAADAAIAAAAAAgACAAAAAAEAAgAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAABiAAAAAAIACgAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAAgAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAACAAIAAAAAAAACAAAAAAMAAgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAAIAAAAAAgACAAAAAAIAAgAAAAADAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAwACAAAAAAIAAgAAAAADAAIAAAAAAAACAAAAAAIAAgAAAAACAAIAAAAAAAACAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAABAAIAAAAAAgACAAAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAAAAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAIAAgAAAAACAAIAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAACAAAAAAEAAgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAABAAIAAAAAAQACAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAAgAAAAADAAIAAAAAAwACAAAAAAIAAgAAAAACAAIAAAAAAwACAAAAAAAAAgAAAAABAA== version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAA== version: 7 1,-1: ind: 1,-1 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAvAAAAAAAALwAAAAAAAC8AAAAAAAAvAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEQAAAAACABEAAAAAAwARAAAAAAMAEQAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABEAAAAAAwARAAAAAAIAEQAAAAABABEAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAA== version: 7 1,0: ind: 1,0 - tiles: YgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAADAAAAAABAAwAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEABwAAAAAAAAwAAAAAAQAMAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAAMAAAAAAwAMAAAAAAEADAAAAAADAAMAAAAAAwADAAAAAAEABwAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAAADAAAAAAAADAAAAAAAAAwAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAAAAwAAAAAAAAwAAAAAAAAMAAAAAAAAAwAAAAABAAMAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAMAAAAAAgAMAAAAAAIADAAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAAADAAAAAAAADAAAAAAAAAwAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAAwAAAAACAAwAAAAAAgAMAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAIAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAA== + tiles: YgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAgALAAAAAAAACwAAAAABAAsAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAAAwAAAAABAAMAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAAMAAAAAAQADAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAIABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAADAA== version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAABAAIAAAAAAgACAAAAAAIAAgAAAAACAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAgACAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAACAAIAAAAAAwACAAAAAAMAAgAAAAADAAIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAgAAAAABAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,1: ind: 0,1 - tiles: AgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAADAAIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAEAAgAAAAADAAIAAAAAAgACAAAAAAMAAgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAA== + tiles: AgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAACAAIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABlAAAAAAIAYgAAAAADAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAGIAAAAAAwBlAAAAAAEAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAZQAAAAACAGUAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGUAAAAAAwBiAAAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGUAAAAAAwBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAAAABABiAAAAAAMAZQAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGUAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGUAAAAAAABiAAAAAAAAYgAAAAAAAGUAAAAAAABlAAAAAAAAYgAAAAABAA== version: 7 1,1: ind: 1,1 - tiles: AwAAAAADAAwAAAAAAgAMAAAAAAIAAwAAAAABAAMAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAAAMAAAAAAIADAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAZQAAAAACAA== + tiles: AwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAADAAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAABIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAAAZQAAAAACAA== version: 7 2,0: ind: 2,0 - tiles: BwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgAHAAAAAAAACwAAAAAAAGIAAAAAAABiAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAMAAAAAAQADAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAAADAAAAAAAAAwAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAAAwAAAAADAAMAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAMAAAAAAgADAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQALAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAACwAAAAACAGIAAAAAAQBiAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAACwAAAAACAAsAAAAAAgALAAAAAAIACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== version: 7 2,1: ind: 2,1 - tiles: YgAAAAACAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAA== + tiles: YgAAAAACAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgALAAAAAAMACwAAAAABAAsAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAQALAAAAAAEACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAAsAAAAAAgALAAAAAAIACwAAAAACAAsAAAAAAQAHAAAAAAAACwAAAAACAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAAcAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAA== version: 7 0,2: ind: 0,2 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAA== version: 7 1,2: ind: 1,2 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== version: 7 2,2: ind: 2,2 - tiles: YgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQAKAAAAAAAAYgAAAAACAAoAAAAAAABiAAAAAAEACgAAAAAAAA== + tiles: YgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQAKAAAAAAAAYgAAAAADAAoAAAAAAABiAAAAAAEACgAAAAAAAA== version: 7 3,1: ind: 3,1 - tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAABAAIAAAAAAwACAAAAAAMAAgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAIAAgAAAAADAAIAAAAAAgACAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAQACAAAAAAIAAgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAgAHAAAAAAAAAgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAAIAAAAAAQACAAAAAAIAAgAAAAAAAAIAAAAAAgACAAAAAAMAAgAAAAABAAIAAAAAAgACAAAAAAMAAgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQACAAAAAAAAAgAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAACAAIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAAgAAAAABAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAADAAIAAAAAAwACAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAAIAAAAAAAACAAAAAAMAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAACAA== + tiles: CwAAAAABAAsAAAAAAwALAAAAAAMACwAAAAACAAsAAAAAAgALAAAAAAEACwAAAAAAAAsAAAAAAQAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAAsAAAAAAQALAAAAAAMACwAAAAADAAsAAAAAAAALAAAAAAEACwAAAAACAAsAAAAAAAAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAACAAIAAAAAAgACAAAAAAAAAgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAAAAAIAAAAAAwACAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAAsAAAAAAwALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQALAAAAAAMACwAAAAADAAsAAAAAAgAHAAAAAAAABwAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAAAAAIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAABAAsAAAAAAAALAAAAAAEABwAAAAAAAAcAAAAAAAACAAAAAAIAAgAAAAADAAIAAAAAAQACAAAAAAEAAgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAwAHAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAAAAAIAAAAAAAACAAAAAAEAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAADAAIAAAAAAgACAAAAAAMAAgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAgACAAAAAAIAAgAAAAADAAIAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAgACAAAAAAAAAgAAAAACAAIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAABAAIAAAAAAgACAAAAAAAAAgAAAAADAAIAAAAAAgACAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAIAAAAAAQACAAAAAAIAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAADAA== version: 7 3,2: ind: 3,2 - tiles: BwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAAIAAAAAAQACAAAAAAEAAgAAAAABAAIAAAAAAgACAAAAAAMAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAACAAIAAAAAAQACAAAAAAIAAgAAAAAAAAIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIAAgAAAAACAAIAAAAAAQACAAAAAAIAAgAAAAAAAAIAAAAAAwACAAAAAAIAAgAAAAACAAIAAAAAAgACAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEACwAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAABiAAAAAAEAYgAAAAADAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAAcAAAAAAAAIAAAAAAAAYgAAAAACAAoAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQAHAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAAIAAAAAAQACAAAAAAAAAgAAAAACAAIAAAAAAAACAAAAAAIAAgAAAAABAAIAAAAAAgACAAAAAAMAAgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwACAAAAAAIAAgAAAAADAAIAAAAAAQACAAAAAAEAAgAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAADAAIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAEAAgAAAAACAAIAAAAAAQACAAAAAAMAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAABAAIAAAAAAwACAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAMACwAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEACwAAAAAAAAsAAAAAAgALAAAAAAEACwAAAAACAAsAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAACwAAAAACAAsAAAAAAQALAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAAcAAAAAAAAIAAAAAAAAYgAAAAACAAoAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAA== version: 7 2,-1: ind: 2,-1 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAQAHAAAAAAAAAwAAAAAAAAcAAAAAAAADAAAAAAMABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAIABwAAAAAAAAMAAAAAAgAHAAAAAAAAAwAAAAADAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAEABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAsAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAEABwAAAAAAAA== version: 7 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAEACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAAALAAAAAAAAYgAAAAADAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAEACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgALAAAAAAEAYgAAAAABAA== version: 7 3,-1: ind: 3,-1 - tiles: YgAAAAABAAsAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAALAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAgAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAAwAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAACAA== + tiles: YgAAAAAAAAsAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACwAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwALAAAAAAMABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAgAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAABAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAMAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAA== version: 7 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAgALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAALAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACwAAAAADAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAsAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAALAAAAAAMACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAgALAAAAAAMACwAAAAADAAsAAAAAAQALAAAAAAIACwAAAAADAAsAAAAAAQALAAAAAAAACwAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,0: ind: 3,0 - tiles: AwAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAsAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAAsAAAAAAAADAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAAACwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAAsAAAAAAAALAAAAAAAAAwAAAAACAGIAAAAAAQADAAAAAAIAAwAAAAABAAMAAAAAAAADAAAAAAMAAwAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAABiAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAMAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAAADAAAAAAIAAwAAAAABAAMAAAAAAgADAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAIAAwAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAACAAMAAAAAAABiAAAAAAEABwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAADAAMAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAADAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAAMAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAwAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAAADAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAEABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAA== + tiles: YgAAAAACAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgALAAAAAAIACwAAAAADAAsAAAAAAgALAAAAAAEACwAAAAACAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAsAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAACAAsAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAAACwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAAsAAAAAAwALAAAAAAAAYgAAAAADAGIAAAAAAAADAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAAALAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAgAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAA== version: 7 -1,-2: ind: -1,-2 @@ -157,23 +162,23 @@ entities: version: 7 0,3: ind: 0,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 1,3: ind: 1,3 - tiles: BwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAsAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAAsAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAgAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAwALAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAEABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAsAAAAAAgAHAAAAAAAACwAAAAADAAcAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAAsAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAAsAAAAAAQALAAAAAAEABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAEABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAALAAAAAAIACwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAADAAcAAAAAAAAHAAAAAAAACwAAAAACAAsAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAAABwAAAAAAAAsAAAAAAwAHAAAAAAAABwAAAAAAAAsAAAAAAgALAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAIABwAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAMACwAAAAADAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAAALAAAAAAEACwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,0: ind: 4,0 - tiles: CwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CwAAAAABAAsAAAAAAQALAAAAAAMABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-1: ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwAIAAAAAAAAYgAAAAACAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAIAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACwAAAAABAAsAAAAAAQAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwALAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,1: ind: 4,1 - tiles: CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,2: ind: 4,2 @@ -181,7 +186,7 @@ entities: version: 7 3,3: ind: 3,3 - tiles: YgAAAAAAAAoAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAAoAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAcAAAAAAAAIAAAAAAAAYgAAAAABAGIAAAAAAQAKAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAA== + tiles: YgAAAAABAAoAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAAoAAAAAAAAKAAAAAAAACgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAAoAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAYgAAAAAAAGIAAAAAAAAKAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAALAAAAAAIACwAAAAACAAsAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAA== version: 7 4,3: ind: 4,3 @@ -189,7 +194,7 @@ entities: version: 7 3,4: ind: 3,4 - tiles: AAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,4: ind: 4,4 @@ -197,12 +202,16 @@ entities: version: 7 2,3: ind: 2,3 - tiles: YgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAKAAAAAAAAYgAAAAAAAAoAAAAAAABiAAAAAAMACgAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAACgAAAAAAAGIAAAAAAgBiAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAoAAAAAAABiAAAAAAEAYgAAAAACAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YgAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAKAAAAAAAAYgAAAAAAAAoAAAAAAABiAAAAAAAACgAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAALAAAAAAEACwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIACgAAAAAAAGIAAAAAAwBiAAAAAAAACwAAAAACAAsAAAAAAQALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAoAAAAAAABiAAAAAAIAYgAAAAACAAsAAAAAAwALAAAAAAEACwAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAEACwAAAAADAAsAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAADAAsAAAAAAQALAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAgALAAAAAAIACwAAAAABAAsAAAAAAAALAAAAAAMACwAAAAABAAcAAAAAAAALAAAAAAIACwAAAAADAAsAAAAAAQALAAAAAAEACwAAAAADAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,2: ind: -1,2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAQAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAIAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -226,39 +235,12 @@ entities: chunkCollection: version: 2 nodes: - - node: - angle: 1.5707963267948966 rad - color: '#FFFF00FF' - id: Arrows - decals: - 606: 23,2 - - node: - angle: 3.141592653589793 rad - color: '#FFFF00FF' - id: Arrows - decals: - 607: 31,2 - node: color: '#FFFFFFFF' - id: Arrows + id: Box decals: - 605: 30,2 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 608: 24,2 - 609: 25,2 - 610: 26,2 - 611: 27,2 - 612: 28,2 - 613: 29,2 - 668: 27,40 - 669: 27,41 - 670: 28,41 - 671: 30,41 - 672: 31,41 - 673: 31,40 + 725: 48,3 + 726: 48,4 - node: color: '#D4D4D428' id: BrickCornerOverlayNE @@ -286,22 +268,6 @@ entities: decals: 385: 36,10 450: 37,12 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 678: 12,23 - 679: 13,23 - 680: 14,23 - 681: 12,26 - 682: 13,26 - 683: 14,26 - 691: 14,25 - 692: 13,25 - 693: 12,25 - 694: 12,22 - 695: 13,22 - 696: 14,22 - node: color: '#FFFFFFFF' id: Dirt @@ -324,93 +290,56 @@ entities: 348: 58,13 349: 58,12 350: 57,15 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 689: 11,23 - 698: 11,22 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 688: 11,26 - 697: 11,25 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallNE - decals: - 665: 21,25 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 666: 26,25 + 710: 29,-8 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 721: 23,-9 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 655: 21,32 - 656: 21,31 - 657: 21,30 - 658: 21,29 - 659: 21,28 - 660: 21,27 - 661: 21,26 + 722: 23,-10 + 723: 23,-11 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 644: 25,33 - 645: 24,33 - 646: 23,33 - 647: 22,33 - 648: 19,33 - 649: 18,33 - 650: 17,33 + 713: 24,-9 + 714: 25,-9 + 715: 26,-9 + 716: 27,-9 + 717: 28,-9 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 631: 26,26 - 632: 26,27 - 633: 26,28 - 634: 26,29 - 635: 26,30 - 636: 26,31 - 637: 26,32 - 638: 20,27 - 639: 20,28 - 640: 20,29 - 641: 20,30 - 642: 20,31 - 643: 20,32 + 707: 29,-7 + 708: 29,-6 + 709: 29,-5 + 718: 29,-10 + 719: 29,-11 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 651: 22,25 - 652: 23,25 - 653: 24,25 - 654: 25,25 - - node: - color: '#FFFFFFFF' - id: WarningLineCorner - decals: - 662: 21,33 + 700: 22,-8 + 701: 23,-8 + 702: 24,-8 + 703: 25,-8 + 704: 26,-8 + 705: 27,-8 + 724: 28,-8 - node: color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 663: 20,33 - 664: 26,33 - - node: - color: '#FFFFFFFF' - id: body - decals: - 699: 42,13 + 720: 29,-9 - type: GridAtmosphere version: 2 data: @@ -438,7 +367,7 @@ entities: 1,1: 0: 65523 1,2: - 0: 47280 + 0: 47282 1,3: 0: 49087 1,-1: @@ -446,9 +375,9 @@ entities: 1,4: 0: 267 2,0: - 0: 47919 + 0: 47887 2,1: - 0: 65520 + 0: 65522 2,2: 0: 65520 2,3: @@ -458,9 +387,9 @@ entities: 2,4: 0: 15 3,0: - 0: 15275 + 0: 15243 3,1: - 0: 48120 + 0: 48122 3,2: 0: 65520 3,3: @@ -482,7 +411,7 @@ entities: 0,-5: 1: 61440 0,-3: - 0: 63094 + 0: 63351 -1,-3: 0: 192 1: 13107 @@ -497,9 +426,9 @@ entities: 1,-5: 1: 61440 2,-4: - 0: 24816 + 0: 61680 2,-3: - 0: 28775 + 0: 28927 2,-2: 0: 1911 2,-5: @@ -517,19 +446,25 @@ entities: 4,-3: 0: 62207 4,-2: - 0: 57343 + 0: 20479 4,-1: 0: 65535 + -3,2: + 1: 32768 + -3,3: + 1: 128 -2,3: 0: 61167 - -2,1: - 0: 51360 -2,2: - 0: 61152 + 0: 61153 + -2,4: + 0: 3265 -2,0: 1: 8738 -2,-1: 1: 11818 + -2,1: + 0: 52416 -2,-4: 1: 43562 -2,-5: @@ -550,51 +485,58 @@ entities: 4,-5: 1: 61440 5,-4: - 0: 39408 + 0: 55792 5,-3: - 0: 64721 + 0: 56529 5,-2: - 0: 52701 + 0: 285 + 2: 52224 5,-1: - 0: 56669 + 0: 4561 + 3: 49152 5,-5: 1: 61440 5,0: - 0: 52509 + 0: 52497 + 3: 12 6,-4: 0: 240 2: 57344 6,-3: - 0: 65424 - 2: 12 + 0: 65520 6,-2: - 0: 65535 + 0: 61167 6,-1: - 0: 65263 + 0: 8958 + 4: 32768 6,-5: 1: 61440 6,0: - 0: 65294 + 0: 65282 + 4: 8 7,-4: 0: 240 2: 12288 7,-3: - 2: 3 - 0: 65408 + 0: 65520 7,-2: 0: 65535 7,-1: - 0: 23893 + 0: 19541 + 4: 4096 7,-5: 1: 61440 7,0: - 0: 65357 + 4: 1 + 0: 65356 8,-4: 0: 240 8,-3: - 0: 20208 + 0: 65520 + 8,-2: + 0: 65535 4,4: - 0: 61295 + 0: 12079 5,1: 0: 56799 5,2: @@ -602,15 +544,15 @@ entities: 5,3: 0: 56785 5,4: - 0: 65293 + 0: 3853 6,1: 0: 30719 6,2: 0: 65520 6,3: - 0: 61182 + 0: 65534 6,4: - 0: 65294 + 0: 3855 7,1: 0: 2303 7,2: @@ -618,15 +560,13 @@ entities: 7,3: 0: 65535 7,4: - 0: 65295 + 0: 3855 8,1: 0: 8191 8,2: 0: 30583 8,3: 0: 30583 - -2,4: - 0: 3264 -1,4: 0: 4080 0,7: @@ -638,71 +578,60 @@ entities: 1,8: 0: 15167 2,5: - 0: 64136 + 0: 2060 2,6: - 0: 35576 + 0: 2060 2,7: - 0: 34824 + 0: 19652 3,5: - 0: 65535 + 0: 59239 3,6: - 0: 65535 + 0: 10087 3,7: - 0: 65327 - 2,8: - 0: 35624 - 3,8: - 0: 65295 + 0: 30583 4,5: - 0: 61438 + 0: 30591 4,6: - 0: 254 - 3: 24576 + 0: 7 + 2: 57344 4,7: - 3: 6 - 4: 26112 - 5,6: - 0: 13038 - 5: 32768 - 5,7: - 0: 13107 - 5: 8 - 6: 34816 + 2: 61166 5,5: - 0: 61152 - 5,8: - 0: 36851 + 0: 15 + 1: 60928 + 5,6: + 2: 61440 + 1: 238 + 5,7: + 2: 65535 6,5: - 0: 65520 + 0: 52239 + 1: 4352 6,6: - 0: 52479 - 5: 4096 + 1: 17 + 2: 12288 + 0: 51404 6,7: - 5: 1 - 6: 4352 - 0: 52428 - 6,8: - 0: 65532 + 2: 13107 + 0: 36044 7,5: - 0: 65262 + 0: 30479 7,6: - 0: 30576 + 0: 30583 7,7: - 0: 32759 - 7,8: - 0: 65521 + 0: 32631 8,4: - 0: 65287 + 0: 3847 8,5: - 0: 30310 + 0: 30711 8,6: - 0: 30582 + 0: 30583 8,7: 0: 63351 8,0: 0: 3822 8,-1: - 0: 61156 + 0: 61152 9,0: 0: 20479 9,1: @@ -714,7 +643,7 @@ entities: 9,-1: 0: 65520 9,4: - 0: 65519 + 0: 61423 10,0: 0: 12765 10,2: @@ -740,45 +669,45 @@ entities: 11,4: 0: 61663 12,0: - 0: 62399 + 0: 62383 12,1: - 0: 32767 - 12,2: - 0: 29815 - 12,3: - 0: 3541 - 8,8: 0: 65535 + 12,2: + 0: 62719 + 12,3: + 0: 4095 + 8,8: + 0: 65527 + 9,5: + 0: 61182 9,6: 0: 30464 9,7: - 0: 29303 - 9,5: - 0: 61166 + 0: 30578 9,8: - 0: 65527 + 0: 65522 10,5: - 0: 65422 + 0: 63726 10,6: 0: 58606 10,7: 0: 49390 10,8: - 0: 18252 + 0: 53196 11,5: 0: 61679 11,6: - 0: 62207 + 0: 61695 11,7: 0: 61695 11,8: - 0: 4095 + 0: 61678 12,4: - 0: 47359 + 0: 61695 12,5: - 0: 59583 + 0: 57599 12,6: - 0: 52991 + 0: 36606 0,9: 0: 1 -1,9: @@ -789,6 +718,8 @@ entities: 1: 136 1,9: 0: 3822 + 2,8: + 0: 35616 2,9: 0: 35775 2,10: @@ -798,6 +729,8 @@ entities: 1: 61134 2,12: 1: 238 + 3,8: + 0: 65280 3,9: 0: 65535 3,10: @@ -809,7 +742,7 @@ entities: 4,8: 0: 65504 4,9: - 0: 62463 + 0: 65535 4,10: 0: 3808 4,11: @@ -817,21 +750,26 @@ entities: 4,12: 1: 8738 0: 34944 + 5,8: + 0: 40912 5,9: - 0: 39048 - 5: 8738 + 0: 48059 5,10: 0: 4088 5,11: 1: 240 + 6,8: + 0: 65520 6,9: - 0: 15283 + 0: 48051 6,10: 0: 955 6,11: 1: 240 + 7,8: + 0: 65520 7,9: - 0: 12272 + 0: 65520 7,10: 0: 255 7,11: @@ -839,22 +777,22 @@ entities: 7,12: 0: 53076 8,9: - 0: 61426 + 0: 65522 + 8,10: + 0: 255 8,11: 1: 240 - 8,10: - 0: 238 8,12: 0: 30503 9,9: 0: 65520 9,10: - 0: 238 + 0: 255 1: 57344 9,11: 1: 61166 9,12: - 1: 16462 + 1: 49358 0: 11808 10,10: 1: 61440 @@ -880,7 +818,7 @@ entities: 0: 28672 1: 238 12,7: - 0: 61164 + 0: 61160 12,8: 0: 61166 13,4: @@ -923,6 +861,7 @@ entities: 1: 4369 16,6: 1: 273 + 0: 4096 12,9: 0: 57582 12,10: @@ -931,7 +870,7 @@ entities: 12,12: 0: 30583 13,9: - 0: 29439 + 0: 29247 13,10: 0: 119 1: 61440 @@ -951,10 +890,10 @@ entities: 1: 4369 0: 52428 15,9: - 0: 13107 + 0: 12851 1: 34952 15,10: - 0: 13107 + 0: 13106 1: 34952 15,11: 0: 13107 @@ -966,20 +905,18 @@ entities: 1: 1 8,-5: 1: 61440 - 8,-2: - 0: 61166 9,-4: - 0: 59632 + 0: 57584 9,-3: - 0: 1918 + 0: 4078 9,-2: 0: 61182 9,-5: 1: 12288 10,-4: - 0: 61936 + 0: 61680 10,-3: - 0: 1375 + 0: 4095 10,-2: 0: 65535 11,-4: @@ -993,11 +930,11 @@ entities: 12,-4: 0: 4915 1: 8 - 12,-1: - 0: 47886 12,-5: 0: 61440 1: 2048 + 12,-1: + 0: 36366 13,-4: 1: 15 13,-1: @@ -1013,8 +950,8 @@ entities: 14,-1: 0: 65322 14,-5: - 0: 12288 - 1: 18176 + 0: 12834 + 1: 17749 14,-2: 0: 8192 14,0: @@ -1023,6 +960,13 @@ entities: 0: 65287 15,0: 0: 4095 + 14,-6: + 1: 20480 + 0: 8192 + 15,-8: + 1: 3840 + 16,-8: + 1: 3840 13,1: 0: 65535 13,2: @@ -1030,9 +974,9 @@ entities: 13,3: 0: 1911 14,1: - 0: 18244 + 0: 53188 14,2: - 0: 26214 + 0: 26350 15,1: 0: 30583 15,2: @@ -1085,6 +1029,7 @@ entities: 1: 15 16,-1: 0: 26112 + 1: 4 17,0: 1: 4369 17,-1: @@ -1095,14 +1040,16 @@ entities: 0: 1029 1: 8738 16,-2: - 1: 546 + 1: 16930 0: 1028 17,-4: - 1: 4096 + 1: 4369 17,-3: 1: 4369 17,-2: 1: 4369 + 17,-5: + 1: 4369 16,12: 0: 1 12,13: @@ -1127,8 +1074,8 @@ entities: 1: 15 0: 1792 13,15: - 1: 28673 - 0: 14 + 1: 28679 + 0: 8 14,13: 1: 12561 0: 2252 @@ -1144,7 +1091,7 @@ entities: 0: 9011 1: 34952 15,14: - 0: 13091 + 0: 29475 1: 2184 15,15: 0: 273 @@ -1170,14 +1117,14 @@ entities: 1: 3979 8,14: 0: 2048 - 9,13: - 0: 802 - 1: 34956 9,14: 0: 3840 1: 14 9,15: 1: 15 + 9,13: + 0: 546 + 1: 34956 10,13: 1: 65280 10,14: @@ -1187,6 +1134,20 @@ entities: 1: 15 -1,10: 1: 34952 + 16,-6: + 0: 1284 + 1: 12834 + 16,-5: + 1: 1 + 16,-7: + 1: 8738 + 0: 1028 + 17,-8: + 1: 4352 + 17,-7: + 1: 4369 + 17,-6: + 1: 4369 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1218,26 +1179,11 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 235 - moles: - - 27.225372 - - 102.419266 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -1267,23 +1213,6 @@ entities: temperature: 293.15 moles: - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - 6666.982 - 0 - 0 @@ -1293,13 +1222,513 @@ entities: - 0 - 0 - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap - type: ImplicitRoof + - uid: 3564 + components: + - type: MetaData + name: Prison Station + - type: Transform + pos: 150.92255,68.575584 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: CAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-2: + ind: 0,-2 + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGIAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABiAAAAAAMAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAYgAAAAAAAGIAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAgBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAABiAAAAAAAAYgAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAYgAAAAADAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-3: + ind: 0,-3 + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAwAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEACAAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAA== + version: 7 + 0,-4: + ind: 0,-4 + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAA== + version: 7 + 0,-5: + ind: 0,-5 + tiles: CAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAA== + version: 7 + 0,-6: + ind: 0,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-3: + ind: 1,-3 + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAAcAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAACAA== + version: 7 + 1,-4: + ind: 1,-4 + tiles: YgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAAcAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-2: + ind: 1,-2 + tiles: YgAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAADABEAAAAAAQADAAAAAAEAAwAAAAAAABEAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAMAAwAAAAABAAMAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwBiAAAAAAEAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAABEAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwARAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAARAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAMAEQAAAAABAGIAAAAAAwBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAAwAAAAAAAAMAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAEQAAAAABAAMAAAAAAQADAAAAAAMAEQAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAA== + version: 7 + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 2,-2: + ind: 2,-2 + tiles: BwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 2,-4: + ind: 2,-4 + tiles: YgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-5: + ind: 1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAACAA== + version: 7 + 2,-5: + ind: 2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 15 + 0,-1: + 0: 40413 + 1,0: + 0: 7 + 1,-1: + 0: 17749 + 0,-4: + 0: 40413 + 0,-5: + 0: 39389 + 0,-3: + 0: 40413 + 0,-2: + 0: 40413 + 1,-4: + 0: 17749 + 1,-3: + 0: 17749 + 1,-2: + 0: 18261 + 1,-5: + 0: 17493 + 0,-8: + 0: 55773 + 0,-9: + 0: 55773 + 0,-7: + 0: 55773 + 0,-6: + 0: 55773 + 1,-8: + 0: 21589 + 1,-7: + 0: 21589 + 1,-6: + 0: 21621 + 1,-9: + 0: 21521 + 2,-8: + 1: 60928 + 2,-7: + 1: 61166 + 2,-6: + 1: 61166 + 3,-8: + 1: 65294 + 3,-7: + 1: 65535 + 3,-6: + 1: 65535 + 3,-9: + 1: 61152 + 4,-8: + 1: 65287 + 4,-7: + 1: 65535 + 4,-6: + 1: 65535 + 0,-12: + 0: 55773 + 0,-13: + 0: 55709 + 0,-11: + 0: 55805 + 1: 1536 + 0,-10: + 0: 55773 + 1,-12: + 0: 4125 + 1: 34816 + 1,-11: + 0: 4881 + 1: 35976 + 1,-10: + 0: 4145 + 1: 8 + 1,-13: + 0: 21573 + 2,-12: + 0: 7 + 1: 56576 + 2,-11: + 1: 57301 + 2,-10: + 1: 3269 + 3,-11: + 1: 65522 + 3,-12: + 1: 26112 + 3,-10: + 1: 1634 + 4,-12: + 1: 30704 + 4,-11: + 1: 65520 + 4,-10: + 1: 30704 + 4,-9: + 1: 63344 + 0,-16: + 0: 56733 + 0,-17: + 0: 56729 + 0,-15: + 0: 56733 + 0,-14: + 0: 56733 + 1,-16: + 0: 21829 + 1,-15: + 0: 21829 + 1,-14: + 0: 21831 + 1,-17: + 0: 21828 + 2,-16: + 1: 34952 + 2,-15: + 2: 2176 + 3,-16: + 1: 65331 + 3: 8 + 3,-15: + 4: 544 + 1: 2184 + 3,-17: + 1: 12014 + 4,-16: + 3: 3 + 1: 62216 + 4,-15: + 1: 819 + 4,-14: + 1: 30704 + 4,-13: + 1: 30704 + 0,-20: + 0: 56793 + 0,-21: + 0: 56793 + 0,-19: + 0: 56793 + 0,-18: + 0: 56793 + 1,-20: + 0: 21844 + 1,-19: + 0: 30036 + 1,-18: + 0: 21844 + 1,-21: + 0: 30036 + 4,-17: + 1: 35775 + 0,-24: + 0: 61440 + 0,-23: + 0: 56793 + 0,-22: + 0: 56793 + 1,-24: + 0: 28672 + 1,-23: + 0: 21844 + 1,-22: + 0: 21844 + 5,-12: + 1: 65535 + 5,-11: + 1: 65535 + 5,-10: + 1: 65535 + 5,-9: + 1: 65535 + 5,-13: + 1: 65535 + 5,-8: + 1: 61166 + 6,-12: + 1: 48115 + 6,-11: + 1: 48115 + 6,-10: + 1: 48115 + 6,-9: + 1: 48115 + 6,-13: + 1: 48115 + 6,-8: + 1: 64435 + 7,-12: + 1: 13104 + 7,-11: + 1: 13104 + 7,-10: + 1: 13104 + 7,-9: + 1: 47920 + 7,-13: + 1: 13104 + 8,-9: + 1: 65280 + 5,-16: + 1: 65487 + 5,-15: + 1: 53247 + 5,-14: + 1: 65535 + 5,-17: + 1: 65535 + 6,-16: + 1: 48907 + 6,-15: + 1: 3071 + 6,-14: + 1: 48115 + 6,-17: + 1: 48123 + 7,-16: + 1: 30495 + 7,-15: + 1: 1911 + 7,-14: + 1: 13104 + 7,-17: + 1: 65535 + 8,-16: + 1: 65287 + 8,-15: + 1: 4095 + 5,-7: + 1: 36607 + 5,-6: + 1: 61166 + 5,-5: + 1: 61166 + 6,-7: + 1: 7099 + 6,-6: + 1: 65535 + 6,-5: + 1: 65535 + 7,-8: + 1: 65520 + 7,-7: + 1: 4095 + 7,-6: + 1: 30583 + 7,-5: + 1: 32631 + 8,-8: + 1: 65532 + 8,-7: + 1: 4095 + 8,-6: + 1: 13107 + 8,-5: + 1: 819 + 9,-9: + 1: 13056 + 9,-8: + 1: 13105 + 9,-7: + 1: 819 + 8,-17: + 1: 30583 + 9,-16: + 1: 4352 + 9,-15: + 1: 273 + 4,-18: + 1: 34816 + 5,-18: + 1: 65348 + 5,-19: + 1: 16384 + 6,-18: + 1: 47872 + 7,-18: + 1: 65280 + 8,-18: + 1: 30464 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance - proto: AirAlarm entities: + - uid: 56 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 2937 + - 2938 + - 2939 + - 2940 + - 2928 + - 2918 + - 2919 + - 2925 + - 4214 + - 4211 + - 4213 + - 4215 + - 4207 + - 3323 + - 3322 + - 3315 + - 3242 + - uid: 1602 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 2901 + - 2694 + - 1758 + - 2760 + - 1752 + - 2790 + - 2757 - uid: 2968 components: - type: Transform @@ -1312,10 +1741,66 @@ entities: - 4187 - 3981 - 3980 - - 2977 - 2978 - - 2980 - 2979 + - uid: 3162 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 4212 + - 4215 + - 4211 + - 3146 + - 3098 + - 3099 + - 3145 + - 3130 + - 2921 + - 3246 + - 11451 + - 11454 + - 11450 + - uid: 5210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 2904 + - 8511 + - 2826 + - 8510 + - 2827 + - 8512 + - 2828 + - 2071 + - 8530 + - uid: 5864 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 6714 + - 6713 + - 6751 + - 6752 + - 6736 + - 6735 + - 6727 + - 1579 + - 1462 + - 4215 + - 2935 + - 2936 + - 11482 + - 11500 - uid: 6165 components: - type: Transform @@ -1357,6 +1842,7 @@ entities: - 8245 - 8244 - 4181 + - 2464 - uid: 6524 components: - type: Transform @@ -1370,6 +1856,8 @@ entities: - 4144 - 4145 - 4154 + - 1477 + - 7733 - uid: 6526 components: - type: Transform @@ -1381,6 +1869,7 @@ entities: - 4186 - 4051 - 8221 + - 2073 - uid: 6527 components: - type: Transform @@ -1389,23 +1878,23 @@ entities: parent: 2 - type: DeviceList devices: - - 3953 - - 3949 - - 3963 + - 4188 - 4189 - - 3772 - - 3773 + - 4191 + - 2974 + - 2978 + - 3801 - 3810 - 3788 - - 3801 + - 3772 + - 3963 + - 3773 + - 3949 + - 3953 - 3820 - 3800 - - 4191 - - 4188 - - 2974 - - 2973 - - 2978 - - 2977 + - 8549 + - 8559 - uid: 6529 components: - type: Transform @@ -1413,28 +1902,26 @@ entities: parent: 2 - type: DeviceList devices: - - 4191 - - 4190 - - 4189 - - 4192 + - 3729 + - 3757 + - 3730 + - 3999 + - 3727 + - 3726 + - 2974 + - 2972 + - 2970 + - 2962 + - 2963 + - 2964 + - 8527 + - 2790 - 4218 - 4217 - - 2973 - - 2974 - - 2970 - - 2964 - - 2963 - - 2962 - - 2897 - - 2896 - - 2971 - - 2972 - - 3726 - - 3727 - - 3731 - - 3730 - - 3757 - - 3729 + - 4189 + - 4190 + - 4191 + - 4192 - uid: 6530 components: - type: Transform @@ -1443,12 +1930,11 @@ entities: parent: 2 - type: DeviceList devices: - - 2972 - - 2971 - - 4191 - - 4190 - - 3705 - 3721 + - 3705 + - 4190 + - 4191 + - 2972 - uid: 6531 components: - type: Transform @@ -1556,21 +2042,21 @@ entities: - uid: 6537 components: - type: Transform - pos: 49.5,10.5 + pos: 48.5,10.5 parent: 2 - type: DeviceList devices: - - 2956 - - 2957 - - 4197 - - 4196 - - 4195 - - 3929 - - 3924 - - 3912 - - 3894 - - 3902 + - 3922 + - 3927 - 3901 + - 3902 + - 3894 + - 3912 + - 4195 + - 4196 + - 4197 + - 2957 + - 2956 - uid: 6538 components: - type: Transform @@ -1594,12 +2080,12 @@ entities: - 6540 - 2949 - 2950 - - 4204 - 4200 - 4199 - 4198 - 3611 - 3609 + - 3349 - uid: 6542 components: - type: Transform @@ -1607,23 +2093,16 @@ entities: parent: 2 - type: DeviceList devices: - - 8224 - - 8226 - - 6540 + - 3390 + - 3526 + - 3525 + - 3349 + - 4205 + - 4200 + - 8227 - 8225 - 2947 - - 3525 - - 3390 - - 3389 - - 3526 - - 3564 - - 3563 - - 4204 - - 4202 - - 4203 - - 4205 - - 8227 - - 4200 + - 6540 - uid: 6543 components: - type: Transform @@ -1636,8 +2115,8 @@ entities: - 2947 - 8227 - 4207 - - 4204 - 3518 + - 3349 - uid: 6545 components: - type: Transform @@ -1666,7 +2145,6 @@ entities: - uid: 6547 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,10.5 parent: 2 - type: DeviceList @@ -1680,112 +2158,6 @@ entities: - 3316 - 3419 - 3418 - - uid: 6548 - components: - - type: Transform - pos: 26.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 2921 - - 3246 - - 4212 - - 4215 - - 4211 - - 3130 - - 3145 - - 3099 - - 3146 - - 3098 - - uid: 6550 - components: - - type: Transform - pos: 11.5,29.5 - parent: 2 - - type: DeviceList - devices: - - 2915 - - 2914 - - 2913 - - 4219 - - 4226 - - 4227 - - 4245 - - 4242 - - 4231 - - 4228 - - uid: 6551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 4219 - - 4218 - - 4211 - - 4226 - - 2913 - - 2914 - - 2915 - - 2894 - - 2895 - - 2917 - - 2916 - - 3007 - - 3072 - - uid: 6552 - components: - - type: Transform - pos: 27.5,20.5 - parent: 2 - - type: DeviceList - devices: - - 4218 - - 2067 - - 2071 - - 2898 - - 2899 - - 2903 - - 2902 - - 2896 - - 2897 - - 2894 - - 2895 - - 2891 - - 2893 - - 2983 - - 2984 - - 4191 - - uid: 6553 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - - type: DeviceList - devices: - - 4218 - - 2071 - - 2067 - - 4272 - - 4221 - - 2909 - - 2910 - - 2911 - - 2905 - - 2906 - - 2908 - - 2907 - - 2901 - - 2900 - - 2898 - - 4275 - - 4223 - - 2738 - - 2728 - - 2741 - - 2729 - uid: 6554 components: - type: Transform @@ -1802,21 +2174,18 @@ entities: - uid: 6555 components: - type: Transform - pos: 16.5,40.5 + pos: 17.5,40.5 parent: 2 - type: DeviceList devices: - - 2067 - - 4272 - - 2908 - - 2907 - - 2906 - - 2905 - 396 - - 925 - - 1554 - - 3965 + - 8475 - 2725 + - 3965 + - 1554 + - 1624 + - 8534 + - 4272 - 4222 - uid: 6556 components: @@ -1825,28 +2194,13 @@ entities: parent: 2 - type: DeviceList devices: - - 2067 - - 4221 - - 2909 - - 2910 - - 2911 - - 1309 + - 2406 + - 1741 + - 1735 - 3038 - - 1280 - - 1278 - - uid: 6557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,36.5 - parent: 2 - - type: DeviceList - devices: - - 2904 - - 2172 - - 2828 - - 2826 - - 2827 + - 1309 + - 4221 + - 8534 - uid: 6558 components: - type: Transform @@ -1854,12 +2208,14 @@ entities: parent: 2 - type: DeviceList devices: + - 8395 + - 2912 + - 2850 + - 8498 + - 2849 - 2071 - 4225 - - 2849 - - 2850 - 2867 - - 2912 - uid: 6559 components: - type: Transform @@ -1868,65 +2224,23 @@ entities: - type: DeviceList devices: - 2904 - - 2901 - - 2900 + - 8472 + - 8473 + - 8474 + - 8471 + - 7657 + - 1831 + - 8477 - 2912 - - 2899 - - 2902 - - 2903 - - 2172 - - 4225 - - 2067 - - 2071 - - 4218 - - 2876 - - 2874 - - 2869 - 3931 - - 3932 - - uid: 6561 - components: - - type: Transform - pos: 23.5,8.5 - parent: 2 - - type: DeviceList - devices: - - 2937 - - 2938 - - 2939 - - 2940 - - 2928 - - 2918 - - 2919 - - 2925 - - 4214 - - 4211 - - 4213 - - 4215 - - 4207 - - 3323 - - 3322 - - 3315 - - 3242 - - uid: 6562 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 2 - - type: DeviceList - devices: - - 8229 - - 8226 - - 2935 - - 4203 - - 4205 - - 4204 - - 4215 - - 3263 - - 3266 - - 3285 - - 3282 - - 3281 + - 2869 + - 7658 + - 1934 + - 2071 + - 8530 + - 2790 + - 4225 + - 8534 - uid: 6563 components: - type: Transform @@ -1935,15 +2249,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2944 - - 4216 - - 4202 - - 4204 - - 3092 - - 3128 - - 3082 - 3097 - - 8224 + - 11536 + - 10339 + - 3094 + - 11530 + - 2628 + - 4216 + - 2944 - uid: 6564 components: - type: Transform @@ -1951,21 +2264,23 @@ entities: parent: 2 - type: DeviceList devices: - - 2936 - - 2940 - - 2939 - - 2938 - - 2937 - 2941 - 2942 - 2943 + - 2937 + - 2938 + - 2939 + - 2940 + - 2936 + - 2935 - 3246 + - 3244 + - 3243 - 4215 - - 4212 - 4216 - 4214 - - 3243 - - 3244 + - 4212 + - 1462 - uid: 6572 components: - type: Transform @@ -1986,6 +2301,18 @@ entities: - 2964 - 2963 - 2962 + - uid: 6614 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 6682 + - 6681 + - 8539 + - 6659 + - 6671 - uid: 7434 components: - type: Transform @@ -1994,39 +2321,30 @@ entities: parent: 2 - type: DeviceList devices: - - 2920 + - 4212 + - 4211 + - 8233 + - 4218 + - 4214 + - 2897 - 2919 - 2918 - - 2917 - 2916 - 2922 - - 4211 - - 4219 - - 4214 - - 8233 - - 4212 - 3118 - 3119 - 3185 - 3184 + - 2802 + - 8545 + - 8546 + - 11449 - uid: 8220 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,47.5 parent: 2 - - type: DeviceList - devices: - - 4188 - - 4187 - - 4186 - - 4010 - - 4015 - - 4043 - - 4035 - - 2980 - - 2979 - - 8221 - uid: 8222 components: - type: Transform @@ -2036,7 +2354,6 @@ entities: - type: DeviceList devices: - 4216 - - 4202 - 4197 - 4215 - 4217 @@ -2070,19 +2387,15 @@ entities: parent: 2 - type: DeviceList devices: - - 8225 - - 8229 - - 2931 - - 2932 - - 2930 + - 3349 - 4205 - - 4203 - - 4204 - 4213 - - 3370 - 3360 - - 3379 + - 3370 - 3378 + - 3379 + - 2931 + - 8225 - uid: 8236 components: - type: Transform @@ -2096,6 +2409,7 @@ entities: - 4210 - 4211 - 3200 + - 11438 - uid: 8240 components: - type: Transform @@ -2117,118 +2431,374 @@ entities: parent: 2 - type: DeviceList devices: - - 2932 - - 2931 - - 2930 - - 2929 - - 2928 - - 4214 - - 4213 - - 4207 - - 4205 - - 3348 - - 3351 + - 6463 - 3380 - - 3350 -- proto: AirAlarmElectronics + - 3351 + - 3348 + - 4205 + - 4207 + - 4213 + - 4214 + - 2928 + - 2929 + - 2931 + - uid: 8509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,39.5 + parent: 2 + - type: DeviceList + devices: + - 8474 + - 8473 + - 8472 + - 2406 + - 1741 + - 1735 + - 8475 + - 4223 + - 1589 + - 1278 + - 1280 + - 4221 + - 8534 + - 2071 + - 4272 + - uid: 8532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 1606 + - 8527 + - 2901 + - 8471 + - 7657 + - 1831 + - 8477 + - 3932 + - 8484 + - 8507 + - 8508 + - 2876 + - 2874 + - 2757 + - 2790 + - 2071 + - 6688 + - 4191 + - uid: 8538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 6682 + - 6681 + - 6675 + - 8539 + - 8543 + - 6656 + - 6654 + - 6650 + - 6651 + - uid: 8540 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 6675 + - 6688 + - 2790 + - uid: 8542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 6681 + - 6675 + - 4218 + - 6688 + - 8543 + - 6644 + - 6643 + - uid: 8544 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 4218 + - 6675 + - 4211 + - 4191 + - 2916 + - uid: 10232 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 3564 + - type: DeviceList + devices: + - 9636 + - 9638 + - 9637 + - 9639 + - 10225 + - 10226 + - 10228 + - 10231 + - 10030 + - 10057 + - 10056 + - 10029 + - 10031 + - uid: 10233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-31.5 + parent: 3564 + - type: DeviceList + devices: + - 9631 + - 9632 + - 9633 + - 9634 + - 9635 + - 9636 + - 9638 + - 9637 + - 9640 + - 9641 + - 10222 + - 10225 + - 10226 + - 10228 + - 10231 + - 10229 + - 10227 + - 10230 + - 10114 + - 10113 + - 10116 + - 10115 + - 10014 + - 10017 + - 10079 + - 10080 + - 10013 + - 10016 + - 10015 + - 10012 + - 9926 + - uid: 10234 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 3564 + - type: DeviceList + devices: + - 9635 + - 10225 + - 10226 + - 10228 + - 10227 + - 10176 + - 10180 + - 10181 + - 10178 + - 10177 + - 10182 + - uid: 10235 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 3564 + - type: DeviceList + devices: + - 9631 + - 9632 + - 10225 + - 10226 + - 10228 + - 10230 + - 10198 + - 10200 + - 10199 + - 10197 + - uid: 10236 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 3564 + - type: DeviceList + devices: + - 9634 + - 9633 + - 10225 + - 10226 + - 10228 + - 10229 + - 10129 + - 10132 + - 10133 + - 10130 + - 10131 + - 10134 + - uid: 10237 + components: + - type: Transform + pos: 16.5,-64.5 + parent: 3564 + - type: DeviceList + devices: + - 9647 + - 9646 + - 10222 + - 10220 + - 10221 + - 9808 + - uid: 10238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-62.5 + parent: 3564 + - type: DeviceList + devices: + - 9645 + - 9646 + - 10220 + - 10221 + - 10222 + - 9809 + - 9807 + - uid: 10239 + components: + - type: Transform + pos: 19.5,-62.5 + parent: 3564 + - type: DeviceList + devices: + - 9641 + - 9640 + - 9645 + - 9642 + - 9643 + - 9644 + - 9649 + - 9647 + - 9650 + - 10220 + - 10221 + - 10222 + - 10223 + - 10224 + - 10225 + - 10226 + - 10228 + - 9838 + - 9818 + - 9827 + - 9828 + - 9871 + - 9853 + - 9854 + - 9872 + - uid: 10240 + components: + - type: Transform + pos: 31.5,-62.5 + parent: 3564 + - type: DeviceList + devices: + - 9648 + - 9649 + - 10222 + - 10223 + - 10224 + - 9835 + - 9837 + - 9836 + - 9834 + - uid: 10241 + components: + - type: Transform + pos: 31.5,-57.5 + parent: 3564 + - type: DeviceList + devices: + - 9642 + - 9643 + - 9644 + - 9648 + - 10224 + - 10222 + - 10223 + - 9878 + - 9880 + - 9881 + - 9879 + - uid: 11566 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 7749 +- proto: AirCanister entities: - - uid: 765 + - uid: 53 components: - type: Transform - pos: 9.5,-12.5 + pos: 38.5,-7.5 parent: 2 - - uid: 1932 + - uid: 1941 components: - type: Transform - pos: 9.5,-12.5 + pos: 38.5,-6.5 parent: 2 -- proto: Airlock +- proto: AirlockAtmosphericsLocked entities: - - uid: 28 + - uid: 17 components: - type: Transform - pos: 9.5,1.5 + pos: 30.5,-0.5 parent: 2 - - uid: 29 + - uid: 223 components: - type: Transform - pos: 13.5,1.5 + pos: 30.5,-2.5 parent: 2 - - uid: 3230 - components: - - type: Transform - pos: 30.5,1.5 - parent: 2 - - uid: 4054 - components: - - type: Transform - pos: 44.5,-10.5 - parent: 2 - - uid: 4055 - components: - - type: Transform - pos: 42.5,-10.5 - parent: 2 - - uid: 4056 - components: - - type: Transform - pos: 40.5,-10.5 - parent: 2 -- proto: AirlockArmoryLocked - entities: - - uid: 1010 + - uid: 2056 components: - type: Transform pos: 36.5,-6.5 parent: 2 -- proto: AirlockAtmosphericsLocked - entities: - - uid: 1731 + - type: Door + secondsUntilStateChange: -12907.095 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 6838 components: - type: Transform - pos: 28.5,23.5 - parent: 2 - - uid: 1788 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 3239 - components: - - type: Transform - pos: 31.5,30.5 - parent: 2 -- proto: AirlockBarKitchenLocked - entities: - - uid: 1080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-2.5 - parent: 2 -- proto: AirlockBarLocked - entities: - - uid: 1518 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 2 -- proto: AirlockCargoLocked - entities: - - uid: 88 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - - uid: 205 - components: - - type: Transform - pos: 16.5,22.5 - parent: 2 - - uid: 759 - components: - - type: Transform - pos: 16.5,25.5 + pos: 30.5,1.5 parent: 2 - proto: AirlockChapelLocked entities: @@ -2237,21 +2807,6 @@ entities: - type: Transform pos: 0.5,16.5 parent: 2 -- proto: AirlockChiefEngineerLocked - entities: - - uid: 1601 - components: - - type: Transform - pos: 42.5,33.5 - parent: 2 -- proto: AirlockChiefMedicalOfficerGlassLocked - entities: - - uid: 551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 - parent: 2 - proto: AirlockCommandLocked entities: - uid: 971 @@ -2259,6 +2814,11 @@ entities: - type: Transform pos: 16.5,57.5 parent: 2 + - uid: 6120 + components: + - type: Transform + pos: 18.5,57.5 + parent: 2 - proto: AirlockEngineering entities: - uid: 4564 @@ -2266,20 +2826,28 @@ entities: - type: Transform pos: 33.5,49.5 parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,36.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,34.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,34.5 + parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,20.5 - parent: 2 - - uid: 686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 2 - uid: 760 components: - type: Transform @@ -2300,29 +2868,27 @@ entities: - type: Transform pos: 53.5,20.5 parent: 2 - - uid: 1744 + - uid: 2903 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,20.5 + pos: 35.5,21.5 parent: 2 - - uid: 1760 + - uid: 3113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,23.5 - parent: 2 - - uid: 2757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,36.5 - parent: 2 - - uid: 7603 - components: - - type: Transform - pos: 37.5,30.5 + pos: 2.5,6.5 parent: 2 + - type: AccessReader + access: + - - Borg + - - Captain + - - CentralCommand + - - ChiefEngineer + - - Engineering + - - Research + - - ResearchDirector + - - StationAi - proto: AirlockEVALocked entities: - uid: 1928 @@ -2331,218 +2897,101 @@ entities: rot: 3.141592653589793 rad pos: 53.5,38.5 parent: 2 -- proto: AirlockExternalAtmosphericsLocked +- proto: AirlockExternalCommandLocked entities: - - uid: 1438 + - uid: 140 components: - type: Transform - pos: 20.5,39.5 + pos: 15.5,58.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 1512: + 657: - - DoorStatus - DoorBolt - - uid: 1512 + - uid: 376 components: - type: Transform - pos: 18.5,39.5 + pos: 55.5,60.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 657 + components: + - type: Transform + pos: 16.5,60.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 1438: - - - DoorStatus - - DoorBolt - - uid: 1831 - components: - - type: Transform - pos: 11.5,38.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 1934: - - - DoorStatus - - DoorBolt - - uid: 1934 - components: - - type: Transform - pos: 11.5,40.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 1831: + 140: - - DoorStatus - DoorBolt - proto: AirlockExternalEngineeringLocked entities: - uid: 843 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - type: Door - secondsUntilStateChange: -6325.9316 - state: Opening - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 6731: - - - DoorStatus - - DoorBolt - lastSignals: - DoorStatus: True - - uid: 2744 components: - type: Transform pos: 58.5,63.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 2745: - - - DoorStatus - - DoorBolt - - uid: 2745 + - uid: 7389 components: - type: Transform - pos: 58.5,65.5 + pos: -0.5,-10.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 2744: - - - DoorStatus - - DoorBolt - - uid: 4265 - components: - - type: Transform - pos: 16.5,60.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4506: - - - DoorStatus - - DoorBolt - - uid: 4499 - components: - - type: Transform - pos: 55.5,60.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4500: - - - DoorStatus - - DoorBolt - - uid: 4500 - components: - - type: Transform - pos: 53.5,60.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4499: - - - DoorStatus - - DoorBolt - - uid: 4506 - components: - - type: Transform - pos: 15.5,58.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4265: - - - DoorStatus - - DoorBolt - - uid: 4558 - components: - - type: Transform - pos: 39.5,50.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4724: - - - DoorStatus - - DoorBolt - - uid: 4724 - components: - - type: Transform - pos: 41.5,50.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4558: - - - DoorStatus - - DoorBolt - - uid: 4725 - components: - - type: Transform - pos: 37.5,53.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4726: - - - DoorStatus - - DoorBolt - - uid: 4726 - components: - - type: Transform - pos: 36.5,54.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 4725: - - - DoorStatus - - DoorBolt - - uid: 6731 - components: - - type: Transform - pos: 0.5,-10.5 - parent: 2 - - type: Door - secondsUntilStateChange: -6328.9985 - state: Opening - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 843: - - - DoorStatus - - DoorBolt - lastSignals: - DoorStatus: True -- proto: AirlockExternalGlassAtmosphericsLocked +- proto: AirlockExternalGlass entities: - - uid: 621 + - uid: 454 components: - type: Transform - pos: 0.5,36.5 + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6692: + - - DoorStatus + - InputA + - uid: 504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6692: + - - DoorStatus + - InputB + - uid: 2984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,27.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 504: + - - DoorStatus + - DoorBolt + 454: + - - DoorStatus + - DoorBolt +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 707 + components: + - type: Transform + pos: 11.5,40.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 @@ -2552,6 +3001,30 @@ entities: - - DoorStatus - DoorBolt - uid: 721 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 707: + - - DoorStatus + - DoorBolt + - uid: 1528 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1587: + - - DoorStatus + - DoorBolt + - uid: 1587 components: - type: Transform pos: 0.5,34.5 @@ -2560,21 +3033,9 @@ entities: invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 621: + 1528: - - DoorStatus - DoorBolt -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 631 - components: - - type: Transform - pos: 10.5,23.5 - parent: 2 - - uid: 1954 - components: - - type: Transform - pos: 10.5,25.5 - parent: 2 - proto: AirlockExternalGlassLocked entities: - uid: 1829 @@ -2601,18 +3062,13 @@ entities: 1847: - - DoorStatus - DoorBolt - - uid: 2502 + - uid: 3232 components: - type: Transform - pos: 62.5,48.5 + pos: 57.5,-18.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2515: - - - DoorStatus - - DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 2515 @@ -2621,13 +3077,6 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,48.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6658: - - - DoorStatus - - InputA - - - DockStatus - - InputB - type: DeviceLinkSink invokeCounter: 1 - proto: AirlockExternalGlassShuttleEmergencyLocked @@ -2661,117 +3110,54 @@ entities: - InputB - type: DeviceLinkSink invokeCounter: 1 -- proto: AirlockExternalGlassShuttleLocked + - uid: 3266 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3235: + - - DoorStatus + - InputA + - - DockStatus + - InputB +- proto: AirlockExternalGlassShuttleEscape entities: - - uid: 729 + - uid: 674 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,23.5 + pos: 10.5,20.5 parent: 2 - - uid: 1795 + - uid: 1952 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,25.5 + pos: 10.5,24.5 parent: 2 -- proto: AirlockFreezerLocked +- proto: AirlockExternalLocked entities: - - uid: 1517 + - uid: 2795 components: - type: Transform - pos: 27.5,-10.5 + pos: 62.5,59.5 parent: 2 - proto: AirlockGlass entities: - - uid: 381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,3.5 - parent: 2 - - uid: 2779 + - uid: 4740 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-9.5 + pos: 55.5,36.5 parent: 2 - - uid: 3228 +- proto: AirlockGlassShuttle + entities: + - uid: 10382 components: - type: Transform - pos: 30.5,-0.5 - parent: 2 - - uid: 4064 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 2 - - uid: 5900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,28.5 - parent: 2 - - uid: 8278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,5.5 - parent: 2 - - uid: 8279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,6.5 - parent: 2 - - uid: 8280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 - parent: 2 - - uid: 8281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,4.5 - parent: 2 - - uid: 8282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - - uid: 8283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - - uid: 8284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,28.5 - parent: 2 - - uid: 8285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-11.5 - parent: 2 - - uid: 8287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,38.5 - parent: 2 - - uid: 8288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,38.5 - parent: 2 + pos: 22.5,-72.5 + parent: 3564 - proto: AirlockHeadOfPersonnelLocked entities: - uid: 7177 @@ -2779,14 +3165,6 @@ entities: - type: Transform pos: 42.5,26.5 parent: 2 -- proto: AirlockHydroponicsLocked - entities: - - uid: 1570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 2 - proto: AirlockMaintCommandLocked entities: - uid: 2366 @@ -2794,6 +3172,13 @@ entities: - type: Transform pos: 62.5,27.5 parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 51 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 - proto: AirlockMaintHydroLocked entities: - uid: 3587 @@ -2804,59 +3189,48 @@ entities: parent: 2 - proto: AirlockMaintLocked entities: - - uid: 182 + - uid: 686 components: - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 1578 - components: - - type: Transform - pos: 50.5,20.5 - parent: 2 - - uid: 2122 - components: - - type: Transform - pos: 51.5,22.5 - parent: 2 - - type: Door - secondsUntilStateChange: -56215.523 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - uid: 2123 - components: - - type: Transform - pos: 51.5,18.5 + pos: 6.5,-9.5 parent: 2 - uid: 2672 components: - type: Transform pos: 3.5,-8.5 parent: 2 - - uid: 3588 + - uid: 3711 components: - type: Transform - pos: 32.5,-10.5 + pos: 19.5,20.5 parent: 2 - uid: 5219 components: - type: Transform pos: 43.5,-14.5 parent: 2 + - uid: 5971 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 - uid: 7181 components: - type: Transform pos: 61.5,55.5 parent: 2 -- proto: AirlockMaintSecLocked - entities: - - uid: 1519 + - uid: 8548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-8.5 + pos: 36.5,18.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 8547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,17.5 parent: 2 - proto: AirlockMedicalMorgueLocked entities: @@ -2872,20 +3246,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,14.5 parent: 2 -- proto: AirlockQuartermasterGlassLocked - entities: - - uid: 1921 - components: - - type: Transform - pos: 13.5,29.5 - parent: 2 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 1505 - components: - - type: Transform - pos: 50.5,12.5 - parent: 2 - proto: AirlockScienceLocked entities: - uid: 260 @@ -2898,45 +3258,165 @@ entities: - type: Transform pos: 50.5,0.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3928: + - - DoorStatus + - DoorBolt + - uid: 3928 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1259: + - - DoorStatus + - DoorBolt + - uid: 4941 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 - uid: 6995 components: - type: Transform pos: 57.5,6.5 parent: 2 -- proto: AirSensor +- proto: AirlockSecurityLocked entities: - - uid: 2067 + - uid: 10378 components: - type: Transform - pos: 28.5,28.5 + rot: -1.5707963267948966 rad + pos: 18.5,-60.5 + parent: 3564 + - uid: 10379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-67.5 + parent: 3564 + - uid: 10380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-64.5 + parent: 3564 + - uid: 10381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-70.5 + parent: 3564 + - uid: 10383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 3564 + - uid: 10384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-41.5 + parent: 3564 + - uid: 10385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-43.5 + parent: 3564 + - uid: 10386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-43.5 + parent: 3564 + - uid: 10387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-39.5 + parent: 3564 + - uid: 10388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-39.5 + parent: 3564 +- proto: AirSensor + entities: + - uid: 1462 + components: + - type: Transform + pos: 28.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6559 - - 6553 - - 6555 - - 6556 - - 6552 + - 5864 + - 6564 - uid: 2071 components: - type: Transform - pos: 34.5,32.5 + pos: 34.5,34.5 parent: 2 - type: DeviceNetwork deviceLists: + - 8509 + - 5210 - 6559 - 6558 - - 6553 - - 6552 + - 8532 - uid: 2172 components: - type: Transform pos: 35.5,39.5 parent: 2 + - uid: 2628 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6563 + - uid: 2757 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8532 + - 1602 + - uid: 2790 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 6557 - 6559 + - 8532 + - 1602 + - 8540 + - 6529 + - uid: 3349 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6543 + - 6539 + - 8231 + - 6542 - uid: 4186 components: - type: Transform @@ -2944,7 +3424,6 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8220 - 6526 - uid: 4187 components: @@ -2954,7 +3433,6 @@ entities: - type: DeviceNetwork deviceLists: - 2968 - - 8220 - 6526 - uid: 4188 components: @@ -2963,19 +3441,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6527 - 2968 - - 8220 + - 6527 - uid: 4189 components: - type: Transform - pos: 52.5,33.5 + pos: 55.5,33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6529 - - 6527 - 2968 + - 6527 + - 6529 - uid: 4190 components: - type: Transform @@ -2983,8 +3460,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6529 - 6530 + - 6529 - uid: 4191 components: - type: Transform @@ -2992,12 +3469,13 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6552 - - 6529 - 6530 - 6532 - 6572 + - 8532 + - 8544 - 6527 + - 6529 - uid: 4192 components: - type: Transform @@ -3005,9 +3483,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6529 - 6532 - 6531 + - 6529 - uid: 4193 components: - type: Transform @@ -3085,14 +3563,14 @@ entities: - uid: 4200 components: - type: Transform - pos: 46.5,-16.5 + pos: 45.5,-16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6542 - 6539 - 8228 - 6538 + - 6542 - uid: 4201 components: - type: Transform @@ -3102,39 +3580,6 @@ entities: deviceLists: - 6535 - 6536 - - uid: 4202 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8222 - - 6563 - - 6542 - - uid: 4203 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6542 - - 6562 - - 8231 - - uid: 4204 - components: - - type: Transform - pos: 38.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6563 - - 6542 - - 6539 - - 6562 - - 8231 - - 6543 - uid: 4205 components: - type: Transform @@ -3142,10 +3587,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6542 - - 6562 - - 8231 - 8241 + - 8231 + - 6542 - uid: 4206 components: - type: Transform @@ -3158,11 +3602,13 @@ entities: - uid: 4207 components: - type: Transform + anchored: False pos: 5.5,2.5 parent: 2 + - type: Physics + bodyType: Dynamic - type: DeviceNetwork deviceLists: - - 6561 - 6547 - 6546 - 6165 @@ -3170,6 +3616,7 @@ entities: - 8241 - 8240 - 6543 + - 56 - uid: 4208 components: - type: Transform @@ -3205,11 +3652,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6551 - - 6561 - - 7434 - - 6548 + - 56 - 8236 + - 8544 + - 3162 + - 7434 - uid: 4212 components: - type: Transform @@ -3218,8 +3665,8 @@ entities: - type: DeviceNetwork deviceLists: - 6564 + - 3162 - 7434 - - 6548 - uid: 4213 components: - type: Transform @@ -3227,10 +3674,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8231 - - 6561 - 6165 - 8241 + - 56 + - 8231 - uid: 4214 components: - type: Transform @@ -3238,11 +3685,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6564 - - 6561 - - 7434 + - 56 - 6165 - 8241 + - 6564 + - 7434 - uid: 4215 components: - type: Transform @@ -3251,10 +3698,10 @@ entities: - type: DeviceNetwork deviceLists: - 8222 + - 56 + - 5864 - 6564 - - 6562 - - 6561 - - 6548 + - 3162 - uid: 4216 components: - type: Transform @@ -3265,8 +3712,8 @@ entities: - 6572 - 8222 - 6533 - - 6563 - 6564 + - 6563 - uid: 4217 components: - type: Transform @@ -3274,10 +3721,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6529 - 6572 - 6531 - 8222 + - 6529 - uid: 4218 components: - type: Transform @@ -3285,21 +3732,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6559 - - 6553 - - 6552 - - 6551 - - 6529 - - uid: 4219 - components: - - type: Transform - pos: 18.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6551 - - 6550 + - 8542 + - 8544 - 7434 + - 6529 - uid: 4221 components: - type: Transform @@ -3307,8 +3743,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6553 - 6556 + - 8509 - uid: 4222 components: - type: Transform @@ -3316,8 +3752,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6555 - 6554 + - 6555 - uid: 4225 components: - type: Transform @@ -3327,15 +3763,6 @@ entities: deviceLists: - 6559 - 6558 - - uid: 4226 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6551 - - 6550 - uid: 4272 components: - type: Transform @@ -3343,9 +3770,57 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6553 - - 6555 - 6554 + - 8509 + - 6555 + - uid: 6675 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8538 + - 8542 + - 8540 + - 8544 + - uid: 6681 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6614 + - 8538 + - 8542 + - uid: 6682 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6614 + - 8538 + - uid: 6688 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8532 + - 8542 + - 8540 + - uid: 7749 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11566 - uid: 8227 components: - type: Transform @@ -3353,9 +3828,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6542 - 6165 - 6543 + - 6542 - uid: 8233 components: - type: Transform @@ -3363,9 +3838,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 7434 - 8236 - 6547 + - 7434 - uid: 8243 components: - type: Transform @@ -3382,12 +3857,160 @@ entities: - type: DeviceNetwork deviceLists: - 6523 -- proto: AltarSpawner - entities: - - uid: 317 + - uid: 8530 components: - type: Transform - pos: -5.5,14.5 + pos: 33.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5210 + - 6559 + - uid: 8534 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6556 + - 8509 + - 6555 + - 6559 + - uid: 10220 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - 10237 + - 10239 + - uid: 10221 + components: + - type: Transform + pos: 17.5,-65.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - 10237 + - 10239 + - uid: 10222 + components: + - type: Transform + pos: 22.5,-62.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - 10237 + - 10239 + - 10241 + - 10240 + - 10233 + - uid: 10223 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10241 + - 10240 + - uid: 10224 + components: + - type: Transform + pos: 31.5,-65.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10241 + - 10240 + - uid: 10225 + components: + - type: Transform + pos: 22.5,-52.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10233 + - 10232 + - 10236 + - 10234 + - 10235 + - uid: 10226 + components: + - type: Transform + pos: 22.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10233 + - 10232 + - 10236 + - 10234 + - 10235 + - uid: 10227 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - 10234 + - uid: 10228 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - 10233 + - 10232 + - 10236 + - 10234 + - 10235 + - uid: 10229 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - 10236 + - uid: 10230 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - 10235 + - uid: 10231 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - 10232 +- proto: AltarSpawner + entities: + - uid: 11349 + components: + - type: Transform + pos: -4.5,14.5 parent: 2 - proto: AlwaysPoweredLightExterior entities: @@ -3426,6 +4049,18 @@ entities: - type: Transform pos: -0.5,-16.5 parent: 2 + - uid: 4420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,63.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,63.5 + parent: 2 - uid: 5753 components: - type: Transform @@ -3442,15 +4077,46 @@ entities: - type: Transform pos: 55.5,-3.5 parent: 2 -- proto: AmmoTechFab - entities: - - uid: 1370 + - uid: 7114 components: - type: Transform - pos: 40.5,-4.5 + rot: -1.5707963267948966 rad + pos: 66.5,-11.5 parent: 2 + - uid: 11207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-21.5 + parent: 2 +- proto: AmeController + entities: + - uid: 7798 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 +- proto: AmmoTechFab + entities: + - uid: 9796 + components: + - type: Transform + pos: 30.5,-69.5 + parent: 3564 - proto: APCBasic entities: + - uid: 3024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,22.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,28.5 + parent: 2 - uid: 4916 components: - type: Transform @@ -3503,17 +4169,6 @@ entities: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 4930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 - parent: 2 - - uid: 4931 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - uid: 4932 components: - type: Transform @@ -3522,7 +4177,7 @@ entities: - uid: 4933 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 22.5,39.5 parent: 2 - uid: 4934 @@ -3531,12 +4186,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,31.5 parent: 2 - - uid: 4935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,34.5 - parent: 2 - uid: 4936 components: - type: Transform @@ -3549,21 +4198,10 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,12.5 parent: 2 - - uid: 4939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,11.5 - parent: 2 - - uid: 4941 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - uid: 4942 components: - type: Transform - rot: -1.5707963267948966 rad + rot: -3.141592653589793 rad pos: 59.5,4.5 parent: 2 - uid: 4943 @@ -3583,17 +4221,11 @@ entities: - type: Transform pos: 35.5,3.5 parent: 2 - - uid: 4946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-3.5 - parent: 2 - uid: 4948 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-11.5 + pos: 4.5,-10.5 parent: 2 - uid: 4949 components: @@ -3647,18 +4279,120 @@ entities: - type: Transform pos: 25.5,-13.5 parent: 2 -- proto: APCElectronics + - uid: 6164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,6.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,30.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,24.5 + parent: 2 +- proto: APCHighCapacity entities: - - uid: 2181 + - uid: 9462 components: - type: Transform - pos: 10.5,-12.5 - parent: 2 - - uid: 2183 + pos: 15.5,-39.5 + parent: 3564 + - uid: 9463 components: - type: Transform - pos: 10.5,-12.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 19.5,-39.5 + parent: 3564 + - uid: 9464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-31.5 + parent: 3564 + - uid: 9465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-31.5 + parent: 3564 + - uid: 9466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-30.5 + parent: 3564 + - uid: 9467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 3564 + - uid: 9468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-59.5 + parent: 3564 + - uid: 9469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-60.5 + parent: 3564 + - uid: 9470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-64.5 + parent: 3564 + - uid: 9471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-60.5 + parent: 3564 + - uid: 9472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-70.5 + parent: 3564 + - uid: 9473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-68.5 + parent: 3564 + - uid: 9651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-46.5 + parent: 3564 - proto: ArrivalsShuttleTimer entities: - uid: 6152 @@ -3680,10 +4414,40 @@ entities: parent: 2 - proto: AtmosDeviceFanDirectional entities: - - uid: 1009 + - uid: 102 components: - type: Transform - pos: 27.5,-10.5 + rot: -1.5707963267948966 rad + pos: 26.5,31.5 + parent: 2 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,60.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,63.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,50.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 37.5,53.5 parent: 2 - uid: 2611 components: @@ -3691,256 +4455,467 @@ entities: rot: 1.5707963267948966 rad pos: 64.5,48.5 parent: 2 + - uid: 2758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,59.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,20.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 - uid: 8276 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,60.5 parent: 2 - - uid: 8297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,65.5 - parent: 2 - - uid: 8298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,60.5 - parent: 2 - uid: 8299 components: - type: Transform pos: 57.5,-4.5 parent: 2 - - uid: 8300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,40.5 - parent: 2 - - uid: 8301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,36.5 - parent: 2 - - uid: 8302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,25.5 - parent: 2 - - uid: 8303 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,23.5 - parent: 2 - - uid: 8304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,26.5 - parent: 2 - - uid: 8305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,22.5 - parent: 2 - uid: 8306 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,12.5 parent: 2 - - uid: 8307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 2 - - uid: 8308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 2 - uid: 8309 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-12.5 parent: 2 + - uid: 10389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 3564 + - uid: 11565 + components: + - type: Transform + pos: 22.5,-72.5 + parent: 3564 - proto: AtmosFixBlockerMarker entities: - - uid: 1620 + - uid: 1713 components: - type: Transform - pos: 23.5,28.5 + pos: 23.5,-4.5 parent: 2 - - uid: 1621 + - uid: 1720 components: - type: Transform - pos: 23.5,27.5 + pos: 22.5,-4.5 parent: 2 - - uid: 1679 + - uid: 2858 components: - type: Transform - pos: 24.5,28.5 + pos: 23.5,-5.5 parent: 2 - - uid: 1680 + - uid: 3110 components: - type: Transform - pos: 24.5,27.5 + pos: 22.5,-5.5 parent: 2 - - uid: 1793 - components: - - type: Transform - pos: 21.5,39.5 - parent: 2 - - uid: 1794 - components: - - type: Transform - pos: 21.5,38.5 - parent: 2 - - uid: 1797 - components: - - type: Transform - pos: 21.5,37.5 - parent: 2 - - uid: 1798 - components: - - type: Transform - pos: 21.5,36.5 - parent: 2 -- proto: AtmosFixFreezerMarker - entities: - - uid: 1520 + - uid: 4025 components: - type: Transform pos: 29.5,-12.5 parent: 2 - - uid: 1529 + - uid: 4033 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 1530 + - uid: 4054 components: - type: Transform pos: 27.5,-12.5 parent: 2 - - uid: 1531 + - uid: 4055 components: - type: Transform pos: 26.5,-12.5 parent: 2 - - uid: 1532 + - uid: 4056 components: - type: Transform pos: 25.5,-12.5 parent: 2 - - uid: 2009 - components: - - type: Transform - pos: 29.5,-11.5 - parent: 2 - - uid: 2013 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 2 - - uid: 2056 - components: - - type: Transform - pos: 26.5,-11.5 - parent: 2 - - uid: 2331 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 2 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 1389 - components: - - type: Transform - pos: 18.5,27.5 - parent: 2 - - uid: 1455 - components: - - type: Transform - pos: 17.5,28.5 - parent: 2 - - uid: 1456 - components: - - type: Transform - pos: 17.5,27.5 - parent: 2 - - uid: 1457 - components: - - type: Transform - pos: 18.5,28.5 - parent: 2 -- proto: AtmosFixOxygenMarker - entities: - - uid: 1461 - components: - - type: Transform - pos: 17.5,31.5 - parent: 2 - - uid: 1676 + - uid: 7166 components: - type: Transform pos: 17.5,30.5 parent: 2 - - uid: 1677 + - uid: 7167 components: - type: Transform - pos: 18.5,30.5 + pos: 17.5,31.5 parent: 2 - - uid: 1678 + - uid: 7196 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 7200 components: - type: Transform pos: 18.5,31.5 parent: 2 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 17 + - uid: 7203 components: - type: Transform - pos: 24.5,31.5 + pos: 18.5,30.5 parent: 2 - - uid: 1395 + - uid: 7207 components: - type: Transform - pos: 23.5,30.5 + pos: 18.5,29.5 parent: 2 - - uid: 1483 + - uid: 7211 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: 20.5,28.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 7291 components: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 1661 + - uid: 7292 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: 23.5,27.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 7297 components: - type: Transform pos: 24.5,30.5 parent: 2 + - uid: 7356 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 9684 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 3564 + - uid: 9685 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 3564 + - uid: 9686 + components: + - type: Transform + pos: 17.5,-63.5 + parent: 3564 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 533 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 9682 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 3564 + - uid: 9683 + components: + - type: Transform + pos: 13.5,-58.5 + parent: 3564 +- proto: AtmosFixOxygenMarker + entities: + - uid: 216 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 3564 + - uid: 9681 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 3564 - proto: Autolathe entities: - - uid: 1536 + - uid: 848 components: - type: Transform - pos: 48.5,5.5 + pos: 54.5,21.5 parent: 2 - - uid: 2191 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 7795 components: - type: Transform - pos: 38.5,35.5 + pos: 52.5,7.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 8478 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices +- proto: BackgammonBoard + entities: + - uid: 10306 + components: + - type: Transform + pos: 16.5,-50.5 + parent: 3564 + - uid: 10311 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 3564 - proto: BagpipeInstrument entities: - uid: 1275 @@ -3953,12 +4928,19 @@ entities: - type: Transform pos: 37.848846,32.127415 parent: 1 -- proto: BarSign +- proto: BaseGasCondenser entities: - uid: 791 components: - type: Transform - pos: 27.5,1.5 + rot: -1.5707963267948966 rad + pos: 34.5,8.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-4.5 parent: 2 - proto: Bed entities: @@ -3992,26 +4974,11 @@ entities: - type: Transform pos: 44.5,-0.5 parent: 2 - - uid: 1547 - components: - - type: Transform - pos: 54.5,11.5 - parent: 2 - - uid: 2403 - components: - - type: Transform - pos: 59.5,20.5 - parent: 2 - uid: 4924 components: - type: Transform pos: 6.5,-3.5 parent: 2 - - uid: 7642 - components: - - type: Transform - pos: 11.5,30.5 - parent: 2 - uid: 8250 components: - type: Transform @@ -4062,12 +5029,132 @@ entities: - type: Transform pos: 10.5,-1.5 parent: 2 -- proto: BedsheetCaptain - entities: - - uid: 2405 + - uid: 8319 components: - type: Transform - pos: 59.5,20.5 + pos: 59.5,25.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + pos: 16.5,-52.5 + parent: 3564 + - uid: 9912 + components: + - type: Transform + pos: 16.5,-53.5 + parent: 3564 + - uid: 10270 + components: + - type: Transform + pos: 16.5,-49.5 + parent: 3564 + - uid: 10271 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 3564 + - uid: 10272 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 3564 + - uid: 10273 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 3564 + - uid: 10274 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 3564 + - uid: 10275 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 3564 + - uid: 10276 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 3564 + - uid: 10277 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 3564 + - uid: 10278 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 3564 + - uid: 10279 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 3564 + - uid: 10280 + components: + - type: Transform + pos: 29.5,-40.5 + parent: 3564 + - uid: 10281 + components: + - type: Transform + pos: 29.5,-41.5 + parent: 3564 + - uid: 10282 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 3564 + - uid: 10283 + components: + - type: Transform + pos: 29.5,-45.5 + parent: 3564 + - uid: 10284 + components: + - type: Transform + pos: 29.5,-48.5 + parent: 3564 + - uid: 10285 + components: + - type: Transform + pos: 29.5,-49.5 + parent: 3564 + - uid: 10286 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 3564 + - uid: 10287 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 3564 + - uid: 10390 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 3564 + - uid: 10391 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 3564 + - uid: 10392 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 3564 +- proto: BedsheetCaptain + entities: + - uid: 3272 + components: + - type: Transform + pos: 59.5,25.5 parent: 2 - proto: BedsheetMedical entities: @@ -4077,12 +5164,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,9.5 parent: 2 - - uid: 705 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,9.5 - parent: 2 - uid: 1279 components: - type: Transform @@ -4095,6 +5176,16 @@ entities: rot: 3.141592653589793 rad pos: 13.5,9.5 parent: 2 + - uid: 9732 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 3564 + - uid: 9733 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 3564 - proto: BedsheetOrange entities: - uid: 827 @@ -4115,21 +5206,144 @@ entities: rot: 1.5707963267948966 rad pos: 44.5,-0.5 parent: 2 -- proto: BedsheetQM - entities: - - uid: 7641 + - uid: 9913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,30.5 - parent: 2 -- proto: BedsheetRD - entities: - - uid: 1552 + pos: 16.5,-52.5 + parent: 3564 + - uid: 9914 components: - type: Transform - pos: 54.5,11.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 16.5,-53.5 + parent: 3564 + - uid: 10288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-49.5 + parent: 3564 + - uid: 10289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-48.5 + parent: 3564 + - uid: 10290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-45.5 + parent: 3564 + - uid: 10291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-44.5 + parent: 3564 + - uid: 10292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-37.5 + parent: 3564 + - uid: 10293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-36.5 + parent: 3564 + - uid: 10294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-32.5 + parent: 3564 + - uid: 10295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-33.5 + parent: 3564 + - uid: 10296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 3564 + - uid: 10297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-37.5 + parent: 3564 + - uid: 10298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-40.5 + parent: 3564 + - uid: 10299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-41.5 + parent: 3564 + - uid: 10300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-44.5 + parent: 3564 + - uid: 10301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-45.5 + parent: 3564 + - uid: 10302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-48.5 + parent: 3564 + - uid: 10303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-49.5 + parent: 3564 + - uid: 10304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-52.5 + parent: 3564 + - uid: 10305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-53.5 + parent: 3564 + - uid: 10393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 + parent: 3564 + - uid: 10394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 3564 + - uid: 10395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-45.5 + parent: 3564 - proto: BedsheetSpawner entities: - uid: 5 @@ -4142,18 +5356,6 @@ entities: - type: Transform pos: 7.5,3.5 parent: 2 -- proto: BenchBlueComfy - entities: - - uid: 5732 - components: - - type: Transform - pos: 26.5,7.5 - parent: 2 - - uid: 5734 - components: - - type: Transform - pos: 25.5,7.5 - parent: 2 - proto: BikeHorn entities: - uid: 7683 @@ -4175,25 +5377,15 @@ entities: - type: Transform pos: -8.5,12.5 parent: 2 - - uid: 357 + - uid: 465 components: - type: Transform - pos: -7.5,5.5 + pos: 24.5,26.5 parent: 2 - - uid: 382 + - uid: 635 components: - type: Transform - pos: -5.5,5.5 - parent: 2 - - uid: 454 - components: - - type: Transform - pos: 8.5,26.5 - parent: 2 - - uid: 504 - components: - - type: Transform - pos: 10.5,26.5 + pos: 10.5,22.5 parent: 2 - uid: 1254 components: @@ -4215,30 +5407,34 @@ entities: - type: Transform pos: 54.5,-2.5 parent: 2 - - uid: 1581 + - uid: 1601 components: - type: Transform - pos: 10.5,22.5 + pos: 26.5,31.5 parent: 2 - - uid: 1909 + - uid: 1956 components: - type: Transform - pos: 8.5,22.5 + pos: 10.5,26.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: 26.5,-11.5 parent: 2 - proto: BlockGameArcade entities: - - uid: 7006 + - uid: 10572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,49.5 - parent: 2 - - uid: 7007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,48.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 3564 - proto: BookAtmosAirAlarms entities: - uid: 7525 @@ -4253,11 +5449,16 @@ entities: parent: 2 - proto: BookAtmosDistro entities: - - uid: 7170 + - uid: 1504 components: - type: Transform - pos: 56.330864,29.44333 + pos: 56.5,29.5 parent: 2 + - uid: 10424 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 3564 - proto: BookAtmosVentsMore entities: - uid: 7171 @@ -4272,6 +5473,11 @@ entities: - type: Transform pos: 17.5,0.5 parent: 2 + - uid: 10425 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 3564 - proto: BookChemicalCompendium entities: - uid: 7125 @@ -4301,10 +5507,10 @@ entities: parent: 2 - proto: BookEngineersHandbook entities: - - uid: 7124 + - uid: 2280 components: - type: Transform - pos: 56.580864,29.656294 + pos: 56.5,29.5 parent: 2 - uid: 7526 components: @@ -4316,6 +5522,11 @@ entities: - type: Transform pos: 17.5,-0.5 parent: 2 + - uid: 10423 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 3564 - proto: BookHowToCookForFortySpaceman entities: - uid: 7534 @@ -4358,11 +5569,16 @@ entities: parent: 2 - proto: BookSecurity entities: - - uid: 7187 + - uid: 306 components: - type: Transform - pos: 34.231915,2.6751459 + pos: 34.5,2.5 parent: 2 + - uid: 10430 + components: + - type: Transform + pos: 33.5,-66.5 + parent: 3564 - proto: BookSpaceEncyclopedia entities: - uid: 2368 @@ -4382,10 +5598,10 @@ entities: parent: 2 - proto: BookSpaceLaw entities: - - uid: 6665 + - uid: 3164 components: - type: Transform - pos: 34.52879,2.3938959 + pos: 34.5,2.5 parent: 2 - uid: 7126 components: @@ -4397,11 +5613,6 @@ entities: - type: Transform pos: 17.5,0.5 parent: 2 - - uid: 7588 - components: - - type: Transform - pos: 57.5,17.5 - parent: 2 - proto: BookTheBookOfControl entities: - uid: 7529 @@ -4409,29 +5620,12 @@ entities: - type: Transform pos: 17.5,-0.5 parent: 2 -- proto: BoozeDispenser - entities: - - uid: 2863 - components: - - type: Transform - pos: 26.5,0.5 - parent: 2 - proto: BorgCharger entities: - - uid: 1815 + - uid: 5442 components: - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 2367 - components: - - type: Transform - pos: 54.5,9.5 - parent: 2 - - uid: 4007 - components: - - type: Transform - pos: 40.5,-9.5 + pos: 4.5,-3.5 parent: 2 - uid: 7624 components: @@ -4443,20 +5637,55 @@ entities: - type: Transform pos: 46.5,51.5 parent: 2 + - uid: 11208 + components: + - type: Transform + pos: 55.5,9.5 + parent: 2 - proto: BoxBeaker entities: - - uid: 2506 + - uid: 807 components: - type: Transform - pos: 48.5,0.05 + pos: 29.5,8.5 parent: 2 - - uid: 7420 + - uid: 7815 components: - type: Transform - pos: 32.5,10.5 + pos: 53.5,9.5 parent: 2 - proto: BoxFolderClipboard entities: + - uid: 1698 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 - uid: 7199 components: - type: Transform @@ -4467,6 +5696,11 @@ entities: - type: Transform pos: 63.5,30.5 parent: 2 + - uid: 7218 + components: + - type: Transform + pos: 52.5,8.5 + parent: 2 - uid: 7248 components: - type: Transform @@ -4492,13 +5726,67 @@ entities: - type: Transform pos: 17.5,-0.5 parent: 2 + - uid: 8234 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + pos: 32.5,-66.5 + parent: 3564 + - uid: 10536 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 3564 + - uid: 10579 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 3564 + - uid: 10607 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 3564 + - uid: 11513 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 6053 + components: + - type: Transform + pos: 59.5,21.5 + parent: 2 - proto: BoxID entities: + - uid: 1930 + components: + - type: Transform + pos: 59.5,28.5 + parent: 2 - uid: 7205 components: - type: Transform pos: 58.5,31.5 parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 10610 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 3564 - proto: BoxMesonScanners entities: - uid: 6832 @@ -4506,56 +5794,159 @@ entities: - type: Transform pos: 35.5,2.5 parent: 2 +- proto: BoxNitrileGloves + entities: + - uid: 10611 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 3564 - proto: BoxPillCanister entities: - - uid: 7418 + - uid: 118 components: - type: Transform - pos: 33.5,10.5 + pos: 30.5,8.5 parent: 2 +- proto: BoxSterileMask + entities: + - uid: 10609 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 3564 - proto: BoxSyringe entities: - - uid: 7419 + - uid: 1525 components: - type: Transform - pos: 33.5,10.5 + pos: 30.5,8.5 parent: 2 + - uid: 10343 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 3564 - proto: BoxTrashbag entities: - - uid: 7660 + - uid: 2404 components: - type: Transform - pos: -0.5,7.5 + pos: 42.5,21.5 + parent: 2 +- proto: BrigmedicIDCard + entities: + - uid: 11116 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 3564 +- proto: Brutepack1 + entities: + - uid: 3227 + components: + - type: Transform + pos: 20.5,15.5 parent: 2 - proto: Bucket entities: - - uid: 131 + - uid: 2400 components: - type: Transform - pos: 12.5,-7.5 + pos: 42.5,21.5 parent: 2 - - uid: 133 + - uid: 10554 components: - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 2182 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 7655 - components: - - type: Transform - pos: -4.5,6.5 - parent: 2 + pos: 11.5,-20.5 + parent: 3564 - proto: CableApcExtension entities: + - uid: 318 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 52.5,6.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 - uid: 1883 components: - type: Transform pos: 39.5,52.5 parent: 2 + - uid: 1932 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 - uid: 2176 components: - type: Transform @@ -4566,11 +5957,116 @@ entities: - type: Transform pos: 1.5,-10.5 parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 - uid: 4954 components: - type: Transform pos: 5.5,14.5 parent: 2 + - uid: 5010 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 - uid: 5432 components: - type: Transform @@ -4626,11 +6122,6 @@ entities: - type: Transform pos: 50.5,11.5 parent: 2 - - uid: 5454 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - uid: 5455 components: - type: Transform @@ -4641,11 +6132,6 @@ entities: - type: Transform pos: 51.5,6.5 parent: 2 - - uid: 5457 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - uid: 5459 components: - type: Transform @@ -5689,7 +7175,7 @@ entities: - uid: 5695 components: - type: Transform - pos: 51.5,34.5 + pos: 45.5,38.5 parent: 2 - uid: 5696 components: @@ -5731,11 +7217,6 @@ entities: - type: Transform pos: 49.5,24.5 parent: 2 - - uid: 5704 - components: - - type: Transform - pos: 48.5,24.5 - parent: 2 - uid: 5705 components: - type: Transform @@ -6161,36 +7642,6 @@ entities: - type: Transform pos: 20.5,33.5 parent: 2 - - uid: 5847 - components: - - type: Transform - pos: 20.5,32.5 - parent: 2 - - uid: 5848 - components: - - type: Transform - pos: 20.5,31.5 - parent: 2 - - uid: 5849 - components: - - type: Transform - pos: 20.5,30.5 - parent: 2 - - uid: 5850 - components: - - type: Transform - pos: 20.5,29.5 - parent: 2 - - uid: 5851 - components: - - type: Transform - pos: 20.5,28.5 - parent: 2 - - uid: 5852 - components: - - type: Transform - pos: 20.5,27.5 - parent: 2 - uid: 5853 components: - type: Transform @@ -6206,70 +7657,25 @@ entities: - type: Transform pos: 26.5,33.5 parent: 2 - - uid: 5856 - components: - - type: Transform - pos: 26.5,32.5 - parent: 2 - - uid: 5857 - components: - - type: Transform - pos: 26.5,31.5 - parent: 2 - - uid: 5858 - components: - - type: Transform - pos: 26.5,30.5 - parent: 2 - - uid: 5859 - components: - - type: Transform - pos: 26.5,29.5 - parent: 2 - - uid: 5860 - components: - - type: Transform - pos: 26.5,28.5 - parent: 2 - - uid: 5861 - components: - - type: Transform - pos: 26.5,27.5 - parent: 2 - - uid: 5862 - components: - - type: Transform - pos: 26.5,26.5 - parent: 2 - - uid: 5864 - components: - - type: Transform - pos: 26.5,25.5 - parent: 2 - - uid: 5865 - components: - - type: Transform - pos: 26.5,23.5 - parent: 2 - uid: 5866 components: - type: Transform - pos: 26.5,22.5 + pos: 26.5,-3.5 parent: 2 - uid: 5867 components: - type: Transform - pos: 26.5,24.5 + pos: 25.5,-3.5 parent: 2 - uid: 5868 components: - type: Transform - pos: 25.5,22.5 + pos: 25.5,-2.5 parent: 2 - uid: 5869 components: - type: Transform - pos: 24.5,22.5 + pos: 25.5,-1.5 parent: 2 - uid: 5878 components: @@ -6296,16 +7702,6 @@ entities: - type: Transform pos: 43.5,32.5 parent: 2 - - uid: 5883 - components: - - type: Transform - pos: 44.5,32.5 - parent: 2 - - uid: 5884 - components: - - type: Transform - pos: 45.5,32.5 - parent: 2 - uid: 5885 components: - type: Transform @@ -6531,26 +7927,6 @@ entities: - type: Transform pos: 34.5,22.5 parent: 2 - - uid: 5933 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - - uid: 5934 - components: - - type: Transform - pos: 15.5,28.5 - parent: 2 - - uid: 5935 - components: - - type: Transform - pos: 15.5,27.5 - parent: 2 - - uid: 5936 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - uid: 5937 components: - type: Transform @@ -6581,11 +7957,6 @@ entities: - type: Transform pos: 18.5,20.5 parent: 2 - - uid: 5943 - components: - - type: Transform - pos: 20.5,20.5 - parent: 2 - uid: 5944 components: - type: Transform @@ -6676,11 +8047,6 @@ entities: - type: Transform pos: 18.5,22.5 parent: 2 - - uid: 5962 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - uid: 5963 components: - type: Transform @@ -6706,71 +8072,6 @@ entities: - type: Transform pos: 22.5,18.5 parent: 2 - - uid: 5968 - components: - - type: Transform - pos: 22.5,19.5 - parent: 2 - - uid: 5969 - components: - - type: Transform - pos: 23.5,19.5 - parent: 2 - - uid: 5970 - components: - - type: Transform - pos: 24.5,19.5 - parent: 2 - - uid: 5971 - components: - - type: Transform - pos: 25.5,19.5 - parent: 2 - - uid: 5972 - components: - - type: Transform - pos: 26.5,19.5 - parent: 2 - - uid: 5973 - components: - - type: Transform - pos: 27.5,19.5 - parent: 2 - - uid: 5974 - components: - - type: Transform - pos: 28.5,19.5 - parent: 2 - - uid: 5975 - components: - - type: Transform - pos: 29.5,19.5 - parent: 2 - - uid: 5976 - components: - - type: Transform - pos: 30.5,19.5 - parent: 2 - - uid: 5977 - components: - - type: Transform - pos: 31.5,19.5 - parent: 2 - - uid: 5978 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 - - uid: 5979 - components: - - type: Transform - pos: 33.5,19.5 - parent: 2 - - uid: 5980 - components: - - type: Transform - pos: 34.5,19.5 - parent: 2 - uid: 5981 components: - type: Transform @@ -7441,6 +8742,11 @@ entities: - type: Transform pos: -2.5,17.5 parent: 2 + - uid: 6149 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 - uid: 6150 components: - type: Transform @@ -7486,6 +8792,11 @@ entities: - type: Transform pos: 3.5,15.5 parent: 2 + - uid: 6166 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 - uid: 6167 components: - type: Transform @@ -7496,11 +8807,21 @@ entities: - type: Transform pos: 3.5,14.5 parent: 2 + - uid: 6169 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 - uid: 6171 components: - type: Transform pos: 3.5,17.5 parent: 2 + - uid: 6172 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 - uid: 6178 components: - type: Transform @@ -7556,26 +8877,6 @@ entities: - type: Transform pos: 20.5,-2.5 parent: 2 - - uid: 6190 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 2 - - uid: 6191 - components: - - type: Transform - pos: 19.5,-3.5 - parent: 2 - - uid: 6192 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - - uid: 6193 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 2 - uid: 6194 components: - type: Transform @@ -7616,11 +8917,6 @@ entities: - type: Transform pos: 13.5,-7.5 parent: 2 - - uid: 6202 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - uid: 6203 components: - type: Transform @@ -7766,11 +9062,6 @@ entities: - type: Transform pos: 9.5,0.5 parent: 2 - - uid: 6233 - components: - - type: Transform - pos: 9.5,1.5 - parent: 2 - uid: 6234 components: - type: Transform @@ -7781,11 +9072,6 @@ entities: - type: Transform pos: 13.5,0.5 parent: 2 - - uid: 6236 - components: - - type: Transform - pos: 13.5,1.5 - parent: 2 - uid: 6237 components: - type: Transform @@ -8271,60 +9557,10 @@ entities: - type: Transform pos: 57.5,-15.5 parent: 2 - - uid: 6338 + - uid: 6339 components: - type: Transform - pos: 40.5,-13.5 - parent: 2 - - uid: 6340 - components: - - type: Transform - pos: 40.5,-12.5 - parent: 2 - - uid: 6341 - components: - - type: Transform - pos: 41.5,-12.5 - parent: 2 - - uid: 6342 - components: - - type: Transform - pos: 42.5,-12.5 - parent: 2 - - uid: 6382 - components: - - type: Transform - pos: 39.5,-12.5 - parent: 2 - - uid: 6415 - components: - - type: Transform - pos: 38.5,-12.5 - parent: 2 - - uid: 6419 - components: - - type: Transform - pos: 38.5,-11.5 - parent: 2 - - uid: 6420 - components: - - type: Transform - pos: 38.5,-10.5 - parent: 2 - - uid: 6421 - components: - - type: Transform - pos: 37.5,-10.5 - parent: 2 - - uid: 6422 - components: - - type: Transform - pos: 36.5,-10.5 - parent: 2 - - uid: 6423 - components: - - type: Transform - pos: 35.5,-10.5 + pos: 25.5,-4.5 parent: 2 - uid: 6424 components: @@ -8396,66 +9632,6 @@ entities: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 6438 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 2 - - uid: 6439 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 2 - - uid: 6440 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 - - uid: 6441 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 2 - - uid: 6442 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 2 - - uid: 6443 - components: - - type: Transform - pos: 36.5,-6.5 - parent: 2 - - uid: 6444 - components: - - type: Transform - pos: 37.5,-6.5 - parent: 2 - - uid: 6445 - components: - - type: Transform - pos: 38.5,-6.5 - parent: 2 - - uid: 6446 - components: - - type: Transform - pos: 39.5,-6.5 - parent: 2 - - uid: 6447 - components: - - type: Transform - pos: 40.5,-6.5 - parent: 2 - - uid: 6448 - components: - - type: Transform - pos: 41.5,-6.5 - parent: 2 - - uid: 6449 - components: - - type: Transform - pos: 42.5,-6.5 - parent: 2 - uid: 6450 components: - type: Transform @@ -8486,121 +9662,11 @@ entities: - type: Transform pos: 41.5,-2.5 parent: 2 - - uid: 6456 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - uid: 6457 components: - type: Transform pos: 28.5,-3.5 parent: 2 - - uid: 6458 - components: - - type: Transform - pos: 28.5,-4.5 - parent: 2 - - uid: 6459 - components: - - type: Transform - pos: 28.5,-5.5 - parent: 2 - - uid: 6460 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 2 - - uid: 6461 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 2 - - uid: 6462 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 2 - - uid: 6463 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 2 - - uid: 6464 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 2 - - uid: 6465 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 2 - - uid: 6466 - components: - - type: Transform - pos: 29.5,-9.5 - parent: 2 - - uid: 6467 - components: - - type: Transform - pos: 30.5,-9.5 - parent: 2 - - uid: 6468 - components: - - type: Transform - pos: 29.5,-5.5 - parent: 2 - - uid: 6469 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 2 - - uid: 6470 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 2 - - uid: 6471 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 2 - - uid: 6472 - components: - - type: Transform - pos: 23.5,-3.5 - parent: 2 - - uid: 6473 - components: - - type: Transform - pos: 26.5,-3.5 - parent: 2 - - uid: 6474 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 6475 - components: - - type: Transform - pos: 26.5,-1.5 - parent: 2 - - uid: 6476 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 2 - - uid: 6477 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 2 - - uid: 6478 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 2 - uid: 6479 components: - type: Transform @@ -8821,75 +9887,2370 @@ entities: - type: Transform pos: 38.5,44.5 parent: 2 + - uid: 6571 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 - uid: 6597 components: - type: Transform - pos: 23.5,22.5 + pos: 25.5,-7.5 parent: 2 - - uid: 7290 + - uid: 6599 components: - type: Transform - pos: 26.5,-0.5 + pos: 24.5,-7.5 parent: 2 - - uid: 7291 + - uid: 6600 components: - type: Transform - pos: 25.5,-0.5 + pos: 23.5,-7.5 parent: 2 - - uid: 7292 + - uid: 6601 components: - type: Transform - pos: 24.5,-0.5 + pos: 25.5,-8.5 parent: 2 - - uid: 7293 + - uid: 6602 components: - type: Transform - pos: 27.5,-0.5 + pos: 25.5,-9.5 parent: 2 - - uid: 7294 + - uid: 6603 components: - type: Transform - pos: 28.5,-0.5 + pos: 27.5,-7.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + pos: 49.5,0.5 parent: 2 - uid: 7678 components: - type: Transform pos: 10.5,26.5 parent: 2 + - uid: 7729 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 - uid: 7827 components: - type: Transform pos: 1.5,34.5 parent: 2 - - uid: 8261 + - uid: 8262 components: - type: Transform - pos: 30.5,20.5 + pos: 57.5,-17.5 parent: 2 - - uid: 8265 + - uid: 8263 components: - type: Transform - pos: 42.5,-11.5 + pos: 66.5,1.5 parent: 2 - - uid: 8266 + - uid: 8271 components: - type: Transform - pos: 43.5,-11.5 + pos: 47.5,13.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + pos: 52.5,13.5 parent: 2 - uid: 8294 components: - type: Transform pos: 10.5,22.5 parent: 2 - - uid: 8295 + - uid: 8321 components: - type: Transform - pos: 9.5,22.5 + pos: 49.5,20.5 parent: 2 - - uid: 8296 + - uid: 8560 components: - type: Transform - pos: 9.5,26.5 + pos: 30.5,-2.5 + parent: 2 + - uid: 8561 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + pos: 66.5,0.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: 66.5,-0.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + pos: 66.5,-1.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + pos: 66.5,-2.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + pos: 66.5,-4.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 3564 + - uid: 10793 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 3564 + - uid: 10794 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 3564 + - uid: 10795 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 3564 + - uid: 10796 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 3564 + - uid: 10797 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 3564 + - uid: 10798 + components: + - type: Transform + pos: 8.5,-40.5 + parent: 3564 + - uid: 10799 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 3564 + - uid: 10800 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 3564 + - uid: 10801 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 3564 + - uid: 10802 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 3564 + - uid: 10803 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 3564 + - uid: 10804 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 3564 + - uid: 10805 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 3564 + - uid: 10806 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 3564 + - uid: 10807 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 3564 + - uid: 10808 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 3564 + - uid: 10809 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 3564 + - uid: 10810 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 3564 + - uid: 10811 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 3564 + - uid: 10812 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 3564 + - uid: 10813 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 3564 + - uid: 10814 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 3564 + - uid: 10815 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 3564 + - uid: 10816 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 3564 + - uid: 10817 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 3564 + - uid: 10818 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 3564 + - uid: 10819 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 3564 + - uid: 10820 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 3564 + - uid: 10821 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 3564 + - uid: 10822 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 3564 + - uid: 10823 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 3564 + - uid: 10824 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 3564 + - uid: 10825 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 3564 + - uid: 10826 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 3564 + - uid: 10827 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 3564 + - uid: 10828 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 3564 + - uid: 10829 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 3564 + - uid: 10830 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 3564 + - uid: 10831 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 3564 + - uid: 10832 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 3564 + - uid: 10833 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 3564 + - uid: 10834 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 3564 + - uid: 10835 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 3564 + - uid: 10836 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 3564 + - uid: 10837 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 3564 + - uid: 10838 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 3564 + - uid: 10839 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 3564 + - uid: 10840 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 3564 + - uid: 10841 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 3564 + - uid: 10842 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 3564 + - uid: 10843 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 3564 + - uid: 10844 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 3564 + - uid: 10845 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 3564 + - uid: 10846 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 3564 + - uid: 10847 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 3564 + - uid: 10848 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 3564 + - uid: 10849 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 3564 + - uid: 10850 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 3564 + - uid: 10851 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 3564 + - uid: 10852 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 3564 + - uid: 10853 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 3564 + - uid: 10854 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 3564 + - uid: 10855 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 3564 + - uid: 10856 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 3564 + - uid: 10857 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 3564 + - uid: 10858 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 3564 + - uid: 10859 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 3564 + - uid: 10860 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 3564 + - uid: 10861 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 3564 + - uid: 10862 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 3564 + - uid: 10863 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 3564 + - uid: 10864 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 3564 + - uid: 10865 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 3564 + - uid: 10866 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 3564 + - uid: 10867 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 3564 + - uid: 10868 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 3564 + - uid: 10869 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 3564 + - uid: 10870 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 3564 + - uid: 10871 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 3564 + - uid: 10872 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 3564 + - uid: 10873 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 3564 + - uid: 10874 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 3564 + - uid: 10875 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 3564 + - uid: 10876 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 3564 + - uid: 10877 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 3564 + - uid: 10878 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 3564 + - uid: 10879 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 3564 + - uid: 10880 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 3564 + - uid: 10881 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 3564 + - uid: 10882 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 3564 + - uid: 10883 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 3564 + - uid: 10884 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 3564 + - uid: 10885 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 3564 + - uid: 10886 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 3564 + - uid: 10887 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 3564 + - uid: 10888 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 3564 + - uid: 10889 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 3564 + - uid: 10890 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 3564 + - uid: 10891 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 3564 + - uid: 10892 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 3564 + - uid: 10893 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 3564 + - uid: 10894 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 3564 + - uid: 10895 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 3564 + - uid: 10896 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 3564 + - uid: 10897 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 3564 + - uid: 10898 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 3564 + - uid: 10899 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 3564 + - uid: 10900 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 3564 + - uid: 10901 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 3564 + - uid: 10902 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 3564 + - uid: 10903 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 3564 + - uid: 10904 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 3564 + - uid: 10905 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 3564 + - uid: 10906 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 3564 + - uid: 10907 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 3564 + - uid: 10908 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 3564 + - uid: 10909 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 3564 + - uid: 10910 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 3564 + - uid: 10911 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 3564 + - uid: 10912 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 3564 + - uid: 10913 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 3564 + - uid: 10914 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 3564 + - uid: 10915 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 3564 + - uid: 10916 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 3564 + - uid: 10917 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 3564 + - uid: 10918 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 3564 + - uid: 10919 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 3564 + - uid: 10920 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 3564 + - uid: 10921 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 3564 + - uid: 10922 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 3564 + - uid: 10923 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 3564 + - uid: 10924 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 3564 + - uid: 10925 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 3564 + - uid: 10926 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 3564 + - uid: 10927 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 3564 + - uid: 10928 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 3564 + - uid: 10929 + components: + - type: Transform + pos: 19.5,-59.5 + parent: 3564 + - uid: 10930 + components: + - type: Transform + pos: 20.5,-59.5 + parent: 3564 + - uid: 10931 + components: + - type: Transform + pos: 21.5,-59.5 + parent: 3564 + - uid: 10932 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 3564 + - uid: 10933 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 3564 + - uid: 10934 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 3564 + - uid: 10935 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 3564 + - uid: 10936 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 3564 + - uid: 10937 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 3564 + - uid: 10938 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 3564 + - uid: 10939 + components: + - type: Transform + pos: 24.5,-57.5 + parent: 3564 + - uid: 10940 + components: + - type: Transform + pos: 22.5,-57.5 + parent: 3564 + - uid: 10941 + components: + - type: Transform + pos: 24.5,-59.5 + parent: 3564 + - uid: 10942 + components: + - type: Transform + pos: 24.5,-61.5 + parent: 3564 + - uid: 10943 + components: + - type: Transform + pos: 22.5,-61.5 + parent: 3564 + - uid: 10944 + components: + - type: Transform + pos: 18.5,-64.5 + parent: 3564 + - uid: 10945 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 3564 + - uid: 10946 + components: + - type: Transform + pos: 20.5,-64.5 + parent: 3564 + - uid: 10947 + components: + - type: Transform + pos: 21.5,-64.5 + parent: 3564 + - uid: 10948 + components: + - type: Transform + pos: 22.5,-64.5 + parent: 3564 + - uid: 10949 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 3564 + - uid: 10950 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 3564 + - uid: 10951 + components: + - type: Transform + pos: 23.5,-67.5 + parent: 3564 + - uid: 10952 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 3564 + - uid: 10953 + components: + - type: Transform + pos: 22.5,-67.5 + parent: 3564 + - uid: 10954 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 3564 + - uid: 10955 + components: + - type: Transform + pos: 20.5,-67.5 + parent: 3564 + - uid: 10956 + components: + - type: Transform + pos: 19.5,-67.5 + parent: 3564 + - uid: 10957 + components: + - type: Transform + pos: 22.5,-68.5 + parent: 3564 + - uid: 10958 + components: + - type: Transform + pos: 22.5,-69.5 + parent: 3564 + - uid: 10959 + components: + - type: Transform + pos: 22.5,-70.5 + parent: 3564 + - uid: 10960 + components: + - type: Transform + pos: 25.5,-66.5 + parent: 3564 + - uid: 10961 + components: + - type: Transform + pos: 24.5,-66.5 + parent: 3564 + - uid: 10962 + components: + - type: Transform + pos: 25.5,-67.5 + parent: 3564 + - uid: 10963 + components: + - type: Transform + pos: 28.5,-70.5 + parent: 3564 + - uid: 10964 + components: + - type: Transform + pos: 28.5,-69.5 + parent: 3564 + - uid: 10965 + components: + - type: Transform + pos: 28.5,-68.5 + parent: 3564 + - uid: 10966 + components: + - type: Transform + pos: 28.5,-67.5 + parent: 3564 + - uid: 10967 + components: + - type: Transform + pos: 28.5,-66.5 + parent: 3564 + - uid: 10968 + components: + - type: Transform + pos: 28.5,-65.5 + parent: 3564 + - uid: 10969 + components: + - type: Transform + pos: 28.5,-64.5 + parent: 3564 + - uid: 10970 + components: + - type: Transform + pos: 28.5,-63.5 + parent: 3564 + - uid: 10971 + components: + - type: Transform + pos: 29.5,-63.5 + parent: 3564 + - uid: 10972 + components: + - type: Transform + pos: 30.5,-63.5 + parent: 3564 + - uid: 10973 + components: + - type: Transform + pos: 31.5,-63.5 + parent: 3564 + - uid: 10974 + components: + - type: Transform + pos: 32.5,-63.5 + parent: 3564 + - uid: 10975 + components: + - type: Transform + pos: 33.5,-63.5 + parent: 3564 + - uid: 10976 + components: + - type: Transform + pos: 29.5,-68.5 + parent: 3564 + - uid: 10977 + components: + - type: Transform + pos: 30.5,-68.5 + parent: 3564 + - uid: 10978 + components: + - type: Transform + pos: 31.5,-68.5 + parent: 3564 + - uid: 10979 + components: + - type: Transform + pos: 32.5,-68.5 + parent: 3564 + - uid: 10980 + components: + - type: Transform + pos: 33.5,-68.5 + parent: 3564 + - uid: 10981 + components: + - type: Transform + pos: 15.5,-68.5 + parent: 3564 + - uid: 10982 + components: + - type: Transform + pos: 15.5,-67.5 + parent: 3564 + - uid: 10983 + components: + - type: Transform + pos: 15.5,-66.5 + parent: 3564 + - uid: 10984 + components: + - type: Transform + pos: 16.5,-66.5 + parent: 3564 + - uid: 10985 + components: + - type: Transform + pos: 14.5,-66.5 + parent: 3564 + - uid: 10986 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 3564 + - uid: 10987 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 3564 + - uid: 10988 + components: + - type: Transform + pos: 12.5,-60.5 + parent: 3564 + - uid: 10989 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 3564 + - uid: 10990 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 3564 + - uid: 10991 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 3564 + - uid: 10992 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 3564 + - uid: 10993 + components: + - type: Transform + pos: 16.5,-59.5 + parent: 3564 + - uid: 10994 + components: + - type: Transform + pos: 16.5,-58.5 + parent: 3564 + - uid: 10995 + components: + - type: Transform + pos: 12.5,-59.5 + parent: 3564 + - uid: 10996 + components: + - type: Transform + pos: 12.5,-58.5 + parent: 3564 + - uid: 10997 + components: + - type: Transform + pos: 12.5,-61.5 + parent: 3564 + - uid: 10998 + components: + - type: Transform + pos: 12.5,-62.5 + parent: 3564 + - uid: 10999 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 3564 + - uid: 11000 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 3564 + - uid: 11001 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 3564 + - uid: 11002 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 3564 + - uid: 11003 + components: + - type: Transform + pos: 32.5,-59.5 + parent: 3564 + - uid: 11004 + components: + - type: Transform + pos: 33.5,-59.5 + parent: 3564 + - uid: 11005 + components: + - type: Transform + pos: 34.5,-59.5 + parent: 3564 + - uid: 11006 + components: + - type: Transform + pos: 35.5,-59.5 + parent: 3564 + - uid: 11007 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 3564 + - uid: 11008 + components: + - type: Transform + pos: 34.5,-58.5 + parent: 3564 + - uid: 11009 + components: + - type: Transform + pos: 34.5,-60.5 + parent: 3564 + - uid: 11010 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 3564 + - uid: 11011 + components: + - type: Transform + pos: 29.5,-59.5 + parent: 3564 + - uid: 11012 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 3564 + - uid: 11013 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 3564 + - uid: 11014 + components: + - type: Transform + pos: 27.5,-58.5 + parent: 3564 + - uid: 11015 + components: + - type: Transform + pos: 27.5,-60.5 + parent: 3564 + - uid: 11016 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 3564 + - uid: 11017 + components: + - type: Transform + pos: 29.5,-60.5 + parent: 3564 + - uid: 11018 + components: + - type: Transform + pos: 29.5,-58.5 + parent: 3564 + - uid: 11019 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 3564 + - uid: 11020 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 3564 + - uid: 11021 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 3564 + - uid: 11022 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 3564 + - uid: 11023 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 3564 + - uid: 11024 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 3564 + - uid: 11025 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 3564 + - uid: 11026 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 3564 + - uid: 11027 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 3564 + - uid: 11028 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 3564 + - uid: 11029 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 3564 + - uid: 11030 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 3564 + - uid: 11031 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 3564 + - uid: 11032 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 3564 + - uid: 11033 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 3564 + - uid: 11034 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 3564 + - uid: 11035 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 3564 + - uid: 11036 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 3564 + - uid: 11037 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 3564 + - uid: 11038 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 3564 + - uid: 11039 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 3564 + - uid: 11040 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 3564 + - uid: 11041 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 3564 + - uid: 11042 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 3564 + - uid: 11043 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 3564 + - uid: 11044 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 3564 + - uid: 11045 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 3564 + - uid: 11046 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 3564 + - uid: 11047 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 3564 + - uid: 11048 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 3564 + - uid: 11049 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 3564 + - uid: 11050 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 3564 + - uid: 11051 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 3564 + - uid: 11052 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 3564 + - uid: 11053 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 3564 + - uid: 11054 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 3564 + - uid: 11055 + components: + - type: Transform + pos: 28.5,-34.5 + parent: 3564 + - uid: 11056 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 3564 + - uid: 11057 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 3564 + - uid: 11058 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 3564 + - uid: 11059 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 3564 + - uid: 11060 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 3564 + - uid: 11061 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 3564 + - uid: 11062 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 3564 + - uid: 11063 + components: + - type: Transform + pos: 26.5,-42.5 + parent: 3564 + - uid: 11064 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 3564 + - uid: 11065 + components: + - type: Transform + pos: 28.5,-42.5 + parent: 3564 + - uid: 11066 + components: + - type: Transform + pos: 24.5,-46.5 + parent: 3564 + - uid: 11067 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 3564 + - uid: 11068 + components: + - type: Transform + pos: 26.5,-46.5 + parent: 3564 + - uid: 11069 + components: + - type: Transform + pos: 27.5,-46.5 + parent: 3564 + - uid: 11070 + components: + - type: Transform + pos: 28.5,-46.5 + parent: 3564 + - uid: 11071 + components: + - type: Transform + pos: 24.5,-50.5 + parent: 3564 + - uid: 11072 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 3564 + - uid: 11073 + components: + - type: Transform + pos: 26.5,-50.5 + parent: 3564 + - uid: 11074 + components: + - type: Transform + pos: 27.5,-50.5 + parent: 3564 + - uid: 11075 + components: + - type: Transform + pos: 28.5,-50.5 + parent: 3564 + - uid: 11076 + components: + - type: Transform + pos: 24.5,-54.5 + parent: 3564 + - uid: 11077 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 3564 + - uid: 11078 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 3564 + - uid: 11079 + components: + - type: Transform + pos: 27.5,-54.5 + parent: 3564 + - uid: 11080 + components: + - type: Transform + pos: 28.5,-54.5 + parent: 3564 + - uid: 11081 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 3564 + - uid: 11082 + components: + - type: Transform + pos: 21.5,-54.5 + parent: 3564 + - uid: 11083 + components: + - type: Transform + pos: 20.5,-54.5 + parent: 3564 + - uid: 11084 + components: + - type: Transform + pos: 19.5,-54.5 + parent: 3564 + - uid: 11085 + components: + - type: Transform + pos: 18.5,-54.5 + parent: 3564 + - uid: 11086 + components: + - type: Transform + pos: 17.5,-54.5 + parent: 3564 + - uid: 11087 + components: + - type: Transform + pos: 21.5,-50.5 + parent: 3564 + - uid: 11088 + components: + - type: Transform + pos: 20.5,-50.5 + parent: 3564 + - uid: 11089 + components: + - type: Transform + pos: 19.5,-50.5 + parent: 3564 + - uid: 11090 + components: + - type: Transform + pos: 22.5,-50.5 + parent: 3564 + - uid: 11091 + components: + - type: Transform + pos: 18.5,-50.5 + parent: 3564 + - uid: 11092 + components: + - type: Transform + pos: 17.5,-50.5 + parent: 3564 + - uid: 11093 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 3564 + - uid: 11094 + components: + - type: Transform + pos: 21.5,-46.5 + parent: 3564 + - uid: 11095 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 3564 + - uid: 11096 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 3564 + - uid: 11097 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 3564 + - uid: 11098 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 3564 + - uid: 11099 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 3564 + - uid: 11100 + components: + - type: Transform + pos: 21.5,-42.5 + parent: 3564 + - uid: 11101 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 3564 + - uid: 11102 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 3564 + - uid: 11103 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 3564 + - uid: 11104 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 3564 + - uid: 11105 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 3564 + - uid: 11106 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 3564 + - uid: 11107 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 3564 + - uid: 11108 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 3564 + - uid: 11109 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 3564 + - uid: 11110 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 3564 + - uid: 11111 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 3564 + - uid: 11112 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 3564 + - uid: 11113 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 3564 + - uid: 11375 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 11376 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 11380 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 11382 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 11387 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 11388 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 11389 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 11390 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 11391 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - uid: 11392 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 11394 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + pos: 27.5,27.5 + parent: 2 + - uid: 11396 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 11408 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 11410 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 11411 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 11416 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 11417 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 11418 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 11420 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 11421 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 11423 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 11424 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 11427 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 11428 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 11429 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 11456 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 11457 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 11458 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 11459 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 11460 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 11461 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 + - uid: 11462 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 + - uid: 11463 + components: + - type: Transform + pos: 61.5,0.5 + parent: 2 + - uid: 11464 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 2 + - uid: 11465 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 11466 + components: + - type: Transform + pos: 56.5,1.5 + parent: 2 + - uid: 11467 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - uid: 11468 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 + - uid: 11469 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 11470 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 11471 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 11473 + components: + - type: Transform + pos: 55.5,6.5 + parent: 2 + - uid: 11549 + components: + - type: Transform + pos: 52.5,35.5 + parent: 2 + - uid: 11550 + components: + - type: Transform + pos: 52.5,36.5 + parent: 2 + - uid: 11551 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 11552 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 + - uid: 11553 + components: + - type: Transform + pos: 44.5,40.5 + parent: 2 + - uid: 11554 + components: + - type: Transform + pos: 45.5,40.5 + parent: 2 + - uid: 11555 + components: + - type: Transform + pos: 46.5,37.5 parent: 2 - proto: CableApcStack10 entities: @@ -8903,27 +12264,197 @@ entities: - type: Transform pos: 2.575419,-7.6192417 parent: 2 - - uid: 7709 - components: - - type: Transform - pos: 48.5,21.5 - parent: 2 - uid: 7710 components: - type: Transform pos: 49.5,21.5 parent: 2 + - uid: 11140 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 - proto: CableHV entities: - - uid: 2810 + - uid: 573 components: - type: Transform - pos: 28.5,30.5 + pos: 45.5,20.5 parent: 2 - - uid: 3626 + - uid: 591 components: - type: Transform - pos: 51.5,22.5 + pos: 46.5,20.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 20.5,34.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: 47.5,38.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: 47.5,39.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: 47.5,40.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: 46.5,40.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 16.5,38.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: 21.5,34.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 18.5,39.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: 18.5,37.5 parent: 2 - uid: 4330 components: @@ -8945,36 +12476,6 @@ entities: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 4361 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 2 - - uid: 4365 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 2 - - uid: 4366 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 2 - - uid: 4368 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 2 - - uid: 4384 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 2 - - uid: 4386 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 2 - uid: 4389 components: - type: Transform @@ -9185,16 +12686,6 @@ entities: - type: Transform pos: 18.5,-5.5 parent: 2 - - uid: 4576 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 2 - - uid: 4577 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - uid: 4578 components: - type: Transform @@ -9530,16 +13021,6 @@ entities: - type: Transform pos: 14.5,18.5 parent: 2 - - uid: 4651 - components: - - type: Transform - pos: 34.5,19.5 - parent: 2 - - uid: 4652 - components: - - type: Transform - pos: 34.5,20.5 - parent: 2 - uid: 4653 components: - type: Transform @@ -9585,36 +13066,6 @@ entities: - type: Transform pos: 34.5,29.5 parent: 2 - - uid: 4662 - components: - - type: Transform - pos: 33.5,26.5 - parent: 2 - - uid: 4663 - components: - - type: Transform - pos: 33.5,27.5 - parent: 2 - - uid: 4664 - components: - - type: Transform - pos: 33.5,28.5 - parent: 2 - - uid: 4665 - components: - - type: Transform - pos: 33.5,29.5 - parent: 2 - - uid: 4666 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 4667 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - uid: 4668 components: - type: Transform @@ -9635,21 +13086,6 @@ entities: - type: Transform pos: 34.5,33.5 parent: 2 - - uid: 4672 - components: - - type: Transform - pos: 28.5,31.5 - parent: 2 - - uid: 4673 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - - uid: 4674 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - uid: 4675 components: - type: Transform @@ -9685,66 +13121,16 @@ entities: - type: Transform pos: 22.5,34.5 parent: 2 - - uid: 4682 - components: - - type: Transform - pos: 21.5,34.5 - parent: 2 - - uid: 4683 - components: - - type: Transform - pos: 20.5,34.5 - parent: 2 - - uid: 4684 - components: - - type: Transform - pos: 19.5,34.5 - parent: 2 - - uid: 4685 - components: - - type: Transform - pos: 18.5,34.5 - parent: 2 - - uid: 4686 - components: - - type: Transform - pos: 17.5,34.5 - parent: 2 - - uid: 4687 - components: - - type: Transform - pos: 16.5,34.5 - parent: 2 - uid: 4688 components: - type: Transform - pos: 15.5,34.5 - parent: 2 - - uid: 4689 - components: - - type: Transform - pos: 15.5,35.5 + pos: 16.5,39.5 parent: 2 - uid: 4690 components: - type: Transform pos: 15.5,36.5 parent: 2 - - uid: 4691 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 4692 - components: - - type: Transform - pos: 29.5,29.5 - parent: 2 - - uid: 4693 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - uid: 4695 components: - type: Transform @@ -9755,26 +13141,6 @@ entities: - type: Transform pos: 35.5,34.5 parent: 2 - - uid: 4697 - components: - - type: Transform - pos: 36.5,34.5 - parent: 2 - - uid: 4698 - components: - - type: Transform - pos: 37.5,34.5 - parent: 2 - - uid: 4699 - components: - - type: Transform - pos: 37.5,35.5 - parent: 2 - - uid: 4700 - components: - - type: Transform - pos: 35.5,35.5 - parent: 2 - uid: 4701 components: - type: Transform @@ -9850,26 +13216,6 @@ entities: - type: Transform pos: 47.5,24.5 parent: 2 - - uid: 4716 - components: - - type: Transform - pos: 48.5,24.5 - parent: 2 - - uid: 4717 - components: - - type: Transform - pos: 49.5,24.5 - parent: 2 - - uid: 4718 - components: - - type: Transform - pos: 50.5,24.5 - parent: 2 - - uid: 4719 - components: - - type: Transform - pos: 51.5,24.5 - parent: 2 - uid: 4720 components: - type: Transform @@ -10595,10 +13941,15 @@ entities: - type: Transform pos: 32.5,48.5 parent: 2 + - uid: 4935 + components: + - type: Transform + pos: 45.5,41.5 + parent: 2 - uid: 5220 components: - type: Transform - pos: 51.5,21.5 + pos: 47.5,20.5 parent: 2 - uid: 5221 components: @@ -10625,10 +13976,35 @@ entities: - type: Transform pos: 54.5,19.5 parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 45.5,40.5 + parent: 2 - uid: 5360 components: - type: Transform - pos: 51.5,23.5 + pos: 48.5,20.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 46.5,39.5 parent: 2 - uid: 6596 components: @@ -10830,10 +14206,1215 @@ entities: - type: Transform pos: 61.5,28.5 parent: 2 - - uid: 7651 + - uid: 7229 components: - type: Transform - pos: 33.5,30.5 + pos: 57.5,62.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: 42.5,34.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + pos: 41.5,34.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 3564 + - uid: 8027 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 3564 + - uid: 8028 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 3564 + - uid: 8029 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 3564 + - uid: 8030 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 3564 + - uid: 8031 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 3564 + - uid: 8224 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + pos: 50.5,25.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 3564 + - uid: 8650 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 3564 + - uid: 8651 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 3564 + - uid: 8652 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 3564 + - uid: 8653 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 3564 + - uid: 8654 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 3564 + - uid: 8655 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 3564 + - uid: 8656 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 3564 + - uid: 8657 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 3564 + - uid: 8658 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 3564 + - uid: 8659 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 3564 + - uid: 8660 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 3564 + - uid: 8661 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 3564 + - uid: 8662 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 3564 + - uid: 8663 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 3564 + - uid: 8664 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 3564 + - uid: 8665 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 3564 + - uid: 8666 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 3564 + - uid: 8667 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 3564 + - uid: 8668 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 3564 + - uid: 8669 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 3564 + - uid: 8670 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 3564 + - uid: 8671 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 3564 + - uid: 8672 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 3564 + - uid: 8673 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 3564 + - uid: 8674 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 3564 + - uid: 8675 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 3564 + - uid: 8676 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 3564 + - uid: 8677 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 3564 + - uid: 8678 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 3564 + - uid: 8679 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 3564 + - uid: 8680 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 3564 + - uid: 8681 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 3564 + - uid: 8682 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 3564 + - uid: 8683 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 3564 + - uid: 8684 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 3564 + - uid: 8685 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 3564 + - uid: 8686 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 3564 + - uid: 8687 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 3564 + - uid: 8688 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 3564 + - uid: 8689 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 3564 + - uid: 8690 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 3564 + - uid: 8691 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 3564 + - uid: 8692 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 3564 + - uid: 8693 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 3564 + - uid: 8694 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 3564 + - uid: 8695 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 3564 + - uid: 8696 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 3564 + - uid: 8697 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 3564 + - uid: 8698 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 3564 + - uid: 8699 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 3564 + - uid: 8700 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 3564 + - uid: 8701 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 3564 + - uid: 8702 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 3564 + - uid: 8703 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 3564 + - uid: 8704 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 3564 + - uid: 8705 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 3564 + - uid: 8706 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 3564 + - uid: 8707 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 3564 + - uid: 8708 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 3564 + - uid: 8709 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 3564 + - uid: 8710 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 3564 + - uid: 8711 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 3564 + - uid: 8712 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 3564 + - uid: 8713 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 3564 + - uid: 8714 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 3564 + - uid: 8715 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 3564 + - uid: 8716 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 3564 + - uid: 8717 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 3564 + - uid: 8718 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 3564 + - uid: 8719 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 3564 + - uid: 8720 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 3564 + - uid: 8721 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 3564 + - uid: 8722 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 3564 + - uid: 8723 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 3564 + - uid: 8724 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 3564 + - uid: 8725 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 3564 + - uid: 8726 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 3564 + - uid: 8727 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 3564 + - uid: 8728 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 3564 + - uid: 8729 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 3564 + - uid: 8730 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 3564 + - uid: 8731 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 3564 + - uid: 8732 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 3564 + - uid: 8733 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 3564 + - uid: 8734 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 3564 + - uid: 8735 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 3564 + - uid: 8736 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 3564 + - uid: 8737 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 3564 + - uid: 8738 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 3564 + - uid: 8739 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 3564 + - uid: 8740 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 3564 + - uid: 8741 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 3564 + - uid: 8742 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 3564 + - uid: 8743 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 3564 + - uid: 8744 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 3564 + - uid: 8745 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 3564 + - uid: 8746 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 3564 + - uid: 8747 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 3564 + - uid: 8748 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 3564 + - uid: 8749 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 3564 + - uid: 8750 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 3564 + - uid: 8751 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 3564 + - uid: 8752 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 3564 + - uid: 8753 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 3564 + - uid: 8754 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 3564 + - uid: 8755 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 3564 + - uid: 8756 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 3564 + - uid: 8757 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 3564 + - uid: 8758 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 3564 + - uid: 8759 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 3564 + - uid: 8760 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 3564 + - uid: 8761 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 3564 + - uid: 8762 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 3564 + - uid: 8763 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 3564 + - uid: 8764 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 3564 + - uid: 8765 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 3564 + - uid: 8766 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 3564 + - uid: 8767 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 3564 + - uid: 8768 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 3564 + - uid: 8769 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 3564 + - uid: 8770 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 3564 + - uid: 8771 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 3564 + - uid: 8772 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 3564 + - uid: 8773 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 3564 + - uid: 8774 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 3564 + - uid: 8775 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 3564 + - uid: 8776 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 3564 + - uid: 8777 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 3564 + - uid: 8778 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 3564 + - uid: 8779 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 3564 + - uid: 8780 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 3564 + - uid: 8781 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 3564 + - uid: 8782 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 3564 + - uid: 8783 + components: + - type: Transform + pos: 2.5,-65.5 + parent: 3564 + - uid: 8784 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 3564 + - uid: 8785 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 3564 + - uid: 8786 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 3564 + - uid: 8787 + components: + - type: Transform + pos: 3.5,-65.5 + parent: 3564 + - uid: 8788 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 3564 + - uid: 8789 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 3564 + - uid: 8790 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 3564 + - uid: 8791 + components: + - type: Transform + pos: 2.5,-68.5 + parent: 3564 + - uid: 8792 + components: + - type: Transform + pos: 2.5,-69.5 + parent: 3564 + - uid: 8793 + components: + - type: Transform + pos: 2.5,-70.5 + parent: 3564 + - uid: 8794 + components: + - type: Transform + pos: 4.5,-68.5 + parent: 3564 + - uid: 8795 + components: + - type: Transform + pos: 4.5,-69.5 + parent: 3564 + - uid: 8796 + components: + - type: Transform + pos: 4.5,-70.5 + parent: 3564 + - uid: 8797 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 3564 + - uid: 8798 + components: + - type: Transform + pos: 3.5,-71.5 + parent: 3564 + - uid: 8799 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 3564 + - uid: 8800 + components: + - type: Transform + pos: 2.5,-72.5 + parent: 3564 + - uid: 8801 + components: + - type: Transform + pos: 2.5,-73.5 + parent: 3564 + - uid: 8802 + components: + - type: Transform + pos: 2.5,-74.5 + parent: 3564 + - uid: 8803 + components: + - type: Transform + pos: 4.5,-72.5 + parent: 3564 + - uid: 8804 + components: + - type: Transform + pos: 4.5,-73.5 + parent: 3564 + - uid: 8805 + components: + - type: Transform + pos: 4.5,-74.5 + parent: 3564 + - uid: 8806 + components: + - type: Transform + pos: 3.5,-74.5 + parent: 3564 + - uid: 8807 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 3564 + - uid: 8808 + components: + - type: Transform + pos: 3.5,-76.5 + parent: 3564 + - uid: 8809 + components: + - type: Transform + pos: 2.5,-76.5 + parent: 3564 + - uid: 8810 + components: + - type: Transform + pos: 2.5,-77.5 + parent: 3564 + - uid: 8811 + components: + - type: Transform + pos: 2.5,-78.5 + parent: 3564 + - uid: 8812 + components: + - type: Transform + pos: 4.5,-76.5 + parent: 3564 + - uid: 8813 + components: + - type: Transform + pos: 4.5,-77.5 + parent: 3564 + - uid: 8814 + components: + - type: Transform + pos: 4.5,-78.5 + parent: 3564 + - uid: 8815 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 3564 + - uid: 8816 + components: + - type: Transform + pos: 3.5,-79.5 + parent: 3564 + - uid: 8817 + components: + - type: Transform + pos: 3.5,-80.5 + parent: 3564 + - uid: 8818 + components: + - type: Transform + pos: 2.5,-80.5 + parent: 3564 + - uid: 8819 + components: + - type: Transform + pos: 2.5,-81.5 + parent: 3564 + - uid: 8820 + components: + - type: Transform + pos: 2.5,-82.5 + parent: 3564 + - uid: 8821 + components: + - type: Transform + pos: 4.5,-80.5 + parent: 3564 + - uid: 8822 + components: + - type: Transform + pos: 4.5,-81.5 + parent: 3564 + - uid: 8823 + components: + - type: Transform + pos: 4.5,-82.5 + parent: 3564 + - uid: 8824 + components: + - type: Transform + pos: 3.5,-82.5 + parent: 3564 + - uid: 8825 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 3564 + - uid: 8826 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 3564 + - uid: 8827 + components: + - type: Transform + pos: 2.5,-84.5 + parent: 3564 + - uid: 8828 + components: + - type: Transform + pos: 2.5,-85.5 + parent: 3564 + - uid: 8829 + components: + - type: Transform + pos: 2.5,-86.5 + parent: 3564 + - uid: 8830 + components: + - type: Transform + pos: 4.5,-84.5 + parent: 3564 + - uid: 8831 + components: + - type: Transform + pos: 4.5,-85.5 + parent: 3564 + - uid: 8832 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 3564 + - uid: 8833 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 3564 + - uid: 8834 + components: + - type: Transform + pos: 3.5,-87.5 + parent: 3564 + - uid: 8835 + components: + - type: Transform + pos: 3.5,-88.5 + parent: 3564 + - uid: 8836 + components: + - type: Transform + pos: 2.5,-88.5 + parent: 3564 + - uid: 8837 + components: + - type: Transform + pos: 2.5,-89.5 + parent: 3564 + - uid: 8838 + components: + - type: Transform + pos: 2.5,-90.5 + parent: 3564 + - uid: 8839 + components: + - type: Transform + pos: 4.5,-88.5 + parent: 3564 + - uid: 8840 + components: + - type: Transform + pos: 4.5,-89.5 + parent: 3564 + - uid: 8841 + components: + - type: Transform + pos: 4.5,-90.5 + parent: 3564 + - uid: 9437 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 3564 + - uid: 9440 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 3564 + - uid: 9441 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 3564 + - uid: 9442 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 3564 + - uid: 9443 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 3564 + - uid: 9444 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 3564 + - uid: 9445 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 3564 + - uid: 9446 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 3564 + - uid: 9447 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 3564 + - uid: 9448 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 3564 + - uid: 9450 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 3564 + - uid: 9451 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 3564 + - uid: 9454 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 3564 + - uid: 9455 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 3564 + - uid: 9456 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 3564 + - uid: 9457 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 3564 + - uid: 9458 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 3564 + - uid: 9459 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 3564 + - uid: 9461 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 3564 + - uid: 11339 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 11340 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 11344 + components: + - type: Transform + pos: 22.5,-12.5 parent: 2 - proto: CableHVStack10 entities: @@ -10857,33 +15438,168 @@ entities: - type: Transform pos: 2.497294,-7.3536167 parent: 2 - - uid: 7707 - components: - - type: Transform - pos: 48.5,21.5 - parent: 2 - uid: 7708 components: - type: Transform pos: 49.5,21.5 parent: 2 -- proto: CableMV - entities: - - uid: 1884 + - uid: 11141 components: - type: Transform - pos: 32.5,30.5 + pos: 50.5,21.5 + parent: 2 + - uid: 11151 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 +- proto: CableMV + entities: + - uid: 89 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: 44.5,35.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: 19.5,22.5 parent: 2 - uid: 1965 components: - type: Transform pos: 13.5,18.5 parent: 2 + - uid: 1966 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 - uid: 2055 components: - type: Transform pos: 16.5,18.5 parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 - uid: 2933 components: - type: Transform @@ -10899,6 +15615,36 @@ entities: - type: Transform pos: 14.5,18.5 parent: 2 + - uid: 3023 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 - uid: 4947 components: - type: Transform @@ -11204,16 +15950,6 @@ entities: - type: Transform pos: 18.5,-5.5 parent: 2 - - uid: 5027 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 2 - - uid: 5028 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - uid: 5030 components: - type: Transform @@ -11389,16 +16125,6 @@ entities: - type: Transform pos: 6.5,-11.5 parent: 2 - - uid: 5070 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 2 - - uid: 5071 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - uid: 5072 components: - type: Transform @@ -11634,11 +16360,6 @@ entities: - type: Transform pos: 30.5,-2.5 parent: 2 - - uid: 5122 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 2 - uid: 5123 components: - type: Transform @@ -11659,11 +16380,6 @@ entities: - type: Transform pos: 5.5,0.5 parent: 2 - - uid: 5127 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - uid: 5128 components: - type: Transform @@ -11779,71 +16495,11 @@ entities: - type: Transform pos: 17.5,21.5 parent: 2 - - uid: 5152 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 - - uid: 5153 - components: - - type: Transform - pos: 19.5,20.5 - parent: 2 - - uid: 5154 - components: - - type: Transform - pos: 20.5,20.5 - parent: 2 - - uid: 5155 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - - uid: 5156 - components: - - type: Transform - pos: 15.5,21.5 - parent: 2 - - uid: 5157 - components: - - type: Transform - pos: 15.5,22.5 - parent: 2 - uid: 5158 components: - type: Transform pos: 15.5,23.5 parent: 2 - - uid: 5159 - components: - - type: Transform - pos: 15.5,24.5 - parent: 2 - - uid: 5162 - components: - - type: Transform - pos: 15.5,25.5 - parent: 2 - - uid: 5163 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 5164 - components: - - type: Transform - pos: 15.5,27.5 - parent: 2 - - uid: 5165 - components: - - type: Transform - pos: 15.5,28.5 - parent: 2 - - uid: 5166 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - uid: 5167 components: - type: Transform @@ -12029,60 +16685,10 @@ entities: - type: Transform pos: 16.5,11.5 parent: 2 - - uid: 5207 - components: - - type: Transform - pos: 10.5,11.5 - parent: 2 - - uid: 5208 - components: - - type: Transform - pos: 9.5,11.5 - parent: 2 - - uid: 5209 - components: - - type: Transform - pos: 9.5,12.5 - parent: 2 - - uid: 5210 - components: - - type: Transform - pos: 8.5,12.5 - parent: 2 - - uid: 5211 - components: - - type: Transform - pos: 7.5,12.5 - parent: 2 - uid: 5212 components: - type: Transform - pos: 6.5,12.5 - parent: 2 - - uid: 5213 - components: - - type: Transform - pos: 5.5,12.5 - parent: 2 - - uid: 5214 - components: - - type: Transform - pos: 5.5,11.5 - parent: 2 - - uid: 5215 - components: - - type: Transform - pos: 4.5,11.5 - parent: 2 - - uid: 5216 - components: - - type: Transform - pos: 3.5,11.5 - parent: 2 - - uid: 5217 - components: - - type: Transform - pos: 3.5,10.5 + pos: 43.5,35.5 parent: 2 - uid: 5226 components: @@ -12594,11 +17200,6 @@ entities: - type: Transform pos: 49.5,6.5 parent: 2 - - uid: 5338 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - uid: 5339 components: - type: Transform @@ -12614,31 +17215,6 @@ entities: - type: Transform pos: 48.5,8.5 parent: 2 - - uid: 5342 - components: - - type: Transform - pos: 50.5,8.5 - parent: 2 - - uid: 5343 - components: - - type: Transform - pos: 50.5,9.5 - parent: 2 - - uid: 5344 - components: - - type: Transform - pos: 50.5,10.5 - parent: 2 - - uid: 5345 - components: - - type: Transform - pos: 50.5,11.5 - parent: 2 - - uid: 5346 - components: - - type: Transform - pos: 51.5,11.5 - parent: 2 - uid: 5347 components: - type: Transform @@ -13039,6 +17615,11 @@ entities: - type: Transform pos: 61.5,48.5 parent: 2 + - uid: 5457 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 - uid: 5501 components: - type: Transform @@ -13094,11 +17675,6 @@ entities: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 5744 - components: - - type: Transform - pos: 35.5,35.5 - parent: 2 - uid: 5745 components: - type: Transform @@ -13139,51 +17715,6 @@ entities: - type: Transform pos: 31.5,31.5 parent: 2 - - uid: 5756 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 5757 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 5758 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 5759 - components: - - type: Transform - pos: 29.5,29.5 - parent: 2 - - uid: 5760 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - - uid: 5761 - components: - - type: Transform - pos: 28.5,30.5 - parent: 2 - - uid: 5762 - components: - - type: Transform - pos: 28.5,31.5 - parent: 2 - - uid: 5763 - components: - - type: Transform - pos: 28.5,32.5 - parent: 2 - - uid: 5764 - components: - - type: Transform - pos: 28.5,33.5 - parent: 2 - uid: 5765 components: - type: Transform @@ -13384,6 +17915,956 @@ entities: - type: Transform pos: 6.5,2.5 parent: 2 + - uid: 6843 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: 43.5,33.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + pos: 47.5,36.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 3564 + - uid: 9475 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 3564 + - uid: 9476 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 3564 + - uid: 9477 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 3564 + - uid: 9478 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 3564 + - uid: 9479 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 3564 + - uid: 9480 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 3564 + - uid: 9481 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 3564 + - uid: 9482 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 3564 + - uid: 9483 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 3564 + - uid: 9484 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 3564 + - uid: 9485 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 3564 + - uid: 9486 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 3564 + - uid: 9487 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 3564 + - uid: 9488 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 3564 + - uid: 9489 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 3564 + - uid: 9490 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 3564 + - uid: 9491 + components: + - type: Transform + pos: 21.5,-41.5 + parent: 3564 + - uid: 9492 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 3564 + - uid: 9493 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 3564 + - uid: 9494 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 3564 + - uid: 9495 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 3564 + - uid: 9496 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 3564 + - uid: 9497 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 3564 + - uid: 9498 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 3564 + - uid: 9499 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 3564 + - uid: 9500 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 3564 + - uid: 9501 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 3564 + - uid: 9502 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 3564 + - uid: 9503 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 3564 + - uid: 9504 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 3564 + - uid: 9505 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 3564 + - uid: 9506 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 3564 + - uid: 9507 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 3564 + - uid: 9508 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 3564 + - uid: 9509 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 3564 + - uid: 9510 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 3564 + - uid: 9511 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 3564 + - uid: 9512 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 3564 + - uid: 9513 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 3564 + - uid: 9514 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 3564 + - uid: 9515 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 3564 + - uid: 9516 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 3564 + - uid: 9517 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 3564 + - uid: 9518 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 3564 + - uid: 9519 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 3564 + - uid: 9520 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 3564 + - uid: 9521 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 3564 + - uid: 9522 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 3564 + - uid: 9523 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 3564 + - uid: 9524 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 3564 + - uid: 9525 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 3564 + - uid: 9526 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 3564 + - uid: 9527 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 3564 + - uid: 9528 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 3564 + - uid: 9529 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 3564 + - uid: 9530 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 3564 + - uid: 9531 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 3564 + - uid: 9532 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 3564 + - uid: 9533 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 3564 + - uid: 9534 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 3564 + - uid: 9535 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 3564 + - uid: 9536 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 3564 + - uid: 9537 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 3564 + - uid: 9538 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 3564 + - uid: 9539 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 3564 + - uid: 9540 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 3564 + - uid: 9541 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 3564 + - uid: 9542 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 3564 + - uid: 9543 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 3564 + - uid: 9544 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 3564 + - uid: 9545 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 3564 + - uid: 9546 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 3564 + - uid: 9547 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 3564 + - uid: 9548 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 3564 + - uid: 9549 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 3564 + - uid: 9550 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 3564 + - uid: 9551 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 3564 + - uid: 9552 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - uid: 9553 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 3564 + - uid: 9554 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 3564 + - uid: 9555 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 3564 + - uid: 9556 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 3564 + - uid: 9557 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 3564 + - uid: 9558 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 3564 + - uid: 9559 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 3564 + - uid: 9560 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 3564 + - uid: 9561 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 3564 + - uid: 9562 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 3564 + - uid: 9563 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 3564 + - uid: 9564 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 3564 + - uid: 9565 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 3564 + - uid: 9566 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 3564 + - uid: 9567 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 3564 + - uid: 9568 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 3564 + - uid: 9569 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 3564 + - uid: 9570 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 3564 + - uid: 9571 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 3564 + - uid: 9572 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 3564 + - uid: 9573 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 3564 + - uid: 9574 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 3564 + - uid: 9575 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 3564 + - uid: 9576 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 3564 + - uid: 9578 + components: + - type: Transform + pos: 22.5,-60.5 + parent: 3564 + - uid: 9579 + components: + - type: Transform + pos: 21.5,-60.5 + parent: 3564 + - uid: 9580 + components: + - type: Transform + pos: 20.5,-60.5 + parent: 3564 + - uid: 9581 + components: + - type: Transform + pos: 19.5,-60.5 + parent: 3564 + - uid: 9582 + components: + - type: Transform + pos: 18.5,-60.5 + parent: 3564 + - uid: 9583 + components: + - type: Transform + pos: 17.5,-60.5 + parent: 3564 + - uid: 9584 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 3564 + - uid: 9585 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 3564 + - uid: 9586 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 3564 + - uid: 9587 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 3564 + - uid: 9588 + components: + - type: Transform + pos: 12.5,-60.5 + parent: 3564 + - uid: 9589 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 3564 + - uid: 9590 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 3564 + - uid: 9591 + components: + - type: Transform + pos: 19.5,-59.5 + parent: 3564 + - uid: 9592 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 3564 + - uid: 9593 + components: + - type: Transform + pos: 24.5,-59.5 + parent: 3564 + - uid: 9594 + components: + - type: Transform + pos: 25.5,-59.5 + parent: 3564 + - uid: 9595 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 3564 + - uid: 9596 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 3564 + - uid: 9597 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 3564 + - uid: 9598 + components: + - type: Transform + pos: 29.5,-59.5 + parent: 3564 + - uid: 9599 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 3564 + - uid: 9600 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 3564 + - uid: 9601 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 3564 + - uid: 9602 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 3564 + - uid: 9603 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 3564 + - uid: 9604 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 3564 + - uid: 9605 + components: + - type: Transform + pos: 22.5,-64.5 + parent: 3564 + - uid: 9606 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 3564 + - uid: 9607 + components: + - type: Transform + pos: 23.5,-67.5 + parent: 3564 + - uid: 9608 + components: + - type: Transform + pos: 22.5,-67.5 + parent: 3564 + - uid: 9609 + components: + - type: Transform + pos: 21.5,-64.5 + parent: 3564 + - uid: 9610 + components: + - type: Transform + pos: 20.5,-64.5 + parent: 3564 + - uid: 9611 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 3564 + - uid: 9612 + components: + - type: Transform + pos: 18.5,-64.5 + parent: 3564 + - uid: 9613 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 3564 + - uid: 9614 + components: + - type: Transform + pos: 24.5,-66.5 + parent: 3564 + - uid: 9615 + components: + - type: Transform + pos: 25.5,-66.5 + parent: 3564 + - uid: 9616 + components: + - type: Transform + pos: 26.5,-66.5 + parent: 3564 + - uid: 9617 + components: + - type: Transform + pos: 27.5,-66.5 + parent: 3564 + - uid: 9618 + components: + - type: Transform + pos: 28.5,-66.5 + parent: 3564 + - uid: 9619 + components: + - type: Transform + pos: 28.5,-67.5 + parent: 3564 + - uid: 9620 + components: + - type: Transform + pos: 28.5,-68.5 + parent: 3564 + - uid: 9621 + components: + - type: Transform + pos: 28.5,-69.5 + parent: 3564 + - uid: 9622 + components: + - type: Transform + pos: 28.5,-70.5 + parent: 3564 + - uid: 9623 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 3564 + - uid: 9624 + components: + - type: Transform + pos: 20.5,-67.5 + parent: 3564 + - uid: 9625 + components: + - type: Transform + pos: 19.5,-67.5 + parent: 3564 + - uid: 9626 + components: + - type: Transform + pos: 18.5,-67.5 + parent: 3564 + - uid: 9627 + components: + - type: Transform + pos: 17.5,-67.5 + parent: 3564 + - uid: 9628 + components: + - type: Transform + pos: 16.5,-67.5 + parent: 3564 + - uid: 9629 + components: + - type: Transform + pos: 15.5,-67.5 + parent: 3564 + - uid: 9630 + components: + - type: Transform + pos: 15.5,-68.5 + parent: 3564 + - uid: 9652 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 3564 + - uid: 9653 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 3564 + - uid: 9654 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 3564 + - uid: 9655 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 3564 + - uid: 9656 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 3564 + - uid: 9657 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 3564 + - uid: 9658 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 3564 + - uid: 9688 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 3564 + - uid: 9689 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 3564 + - uid: 9690 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 3564 + - uid: 9691 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 3564 + - uid: 11345 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 11373 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 + - uid: 11374 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 - proto: CableMVStack10 entities: - uid: 4505 @@ -13396,16 +18877,21 @@ entities: - type: Transform pos: 2.434794,-7.4942417 parent: 2 - - uid: 7711 - components: - - type: Transform - pos: 48.5,21.5 - parent: 2 - uid: 7712 components: - type: Transform pos: 49.5,21.5 parent: 2 + - uid: 11139 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 11150 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 - proto: CableTerminal entities: - uid: 521 @@ -13413,42 +18899,54 @@ entities: - type: Transform pos: 0.5,-12.5 parent: 2 + - uid: 661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,38.5 + parent: 2 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,39.5 + parent: 2 - uid: 1435 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,62.5 parent: 2 - - uid: 1651 + - uid: 1512 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,26.5 + pos: 18.5,37.5 parent: 2 - - uid: 1652 + - uid: 1603 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,27.5 + pos: 46.5,39.5 parent: 2 - - uid: 1653 + - uid: 2551 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,28.5 + pos: 46.5,40.5 parent: 2 - - uid: 1654 + - uid: 9438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,29.5 - parent: 2 - - uid: 7650 + rot: -1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 3564 + - uid: 9449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,30.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 8.5,-44.5 + parent: 3564 - proto: CaptainIDCard entities: - uid: 2373 @@ -13458,24 +18956,37 @@ entities: parent: 2 - proto: CaptainSabre entities: - - uid: 2407 + - uid: 7174 components: - type: Transform - pos: 59.452477,23.170856 + pos: 59.5,23.5 parent: 2 - proto: CarbonDioxideCanister entities: - - uid: 6610 + - uid: 138 components: - type: Transform - pos: 21.5,42.5 + pos: 31.5,37.5 parent: 2 -- proto: CargoMailTeleporter - entities: - - uid: 7829 + - uid: 1497 components: - type: Transform - pos: 15.5,20.5 + pos: 32.5,37.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: 43.5,-7.5 parent: 2 - proto: Carpet entities: @@ -13923,11 +19434,16 @@ entities: parent: 2 - proto: Catwalk entities: - - uid: 3964 + - uid: 847 components: - type: Transform pos: 52.5,60.5 parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 53.5,60.5 + parent: 2 - uid: 4573 components: - type: Transform @@ -14283,6 +19799,481 @@ entities: - type: Transform pos: 17.5,60.5 parent: 2 + - uid: 6856 + components: + - type: Transform + pos: 3.5,-91.5 + parent: 3564 + - uid: 6857 + components: + - type: Transform + pos: 3.5,-90.5 + parent: 3564 + - uid: 6858 + components: + - type: Transform + pos: 3.5,-89.5 + parent: 3564 + - uid: 6859 + components: + - type: Transform + pos: 3.5,-88.5 + parent: 3564 + - uid: 6860 + components: + - type: Transform + pos: 3.5,-87.5 + parent: 3564 + - uid: 6861 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 3564 + - uid: 6862 + components: + - type: Transform + pos: 3.5,-85.5 + parent: 3564 + - uid: 6863 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 3564 + - uid: 6864 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 3564 + - uid: 6865 + components: + - type: Transform + pos: 3.5,-82.5 + parent: 3564 + - uid: 6866 + components: + - type: Transform + pos: 3.5,-81.5 + parent: 3564 + - uid: 6867 + components: + - type: Transform + pos: 3.5,-79.5 + parent: 3564 + - uid: 6868 + components: + - type: Transform + pos: 3.5,-80.5 + parent: 3564 + - uid: 6869 + components: + - type: Transform + pos: 3.5,-78.5 + parent: 3564 + - uid: 6870 + components: + - type: Transform + pos: 3.5,-77.5 + parent: 3564 + - uid: 6871 + components: + - type: Transform + pos: 3.5,-76.5 + parent: 3564 + - uid: 6872 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 3564 + - uid: 6873 + components: + - type: Transform + pos: 3.5,-74.5 + parent: 3564 + - uid: 6874 + components: + - type: Transform + pos: 3.5,-73.5 + parent: 3564 + - uid: 6875 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 3564 + - uid: 6876 + components: + - type: Transform + pos: 3.5,-71.5 + parent: 3564 + - uid: 6877 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 3564 + - uid: 6878 + components: + - type: Transform + pos: 3.5,-69.5 + parent: 3564 + - uid: 6879 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 3564 + - uid: 6880 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 3564 + - uid: 6881 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 3564 + - uid: 6882 + components: + - type: Transform + pos: 3.5,-65.5 + parent: 3564 + - uid: 6883 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 3564 + - uid: 6884 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 3564 + - uid: 6885 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 3564 + - uid: 6886 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 3564 + - uid: 6887 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 3564 + - uid: 6888 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 3564 + - uid: 6889 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 3564 + - uid: 6890 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 3564 + - uid: 6891 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 3564 + - uid: 6892 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 3564 + - uid: 6893 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 3564 + - uid: 6894 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 3564 + - uid: 6895 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 3564 + - uid: 6896 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 3564 + - uid: 6897 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 3564 + - uid: 6898 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 3564 + - uid: 6899 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 3564 + - uid: 6900 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 3564 + - uid: 6901 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 3564 + - uid: 6902 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 3564 + - uid: 6903 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 3564 + - uid: 6904 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 3564 + - uid: 6905 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 3564 + - uid: 6906 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 3564 + - uid: 6907 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 3564 + - uid: 6908 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 3564 + - uid: 6909 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 3564 + - uid: 6910 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 3564 + - uid: 6911 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 3564 + - uid: 6912 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 3564 + - uid: 6913 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 3564 + - uid: 6914 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 3564 + - uid: 6915 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 3564 + - uid: 6916 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 3564 + - uid: 6917 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 3564 + - uid: 6918 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 3564 + - uid: 6919 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 3564 + - uid: 6920 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 3564 + - uid: 6922 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 3564 + - uid: 6923 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 3564 + - uid: 6924 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 3564 + - uid: 6925 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 3564 + - uid: 6927 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 3564 + - uid: 6928 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 3564 + - uid: 6929 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 3564 + - uid: 6930 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 3564 + - uid: 6931 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 3564 + - uid: 6932 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 3564 + - uid: 6933 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 3564 + - uid: 6934 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 3564 + - uid: 6935 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 3564 + - uid: 6936 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 3564 + - uid: 6937 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 3564 + - uid: 6938 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 3564 + - uid: 6939 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 3564 + - uid: 6942 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 3564 + - uid: 6943 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 3564 + - uid: 6944 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 3564 + - uid: 6945 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 3564 + - uid: 6946 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 3564 + - uid: 6947 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 3564 + - uid: 6948 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 3564 + - uid: 6949 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 3564 + - uid: 6950 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 3564 + - uid: 6951 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 3564 + - uid: 7150 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 3564 + - uid: 7151 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 3564 + - uid: 7267 + components: + - type: Transform + pos: 54.5,60.5 + parent: 2 - proto: Chair entities: - uid: 446 @@ -14297,18 +20288,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,13.5 parent: 2 - - uid: 490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,21.5 - parent: 2 - - uid: 579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 2 - uid: 618 components: - type: Transform @@ -14320,18 +20299,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,12.5 parent: 2 - - uid: 1291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,22.5 - parent: 2 - - uid: 1352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 2 - uid: 1513 components: - type: Transform @@ -14390,12 +20357,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 - - uid: 1770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,20.5 - parent: 2 - uid: 2016 components: - type: Transform @@ -14461,38 +20422,11 @@ entities: - type: Transform pos: 57.5,18.5 parent: 2 - - uid: 3816 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 2 - - uid: 4852 - components: - - type: Transform - pos: 58.5,39.5 - parent: 2 - - uid: 5863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-17.5 - parent: 2 - - uid: 7001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 2 - - uid: 7114 + - uid: 2898 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,12.5 - parent: 2 - - uid: 7119 - components: - - type: Transform - pos: 42.5,13.5 + pos: 34.5,11.5 parent: 2 - uid: 7424 components: @@ -14506,35 +20440,162 @@ entities: rot: 3.141592653589793 rad pos: 33.5,15.5 parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 7638 + - uid: 9705 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,32.5 - parent: 2 -- proto: ChairOfficeLight + pos: 30.5,-64.5 + parent: 3564 + - uid: 10327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 3564 + - uid: 10328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-33.5 + parent: 3564 + - uid: 10407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-65.5 + parent: 3564 + - uid: 10408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-66.5 + parent: 3564 + - uid: 10590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-27.5 + parent: 3564 + - uid: 10591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-28.5 + parent: 3564 + - uid: 10592 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 3564 + - uid: 10593 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 3564 + - uid: 10594 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 3564 + - uid: 10595 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 3564 + - uid: 10596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 3564 + - uid: 10597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-23.5 + parent: 3564 + - uid: 10598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-27.5 + parent: 3564 + - uid: 10599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 3564 + - uid: 10600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-29.5 + parent: 3564 + - uid: 10601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-29.5 + parent: 3564 + - uid: 10602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-24.5 + parent: 3564 + - uid: 10603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-24.5 + parent: 3564 + - uid: 10604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 3564 + - uid: 10605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 3564 + - uid: 10789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-17.5 + parent: 3564 + - uid: 10790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-17.5 + parent: 3564 + - uid: 10791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 3564 +- proto: ChairOfficeDark entities: - - uid: 533 - components: - - type: Transform - pos: 23.68446,16.648922 - parent: 2 - - uid: 1488 + - uid: 10404 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.49812,32.51353 - parent: 2 - - uid: 1546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.46026,13.520181 - parent: 2 + pos: 33.5,-65.5 + parent: 3564 - proto: ChairWood entities: + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 2 - uid: 267 components: - type: Transform @@ -14649,6 +20710,24 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,15.5 parent: 2 + - uid: 11350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 10309 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 3564 + - uid: 10313 + components: + - type: Transform + pos: 29.5,-46.5 + parent: 3564 - proto: ChemDispenser entities: - uid: 506 @@ -14675,6 +20754,26 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 + - uid: 10616 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 10617 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 10618 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 10705 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 3564 - proto: ChemistryBottleEthanol entities: - uid: 7321 @@ -14706,18 +20805,23 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 + - uid: 10706 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 3564 - proto: ChemistryBottleOmnizine entities: + - uid: 1345 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 - uid: 2369 components: - type: Transform pos: 63.5,29.5 parent: 2 - - uid: 7122 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - proto: ChemistryBottlePotassium entities: - uid: 7447 @@ -14727,10 +20831,10 @@ entities: parent: 2 - proto: ChemistryHotplate entities: - - uid: 536 + - uid: 68 components: - type: Transform - pos: 29.5,8.5 + pos: 33.5,10.5 parent: 2 - proto: ChemMaster entities: @@ -14746,51 +20850,82 @@ entities: - type: Transform pos: 42.49843,1.5826881 parent: 2 - - uid: 7002 + - uid: 10307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.47725,-17.435534 - parent: 2 - - uid: 7116 + pos: 16.5,-54.5 + parent: 3564 + - uid: 10310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.454033,13.503255 - parent: 2 -- proto: ChurchOrganInstrument + pos: 29.5,-34.5 + parent: 3564 + - uid: 11366 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 3564 +- proto: CigarSpent entities: - - uid: 318 + - uid: 7808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,9.5 + pos: 9.4519615,33.86504 parent: 2 - proto: CircuitImprinter entities: - - uid: 1964 + - uid: 6175 components: - type: Transform - pos: 54.5,21.5 - parent: 2 - - uid: 2391 - components: - - type: Transform - pos: 48.5,6.5 - parent: 2 -- proto: ClosetChefFilled - entities: - - uid: 2788 - components: - - type: Transform - pos: 25.5,-9.5 + pos: 53.5,7.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ClosetEmergencyFilledRandom entities: + - uid: 1020 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 - uid: 4739 components: - type: Transform - pos: 44.5,-17.5 + pos: 45.5,-17.5 parent: 2 - uid: 7018 components: @@ -14807,6 +20942,38 @@ entities: - type: Transform pos: 20.5,-10.5 parent: 2 + - uid: 8352 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 11514 + components: + - type: Transform + pos: 13.5,34.5 + parent: 2 +- proto: ClosetEmergencyN2 + entities: + - uid: 1946 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: - uid: 695 @@ -14814,40 +20981,114 @@ entities: - type: Transform pos: 20.5,7.5 parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: 47.5,-17.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 - proto: ClosetFireFilled entities: - - uid: 1900 + - uid: 4006 components: - type: Transform - pos: 29.5,33.5 - parent: 2 - - uid: 2228 - components: - - type: Transform - pos: 49.5,-1.5 - parent: 2 - - uid: 2630 - components: - - type: Transform - pos: 5.5,-10.5 + pos: 42.5,-9.5 parent: 2 - uid: 7019 components: - type: Transform pos: 62.5,21.5 parent: 2 -- proto: ClosetMaintenanceFilledRandom +- proto: ClosetL3Filled entities: - - uid: 2258 + - uid: 3155 components: - type: Transform - pos: 38.5,-9.5 + pos: 48.5,9.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 5975 + components: + - type: Transform + pos: 16.5,20.5 parent: 2 - uid: 7664 components: - type: Transform pos: 19.5,-10.5 parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 9910 + components: + - type: Transform + pos: 18.5,-52.5 + parent: 3564 + - uid: 10252 + components: + - type: Transform + pos: 18.5,-48.5 + parent: 3564 + - uid: 10253 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 3564 + - uid: 10254 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 3564 + - uid: 10255 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 3564 + - uid: 10256 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 3564 + - uid: 10257 + components: + - type: Transform + pos: 27.5,-40.5 + parent: 3564 + - uid: 10258 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 3564 + - uid: 10259 + components: + - type: Transform + pos: 27.5,-48.5 + parent: 3564 + - uid: 10260 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 3564 - proto: ClosetWallEmergencyFilledRandom entities: - uid: 7186 @@ -14874,11 +21115,48 @@ entities: - type: Transform pos: 44.5,19.5 parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null - uid: 7720 components: - type: Transform pos: 46.5,19.5 parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null + - uid: 11155 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 - proto: ClothingBackpackSatchelClown entities: - uid: 7231 @@ -14888,36 +21166,76 @@ entities: parent: 2 - proto: ClothingEyesBlindfold entities: - - uid: 2068 + - uid: 960 components: - type: Transform - pos: 33.5,-5.5 + pos: 34.5,-2.5 parent: 2 - - uid: 7123 + - uid: 972 components: - type: Transform - pos: 33.5,-6.5 + pos: 34.5,-2.5 parent: 2 - - uid: 7128 + - uid: 986 components: - type: Transform - pos: 33.5,-6.5 + pos: 35.5,-2.5 parent: 2 - - uid: 7224 + - uid: 992 components: - type: Transform - pos: 33.5,-5.5 + pos: 35.5,-2.5 parent: 2 - - uid: 7260 + - uid: 1002 components: - type: Transform - pos: 33.5,-4.5 + pos: 33.5,-2.5 parent: 2 - - uid: 7261 + - uid: 1009 components: - type: Transform - pos: 33.5,-4.5 + pos: 33.5,-2.5 parent: 2 + - uid: 10681 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10682 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10683 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10684 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10685 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10686 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10687 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10688 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 - proto: ClothingEyesGlasses entities: - uid: 7687 @@ -14927,11 +21245,86 @@ entities: parent: 2 - proto: ClothingEyesGlassesCheapSunglasses entities: + - uid: 868 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 - uid: 7201 components: - type: Transform pos: 59.5,31.5 parent: 2 + - uid: 8373 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8390 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 11162 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11165 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11185 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 - proto: ClothingEyesGlassesThermal entities: - uid: 2431 @@ -14939,8 +21332,68 @@ entities: - type: Transform pos: 35.5,2.5 parent: 2 + - uid: 4498 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 11163 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11164 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 - proto: ClothingHandsGlovesColorBlack entities: + - uid: 4506 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 - uid: 7550 components: - type: Transform @@ -14951,17 +21404,127 @@ entities: - type: Transform pos: 46.5,19.5 parent: 2 -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 2288 + - uid: 8387 components: - type: Transform - pos: 46.5,19.5 + pos: 28.5,33.5 parent: 2 - - uid: 6053 + - uid: 8388 components: - type: Transform - pos: 46.5,19.5 + pos: 27.5,33.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10473 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10474 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10475 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10476 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10477 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11157 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 11176 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 11184 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 11504 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 1379 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 10535 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 3564 + - uid: 11511 + components: + - type: Transform + pos: 11.5,34.5 parent: 2 - proto: ClothingHandsGlovesLatex entities: @@ -14977,12 +21540,160 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 2 -- proto: ClothingMaskBreath - entities: - - uid: 7466 + - uid: 11166 components: - type: Transform - pos: 50.5,39.5 + pos: 52.5,20.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11179 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11187 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 10415 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 4490 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8614 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10478 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10479 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10480 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10481 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10482 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 +- proto: ClothingHeadsetEngineering + entities: + - uid: 8383 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 +- proto: ClothingHeadsetGrey + entities: + - uid: 132 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 705 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 49.5,39.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 49.5,39.5 parent: 2 - proto: ClothingMaskClown entities: @@ -14993,6 +21704,11 @@ entities: parent: 2 - proto: ClothingMaskGas entities: + - uid: 7343 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 - uid: 7547 components: - type: Transform @@ -15013,19 +21729,109 @@ entities: - type: Transform pos: 18.5,-12.5 parent: 2 -- proto: ClothingMaskGoldenCursed - entities: - - uid: 7736 + - uid: 8381 components: - type: Transform - pos: 61.5,4.5 + pos: 28.5,33.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8619 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10494 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10495 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10496 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10497 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11503 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingMaskGasAtmos + entities: + - uid: 1389 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 33.5,-7.5 parent: 2 - proto: ClothingMaskMuzzle entities: - - uid: 2179 + - uid: 798 components: - type: Transform - pos: 33.5,-5.5 + pos: 34.5,-2.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 33.5,-2.5 parent: 2 - uid: 6829 components: @@ -15047,36 +21853,11 @@ entities: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 7185 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - - uid: 7214 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - - uid: 7215 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - uid: 7250 components: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 7256 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7257 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - uid: 7428 components: - type: Transform @@ -15097,6 +21878,126 @@ entities: - type: Transform pos: 48.5,19.5 parent: 2 + - uid: 10657 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10658 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10659 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10660 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10661 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10662 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10663 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10664 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10665 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10666 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10667 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10668 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10669 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10670 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10671 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10672 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10673 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10674 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10675 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10676 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10677 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10678 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10679 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10680 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 - proto: ClothingMaskSterile entities: - uid: 7301 @@ -15111,13 +22012,65 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: ClothingNeckGoldmedal +- proto: ClothingOuterArmorBasic entities: - - uid: 7737 + - uid: 10411 components: - type: Transform - pos: 60.5,4.5 + pos: 34.5,-69.5 + parent: 3564 +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 7588 + components: + - type: Transform + pos: 11.5,35.5 parent: 2 + - uid: 8608 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8610 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10489 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10490 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10491 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10492 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 - proto: ClothingOuterStraightjacket entities: - uid: 2433 @@ -15155,29 +22108,122 @@ entities: - type: Transform pos: 33.5,13.5 parent: 2 + - uid: 10689 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10690 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10691 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10692 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10693 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10694 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10695 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 3564 + - uid: 10696 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10697 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10698 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10699 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10700 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10701 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 + - uid: 10702 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 3564 - proto: ClothingOuterSuitFire entities: + - uid: 794 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 - uid: 7544 components: - type: Transform pos: 15.5,-2.5 parent: 2 -- proto: ClothingShoesBootsMag - entities: - - uid: 7194 + - uid: 8375 components: - type: Transform - pos: 49.5,39.3 + pos: 28.5,33.5 parent: 2 - - uid: 7247 + - uid: 8376 components: - type: Transform - pos: 49.5,39.5 - parent: 2 - - uid: 7249 - components: - - type: Transform - pos: 49.5,39.7 + pos: 27.5,33.5 parent: 2 - proto: ClothingShoesClown entities: @@ -15193,12 +22239,234 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: ClothingShoesHighheelBootsFilled +- proto: ClothingShoesColorBlack entities: - - uid: 1388 + - uid: 5027 components: - type: Transform - pos: 62.5,8.5 + pos: 9.5,-12.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8635 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 + - uid: 10468 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10469 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10470 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10471 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10472 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11341 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 11507 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingShoesColorOrange + entities: + - uid: 1378 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 +- proto: ClothingShoesHighheelBootsFilled + entities: + - uid: 8268 + components: + - type: Transform + pos: 59.5,23.5 + parent: 2 +- proto: ClothingUniformJumpskirtColorBlack + entities: + - uid: 1443 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 8379 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8380 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8629 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10464 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10465 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10466 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10467 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11506 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingUniformJumpskirtColorBlue + entities: + - uid: 2624 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 +- proto: ClothingUniformJumpskirtColorGrey + entities: + - uid: 10414 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 +- proto: ClothingUniformJumpskirtColorYellow + entities: + - uid: 3299 + components: + - type: Transform + pos: 33.5,-8.5 parent: 2 - proto: ClothingUniformJumpsuitClown entities: @@ -15207,6 +22475,124 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 +- proto: ClothingUniformJumpsuitColorBlack + entities: + - uid: 96 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 8377 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 8378 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10459 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10460 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10461 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10462 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 + - uid: 11505 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 +- proto: ClothingUniformJumpsuitColorBlue + entities: + - uid: 28 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 +- proto: ClothingUniformJumpsuitColorGrey + entities: + - uid: 10413 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 +- proto: ClothingUniformJumpsuitColorYellow + entities: + - uid: 3298 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 - proto: ClownRecorder entities: - uid: 7682 @@ -15214,13 +22600,6 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: CluwneIDCard - entities: - - uid: 7173 - components: - - type: Transform - pos: 59.5,28.5 - parent: 2 - proto: ComfyChair entities: - uid: 2432 @@ -15291,12 +22670,18 @@ entities: - type: Transform pos: 61.5,29.5 parent: 2 -- proto: CommsComputerCircuitboard +- proto: ComputerAlert entities: - - uid: 8215 + - uid: 1459 components: - type: Transform - pos: 13.5,-11.5 + pos: 32.5,-4.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,24.5 parent: 2 - proto: ComputerAnalysisConsole entities: @@ -15313,11 +22698,10 @@ entities: - ArtifactAnalyzerReceiver - proto: ComputerAtmosMonitoring entities: - - uid: 1960 + - uid: 1460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,26.5 + pos: 31.5,-4.5 parent: 2 - uid: 2435 components: @@ -15325,28 +22709,6 @@ entities: rot: 3.141592653589793 rad pos: 60.5,28.5 parent: 2 -- proto: computerBodyScanner - entities: - - uid: 868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,7.5 - parent: 2 -- proto: ComputerCargoBounty - entities: - - uid: 7632 - components: - - type: Transform - pos: 18.5,25.5 - parent: 2 -- proto: ComputerCargoOrders - entities: - - uid: 539 - components: - - type: Transform - pos: 19.5,25.5 - parent: 2 - proto: ComputerComms entities: - uid: 2428 @@ -15354,6 +22716,11 @@ entities: - type: Transform pos: 58.5,34.5 parent: 2 + - uid: 5154 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 - uid: 7255 components: - type: Transform @@ -15361,10 +22728,10 @@ entities: parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 619 + - uid: 1534 components: - type: Transform - pos: 13.5,16.5 + pos: 28.5,16.5 parent: 2 - uid: 7176 components: @@ -15380,18 +22747,11 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-2.5 parent: 2 - - uid: 7179 + - uid: 2162 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,23.5 - parent: 2 -- proto: ComputerFundingAllocation - entities: - - uid: 7567 - components: - - type: Transform - pos: 44.5,29.5 + pos: 56.5,25.5 parent: 2 - proto: ComputerId entities: @@ -15400,17 +22760,17 @@ entities: - type: Transform pos: 56.5,34.5 parent: 2 - - uid: 7192 +- proto: ComputerMedicalRecords + entities: + - uid: 1010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-2.5 + pos: 13.5,16.5 parent: 2 - - uid: 8277 + - uid: 1531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,27.5 + pos: 26.5,16.5 parent: 2 - proto: ComputerPowerMonitoring entities: @@ -15420,60 +22780,85 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,62.5 parent: 2 - - uid: 1466 - components: - - type: Transform - pos: 37.5,35.5 - parent: 2 - - uid: 2613 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 2 - - uid: 7174 + - uid: 1578 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,22.5 + pos: 56.5,24.5 parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 16.5,39.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 3564 - proto: ComputerResearchAndDevelopment entities: - - uid: 1510 + - uid: 11211 components: - type: Transform - pos: 54.5,14.5 + pos: 51.5,9.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ComputerShuttleCargo entities: - - uid: 7633 + - uid: 1070 components: + - type: MetaData + desc: Used to pilot the prison shuttle. + name: prison shuttle console - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,20.5 + rot: -1.5707963267948966 rad + pos: 60.5,25.5 parent: 2 - - uid: 7634 + - uid: 2039 components: + - type: MetaData + desc: Used to pilot the prison shuttle. + name: prison shuttle console - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,21.5 + rot: 3.141592653589793 rad + pos: 37.5,-2.5 parent: 2 - proto: ComputerSolarControl entities: - - uid: 1338 - components: - - type: Transform - pos: 36.5,35.5 - parent: 2 - uid: 2495 components: - type: Transform pos: 60.5,62.5 parent: 2 - - uid: 2614 + - uid: 2696 components: - type: Transform - pos: 0.5,-7.5 + rot: -1.5707963267948966 rad + pos: 21.5,36.5 parent: 2 + - uid: 2785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 9439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-42.5 + parent: 3564 - proto: ComputerStationRecords entities: - uid: 7175 @@ -15495,56 +22880,11 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 -- proto: ConveyorBelt - entities: - - uid: 118 + - uid: 10511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 2 - - uid: 150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,5.5 - parent: 2 - - uid: 165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 2 - - uid: 254 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 2 - - uid: 256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,5.5 - parent: 2 - - uid: 258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 2 - - uid: 259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,5.5 - parent: 2 - - uid: 294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 2 + pos: 31.5,-25.5 + parent: 3564 - proto: CorporateCircuitBoard entities: - uid: 389 @@ -15618,57 +22958,61 @@ entities: - type: Transform pos: -5.5,18.5 parent: 2 -- proto: CrateFilledSpawner +- proto: CrateEngineeringAMEJar entities: - - uid: 8289 + - uid: 7801 components: - type: Transform - pos: 12.5,26.5 + pos: 42.5,40.5 parent: 2 - - uid: 8290 - components: - - type: Transform - pos: 14.5,23.5 - parent: 2 -- proto: CratePermaEscapeEVA +- proto: CrateEngineeringAMEShielding entities: - - uid: 2070 + - uid: 7800 components: - type: Transform - pos: 54.5,39.5 + pos: 42.5,41.5 parent: 2 - proto: CrateSecurityArmor entities: - - uid: 1104 + - uid: 9795 components: - type: Transform - pos: 37.5,-4.5 - parent: 2 - - uid: 1105 + pos: 33.5,-61.5 + parent: 3564 +- proto: CrateSecurityHelmet + entities: + - uid: 10451 components: - type: Transform - pos: 38.5,-4.5 - parent: 2 + pos: 36.5,-61.5 + parent: 3564 +- proto: CrateSecurityNonlethal + entities: + - uid: 10450 + components: + - type: Transform + pos: 35.5,-61.5 + parent: 3564 - proto: CrateSecuritySupplies entities: - - uid: 1327 + - uid: 10399 components: - type: Transform - pos: 40.5,-7.5 - parent: 2 -- proto: CrateServiceJanitorialSupplies + pos: 34.5,-61.5 + parent: 3564 +- proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 7657 + - uid: 10449 components: - type: Transform - pos: -2.5,7.5 - parent: 2 + pos: 32.5,-61.5 + parent: 3564 - proto: CrateTrackingImplants entities: - - uid: 7211 + - uid: 1742 components: - type: Transform - pos: 33.5,-2.5 + pos: 35.5,-1.5 parent: 2 - proto: Crematorium entities: @@ -15680,28 +23024,63 @@ entities: parent: 2 - proto: CrewMonitoringServer entities: - - uid: 6339 + - uid: 1260 components: - type: Transform - pos: 37.5,26.5 + pos: -4.5,7.5 parent: 2 - proto: Crowbar entities: + - uid: 1696 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 - uid: 7206 components: - type: Transform pos: 59.5,31.5 parent: 2 - - uid: 7295 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7717 - components: - - type: Transform - pos: 47.5,19.5 - parent: 2 - uid: 7718 components: - type: Transform @@ -15712,6 +23091,51 @@ entities: - type: Transform pos: 46.5,19.5 parent: 2 + - uid: 8371 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 11134 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 - proto: CryogenicSleepUnitSpawner entities: - uid: 5997 @@ -15771,18 +23195,14 @@ entities: pos: 33.5,60.5 parent: 2 - type: NavMapBeacon - text: Air Tunnel - - type: WarpPoint - location: Air Tunnel + defaultText: Air Tunnel - uid: 7740 components: - type: Transform pos: 21.5,51.5 parent: 2 - type: NavMapBeacon - text: AI Foyer - - type: WarpPoint - location: AI Foyer + defaultText: AI Foyer - proto: DefaultStationBeaconAICore entities: - uid: 7738 @@ -15797,26 +23217,19 @@ entities: - type: Transform pos: 32.5,53.5 parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 2588 + components: + - type: Transform + pos: 45.5,37.5 + parent: 2 - proto: DefaultStationBeaconAnchor entities: - uid: 7743 components: - type: Transform - pos: 3.5,35.5 - parent: 2 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 7744 - components: - - type: Transform - pos: 47.5,12.5 - parent: 2 -- proto: DefaultStationBeaconArmory - entities: - - uid: 7745 - components: - - type: Transform - pos: 41.5,-5.5 + pos: 1.5,32.5 parent: 2 - proto: DefaultStationBeaconArrivals entities: @@ -15825,37 +23238,12 @@ entities: - type: Transform pos: 60.5,48.5 parent: 2 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 7747 - components: - - type: Transform - pos: 50.5,3.5 - parent: 2 - proto: DefaultStationBeaconAtmospherics entities: - - uid: 7748 + - uid: 5860 components: - type: Transform - pos: 24.5,25.5 - parent: 2 -- proto: DefaultStationBeaconBar - entities: - - uid: 7749 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 2 - - type: NavMapBeacon - text: Nightclub - - type: WarpPoint - location: Nightclub -- proto: DefaultStationBeaconBotany - entities: - - uid: 7750 - components: - - type: Transform - pos: 14.5,-7.5 + pos: 28.5,-7.5 parent: 2 - proto: DefaultStationBeaconBridge entities: @@ -15864,13 +23252,8 @@ entities: - type: Transform pos: 63.5,31.5 parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 7751 - components: - - type: Transform - pos: 43.5,-0.5 - parent: 2 + - type: NavMapBeacon + defaultText: Control Room - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 7752 @@ -15878,27 +23261,8 @@ entities: - type: Transform pos: 57.5,22.5 parent: 2 -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 7753 - components: - - type: Transform - pos: 12.5,24.5 - parent: 2 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 7754 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 7755 - components: - - type: Transform - pos: 44.5,32.5 - parent: 2 + - type: NavMapBeacon + defaultText: Secure Storage - proto: DefaultStationBeaconChapel entities: - uid: 7756 @@ -15913,13 +23277,6 @@ entities: - type: Transform pos: 31.5,9.5 parent: 2 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 7758 - components: - - type: Transform - pos: 23.5,15.5 - parent: 2 - proto: DefaultStationBeaconCourtroom entities: - uid: 7759 @@ -15927,13 +23284,8 @@ entities: - type: Transform pos: 59.5,17.5 parent: 2 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 7760 - components: - - type: Transform - pos: -1.5,5.5 - parent: 2 + - type: NavMapBeacon + defaultText: Assembly Room - proto: DefaultStationBeaconDorms entities: - uid: 7761 @@ -15941,25 +23293,29 @@ entities: - type: Transform pos: 7.5,-0.5 parent: 2 + - type: NavMapBeacon + defaultText: Crew Sleeping Area - proto: DefaultStationBeaconEngineering entities: - - uid: 7762 + - uid: 7607 components: - type: Transform - pos: 35.5,32.5 + pos: 33.5,34.5 parent: 2 - proto: DefaultStationBeaconEvac entities: - uid: 7764 components: - type: Transform - pos: 59.5,-0.5 + pos: 60.5,-0.5 parent: 2 - uid: 7765 components: - type: Transform pos: 47.5,-15.5 parent: 2 + - type: NavMapBeacon + defaultText: Observation - proto: DefaultStationBeaconEVAStorage entities: - uid: 7763 @@ -15969,10 +23325,10 @@ entities: parent: 2 - proto: DefaultStationBeaconGravGen entities: - - uid: 7766 + - uid: 2533 components: - type: Transform - pos: 44.5,40.5 + pos: 46.5,31.5 parent: 2 - proto: DefaultStationBeaconHOPOffice entities: @@ -15981,20 +23337,6 @@ entities: - type: Transform pos: 43.5,28.5 parent: 2 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 7768 - components: - - type: Transform - pos: -4.5,7.5 - parent: 2 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 7769 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 2 - proto: DefaultStationBeaconMedbay entities: - uid: 7770 @@ -16009,26 +23351,12 @@ entities: - type: Transform pos: 3.5,14.5 parent: 2 -- proto: DefaultStationBeaconQMRoom +- proto: DefaultStationBeaconScience entities: - - uid: 7772 + - uid: 5633 components: - type: Transform - pos: 12.5,31.5 - parent: 2 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 7773 - components: - - type: Transform - pos: 54.5,13.5 - parent: 2 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 7774 - components: - - type: Transform - pos: 54.5,8.5 + pos: 51.5,6.5 parent: 2 - proto: DefaultStationBeaconSecurity entities: @@ -16042,8 +23370,10 @@ entities: - uid: 7776 components: - type: Transform - pos: 9.5,-5.5 + pos: 9.5,-6.5 parent: 2 + - type: NavMapBeacon + defaultText: Security (West) - proto: DefaultStationBeaconSolars entities: - uid: 7741 @@ -16052,25 +23382,14 @@ entities: pos: 58.5,67.5 parent: 2 - type: NavMapBeacon - text: Solars North - - type: WarpPoint - location: Solars North + defaultText: Solars North - uid: 7742 components: - type: Transform pos: -3.5,-10.5 parent: 2 - type: NavMapBeacon - text: Solars South - - type: WarpPoint - location: Solars South -- proto: DefaultStationBeaconTechVault - entities: - - uid: 7777 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 2 + defaultText: Solars South - proto: DefaultStationBeaconTEG entities: - uid: 7778 @@ -16078,6 +23397,13 @@ entities: - type: Transform pos: 15.5,37.5 parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 1523 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 - proto: DefaultStationBeaconToolRoom entities: - uid: 7779 @@ -16085,13 +23411,6 @@ entities: - type: Transform pos: 44.5,20.5 parent: 2 -- proto: DefaultStationBeaconVault - entities: - - uid: 7780 - components: - - type: Transform - pos: 62.5,7.5 - parent: 2 - proto: DefibrillatorCabinetFilled entities: - uid: 6328 @@ -16106,6 +23425,13 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,11.5 parent: 2 +- proto: DefibrillatorCompact + entities: + - uid: 2051 + components: + - type: Transform + pos: 9.3894615,33.437958 + parent: 2 - proto: DeskBell entities: - uid: 2202 @@ -16113,2470 +23439,681 @@ entities: - type: Transform pos: 15.615749,14.655383 parent: 2 - - uid: 2203 - components: - - type: Transform - pos: 40.543743,0.6440766 - parent: 2 - - uid: 2232 - components: - - type: Transform - pos: 45.61084,7.272194 - parent: 2 - - uid: 7182 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 - uid: 7183 components: - type: Transform pos: 32.7,7.5 parent: 2 - - uid: 7251 - components: - - type: Transform - pos: 19.5,23.5 - parent: 2 - proto: DisposalBend entities: - - uid: 6642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 2 - - uid: 6643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,6.5 - parent: 2 - - uid: 6657 - components: - - type: Transform - pos: 4.5,6.5 - parent: 2 - - uid: 6694 - components: - - type: Transform - pos: 18.5,5.5 - parent: 2 - - uid: 6695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 2 - - uid: 6712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 2 - - uid: 6724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,11.5 - parent: 2 - - uid: 6730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,11.5 - parent: 2 - - uid: 6744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,29.5 - parent: 2 - - uid: 6752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,23.5 - parent: 2 - - uid: 6766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,25.5 - parent: 2 - - uid: 6767 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 6768 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - - uid: 6806 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 - - uid: 6807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 2 - - uid: 6808 - components: - - type: Transform - pos: 13.5,28.5 - parent: 2 - - uid: 6824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 2 - - uid: 6825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 2 - - uid: 6861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,2.5 - parent: 2 - - uid: 6867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,8.5 - parent: 2 - - uid: 6875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,16.5 - parent: 2 - - uid: 6885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,16.5 - parent: 2 - - uid: 6899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-13.5 - parent: 2 - - uid: 6928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,1.5 - parent: 2 - - uid: 6929 - components: - - type: Transform - pos: 49.5,8.5 - parent: 2 - - uid: 6937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,2.5 - parent: 2 - - uid: 6938 - components: - - type: Transform - pos: 58.5,6.5 - parent: 2 - - uid: 6967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,18.5 - parent: 2 - - uid: 6974 - components: - - type: Transform - pos: 53.5,29.5 - parent: 2 - - uid: 6976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 - parent: 2 - - uid: 6977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,24.5 - parent: 2 - - uid: 6978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,23.5 - parent: 2 - - uid: 6998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,34.5 - parent: 2 - - uid: 7013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,36.5 - parent: 2 - - uid: 7015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,36.5 - parent: 2 - - uid: 7051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,58.5 - parent: 2 - - uid: 7052 - components: - - type: Transform - pos: 61.5,58.5 - parent: 2 - - uid: 7053 - components: - - type: Transform - pos: 56.5,60.5 - parent: 2 - - uid: 7098 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,60.5 - parent: 2 - - uid: 7099 + - uid: 1674 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,57.5 parent: 2 - - uid: 7100 + - uid: 1710 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,57.5 parent: 2 - - uid: 7149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,37.5 - parent: 2 - - uid: 7150 + - uid: 3238 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,37.5 + pos: 15.5,60.5 parent: 2 -- proto: DisposalJunction - entities: - - uid: 6656 + - uid: 11280 + components: + - type: Transform + pos: 56.5,60.5 + parent: 2 + - uid: 11281 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,5.5 + pos: 56.5,58.5 parent: 2 - - uid: 6682 + - uid: 11282 + components: + - type: Transform + pos: 61.5,58.5 + parent: 2 + - uid: 11305 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,5.5 + pos: 61.5,36.5 parent: 2 - - uid: 6699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,4.5 - parent: 2 - - uid: 6719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,10.5 - parent: 2 - - uid: 6722 - components: - - type: Transform - pos: 17.5,11.5 - parent: 2 - - uid: 6762 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 6775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,18.5 - parent: 2 - - uid: 6795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,18.5 - parent: 2 - - uid: 6893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,8.5 - parent: 2 - - uid: 6930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,6.5 - parent: 2 -- proto: DisposalJunctionFlipped - entities: - - uid: 3136 - components: - - type: Transform - pos: 51.5,29.5 - parent: 2 - - uid: 6721 - components: - - type: Transform - pos: 17.5,10.5 - parent: 2 - - uid: 6751 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 6788 - components: - - type: Transform - pos: 17.5,18.5 - parent: 2 - - uid: 6843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,4.5 - parent: 2 - - uid: 6873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 2 - - uid: 6922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,8.5 - parent: 2 -- proto: DisposalPipe - entities: - - uid: 156 + - uid: 11306 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 2 - - uid: 157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,12.5 - parent: 2 - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,12.5 - parent: 2 - - uid: 162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,12.5 - parent: 2 - - uid: 284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 - parent: 2 - - uid: 639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,34.5 - parent: 2 - - uid: 1617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,5.5 - parent: 2 - - uid: 3138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,35.5 - parent: 2 - - uid: 4811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,34.5 - parent: 2 - - uid: 6043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,34.5 - parent: 2 - - uid: 6613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,37.5 - parent: 2 - - uid: 6644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 2 - - uid: 6645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 2 - - uid: 6648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 2 - - uid: 6649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 2 - - uid: 6650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 2 - - uid: 6651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 2 - - uid: 6652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 2 - - uid: 6653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 2 - - uid: 6654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 2 - - uid: 6655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 2 - - uid: 6659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,5.5 - parent: 2 - - uid: 6661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,5.5 - parent: 2 - - uid: 6663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,5.5 - parent: 2 - - uid: 6664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,5.5 - parent: 2 - - uid: 6666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 2 - - uid: 6668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 2 - - uid: 6670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 2 - - uid: 6671 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,5.5 - parent: 2 - - uid: 6672 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,5.5 - parent: 2 - - uid: 6673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,5.5 - parent: 2 - - uid: 6675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,5.5 - parent: 2 - - uid: 6681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,34.5 - parent: 2 - - uid: 6685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,34.5 - parent: 2 - - uid: 6697 - components: - - type: Transform - pos: 22.5,6.5 - parent: 2 - - uid: 6698 - components: - - type: Transform - pos: 22.5,5.5 - parent: 2 - - uid: 6700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,4.5 - parent: 2 - - uid: 6701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,4.5 - parent: 2 - - uid: 6702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,4.5 - parent: 2 - - uid: 6709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,34.5 - parent: 2 - - uid: 6711 - components: - - type: Transform - pos: 10.5,10.5 - parent: 2 - - uid: 6713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,11.5 - parent: 2 - - uid: 6714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,11.5 - parent: 2 - - uid: 6715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,11.5 - parent: 2 - - uid: 6716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 2 - - uid: 6717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 2 - - uid: 6718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 2 - - uid: 6720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,10.5 - parent: 2 - - uid: 6725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,11.5 - parent: 2 - - uid: 6726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,11.5 - parent: 2 - - uid: 6727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,11.5 - parent: 2 - - uid: 6728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,11.5 - parent: 2 - - uid: 6729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,11.5 - parent: 2 - - uid: 6733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,9.5 - parent: 2 - - uid: 6734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,8.5 - parent: 2 - - uid: 6735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,7.5 - parent: 2 - - uid: 6736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 2 - - uid: 6740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,34.5 - parent: 2 - - uid: 6741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,33.5 - parent: 2 - - uid: 6742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,32.5 - parent: 2 - - uid: 6743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,31.5 - parent: 2 - - uid: 6745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,30.5 - parent: 2 - - uid: 6746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 2 - - uid: 6747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,29.5 - parent: 2 - - uid: 6748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,29.5 - parent: 2 - - uid: 6749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - - uid: 6750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,29.5 - parent: 2 - - uid: 6753 - components: - - type: Transform - pos: 27.5,22.5 - parent: 2 - - uid: 6754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - - uid: 6755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - - uid: 6757 - components: - - type: Transform - pos: 32.5,34.5 - parent: 2 - - uid: 6758 - components: - - type: Transform - pos: 32.5,33.5 - parent: 2 - - uid: 6759 - components: - - type: Transform - pos: 32.5,32.5 - parent: 2 - - uid: 6760 - components: - - type: Transform - pos: 32.5,31.5 - parent: 2 - - uid: 6761 - components: - - type: Transform - pos: 32.5,30.5 - parent: 2 - - uid: 6763 - components: - - type: Transform - pos: 32.5,28.5 - parent: 2 - - uid: 6764 - components: - - type: Transform - pos: 32.5,27.5 - parent: 2 - - uid: 6765 - components: - - type: Transform - pos: 32.5,26.5 - parent: 2 - - uid: 6769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 - parent: 2 - - uid: 6770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,23.5 - parent: 2 - - uid: 6771 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 6773 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 6774 - components: - - type: Transform - pos: 30.5,19.5 - parent: 2 - - uid: 6776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,18.5 - parent: 2 - - uid: 6777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,18.5 - parent: 2 - - uid: 6778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,18.5 - parent: 2 - - uid: 6779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,18.5 - parent: 2 - - uid: 6780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,18.5 - parent: 2 - - uid: 6781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,18.5 - parent: 2 - - uid: 6782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,18.5 - parent: 2 - - uid: 6783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,18.5 - parent: 2 - - uid: 6784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,18.5 - parent: 2 - - uid: 6785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,18.5 - parent: 2 - - uid: 6786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,18.5 - parent: 2 - - uid: 6787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,18.5 - parent: 2 - - uid: 6789 - components: - - type: Transform - pos: 17.5,17.5 - parent: 2 - - uid: 6790 - components: - - type: Transform - pos: 17.5,16.5 - parent: 2 - - uid: 6791 - components: - - type: Transform - pos: 17.5,15.5 - parent: 2 - - uid: 6792 - components: - - type: Transform - pos: 17.5,14.5 - parent: 2 - - uid: 6793 - components: - - type: Transform - pos: 17.5,13.5 - parent: 2 - - uid: 6794 - components: - - type: Transform - pos: 17.5,12.5 - parent: 2 - - uid: 6796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,23.5 - parent: 2 - - uid: 6797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 2 - - uid: 6798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 2 - - uid: 6799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 2 - - uid: 6800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - uid: 6801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,18.5 - parent: 2 - - uid: 6802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,18.5 - parent: 2 - - uid: 6803 - components: - - type: Transform - pos: 17.5,19.5 - parent: 2 - - uid: 6804 - components: - - type: Transform - pos: 17.5,20.5 - parent: 2 - - uid: 6805 - components: - - type: Transform - pos: 17.5,21.5 - parent: 2 - - uid: 6810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,28.5 - parent: 2 - - uid: 6811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,22.5 - parent: 2 - - uid: 6812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,22.5 - parent: 2 - - uid: 6813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,22.5 - parent: 2 - - uid: 6816 - components: - - type: Transform - pos: 13.5,23.5 - parent: 2 - - uid: 6817 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - uid: 6818 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - - uid: 6819 - components: - - type: Transform - pos: 13.5,26.5 - parent: 2 - - uid: 6820 - components: - - type: Transform - pos: 13.5,27.5 - parent: 2 - - uid: 6823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 2 - - uid: 6826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 2 - - uid: 6827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 2 - - uid: 6833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 2 - - uid: 6834 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 2 - - uid: 6835 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 2 - - uid: 6836 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 2 - - uid: 6837 - components: - - type: Transform - pos: 30.5,-1.5 - parent: 2 - - uid: 6838 - components: - - type: Transform - pos: 30.5,-0.5 - parent: 2 - - uid: 6839 - components: - - type: Transform - pos: 30.5,0.5 - parent: 2 - - uid: 6840 - components: - - type: Transform - pos: 30.5,1.5 - parent: 2 - - uid: 6841 - components: - - type: Transform - pos: 30.5,2.5 - parent: 2 - - uid: 6842 - components: - - type: Transform - pos: 30.5,3.5 - parent: 2 - - uid: 6844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 2 - - uid: 6845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,4.5 - parent: 2 - - uid: 6846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,4.5 - parent: 2 - - uid: 6847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,4.5 - parent: 2 - - uid: 6848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,4.5 - parent: 2 - - uid: 6849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,4.5 - parent: 2 - - uid: 6850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,4.5 - parent: 2 - - uid: 6851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,4.5 - parent: 2 - - uid: 6853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,4.5 - parent: 2 - - uid: 6854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 - parent: 2 - - uid: 6855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,4.5 - parent: 2 - - uid: 6856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,4.5 - parent: 2 - - uid: 6857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,4.5 - parent: 2 - - uid: 6858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,4.5 - parent: 2 - - uid: 6862 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,3.5 - parent: 2 - - uid: 6864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,5.5 - parent: 2 - - uid: 6865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 2 - - uid: 6866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,7.5 - parent: 2 - - uid: 6869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,6.5 - parent: 2 - - uid: 6870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,7.5 - parent: 2 - - uid: 6871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,8.5 - parent: 2 - - uid: 6872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,8.5 - parent: 2 - - uid: 6876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,16.5 - parent: 2 - - uid: 6877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,16.5 - parent: 2 - - uid: 6878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,16.5 - parent: 2 - - uid: 6879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,16.5 - parent: 2 - - uid: 6880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,16.5 - parent: 2 - - uid: 6881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,16.5 - parent: 2 - - uid: 6882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,16.5 - parent: 2 - - uid: 6883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,16.5 - parent: 2 - - uid: 6884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,16.5 - parent: 2 - - uid: 6886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,15.5 - parent: 2 - - uid: 6887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,14.5 - parent: 2 - - uid: 6888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,13.5 - parent: 2 - - uid: 6889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,12.5 - parent: 2 - - uid: 6890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,11.5 - parent: 2 - - uid: 6891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,10.5 - parent: 2 - - uid: 6892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,9.5 - parent: 2 - - uid: 6894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,8.5 - parent: 2 - - uid: 6895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,8.5 - parent: 2 - - uid: 6897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-13.5 - parent: 2 - - uid: 6898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-13.5 - parent: 2 - - uid: 6900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-12.5 - parent: 2 - - uid: 6901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-11.5 - parent: 2 - - uid: 6902 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-10.5 - parent: 2 - - uid: 6903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-9.5 - parent: 2 - - uid: 6904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-8.5 - parent: 2 - - uid: 6905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-7.5 - parent: 2 - - uid: 6906 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-6.5 - parent: 2 - - uid: 6907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-5.5 - parent: 2 - - uid: 6908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-4.5 - parent: 2 - - uid: 6909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-3.5 - parent: 2 - - uid: 6910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-2.5 - parent: 2 - - uid: 6911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-1.5 - parent: 2 - - uid: 6912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-0.5 - parent: 2 - - uid: 6913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,0.5 - parent: 2 - - uid: 6914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,1.5 - parent: 2 - - uid: 6915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,2.5 - parent: 2 - - uid: 6916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,3.5 - parent: 2 - - uid: 6917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,4.5 - parent: 2 - - uid: 6918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,5.5 - parent: 2 - - uid: 6919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,6.5 - parent: 2 - - uid: 6920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,7.5 - parent: 2 - - uid: 6923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,8.5 - parent: 2 - - uid: 6924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,8.5 - parent: 2 - - uid: 6925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,8.5 - parent: 2 - - uid: 6931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,7.5 - parent: 2 - - uid: 6932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,5.5 - parent: 2 - - uid: 6933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,4.5 - parent: 2 - - uid: 6934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,3.5 - parent: 2 - - uid: 6935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,2.5 - parent: 2 - - uid: 6939 - components: - - type: Transform - pos: 58.5,5.5 - parent: 2 - - uid: 6944 - components: - - type: Transform - pos: 58.5,4.5 - parent: 2 - - uid: 6945 - components: - - type: Transform - pos: 58.5,3.5 - parent: 2 - - uid: 6946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,2.5 - parent: 2 - - uid: 6947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,2.5 - parent: 2 - - uid: 6948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,2.5 - parent: 2 - - uid: 6949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,2.5 - parent: 2 - - uid: 6950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,6.5 - parent: 2 - - uid: 6951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,6.5 - parent: 2 - - uid: 6956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,6.5 - parent: 2 - - uid: 6957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,6.5 - parent: 2 - - uid: 6958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,6.5 - parent: 2 - - uid: 6959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,6.5 - parent: 2 - - uid: 6960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,6.5 - parent: 2 - - uid: 6961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,6.5 - parent: 2 - - uid: 6963 - components: - - type: Transform - pos: 38.5,22.5 - parent: 2 - - uid: 6964 - components: - - type: Transform - pos: 38.5,21.5 - parent: 2 - - uid: 6965 - components: - - type: Transform - pos: 38.5,20.5 - parent: 2 - - uid: 6966 - components: - - type: Transform - pos: 38.5,19.5 - parent: 2 - - uid: 6968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,18.5 - parent: 2 - - uid: 6969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - - uid: 6970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,18.5 - parent: 2 - - uid: 6971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,18.5 - parent: 2 - - uid: 6979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,23.5 - parent: 2 - - uid: 6980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,23.5 - parent: 2 - - uid: 6981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,23.5 - parent: 2 - - uid: 6982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,23.5 - parent: 2 - - uid: 6983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,23.5 - parent: 2 - - uid: 6984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,23.5 - parent: 2 - - uid: 6985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,24.5 - parent: 2 - - uid: 6986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,24.5 - parent: 2 - - uid: 6988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,24.5 - parent: 2 - - uid: 6989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 - parent: 2 - - uid: 6990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,24.5 - parent: 2 - - uid: 6991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,29.5 - parent: 2 - - uid: 6992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,28.5 - parent: 2 - - uid: 6993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,27.5 - parent: 2 - - uid: 6994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,26.5 - parent: 2 - - uid: 6996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,25.5 - parent: 2 - - uid: 7016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,34.5 - parent: 2 - - uid: 7017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,36.5 - parent: 2 - - uid: 7020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,36.5 - parent: 2 - - uid: 7021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,36.5 - parent: 2 - - uid: 7022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,36.5 - parent: 2 - - uid: 7024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,36.5 - parent: 2 - - uid: 7026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,36.5 - parent: 2 - - uid: 7027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,36.5 - parent: 2 - - uid: 7029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,38.5 - parent: 2 - - uid: 7030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,39.5 - parent: 2 - - uid: 7031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,40.5 - parent: 2 - - uid: 7032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,41.5 - parent: 2 - - uid: 7033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,42.5 - parent: 2 - - uid: 7034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,43.5 - parent: 2 - - uid: 7035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,44.5 - parent: 2 - - uid: 7036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,45.5 - parent: 2 - - uid: 7037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,46.5 - parent: 2 - - uid: 7038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,47.5 - parent: 2 - - uid: 7039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,48.5 - parent: 2 - - uid: 7041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,49.5 - parent: 2 - - uid: 7042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,50.5 - parent: 2 - - uid: 7043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,51.5 - parent: 2 - - uid: 7044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,52.5 - parent: 2 - - uid: 7045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,53.5 - parent: 2 - - uid: 7046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,54.5 - parent: 2 - - uid: 7047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,55.5 - parent: 2 - - uid: 7048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,56.5 - parent: 2 - - uid: 7049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,57.5 - parent: 2 - - uid: 7050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,59.5 - parent: 2 - - uid: 7054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,58.5 - parent: 2 - - uid: 7055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,58.5 - parent: 2 - - uid: 7056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,58.5 - parent: 2 - - uid: 7057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,58.5 - parent: 2 - - uid: 7058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,60.5 - parent: 2 - - uid: 7059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,60.5 - parent: 2 - - uid: 7060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,60.5 - parent: 2 - - uid: 7061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,60.5 - parent: 2 - - uid: 7062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,60.5 - parent: 2 - - uid: 7063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,60.5 - parent: 2 - - uid: 7064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,60.5 - parent: 2 - - uid: 7065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,60.5 - parent: 2 - - uid: 7066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,60.5 - parent: 2 - - uid: 7067 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,60.5 - parent: 2 - - uid: 7068 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,60.5 - parent: 2 - - uid: 7069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,60.5 - parent: 2 - - uid: 7070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,60.5 - parent: 2 - - uid: 7071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,60.5 - parent: 2 - - uid: 7072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,60.5 - parent: 2 - - uid: 7073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,60.5 - parent: 2 - - uid: 7074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,60.5 - parent: 2 - - uid: 7075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,60.5 - parent: 2 - - uid: 7076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,60.5 - parent: 2 - - uid: 7077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,60.5 - parent: 2 - - uid: 7078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,60.5 - parent: 2 - - uid: 7079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,60.5 - parent: 2 - - uid: 7080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,60.5 - parent: 2 - - uid: 7081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,60.5 - parent: 2 - - uid: 7082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,60.5 - parent: 2 - - uid: 7083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,60.5 - parent: 2 - - uid: 7084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,60.5 - parent: 2 - - uid: 7085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,60.5 - parent: 2 - - uid: 7086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,60.5 - parent: 2 - - uid: 7087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,60.5 - parent: 2 - - uid: 7088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,60.5 - parent: 2 - - uid: 7089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,60.5 - parent: 2 - - uid: 7090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,60.5 - parent: 2 - - uid: 7091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,60.5 - parent: 2 - - uid: 7092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,60.5 - parent: 2 - - uid: 7093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,60.5 - parent: 2 - - uid: 7094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,60.5 - parent: 2 - - uid: 7095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,60.5 - parent: 2 - - uid: 7096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,60.5 - parent: 2 - - uid: 7097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,60.5 - parent: 2 - - uid: 7102 - components: - - type: Transform - pos: 15.5,59.5 - parent: 2 - - uid: 7103 - components: - - type: Transform - pos: 15.5,58.5 - parent: 2 - - uid: 7104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,57.5 - parent: 2 - - uid: 7151 - components: - - type: Transform - pos: 57.5,39.5 - parent: 2 - - uid: 7152 - components: - - type: Transform - pos: 57.5,38.5 - parent: 2 - - uid: 7153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,37.5 - parent: 2 - - uid: 7155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,37.5 - parent: 2 - - uid: 7156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,37.5 - parent: 2 - - uid: 7159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,37.5 - parent: 2 - - uid: 7160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,37.5 - parent: 2 - - uid: 7161 - components: - - type: Transform - rot: 3.141592653589793 rad pos: 51.5,36.5 parent: 2 - - uid: 7162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,35.5 - parent: 2 - - uid: 7164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,34.5 - parent: 2 - - uid: 7165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,33.5 - parent: 2 - - uid: 7166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,32.5 - parent: 2 - - uid: 7167 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,31.5 - parent: 2 - - uid: 7168 + - uid: 11321 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,30.5 parent: 2 -- proto: DisposalTrunk + - uid: 11322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,30.5 + parent: 2 +- proto: DisposalPipe entities: - - uid: 159 + - uid: 567 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,12.5 + pos: -6.5,12.5 parent: 2 - - uid: 1618 + - uid: 811 components: - type: Transform - pos: 26.5,35.5 + rot: -1.5707963267948966 rad + pos: 51.5,60.5 parent: 2 - - uid: 4938 + - uid: 845 components: - type: Transform - pos: 57.5,40.5 + rot: -1.5707963267948966 rad + pos: 54.5,60.5 parent: 2 - - uid: 5055 + - uid: 850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,60.5 + parent: 2 + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,60.5 + parent: 2 + - uid: 1393 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,23.5 + pos: 16.5,57.5 parent: 2 - - uid: 6614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 2 - - uid: 6647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 2 - - uid: 6688 + - uid: 1400 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,34.5 + pos: 50.5,60.5 parent: 2 - - uid: 6696 - components: - - type: Transform - pos: 22.5,7.5 - parent: 2 - - uid: 6704 + - uid: 1451 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,10.5 + pos: 17.5,60.5 parent: 2 - - uid: 6705 + - uid: 1456 components: - type: Transform - pos: 25.5,12.5 + rot: -1.5707963267948966 rad + pos: 49.5,60.5 parent: 2 - - uid: 6707 + - uid: 1676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,9.5 + pos: 15.5,59.5 parent: 2 - - uid: 6739 + - uid: 1695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,21.5 + rot: -1.5707963267948966 rad + pos: -5.5,12.5 parent: 2 - - uid: 6756 + - uid: 1746 components: - type: Transform - pos: 32.5,35.5 + rot: -1.5707963267948966 rad + pos: 47.5,60.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,60.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,60.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 15.5,58.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,60.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,12.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,60.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,60.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,60.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,60.5 parent: 2 - uid: 6772 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,20.5 + pos: 38.5,60.5 parent: 2 - - uid: 6809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,28.5 - parent: 2 - - uid: 6822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-9.5 - parent: 2 - - uid: 6860 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 2 - - uid: 6868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,5.5 - parent: 2 - - uid: 6874 - components: - - type: Transform - pos: 54.5,17.5 - parent: 2 - - uid: 6896 + - uid: 6773 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-13.5 + pos: 37.5,60.5 parent: 2 - - uid: 6927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,1.5 - parent: 2 - - uid: 6936 + - uid: 6774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,2.5 + pos: 43.5,60.5 parent: 2 - - uid: 6973 + - uid: 6775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,60.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,60.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,60.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,60.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,60.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,60.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,60.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,60.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,60.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,60.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,60.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,60.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,60.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,60.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,60.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,60.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,60.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,60.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,60.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,58.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,58.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,58.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,58.5 + parent: 2 + - uid: 11283 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,28.5 + pos: 56.5,59.5 parent: 2 - - uid: 7101 + - uid: 11284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,57.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,56.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,55.5 + parent: 2 + - uid: 11287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,54.5 + parent: 2 + - uid: 11288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,53.5 + parent: 2 + - uid: 11289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,52.5 + parent: 2 + - uid: 11290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,51.5 + parent: 2 + - uid: 11291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,50.5 + parent: 2 + - uid: 11292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,49.5 + parent: 2 + - uid: 11293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,48.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,47.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,46.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,45.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,44.5 + parent: 2 + - uid: 11298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,43.5 + parent: 2 + - uid: 11299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,42.5 + parent: 2 + - uid: 11300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,41.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,40.5 + parent: 2 + - uid: 11302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,39.5 + parent: 2 + - uid: 11303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,38.5 + parent: 2 + - uid: 11304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,37.5 + parent: 2 + - uid: 11307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,36.5 + parent: 2 + - uid: 11308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,36.5 + parent: 2 + - uid: 11309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,36.5 + parent: 2 + - uid: 11310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,36.5 + parent: 2 + - uid: 11311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,36.5 + parent: 2 + - uid: 11312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - uid: 11313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - uid: 11314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,36.5 + parent: 2 + - uid: 11315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 11317 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 11318 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 + - uid: 11319 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 11320 + components: + - type: Transform + pos: 51.5,31.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,30.5 + parent: 2 + - uid: 11324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,30.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,30.5 + parent: 2 + - uid: 11326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,30.5 + parent: 2 + - uid: 11327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,30.5 + parent: 2 + - uid: 11328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,30.5 + parent: 2 + - uid: 11329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,30.5 + parent: 2 + - uid: 11330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,30.5 + parent: 2 + - uid: 11331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,30.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 11333 + components: + - type: Transform + pos: 61.5,32.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + pos: 61.5,33.5 + parent: 2 + - uid: 11537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,12.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 + - uid: 3335 components: - type: Transform pos: 17.5,58.5 parent: 2 + - uid: 11335 + components: + - type: Transform + pos: 61.5,34.5 + parent: 2 - proto: DisposalUnit entities: - uid: 160 @@ -18592,174 +24129,50 @@ entities: - type: Transform pos: 17.5,58.5 parent: 2 - - uid: 4850 - components: - - type: Transform - pos: 57.5,40.5 - parent: 2 - - uid: 5010 - components: - - type: Transform - pos: 49.5,-13.5 - parent: 2 - - uid: 5029 - components: - - type: Transform - pos: 41.5,5.5 - parent: 2 - - uid: 5054 - components: - - type: Transform - pos: 32.5,35.5 - parent: 2 - - uid: 5112 - components: - - type: Transform - pos: 54.5,17.5 - parent: 2 - - uid: 5135 - components: - - type: Transform - pos: 63.5,2.5 - parent: 2 - - uid: 6646 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - uid: 6689 - components: - - type: Transform - pos: 10.5,9.5 - parent: 2 - - uid: 6690 - components: - - type: Transform - pos: 20.5,10.5 - parent: 2 - - uid: 6691 - components: - - type: Transform - pos: 11.5,28.5 - parent: 2 - - uid: 6692 - components: - - type: Transform - pos: 31.5,20.5 - parent: 2 - - uid: 6693 - components: - - type: Transform - pos: 25.5,12.5 - parent: 2 - - uid: 6737 - components: - - type: Transform - pos: 27.5,21.5 - parent: 2 - - uid: 6738 - components: - - type: Transform - pos: 26.5,35.5 - parent: 2 - - uid: 6821 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 2 - uid: 6830 components: - type: Transform pos: 61.5,34.5 parent: 2 - - uid: 6859 - components: - - type: Transform - pos: 37.5,2.5 - parent: 2 - - uid: 6926 - components: - - type: Transform - pos: 48.5,1.5 - parent: 2 - - uid: 6972 - components: - - type: Transform - pos: 53.5,28.5 - parent: 2 - - uid: 7040 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 7460 - components: - - type: Transform - pos: 22.5,7.5 - parent: 2 -- proto: DisposalYJunction +- proto: DresserWardenFilled entities: - - uid: 6863 + - uid: 10432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,4.5 - parent: 2 - - uid: 6962 - components: - - type: Transform - pos: 38.5,23.5 - parent: 2 -- proto: DogBed + pos: 32.5,-69.5 + parent: 3564 +- proto: DrinkCafeLatte entities: - - uid: 2283 + - uid: 1560 components: - type: Transform - pos: 47.5,27.5 + pos: 7.722795,34.250458 parent: 2 - - uid: 2404 - components: - - type: Transform - pos: 56.5,20.5 - parent: 2 -- proto: DoorElectronicsService +- proto: DrinkGlass entities: - - uid: 2186 + - uid: 10577 components: - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 2190 + pos: 11.5,-29.5 + parent: 3564 + - uid: 10578 components: - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 4220 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 -- proto: DrinkBottleBeer - entities: - - uid: 2051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.777023,12.639819 - parent: 2 + pos: 11.5,-29.5 + parent: 3564 - proto: DrinkGoldenCup entities: - - uid: 7734 + - uid: 7826 components: - type: Transform - pos: 62.5,5.5 + pos: 59.5,23.5 parent: 2 - proto: Dropper entities: - - uid: 2133 + - uid: 1514 components: - type: Transform - pos: 33.5,-5.5 + pos: 34.5,-2.5 parent: 2 - uid: 7325 components: @@ -18771,8 +24184,23 @@ entities: - type: Transform pos: 12.5,13.5 parent: 2 + - uid: 10342 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 3564 + - uid: 10704 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 3564 - proto: EmergencyOxygenTankFilled entities: + - uid: 5978 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 - uid: 7548 components: - type: Transform @@ -18790,20 +24218,6 @@ entities: - type: Transform pos: 28.42001,14.909441 parent: 2 -- proto: ExosuitFabricator - entities: - - uid: 1555 - components: - - type: Transform - pos: 52.5,9.5 - parent: 2 -- proto: ExtendedEmergencyOxygenTankFilled - entities: - - uid: 2427 - components: - - type: Transform - pos: 59.569664,22.772419 - parent: 2 - proto: FaxMachineBase entities: - uid: 8293 @@ -18811,12 +24225,21 @@ entities: - type: Transform pos: 60.5,31.5 parent: 2 -- proto: FaxMachineCaptain - entities: - - uid: 8292 + - type: FaxMachine + name: Bridge + - uid: 11365 components: - type: Transform - pos: 59.5,23.5 + pos: 32.5,-64.5 + parent: 3564 + - type: FaxMachine + name: Warden's Office +- proto: FaxMachineCaptain + entities: + - uid: 7336 + components: + - type: Transform + pos: 59.5,22.5 parent: 2 - proto: FireAlarm entities: @@ -18828,12 +24251,20 @@ entities: parent: 2 - type: DeviceList devices: - - 2920 + - 2897 - 2919 - 2918 - - 2917 - 2916 - 2922 + - uid: 35 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 2921 + - 3246 - uid: 433 components: - type: Transform @@ -18852,15 +24283,33 @@ entities: - 6540 - 2949 - 2950 + - uid: 2009 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 2944 + - uid: 2770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 2406 + - 1741 + - 1735 - uid: 2967 components: - type: Transform - pos: 43.5,30.5 + pos: 44.5,30.5 parent: 2 - type: DeviceList devices: - 2972 - - 2971 - uid: 2982 components: - type: Transform @@ -18876,22 +24325,25 @@ entities: - 6541 - 2927 - 2926 + - uid: 5865 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 2935 + - 2936 - uid: 6170 components: - type: Transform pos: 59.5,38.5 parent: 2 - - type: DeviceList - devices: - - 2977 - - 2978 - - 2980 - - 2979 - uid: 6528 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,21.5 + pos: 53.5,21.5 parent: 2 - type: DeviceList devices: @@ -18904,24 +24356,16 @@ entities: parent: 2 - type: DeviceList devices: - - 2936 - - 2940 - - 2939 - - 2938 - - 2937 - 2941 - 2942 - 2943 + - 2937 + - 2938 + - 2939 + - 2940 + - 2936 + - 2935 - 3246 - - uid: 6566 - components: - - type: Transform - pos: 35.5,-3.5 - parent: 2 - - type: DeviceList - devices: - - 2944 - - 8224 - uid: 6567 components: - type: Transform @@ -18971,16 +24415,13 @@ entities: parent: 2 - type: DeviceList devices: - - 2973 - - 2974 - - 2970 + - 8527 - 2964 - 2963 - 2962 - - 2897 - - 2896 - - 2971 + - 2970 - 2972 + - 2974 - uid: 6573 components: - type: Transform @@ -18990,58 +24431,6 @@ entities: - type: DeviceList devices: - 2912 - - uid: 6574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,25.5 - parent: 2 - - type: DeviceList - devices: - - 2904 - - 2901 - - 2900 - - 2912 - - 2899 - - 2902 - - 2903 - - uid: 6575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,24.5 - parent: 2 - - type: DeviceList - devices: - - 2898 - - 2900 - - 2901 - - 2907 - - 2908 - - 2906 - - 2905 - - 2911 - - 2910 - - 2909 - - uid: 6576 - components: - - type: Transform - pos: 28.5,39.5 - parent: 2 - - type: DeviceList - devices: - - 2904 - - uid: 6577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,40.5 - parent: 2 - - type: DeviceList - devices: - - 2909 - - 2910 - - 2911 - uid: 6578 components: - type: Transform @@ -19049,52 +24438,8 @@ entities: parent: 2 - type: DeviceList devices: - - 2908 - - 2907 - - 2906 - - 2905 - 396 - - uid: 6579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 2915 - - 2914 - - 2913 - - uid: 6580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,19.5 - parent: 2 - - type: DeviceList - devices: - - 2913 - - 2914 - - 2915 - - 2894 - - 2895 - - 2917 - - 2916 - - uid: 6581 - components: - - type: Transform - pos: 26.5,20.5 - parent: 2 - - type: DeviceList - devices: - - 2898 - - 2899 - - 2903 - - 2902 - - 2896 - - 2897 - - 2894 - - 2895 + - 8475 - uid: 6582 components: - type: Transform @@ -19127,11 +24472,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,45.5 parent: 2 - - type: DeviceList - devices: - - 2980 - - 2979 - - 8221 - uid: 6586 components: - type: Transform @@ -19159,27 +24499,14 @@ entities: parent: 2 - type: DeviceList devices: - - 8224 - - 8226 - - 6540 - 8225 - 2947 - - uid: 6589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 2 - - type: DeviceList - devices: - - 8229 - - 8226 - - 2935 + - 6540 - uid: 6591 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-8.5 + pos: 47.5,-7.5 parent: 2 - type: DeviceList devices: @@ -19207,8 +24534,8 @@ entities: - uid: 6594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,8.5 + rot: 1.5707963267948966 rad + pos: 56.5,8.5 parent: 2 - type: DeviceList devices: @@ -19227,11 +24554,20 @@ entities: - 2961 - 2975 - 2976 - - uid: 7781 + - uid: 6642 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-12.5 + pos: 15.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 8539 + - 8543 + - uid: 7781 + components: + - type: Transform + pos: 11.5,-9.5 parent: 2 - type: DeviceList devices: @@ -19256,9 +24592,8 @@ entities: - type: DeviceList devices: - 2974 - - 2973 - 2978 - - 2977 + - 8549 - uid: 8223 components: - type: Transform @@ -19276,15 +24611,12 @@ entities: parent: 2 - type: DeviceList devices: - - 8225 - - 8229 - 2931 - - 2932 - - 2930 + - 8225 - uid: 8232 components: - type: Transform - pos: 21.5,5.5 + pos: 25.5,8.5 parent: 2 - type: DeviceList devices: @@ -19296,16 +24628,6 @@ entities: - 2918 - 2919 - 2925 - - uid: 8234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,14.5 - parent: 2 - - type: DeviceList - devices: - - 2921 - - 3246 - uid: 8235 components: - type: Transform @@ -19331,11 +24653,9 @@ entities: parent: 2 - type: DeviceList devices: - - 2932 - - 2931 - - 2930 - - 2929 - 2928 + - 2929 + - 2931 - uid: 8247 components: - type: Transform @@ -19353,20 +24673,251 @@ entities: - type: DeviceList devices: - 8245 -- proto: FireAxe - entities: - - uid: 7726 + - uid: 8307 components: - type: Transform - pos: 27.5,35.5 + pos: 30.5,32.5 parent: 2 + - type: DeviceList + devices: + - 2901 + - uid: 8356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 8539 + - uid: 8528 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 2904 + - 8472 + - 8473 + - 8474 + - 8471 + - 7657 + - 1831 + - 8477 + - 2912 + - uid: 8529 + components: + - type: Transform + pos: 36.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 2904 + - uid: 8531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 8474 + - 8473 + - 8472 + - 2406 + - 1741 + - 1735 + - 8475 + - uid: 8533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 1606 + - 8527 + - 2901 + - 8471 + - 7657 + - 1831 + - 8477 + - uid: 8541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 8543 + - uid: 10242 + components: + - type: Transform + pos: 15.5,-64.5 + parent: 3564 + - type: DeviceList + devices: + - 9647 + - 9646 + - uid: 10243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-61.5 + parent: 3564 + - type: DeviceList + devices: + - 9645 + - 9646 + - uid: 10244 + components: + - type: Transform + pos: 32.5,-62.5 + parent: 3564 + - type: DeviceList + devices: + - 9648 + - 9649 + - uid: 10245 + components: + - type: Transform + pos: 27.5,-56.5 + parent: 3564 + - type: DeviceList + devices: + - 9642 + - 9643 + - 9644 + - 9648 + - uid: 10246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-57.5 + parent: 3564 + - type: DeviceList + devices: + - 9641 + - 9640 + - 9645 + - 9642 + - 9643 + - 9644 + - 9649 + - 9647 + - 9650 + - uid: 10247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-31.5 + parent: 3564 + - type: DeviceList + devices: + - 9631 + - 9632 + - 9633 + - 9634 + - 9635 + - 9636 + - 9638 + - 9637 + - 9640 + - 9641 + - uid: 10248 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 3564 + - type: DeviceList + devices: + - 9635 + - uid: 10249 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 3564 + - type: DeviceList + devices: + - 9634 + - 9633 + - uid: 10250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-17.5 + parent: 3564 + - type: DeviceList + devices: + - 9631 + - 9632 + - uid: 10251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 3564 + - type: DeviceList + devices: + - 9636 + - 9638 + - 9637 + - 9639 - proto: FireExtinguisher entities: + - uid: 1071 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 - uid: 3962 components: - type: Transform pos: 54.471027,32.541878 parent: 2 + - uid: 5156 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 - uid: 7552 components: - type: Transform @@ -19382,6 +24933,36 @@ entities: - type: Transform pos: 15.5,-10.5 parent: 2 + - uid: 8226 + components: + - type: Transform + pos: 21.5,39.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 11346 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 - proto: Firelock entities: - uid: 396 @@ -19392,94 +24973,78 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6578 - - 6555 - 433 - 6554 - - uid: 2894 + - 6578 + - 6555 + - uid: 1606 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,19.5 + pos: 31.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6581 - - 6552 - - 6580 - - 6551 - - uid: 2895 + - 8533 + - 8532 + - uid: 1735 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,18.5 + pos: 23.5,40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6581 - - 6552 - - 6580 - - 6551 - - uid: 2896 + - 8531 + - 8509 + - 2770 + - 6556 + - uid: 1741 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,19.5 + pos: 24.5,40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6581 - - 6552 - - 6570 - - 6529 + - 8531 + - 8509 + - 2770 + - 6556 + - uid: 1831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8533 + - 8532 + - uid: 2406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8531 + - 8509 + - 2770 + - 6556 - uid: 2897 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,18.5 + pos: 21.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6581 - - 6552 - - 6570 - - 6529 - - uid: 2898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6581 - - 6552 - - uid: 2899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6574 - - 6559 - - 6581 - - 6552 - - uid: 2900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6574 - - 6559 - - 6575 - - 6553 + - 7 + - 7434 - uid: 2901 components: - type: Transform @@ -19488,34 +25053,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6574 - - 6559 - - 6575 - - 6553 - - uid: 2902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6574 - - 6559 - - 6581 - - 6552 - - uid: 2903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6574 - - 6559 - - 6581 - - 6552 + - 8533 + - 8532 + - 8307 + - 1602 - uid: 2904 components: - type: Transform @@ -19524,94 +25065,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6576 - - 6557 - - 6574 + - 8529 + - 5210 + - 8528 - 6559 - - uid: 2905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6578 - - 6555 - - uid: 2906 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6578 - - 6555 - - uid: 2907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6578 - - 6555 - - uid: 2908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6578 - - 6555 - - uid: 2909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6577 - - 6556 - - uid: 2910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6577 - - 6556 - - uid: 2911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6575 - - 6553 - - 6577 - - 6556 - uid: 2912 components: - type: Transform @@ -19620,46 +25077,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6574 + - 8528 - 6559 - 6573 - 6558 - - uid: 2913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6580 - - 6551 - - 6579 - - 6550 - - uid: 2914 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6580 - - 6551 - - 6579 - - 6550 - - uid: 2915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6580 - - 6551 - - 6579 - - 6550 - uid: 2916 components: - type: Transform @@ -19668,20 +25089,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6580 - - 6551 - - 7 - - 7434 - - uid: 2917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6580 - - 6551 + - 8544 - 7 - 7434 - uid: 2918 @@ -19693,7 +25101,7 @@ entities: - type: DeviceNetwork deviceLists: - 8232 - - 6561 + - 56 - 7 - 7434 - uid: 2919 @@ -19705,17 +25113,7 @@ entities: - type: DeviceNetwork deviceLists: - 8232 - - 6561 - - 7 - - 7434 - - uid: 2920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: + - 56 - 7 - 7434 - uid: 2921 @@ -19726,8 +25124,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8234 - - 6548 + - 35 + - 3162 - uid: 2922 components: - type: Transform @@ -19736,10 +25134,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 7 - - 7434 - 8235 - 8236 + - 7 + - 7434 - uid: 2923 components: - type: Transform @@ -19775,10 +25173,10 @@ entities: - type: DeviceNetwork deviceLists: - 8232 - - 6561 - 2982 - 6165 - 6584 + - 56 - uid: 2926 components: - type: Transform @@ -19814,9 +25212,9 @@ entities: - type: DeviceNetwork deviceLists: - 8232 - - 6561 - 8242 - 8241 + - 56 - uid: 2929 components: - type: Transform @@ -19830,18 +25228,6 @@ entities: - 6584 - 8242 - 8241 - - uid: 2930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8230 - - 8231 - - 8242 - - 8241 - uid: 2931 components: - type: Transform @@ -19850,22 +25236,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8230 - - 8231 - 8242 - 8241 - - uid: 2932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 8230 - 8231 - - 8242 - - 8241 - uid: 2934 components: - type: Transform @@ -19887,8 +25261,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6589 - - 6562 + - 5865 + - 5864 + - 6565 + - 6564 - uid: 2936 components: - type: Transform @@ -19897,6 +25273,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 5865 + - 5864 - 6565 - 6564 - uid: 2937 @@ -19907,10 +25285,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 56 + - 8232 - 6565 - 6564 - - 8232 - - 6561 - uid: 2938 components: - type: Transform @@ -19919,10 +25297,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 56 + - 8232 - 6565 - 6564 - - 8232 - - 6561 - uid: 2939 components: - type: Transform @@ -19931,10 +25309,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 56 + - 8232 - 6565 - 6564 - - 8232 - - 6561 - uid: 2940 components: - type: Transform @@ -19943,10 +25321,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 56 + - 8232 - 6565 - 6564 - - 8232 - - 6561 - uid: 2941 components: - type: Transform @@ -19993,8 +25371,8 @@ entities: deviceLists: - 8222 - 6568 - - 6566 - 6563 + - 2009 - uid: 2947 components: - type: Transform @@ -20003,10 +25381,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6588 - - 6542 - 6587 - 6543 + - 6588 + - 6542 - uid: 2949 components: - type: Transform @@ -20146,10 +25524,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6569 - 6572 + - 6570 + - 6529 - uid: 2963 components: - type: Transform @@ -20158,10 +25536,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6569 - 6572 + - 6570 + - 6529 - uid: 2964 components: - type: Transform @@ -20170,10 +25548,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6569 - 6572 + - 6570 + - 6529 - uid: 2965 components: - type: Transform @@ -20200,25 +25578,14 @@ entities: - uid: 2970 components: - type: Transform - pos: 43.5,21.5 + pos: 43.5,22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6528 - 6532 - - uid: 2971 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 6570 - 6529 - - 6530 - - 2967 - uid: 2972 components: - type: Transform @@ -20226,21 +25593,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6570 - - 6529 - 6530 - 2967 - - uid: 2973 - components: - - type: Transform - pos: 50.5,28.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 6570 - 6529 - - 8219 - - 6527 - uid: 2974 components: - type: Transform @@ -20248,10 +25604,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: + - 6527 + - 8219 - 6570 - 6529 - - 8219 - - 6527 - uid: 2975 components: - type: Transform @@ -20274,17 +25630,6 @@ entities: - 6534 - 6594 - 6535 - - uid: 2977 - components: - - type: Transform - pos: 54.5,37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8219 - - 6527 - - 2968 - - 6170 - uid: 2978 components: - type: Transform @@ -20292,10 +25637,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 8219 - - 6527 - 2968 - - 6170 + - 6527 + - 8219 - uid: 2979 components: - type: Transform @@ -20304,20 +25648,6 @@ entities: - type: DeviceNetwork deviceLists: - 2968 - - 6170 - - 8220 - - 6585 - - uid: 2980 - components: - - type: Transform - pos: 60.5,38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2968 - - 6170 - - 8220 - - 6585 - uid: 3246 components: - type: Transform @@ -20328,8 +25658,8 @@ entities: deviceLists: - 6565 - 6564 - - 8234 - - 6548 + - 35 + - 3162 - uid: 6540 components: - type: Transform @@ -20338,10 +25668,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6588 - - 6542 - 1968 - 6539 + - 6588 + - 6542 - uid: 6541 components: - type: Transform @@ -20355,6 +25685,18 @@ entities: - 6584 - 6587 - 6543 + - uid: 7657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8533 + - 8532 - uid: 8221 components: - type: Transform @@ -20362,22 +25704,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6585 - - 8220 - 6526 - 8223 - - uid: 8224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6566 - - 6563 - - 6588 - - 6542 - uid: 8225 components: - type: Transform @@ -20386,34 +25714,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6588 - - 6542 - 8230 - 8231 - - uid: 8226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - 6588 - 6542 - - 6589 - - 6562 - - uid: 8229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6589 - - 6562 - - 8230 - - 8231 - uid: 8237 components: - type: Transform @@ -20430,7 +25734,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,50.5 + pos: 41.5,50.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -20450,43 +25754,391 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,57.5 + pos: 18.5,57.5 parent: 2 - type: DeviceNetwork deviceLists: - 8247 - 6524 -- proto: Fireplace - entities: - - uid: 2423 + - uid: 8471 components: - type: Transform - pos: 56.5,25.5 + rot: 1.5707963267948966 rad + pos: 32.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8533 + - 8532 + - uid: 8472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8531 + - 8509 + - uid: 8473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8531 + - 8509 + - uid: 8474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8531 + - 8509 + - uid: 8475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8531 + - 8509 + - 6578 + - 6555 + - uid: 8477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8528 + - 6559 + - 8533 + - 8532 + - uid: 8527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8533 + - 8532 + - 6570 + - 6529 + - uid: 8539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8356 + - 6614 + - 6642 + - 8538 + - uid: 8543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6642 + - 8538 + - 8541 + - 8542 + - uid: 8549 + components: + - type: Transform + pos: 62.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6527 + - 8219 +- proto: FirelockGlass + entities: + - uid: 9631 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10250 + - 10235 + - 10247 + - 10233 + - uid: 9632 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10250 + - 10235 + - 10247 + - 10233 + - uid: 9633 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10236 + - 10249 + - uid: 9634 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10236 + - 10249 + - uid: 9635 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10248 + - 10234 + - uid: 9636 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10232 + - 10251 + - uid: 9637 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10232 + - 10251 + - uid: 9638 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10232 + - 10251 + - uid: 9639 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - 10251 + - uid: 9640 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10246 + - 10239 + - uid: 9641 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10247 + - 10233 + - 10246 + - 10239 + - uid: 9642 + components: + - type: Transform + pos: 26.5,-58.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10245 + - 10241 + - uid: 9643 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10245 + - 10241 + - uid: 9644 + components: + - type: Transform + pos: 26.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10245 + - 10241 + - uid: 9645 + components: + - type: Transform + pos: 18.5,-60.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10243 + - 10238 + - uid: 9646 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10242 + - 10237 + - 10243 + - 10238 + - uid: 9647 + components: + - type: Transform + pos: 18.5,-67.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10242 + - 10237 + - uid: 9648 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10245 + - 10241 + - 10240 + - 10244 + - uid: 9649 + components: + - type: Transform + pos: 26.5,-66.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 + - 10240 + - 10244 + - uid: 9650 + components: + - type: Transform + pos: 22.5,-70.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10246 + - 10239 - proto: Flare entities: - - uid: 1579 + - uid: 1380 components: - type: Transform - pos: 28.5,35.5 + pos: 38.5,-9.5 parent: 2 - - uid: 1626 + - uid: 1721 components: - type: Transform - pos: 28.5,35.5 + pos: 38.5,-9.5 parent: 2 - - uid: 1637 + - uid: 3296 components: - type: Transform - pos: 28.5,35.5 + pos: 38.5,-9.5 parent: 2 - - uid: 1639 + - uid: 3297 components: - type: Transform - pos: 28.5,35.5 + pos: 38.5,-9.5 parent: 2 - proto: FlashlightLantern entities: + - uid: 3563 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 - uid: 7232 components: - type: Transform @@ -20497,36 +26149,40 @@ entities: - type: Transform pos: 46.5,21.5 parent: 2 + - uid: 8282 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 11169 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 11175 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 11519 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 +- proto: FloorChasmEntity + entities: + - uid: 1536 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 - proto: FloorDrain entities: - - uid: 2412 + - uid: 1521 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-12.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,0.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 3164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,9.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7659 - components: - - type: Transform - pos: -0.5,6.5 + pos: 31.5,10.5 parent: 2 - type: Fixtures fixtures: {} @@ -20549,50 +26205,26 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: FoodGoldenApple +- proto: FoodPlatePlastic entities: - - uid: 7735 + - uid: 10575 components: - type: Transform - pos: 62.5,4.5 - parent: 2 -- proto: FoodPacketCupRamenTrash + pos: 11.5,-29.5 + parent: 3564 +- proto: FoodPlateSmallPlastic entities: - - uid: 2052 + - uid: 10576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.347336,13.694507 - parent: 2 - - uid: 2053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.222336,13.202319 - parent: 2 -- proto: FoodPacketDanDanTrash + pos: 11.5,-29.5 + parent: 3564 +- proto: FoodTinMRETrash entities: - - uid: 2048 + - uid: 3850 components: - type: Transform - pos: 53.745773,12.007007 - parent: 2 - - uid: 2049 - components: - - type: Transform - pos: 52.5739,12.686694 - parent: 2 - - uid: 2050 - components: - - type: Transform - pos: 52.972336,12.405444 - parent: 2 -- proto: FrezonCanister - entities: - - uid: 6611 - components: - - type: Transform - pos: 22.5,42.5 + pos: 9.8373785,33.69837 parent: 2 - proto: GameMasterCircuitBoard entities: @@ -20601,28 +26233,51 @@ entities: - type: Transform pos: 30.5,52.5 parent: 2 +- proto: GasAnalyzer + entities: + - uid: 6695 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 - proto: GasFilter entities: - - uid: 1703 + - uid: 536 components: - type: Transform - pos: 20.5,30.5 - parent: 2 - - uid: 1709 - components: - - type: Transform - pos: 20.5,29.5 - parent: 2 -- proto: GasFilterFlipped - entities: - - uid: 1712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,32.5 + rot: -1.5707963267948966 rad + pos: 27.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 2 +- proto: GasFilterFlipped + entities: - uid: 6608 components: - type: Transform @@ -20633,77 +26288,108 @@ entities: color: '#990000FF' - proto: GasMinerNitrogenStation entities: - - uid: 1597 + - uid: 619 components: - type: Transform - pos: 17.5,28.5 + pos: 28.5,0.5 parent: 2 + - uid: 9669 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 3564 - proto: GasMinerOxygenStation entities: - - uid: 1656 + - uid: 546 components: - type: Transform - pos: 17.5,31.5 + pos: 22.5,0.5 parent: 2 + - uid: 9670 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 3564 - proto: GasMixer entities: - - uid: 1695 + - uid: 308 components: - type: Transform - pos: 21.5,27.5 + pos: 52.5,3.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-3.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,29.5 parent: 2 - proto: GasMixerFlipped entities: - - uid: 684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,36.5 - parent: 2 - - uid: 1479 + - uid: 52 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,25.5 + pos: 25.5,-4.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 2 + - uid: 9702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasOutletInjector entities: - - uid: 693 + - uid: 1375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,31.5 + pos: 27.5,-0.5 parent: 2 - - uid: 852 + - uid: 2857 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,28.5 + pos: 22.5,-4.5 parent: 2 - - uid: 1347 + - uid: 3107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,28.5 + pos: 23.5,-0.5 parent: 2 - - uid: 1707 + - uid: 5153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,30.5 + rot: 3.141592653589793 rad + pos: 27.5,-12.5 parent: 2 - proto: GasPassiveVent entities: - - uid: 35 + - uid: 42 components: - type: Transform - pos: 23.5,-4.5 - parent: 2 - - uid: 36 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-5.5 + rot: -1.5707963267948966 rad + pos: 27.5,0.5 parent: 2 - uid: 65 components: @@ -20711,48 +26397,68 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-2.5 parent: 2 - - uid: 794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,36.5 - parent: 2 - - uid: 1655 + - uid: 168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,27.5 + pos: 23.5,0.5 parent: 2 - - uid: 1700 + - uid: 2422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,31.5 + pos: 23.5,-5.5 parent: 2 - - uid: 1702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,31.5 - parent: 2 - - uid: 1717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,27.5 - parent: 2 - - uid: 8274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,1.5 - parent: 2 - - uid: 8275 + - uid: 2755 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,1.5 parent: 2 + - uid: 5732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-12.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,29.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,1.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 3564 + - uid: 9692 + components: + - type: Transform + pos: 13.5,-58.5 + parent: 3564 + - uid: 9693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-63.5 + parent: 3564 + - uid: 11560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,25.5 + parent: 2 + - uid: 11564 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 - proto: GasPipeBend entities: - uid: 18 @@ -20770,17 +26476,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 51 + - uid: 40 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 2 - - uid: 52 - components: - - type: Transform - pos: 28.5,-1.5 + pos: 28.5,-4.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 74 components: - type: Transform @@ -20793,58 +26496,24 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,3.5 parent: 2 - - uid: 659 + - uid: 229 components: - type: Transform - pos: 18.5,37.5 - parent: 2 - - uid: 687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 811 - components: - - type: Transform - pos: 22.5,32.5 - parent: 2 - - uid: 848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,30.5 + pos: 28.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 850 - components: - - type: Transform - pos: 21.5,31.5 - parent: 2 - - uid: 853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,28.5 - parent: 2 - - uid: 903 - components: - - type: Transform - pos: 28.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 932 + - uid: 259 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,37.5 + pos: 26.5,0.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 25.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 1334 components: - type: Transform @@ -20853,14 +26522,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1336 components: - type: Transform @@ -20869,12 +26530,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,29.5 - parent: 2 - uid: 1404 components: - type: Transform @@ -20882,14 +26537,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1636 + - uid: 1511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,23.5 + pos: 17.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 1640 components: - type: Transform @@ -20897,6 +26551,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 1650 components: - type: Transform @@ -20905,24 +26567,64 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 1719 + - uid: 1654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,31.5 - parent: 2 - - uid: 1732 - components: - - type: Transform - pos: 26.5,33.5 + pos: 20.5,38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2690 + - uid: 1658 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 1661 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,33.5 + pos: 25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1702 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 2746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -20958,21 +26660,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2870 + - uid: 2891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,33.5 + rot: -1.5707963267948966 rad + pos: 18.5,12.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3023 + - uid: 2917 components: - type: Transform - pos: 18.5,22.5 + rot: 3.141592653589793 rad + pos: 34.5,21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3016 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3084 components: - type: Transform @@ -20981,14 +26691,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3113 + - uid: 3112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-6.5 + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3114 components: - type: Transform @@ -20997,14 +26705,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3127 components: - type: Transform @@ -21013,11 +26713,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3191 + - uid: 3169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,12.5 + pos: 34.5,35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -21043,44 +26742,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3260 + - uid: 3207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-10.5 + pos: 25.5,-9.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3286 - components: - - type: Transform - pos: 31.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3288 - components: - - type: Transform - pos: 28.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3310 components: - type: Transform @@ -21089,18 +26755,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3324 - components: - - type: Transform - pos: 18.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3355 + - uid: 3334 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-8.5 + pos: 17.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -21118,13 +26777,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3421 - components: - - type: Transform - pos: 0.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3430 components: - type: Transform @@ -21235,14 +26887,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3616 components: - type: Transform @@ -21259,22 +26903,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3698 + - uid: 3715 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,22.5 + pos: 38.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3720 components: - type: Transform @@ -21283,6 +26919,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3803 components: - type: Transform @@ -21344,22 +26988,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3973 components: - type: Transform @@ -21376,14 +27004,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4011 components: - type: Transform @@ -21392,6 +27012,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4019 components: - type: Transform @@ -21400,6 +27028,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4048 components: - type: Transform @@ -21522,6 +27158,74 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6449 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6459 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6728 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6749 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7110 components: - type: Transform @@ -21534,8 +27238,723 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,15.5 parent: 2 + - uid: 7416 + components: + - type: Transform + pos: 57.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-61.5 + parent: 3564 + - uid: 9800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9841 + components: + - type: Transform + pos: 34.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9842 + components: + - type: Transform + pos: 34.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9885 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10179 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10183 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-18.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11498 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBendAlt1 + entities: + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 853 + components: + - type: Transform + pos: 56.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1526 + components: + - type: Transform + pos: 21.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2985 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6443 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7731 + components: + - type: Transform + pos: 61.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11229 + components: + - type: Transform + pos: 23.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11244 + components: + - type: Transform + pos: 27.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11269 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11278 + components: + - type: Transform + pos: 42.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11440 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11526 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeBendAlt2 + entities: + - uid: 1471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8465 + components: + - type: Transform + pos: 61.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8486 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8553 + components: + - type: Transform + pos: 57.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11488 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: + - uid: 1599 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2726 components: - type: Transform @@ -21543,20 +27962,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3006 - components: - - type: Transform - pos: 18.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3029 - components: - - type: Transform - pos: 37.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3037 components: - type: Transform @@ -21571,20 +27976,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3358 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3397 - components: - - type: Transform - pos: 17.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3633 components: - type: Transform @@ -21592,13 +27983,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3709 - components: - - type: Transform - pos: 51.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3869 components: - type: Transform @@ -21606,13 +27990,462 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeSensorDistribution + - uid: 9917 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9919 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9961 + components: + - type: Transform + pos: 22.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9962 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9963 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9964 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9965 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9966 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10032 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10050 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10055 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10081 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10082 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10119 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10125 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourwayAlt2 entities: - - uid: 138 + - uid: 7564 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8515 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeManifold + entities: + - uid: 1351 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1438 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1565 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1572 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1669 + components: + - type: Transform + pos: 19.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1701 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4013 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,29.5 + pos: 50.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5162 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6647 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6652 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6668 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7413 + components: + - type: Transform + pos: 21.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8300 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8522 + components: + - type: Transform + pos: 37.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11257 + components: + - type: Transform + pos: 30.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11279 + components: + - type: Transform + pos: 42.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11430 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11448 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11535 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorDistribution + entities: + - uid: 1685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -21628,67 +28461,37 @@ entities: color: '#03FCD3FF' - proto: GasPipeSensorTEGHot entities: - - uid: 1737 + - uid: 1663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,35.5 + rot: 3.141592653589793 rad + pos: 17.5,34.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - proto: GasPipeSensorWaste entities: - - uid: 890 + - uid: 1683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,30.5 + rot: 3.141592653589793 rad + pos: 30.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeStraight entities: - - uid: 37 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-7.5 - parent: 2 - uid: 38 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-5.5 + rot: 1.5707963267948966 rad + pos: 24.5,-2.5 parent: 2 - uid: 39 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-6.5 - parent: 2 - - uid: 40 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-4.5 - parent: 2 - - uid: 41 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-3.5 - parent: 2 - - uid: 42 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-2.5 - parent: 2 - - uid: 53 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-8.5 + pos: 22.5,-3.5 parent: 2 - uid: 67 components: @@ -21714,44 +28517,41 @@ entities: rot: 3.141592653589793 rad pos: 40.5,2.5 parent: 2 - - uid: 136 - components: - - type: Transform - pos: 27.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 137 - components: - - type: Transform - pos: 27.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 465 + - uid: 182 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,31.5 + pos: 25.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 466 + - uid: 290 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,30.5 + pos: 27.5,-1.5 + parent: 2 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,2.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 469 components: - type: Transform @@ -21767,14 +28567,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 586 + - uid: 532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,34.5 + rot: 3.141592653589793 rad + pos: 25.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 655 components: - type: Transform @@ -21783,42 +28581,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 670 - components: - - type: Transform - pos: 26.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 701 - components: - - type: Transform - pos: 20.5,31.5 - parent: 2 - - uid: 703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 709 components: - type: Transform @@ -21837,7 +28599,8 @@ entities: - uid: 767 components: - type: Transform - pos: 23.5,35.5 + rot: -1.5707963267948966 rad + pos: 24.5,35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -21868,50 +28631,27 @@ entities: - uid: 821 components: - type: Transform - pos: 28.5,33.5 + rot: -1.5707963267948966 rad + pos: 25.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' + - uid: 822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 833 components: - type: Transform - pos: 28.5,32.5 + rot: -1.5707963267948966 rad + pos: 27.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 844 - components: - - type: Transform - pos: 28.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,32.5 - parent: 2 - - uid: 851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,28.5 - parent: 2 - - uid: 855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,30.5 - parent: 2 + color: '#990000FF' - uid: 869 components: - type: Transform @@ -21928,32 +28668,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 919 + - uid: 925 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,36.5 - parent: 2 - - uid: 963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1020 - components: - - type: Transform - pos: 23.5,36.5 + pos: 18.5,38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -21993,6 +28712,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1346 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 1402 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 - uid: 1421 components: - type: Transform @@ -22021,6 +28752,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 1453 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 1454 components: - type: Transform @@ -22029,6 +28767,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,29.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1470 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1485 components: - type: Transform @@ -22037,6 +28796,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1591 components: - type: Transform @@ -22044,35 +28843,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1647 + - uid: 1595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1600 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,39.5 + pos: 24.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1630 + components: + - type: Transform + pos: 18.5,32.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 1648 + - uid: 1642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,39.5 + rot: 3.141592653589793 rad + pos: 18.5,35.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' @@ -22084,109 +28882,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,27.5 - parent: 2 - - uid: 1694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,27.5 - parent: 2 - - uid: 1696 + - uid: 1665 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,29.5 - parent: 2 - - uid: 1698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,31.5 + pos: 28.5,-3.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,26.5 - parent: 2 - - uid: 1701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,30.5 - parent: 2 - - uid: 1704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,27.5 - parent: 2 - - uid: 1705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,29.5 - parent: 2 - - uid: 1710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,28.5 - parent: 2 - - uid: 1718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,28.5 - parent: 2 - - uid: 1725 - components: - - type: Transform - pos: 26.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1726 - components: - - type: Transform - pos: 26.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,33.5 + pos: 61.5,42.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -22197,30 +28904,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1741 + - uid: 1750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,33.5 + rot: 3.141592653589793 rad + pos: 20.5,37.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1747 + - uid: 1852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,31.5 - parent: 2 - - uid: 1748 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,31.5 - parent: 2 - - uid: 1799 - components: - - type: Transform - pos: 26.5,28.5 + rot: 3.141592653589793 rad + pos: 30.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -22276,6 +28972,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2166 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2192 components: - type: Transform @@ -22308,6 +29011,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2276 components: - type: Transform @@ -22324,22 +29035,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2365 components: - type: Transform @@ -22347,21 +29042,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2384 - components: - - type: Transform - pos: 28.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2406 + - uid: 2403 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,29.5 + pos: 51.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 2560 components: - type: Transform @@ -22370,6 +29058,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2685 components: - type: Transform @@ -22402,38 +29098,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2692 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2693 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,36.5 + pos: 30.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 2694 + color: '#0055CCFF' + - uid: 2695 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,37.5 + pos: 30.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 2698 components: - type: Transform @@ -22458,74 +29138,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2732 - components: - - type: Transform - pos: 27.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2733 - components: - - type: Transform - pos: 27.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2734 - components: - - type: Transform - pos: 27.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2737 - components: - - type: Transform - pos: 27.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2760 + - uid: 2744 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,38.5 + pos: 18.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' + - uid: 2745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2765 components: - type: Transform @@ -22534,14 +29178,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2771 components: - type: Transform @@ -22550,14 +29186,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2797 components: - type: Transform @@ -22590,14 +29218,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2804 components: - type: Transform @@ -22903,30 +29523,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2882 components: - type: Transform @@ -22935,30 +29531,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2888 components: - type: Transform @@ -22967,11 +29539,51 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2889 + - uid: 2894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,19.5 + pos: 36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -22979,7 +29591,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,19.5 + pos: 27.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -22987,7 +29599,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,19.5 + pos: 26.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -22995,7 +29607,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,19.5 + pos: 25.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23003,7 +29615,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,19.5 + pos: 24.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23011,7 +29623,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,19.5 + pos: 23.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23019,7 +29631,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,19.5 + pos: 22.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23027,15 +29639,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,19.5 + pos: 21.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23119,14 +29723,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3008 + - uid: 3005 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,18.5 + pos: 31.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 3009 components: - type: Transform @@ -23143,50 +29747,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3012 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3015 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,19.5 + pos: 32.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23214,84 +29779,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3022 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3024 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3025 - components: - - type: Transform - pos: 18.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,22.5 + pos: 14.5,25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 3030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,22.5 + pos: 37.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 3031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,21.5 + pos: 37.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3035 components: - type: Transform @@ -23313,13 +29822,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3041 - components: - - type: Transform - pos: 38.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3042 components: - type: Transform @@ -23471,13 +29973,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3086 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3088 components: - type: Transform @@ -23494,13 +29989,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3091 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3093 components: - type: Transform @@ -23539,69 +30027,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 + rot: 1.5707963267948966 rad + pos: 26.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-6.5 + rot: 3.141592653589793 rad + pos: 26.5,-1.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3112 - components: - - type: Transform - pos: 34.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3115 components: - type: Transform @@ -23642,10 +30079,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3129 + - uid: 3124 components: - type: Transform - pos: 34.5,-8.5 + rot: 3.141592653589793 rad + pos: 13.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -23689,6 +30127,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-2.5 + parent: 2 - uid: 3137 components: - type: Transform @@ -23697,6 +30141,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3139 components: - type: Transform @@ -23729,14 +30181,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3148 components: - type: Transform @@ -23777,14 +30221,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3156 components: - type: Transform @@ -23856,14 +30292,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3170 components: - type: Transform @@ -23880,14 +30308,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3174 components: - type: Transform @@ -23907,8 +30327,8 @@ entities: - uid: 3176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 + rot: -1.5707963267948966 rad + pos: 33.5,30.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -24043,13 +30463,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3207 - components: - - type: Transform - pos: 32.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3208 components: - type: Transform @@ -24174,14 +30587,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3236 components: - type: Transform @@ -24214,20 +30619,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3248 - components: - - type: Transform - pos: 34.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3250 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3251 components: - type: Transform @@ -24268,14 +30659,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3257 components: - type: Transform @@ -24292,170 +30675,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3261 + - uid: 3276 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3289 - components: - - type: Transform pos: 28.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3294 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3298 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-7.5 + pos: 28.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -24595,46 +30827,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3336 components: - type: Transform @@ -24691,94 +30883,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3365 components: - type: Transform @@ -24787,14 +30891,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3368 components: - type: Transform @@ -24811,22 +30907,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3373 components: - type: Transform @@ -25833,77 +31913,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3576 - components: - - type: Transform - pos: 40.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3578 components: - type: Transform @@ -26444,16 +32453,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3667 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 46.5,6.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 3668 components: - type: Transform @@ -26593,8 +32592,8 @@ entities: - uid: 3694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,22.5 + rot: 3.141592653589793 rad + pos: 38.5,22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -26602,31 +32601,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,21.5 + pos: 40.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -26638,14 +32613,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3706 components: - type: Transform @@ -26670,75 +32637,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3710 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3711 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3712 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3723 components: - type: Transform @@ -26827,62 +32725,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3748 components: - type: Transform @@ -26891,14 +32733,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3754 components: - type: Transform @@ -26915,38 +32749,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3762 components: - type: Transform @@ -26955,38 +32757,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3766 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3768 components: - type: Transform @@ -27075,14 +32845,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3785 components: - type: Transform @@ -27094,7 +32856,8 @@ entities: - uid: 3789 components: - type: Transform - pos: 56.5,32.5 + rot: 3.141592653589793 rad + pos: 33.5,30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -27353,14 +33116,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3851 components: - type: Transform @@ -27605,14 +33360,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3903 components: - type: Transform @@ -27708,30 +33455,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3925 components: - type: Transform @@ -27746,20 +33469,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3927 - components: - - type: Transform - pos: 49.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3928 - components: - - type: Transform - pos: 49.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3930 components: - type: Transform @@ -27928,22 +33637,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3961 components: - type: Transform @@ -28032,14 +33725,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3985 components: - type: Transform @@ -28072,22 +33757,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3993 components: - type: Transform @@ -28112,17 +33781,19 @@ entities: - uid: 3996 components: - type: Transform - pos: 60.5,38.5 + rot: 1.5707963267948966 rad + pos: 40.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3997 components: - type: Transform - pos: 60.5,39.5 + rot: 3.141592653589793 rad + pos: 43.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 3998 components: - type: Transform @@ -28130,20 +33801,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3999 - components: - - type: Transform - pos: 60.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4000 - components: - - type: Transform - pos: 60.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4012 components: - type: Transform @@ -28151,34 +33808,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4013 - components: - - type: Transform - pos: 60.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4014 - components: - - type: Transform - pos: 61.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4016 - components: - - type: Transform - pos: 60.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4020 - components: - - type: Transform - pos: 60.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4021 components: - type: Transform @@ -28221,13 +33850,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4033 - components: - - type: Transform - pos: 61.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4034 components: - type: Transform @@ -29056,91 +34678,469 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4229 components: - type: Transform - pos: 13.5,24.5 + rot: 1.5707963267948966 rad + pos: 35.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 4230 components: - type: Transform - pos: 13.5,23.5 + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,18.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4234 + - uid: 4233 components: - type: Transform - pos: 13.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4235 - components: - - type: Transform - pos: 13.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4236 - components: - - type: Transform - pos: 13.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4237 - components: - - type: Transform - pos: 14.5,22.5 + pos: 17.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4238 components: - type: Transform - pos: 14.5,24.5 + rot: 1.5707963267948966 rad + pos: 19.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4239 components: - type: Transform - pos: 14.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4240 - components: - - type: Transform - pos: 14.5,26.5 + rot: 1.5707963267948966 rad + pos: 29.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4241 components: - type: Transform - pos: 14.5,25.5 + rot: 3.141592653589793 rad + pos: 17.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4244 + - uid: 4716 components: - type: Transform - pos: 13.5,29.5 + rot: 3.141592653589793 rad + pos: 57.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4246 + color: '#0055CCFF' + - uid: 4717 components: - type: Transform rot: -1.5707963267948966 rad + pos: 44.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-11.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5217 + components: + - type: Transform pos: 14.5,22.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-11.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: 14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6672 + components: + - type: Transform + pos: 43.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6847 + components: + - type: Transform + pos: 56.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7106 components: - type: Transform @@ -29154,43 +35154,4418 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,15.5 parent: 2 - - uid: 8272 + - uid: 7652 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,2.5 + pos: 30.5,25.5 parent: 2 - - uid: 8273 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,2.5 + rot: -1.5707963267948966 rad + pos: 25.5,29.5 parent: 2 -- proto: GasPipeTJunction - entities: - - uid: 464 + - uid: 7655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,29.5 + parent: 2 + - uid: 7660 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,33.5 + pos: 30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,23.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 689 + - uid: 7663 components: - type: Transform - pos: 24.5,23.5 + rot: 3.141592653589793 rad + pos: 29.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,2.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 690 + - uid: 8419 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8447 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8483 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,25.5 + pos: 36.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-59.5 + parent: 3564 + - uid: 9695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-59.5 + parent: 3564 + - uid: 9703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-61.5 + parent: 3564 + - uid: 9706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-62.5 + parent: 3564 + - uid: 9707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9711 + components: + - type: Transform + pos: 13.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9797 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9799 + components: + - type: Transform + pos: 13.5,-66.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9819 + components: + - type: Transform + pos: 27.5,-68.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9822 + components: + - type: Transform + pos: 21.5,-68.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9823 + components: + - type: Transform + pos: 25.5,-68.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9831 + components: + - type: Transform + pos: 22.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9839 + components: + - type: Transform + pos: 34.5,-68.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9855 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9856 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9857 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9858 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9859 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9862 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-66.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-65.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-64.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9875 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9876 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9877 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-59.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9915 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9916 + components: + - type: Transform + pos: 22.5,-55.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9918 + components: + - type: Transform + pos: 22.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9920 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9921 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9922 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10009 + components: + - type: Transform + pos: 22.5,-51.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10010 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10011 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10024 + components: + - type: Transform + pos: 22.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10025 + components: + - type: Transform + pos: 22.5,-47.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10026 + components: + - type: Transform + pos: 22.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10027 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10028 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10048 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10049 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10051 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10052 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10053 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10054 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10069 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10070 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10071 + components: + - type: Transform + pos: 22.5,-43.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10072 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10074 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10076 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10077 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10078 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10083 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10084 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10085 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10109 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10110 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10117 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10118 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10120 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10121 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10122 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10123 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10126 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10127 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10205 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10206 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10207 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10208 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10209 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10210 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10211 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10212 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10216 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10217 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10218 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10219 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11452 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11453 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,27.5 + parent: 2 + - uid: 11562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,26.5 + parent: 2 +- proto: GasPipeStraightAlt1 + entities: + - uid: 256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 804 + components: + - type: Transform + pos: 15.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 852 + components: + - type: Transform + pos: 61.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 854 + components: + - type: Transform + pos: 61.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1455 + components: + - type: Transform + pos: 15.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1457 + components: + - type: Transform + pos: 61.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1527 + components: + - type: Transform + pos: 61.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1566 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1681 + components: + - type: Transform + pos: 61.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1682 + components: + - type: Transform + pos: 61.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1900 + components: + - type: Transform + pos: 61.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2407 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2671 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2674 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2890 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2892 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3015 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4237 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4242 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6444 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6461 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6462 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7355 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7386 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10340 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11270 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11271 + components: + - type: Transform + pos: 37.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11272 + components: + - type: Transform + pos: 37.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8459 + components: + - type: Transform + pos: 61.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8460 + components: + - type: Transform + pos: 61.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8461 + components: + - type: Transform + pos: 61.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8462 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8463 + components: + - type: Transform + pos: 61.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8464 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8555 + components: + - type: Transform + pos: 57.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8556 + components: + - type: Transform + pos: 57.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8557 + components: + - type: Transform + pos: 57.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,3.5 + parent: 2 + - uid: 719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 803 components: - type: Transform @@ -29199,22 +39574,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 860 + - uid: 932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,33.5 + rot: 1.5707963267948966 rad + pos: 18.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 1286 components: - type: Transform @@ -29231,14 +39598,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1429 components: - type: Transform @@ -29247,20 +39606,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1446 + - uid: 1483 components: - type: Transform - pos: 22.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1528 - components: - - type: Transform - pos: 27.5,30.5 + rot: -1.5707963267948966 rad + pos: 30.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1619 components: - type: Transform @@ -29269,20 +39630,74 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1658 + - uid: 1639 components: - type: Transform - pos: 18.5,35.5 + rot: -1.5707963267948966 rad + pos: 17.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1646 + components: + - type: Transform + pos: 18.5,36.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 1766 + - uid: 1651 components: - type: Transform - pos: 20.5,33.5 + pos: 14.5,38.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 1652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1670 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1687 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2003 components: - type: Transform @@ -29291,28 +39706,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2135 + - uid: 2270 components: - type: Transform - pos: 16.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2166 - components: - - type: Transform - pos: 14.5,38.5 + rot: 3.141592653589793 rad + pos: 51.5,25.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2523 components: - type: Transform @@ -29321,6 +39722,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2673 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2688 components: - type: Transform @@ -29329,22 +39737,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2696 + - uid: 2747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,38.5 + rot: 3.141592653589793 rad + pos: 18.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2736 + - uid: 2749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,24.5 + rot: 3.141592653589793 rad + pos: 16.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 2808 components: - type: Transform @@ -29408,57 +39816,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2892 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2985 - components: - - type: Transform - pos: 23.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3005 + - uid: 2893 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,19.5 + pos: 37.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -29470,6 +39848,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3044 components: - type: Transform @@ -29541,6 +39935,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3102 components: - type: Transform @@ -29549,14 +39951,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3117 components: - type: Transform @@ -29588,6 +39982,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3181 components: - type: Transform @@ -29596,6 +39998,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3199 components: - type: Transform @@ -29641,50 +40051,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3259 + - uid: 3230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3264 - components: - - type: Transform - pos: 29.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3300 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-6.5 + pos: 28.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -29703,14 +40073,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3333 components: - type: Transform @@ -29719,22 +40081,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3345 components: - type: Transform @@ -29743,22 +40089,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3367 components: - type: Transform @@ -29806,6 +40136,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3429 components: - type: Transform @@ -29900,29 +40238,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3571 - components: - - type: Transform - pos: 40.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3589 components: - type: Transform @@ -29992,14 +40307,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3703 components: - type: Transform @@ -30015,22 +40322,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3716 + - uid: 3713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,23.5 + rot: -1.5707963267948966 rad + pos: 43.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 3747 components: - type: Transform @@ -30039,27 +40338,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3750 + - uid: 3764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,29.5 + pos: 54.5,31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -30216,14 +40498,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3972 components: - type: Transform @@ -30232,13 +40506,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3982 - components: - - type: Transform - pos: 57.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3983 components: - type: Transform @@ -30247,6 +40514,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 4000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4009 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4017 components: - type: Transform @@ -30279,6 +40561,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4117 components: - type: Transform @@ -30302,30 +40600,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4232 + - uid: 4203 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,21.5 + pos: 26.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 4243 + - uid: 4204 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,28.5 + pos: 27.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4247 components: - type: Transform @@ -30334,19 +40620,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4248 + - uid: 4667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,33.5 + rot: -1.5707963267948966 rad + pos: 34.5,29.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4694 + - uid: 5112 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,34.5 + pos: 33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6577 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -30356,6 +40665,61 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,14.5 parent: 2 + - uid: 6716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6849 + components: + - type: Transform + pos: 30.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7108 components: - type: Transform @@ -30368,38 +40732,540 @@ entities: rot: 3.141592653589793 rad pos: 9.5,14.5 parent: 2 -- proto: GasPort - entities: - - uid: 58 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 2 - - uid: 60 + - uid: 7649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-1.5 + pos: 29.5,30.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9700 + components: + - type: Transform + pos: 12.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-62.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-65.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9813 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9821 + components: + - type: Transform + pos: 25.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9829 + components: + - type: Transform + pos: 25.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9833 + components: + - type: Transform + pos: 27.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9840 + components: + - type: Transform + pos: 27.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-57.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-67.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-57.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-60.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-58.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-52.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-52.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-48.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-44.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-48.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-36.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-40.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-32.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-32.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10166 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10171 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10184 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10185 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-21.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 1439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3268 + components: + - type: Transform + pos: 19.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunctionAlt2 + entities: + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8436 + components: + - type: Transform + pos: 49.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: - uid: 64 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,3.5 parent: 2 - - uid: 1346 + - uid: 1381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,36.5 + rot: -1.5707963267948966 rad + pos: 27.5,-4.5 parent: 2 - - uid: 1598 + - uid: 1653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,37.5 + rot: -1.5707963267948966 rad + pos: 19.5,33.5 parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 1662 components: - type: Transform @@ -30408,49 +41274,110 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1757 + - uid: 1704 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,25.5 + pos: 28.5,-3.5 parent: 2 - - uid: 8268 - components: - - type: Transform - pos: 51.5,4.5 - parent: 2 - - uid: 8269 + - uid: 2267 components: - type: Transform pos: 52.5,4.5 parent: 2 -- proto: GasPressurePump - entities: - - uid: 56 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-8.5 - parent: 2 - - uid: 57 + - uid: 2863 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-1.5 + pos: 33.5,8.5 parent: 2 + - uid: 4008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,29.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 11502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 +- proto: GasPressurePump + entities: - uid: 63 components: - type: Transform pos: 40.5,-0.5 parent: 2 + - uid: 297 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-4.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1760 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-10.5 + parent: 2 - uid: 6612 components: - type: Transform @@ -30459,88 +41386,133 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8270 + - uid: 6740 components: - type: Transform - pos: 51.5,3.5 - parent: 2 - - uid: 8271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,3.5 - parent: 2 -- proto: GasThermoMachineFreezer - entities: - - uid: 682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,21.5 + pos: 25.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,3.5 + parent: 2 + - uid: 9696 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 3564 + - uid: 9697 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 3564 + - uid: 9704 + components: + - type: Transform + pos: 15.5,-61.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPressureRegulator + entities: + - uid: 11563 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - type: GasPressureRegulator + threshold: 95000 +- proto: GasThermoMachineFreezer + entities: + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4065 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 - uid: 7112 components: - type: Transform pos: 9.5,16.5 parent: 2 -- proto: GasThermoMachineHeater - entities: - - uid: 1524 + - uid: 9674 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,21.5 + pos: 12.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasThermoMachineHeater + entities: + - uid: 1707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,3.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 9673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-63.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasValve entities: - - uid: 54 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 2 - - uid: 55 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-1.5 - parent: 2 - uid: 62 components: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 795 + - uid: 1590 components: - type: Transform - pos: 21.5,22.5 + rot: 1.5707963267948966 rad + pos: 26.5,29.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1561 + - uid: 2759 components: - type: Transform - pos: 22.5,22.5 + rot: -1.5707963267948966 rad + pos: 19.5,36.5 parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1592 + color: '#990000FF' + - uid: 2768 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,38.5 parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1752 - components: - - type: Transform - pos: 18.5,34.5 - parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor color: '#990000FF' - proto: GasVentPump @@ -30553,7 +41525,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6556 + - 8509 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1309 @@ -30567,6 +41539,38 @@ entities: - 6556 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1934 + components: + - type: Transform + pos: 29.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 6559 + - uid: 2694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 1602 - uid: 2725 components: - type: Transform @@ -30578,28 +41582,16 @@ entities: - 6555 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2728 + - uid: 2760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,22.5 + pos: 30.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6553 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,25.5 - parent: 2 - type: DeviceNetwork deviceLists: - - 6553 - - type: AtmosPipeColor - color: '#0055CCFF' + - 1602 - uid: 2826 components: - type: Transform @@ -30607,7 +41599,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6557 + - 5210 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2827 @@ -30617,7 +41609,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6557 + - 5210 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2828 @@ -30627,7 +41619,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6557 + - 5210 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2849 @@ -30682,29 +41674,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6559 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2893 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6552 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6552 + - 8532 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3065 @@ -30729,16 +41699,6 @@ entities: - 6572 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3072 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6551 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3075 components: - type: Transform @@ -30758,7 +41718,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3119 @@ -30772,16 +41732,6 @@ entities: - 7434 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3128 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6563 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3146 components: - type: Transform @@ -30789,7 +41739,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3185 @@ -30811,7 +41761,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6561 + - 56 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3244 @@ -30824,38 +41774,6 @@ entities: - 6564 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3285 - components: - - type: Transform - pos: 22.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3323 components: - type: Transform @@ -30864,18 +41782,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6561 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8241 + - 56 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3370 @@ -31028,27 +41935,6 @@ entities: - 6542 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3563 - components: - - type: Transform - pos: 38.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6542 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6542 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3610 components: - type: Transform @@ -31146,16 +42032,6 @@ entities: - 6529 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3731 - components: - - type: Transform - pos: 41.5,24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6529 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3746 components: - type: Transform @@ -31301,11 +42177,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3929 + - uid: 3927 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,0.5 + pos: 49.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -31375,15 +42251,23 @@ entities: - 2968 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 6529 - uid: 4010 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8220 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4043 @@ -31392,9 +42276,6 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8220 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4051 @@ -31458,42 +42339,604 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6553 + - 8509 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4228 + - uid: 6463 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8241 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6643 components: - type: Transform rot: 1.5707963267948966 rad + pos: 16.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8542 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8538 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6654 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 13.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6550 + - 8538 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4242 + - uid: 6659 components: - type: Transform - pos: 14.5,27.5 + pos: 13.5,28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6550 + - 6614 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 8532 + - uid: 8508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 8532 + - uid: 8545 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 7434 + - uid: 8559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 6527 + - uid: 9807 + components: + - type: Transform + pos: 13.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-65.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10237 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-69.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-69.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10240 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-69.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10240 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-69.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-57.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10241 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10241 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-52.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-53.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-49.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-45.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-41.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-37.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-33.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-48.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-44.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10029 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-44.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10031 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10056 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10094 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 3564 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-32.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10132 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10133 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10134 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-30.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-30.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-21.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10235 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10235 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8236 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7434 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11454 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3162 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6563 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6563 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 925 - components: - - type: Transform - pos: 17.5,39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6555 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1278 components: - type: Transform @@ -31502,7 +42945,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6556 + - 8509 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6524 - type: AtmosPipeColor color: '#990000FF' - uid: 1554 @@ -31516,6 +42970,34 @@ entities: - 6555 - type: AtmosPipeColor color: '#990000FF' + - uid: 1558 + components: + - type: Transform + pos: 30.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8509 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1624 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6555 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1629 components: - type: Transform @@ -31527,28 +43009,60 @@ entities: - 6165 - type: AtmosPipeColor color: '#990000FF' - - uid: 2738 + - uid: 1752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,24.5 + pos: 29.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6553 - type: AtmosPipeColor color: '#990000FF' - - uid: 2741 + - type: DeviceNetwork + deviceLists: + - 1602 + - uid: 1758 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,22.5 + pos: 29.5,22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6553 - type: AtmosPipeColor color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 1602 + - uid: 2073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6526 + - uid: 2464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6523 + - uid: 2802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 7434 - uid: 2874 components: - type: Transform @@ -31557,38 +43071,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6559 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2891 - components: - - type: Transform - pos: 35.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6552 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2984 - components: - - type: Transform - pos: 22.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6552 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6551 + - 8532 - type: AtmosPipeColor color: '#990000FF' - uid: 3038 @@ -31635,34 +43118,15 @@ entities: - 8222 - type: AtmosPipeColor color: '#990000FF' - - uid: 3082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6563 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6563 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3094 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6563 - type: AtmosPipeColor color: '#990000FF' - uid: 3097 @@ -31683,7 +43147,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#990000FF' - uid: 3118 @@ -31705,7 +43169,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#990000FF' - uid: 3145 @@ -31715,7 +43179,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6548 + - 3162 - type: AtmosPipeColor color: '#990000FF' - uid: 3184 @@ -31761,36 +43225,6 @@ entities: - 6564 - type: AtmosPipeColor color: '#990000FF' - - uid: 3263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 6562 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3315 components: - type: Transform @@ -31799,7 +43233,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6561 + - 56 - type: AtmosPipeColor color: '#990000FF' - uid: 3316 @@ -31820,7 +43254,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6561 + - 56 - type: AtmosPipeColor color: '#990000FF' - uid: 3348 @@ -31873,9 +43307,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6542 - type: AtmosPipeColor color: '#990000FF' - uid: 3390 @@ -32181,11 +43612,11 @@ entities: - 6537 - type: AtmosPipeColor color: '#990000FF' - - uid: 3924 + - uid: 3922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,1.5 + rot: 1.5707963267948966 rad + pos: 49.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -32211,7 +43642,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 6559 + - 8532 - type: AtmosPipeColor color: '#990000FF' - uid: 3963 @@ -32241,9 +43672,6 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8220 - type: AtmosPipeColor color: '#990000FF' - uid: 4035 @@ -32251,103 +43679,587 @@ entities: - type: Transform pos: 61.5,52.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8220 - type: AtmosPipeColor color: '#990000FF' - - uid: 4227 + - uid: 6644 components: - type: Transform - pos: 13.5,30.5 + pos: 18.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6550 + - 8542 - type: AtmosPipeColor color: '#990000FF' - - uid: 4231 + - uid: 6651 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8538 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8538 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6614 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6713 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6714 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6735 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6559 + - uid: 7733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6524 + - uid: 8395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6558 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 6558 + - uid: 8507 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,22.5 + pos: 33.5,29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6550 - type: AtmosPipeColor color: '#990000FF' - - uid: 4245 + - type: DeviceNetwork + deviceLists: + - 8532 + - uid: 8510 + components: + - type: Transform + pos: 33.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 5210 + - uid: 8511 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,28.5 + pos: 27.5,38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 6550 - type: AtmosPipeColor color: '#990000FF' - - uid: 4275 + - type: DeviceNetwork + deviceLists: + - 5210 + - uid: 8512 components: - type: Transform - pos: 24.5,34.5 + pos: 37.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 5210 + - uid: 8546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 7434 + - uid: 9809 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10238 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10240 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-64.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10240 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-61.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-57.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10239 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9878 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10241 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9879 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10241 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-54.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-42.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-34.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-46.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-50.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-48.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-44.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-36.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-42.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10232 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-40.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10093 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 3564 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-28.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-32.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10233 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10129 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10130 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10131 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10236 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-26.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10234 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10235 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 3564 + - type: DeviceNetwork + deviceLists: + - 10235 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 6553 + - 6563 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3162 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3162 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5864 - type: AtmosPipeColor color: '#990000FF' - proto: GasVolumePump entities: - - uid: 804 + - uid: 1648 components: - type: Transform - pos: 21.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,31.5 - parent: 2 - - uid: 1351 - components: - - type: Transform - pos: 16.5,37.5 + rot: 3.141592653589793 rad + pos: 18.5,34.5 parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 1697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,27.5 - parent: 2 - - uid: 1708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,25.5 - parent: 2 - uid: 2131 components: - type: Transform @@ -32355,28 +44267,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 2695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,36.5 - parent: 2 -- proto: GoldenPlunger +- proto: GrassBattlemap entities: - - uid: 7733 + - uid: 10315 components: - type: Transform - pos: 62.5,6.5 - parent: 2 + pos: 29.5,-50.5 + parent: 3564 - proto: GravityGenerator entities: - - uid: 1723 + - uid: 1605 components: - type: Transform - pos: 46.5,40.5 + pos: 46.5,33.5 parent: 2 - - type: PowerCharge - charge: 100 + - uid: 9660 + components: + - type: Transform + pos: 16.5,-57.5 + parent: 3564 - proto: Grille entities: - uid: 70 @@ -32384,6 +44293,11 @@ entities: - type: Transform pos: 21.5,13.5 parent: 2 + - uid: 134 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 - uid: 153 components: - type: Transform @@ -32464,11 +44378,6 @@ entities: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 250 - components: - - type: Transform - pos: -7.5,4.5 - parent: 2 - uid: 262 components: - type: Transform @@ -32519,21 +44428,6 @@ entities: - type: Transform pos: -7.5,8.5 parent: 2 - - uid: 305 - components: - - type: Transform - pos: -8.5,13.5 - parent: 2 - - uid: 306 - components: - - type: Transform - pos: -8.5,11.5 - parent: 2 - - uid: 359 - components: - - type: Transform - pos: -7.5,6.5 - parent: 2 - uid: 363 components: - type: Transform @@ -32564,11 +44458,6 @@ entities: - type: Transform pos: 43.5,-15.5 parent: 2 - - uid: 375 - components: - - type: Transform - pos: -5.5,6.5 - parent: 2 - uid: 384 components: - type: Transform @@ -32644,33 +44533,16 @@ entities: - type: Transform pos: 40.5,-15.5 parent: 2 - - uid: 457 + - uid: 464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,24.5 + pos: 21.5,24.5 parent: 2 - uid: 511 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,24.5 - parent: 2 - - uid: 553 - components: - - type: Transform - pos: 26.5,8.5 - parent: 2 - - uid: 554 - components: - - type: Transform - pos: 24.5,8.5 - parent: 2 - uid: 593 components: - type: Transform @@ -32696,49 +44568,11 @@ entities: - type: Transform pos: 3.5,36.5 parent: 2 - - uid: 674 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - uid: 676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,37.5 - parent: 2 - uid: 683 components: - type: Transform pos: 16.5,3.5 parent: 2 - - uid: 691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 2 - - uid: 692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,35.5 - parent: 2 - - uid: 706 - components: - - type: Transform - pos: 62.5,59.5 - parent: 2 - - uid: 725 - components: - - type: Transform - pos: 10.5,27.5 - parent: 2 - - uid: 726 - components: - - type: Transform - pos: 25.5,8.5 - parent: 2 - uid: 727 components: - type: Transform @@ -32769,6 +44603,11 @@ entities: - type: Transform pos: 8.5,33.5 parent: 2 + - uid: 879 + components: + - type: Transform + pos: 68.5,-22.5 + parent: 2 - uid: 887 components: - type: Transform @@ -32964,80 +44803,50 @@ entities: - type: Transform pos: 41.5,-1.5 parent: 2 - - uid: 1442 + - uid: 1448 components: - type: Transform - pos: -1.5,-11.5 + pos: 68.5,-14.5 parent: 2 - - uid: 1443 + - uid: 1489 components: - type: Transform - pos: -1.5,-9.5 + pos: 37.5,-16.5 parent: 2 - - uid: 1452 + - uid: 1490 components: - type: Transform - pos: 26.5,-10.5 + pos: 36.5,-16.5 parent: 2 - - uid: 1459 + - uid: 1492 components: - type: Transform - pos: 30.5,-10.5 + pos: 35.5,-16.5 parent: 2 - - uid: 1460 + - uid: 1493 components: - type: Transform - pos: 29.5,-10.5 + pos: 34.5,-16.5 parent: 2 - - uid: 1476 + - uid: 1532 components: - type: Transform - pos: 25.5,-10.5 + pos: 65.5,-5.5 parent: 2 - - uid: 1500 + - uid: 1538 components: - type: Transform - pos: 28.5,-10.5 - parent: 2 - - uid: 1514 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 2 - - uid: 1521 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 2 - - uid: 1523 - components: - - type: Transform - pos: 32.5,-7.5 + pos: 51.5,18.5 parent: 2 - uid: 1580 components: - type: Transform pos: 0.5,31.5 parent: 2 - - uid: 1630 + - uid: 1637 components: - type: Transform - pos: 18.5,38.5 - parent: 2 - - uid: 1646 - components: - - type: Transform - pos: 19.5,38.5 - parent: 2 - - uid: 1750 - components: - - type: Transform - pos: 20.5,38.5 - parent: 2 - - uid: 1776 - components: - - type: Transform - pos: 8.5,27.5 + pos: 68.5,-13.5 parent: 2 - uid: 1820 components: @@ -33159,27 +44968,11 @@ entities: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 1911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,24.5 - parent: 2 - - uid: 1924 - components: - - type: Transform - pos: 10.5,28.5 - parent: 2 - uid: 1947 components: - type: Transform pos: -0.5,36.5 parent: 2 - - uid: 1949 - components: - - type: Transform - pos: 10.5,20.5 - parent: 2 - uid: 2038 components: - type: Transform @@ -33230,11 +45023,6 @@ entities: - type: Transform pos: 50.5,38.5 parent: 2 - - uid: 2110 - components: - - type: Transform - pos: 8.5,21.5 - parent: 2 - uid: 2111 components: - type: Transform @@ -33255,30 +45043,10 @@ entities: - type: Transform pos: 8.5,17.5 parent: 2 - - uid: 2115 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - - uid: 2116 - components: - - type: Transform - pos: 29.5,17.5 - parent: 2 - - uid: 2117 - components: - - type: Transform - pos: 10.5,21.5 - parent: 2 - - uid: 2118 - components: - - type: Transform - pos: 9.5,21.5 - parent: 2 - uid: 2119 components: - type: Transform - pos: 35.5,15.5 + pos: 33.5,-16.5 parent: 2 - uid: 2120 components: @@ -33290,10 +45058,10 @@ entities: - type: Transform pos: 51.5,-17.5 parent: 2 - - uid: 2138 + - uid: 2133 components: - type: Transform - pos: 30.5,17.5 + pos: 32.5,-16.5 parent: 2 - uid: 2145 components: @@ -33386,51 +45154,109 @@ entities: - type: Transform pos: 57.5,63.5 parent: 2 - - uid: 2673 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - - uid: 2674 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - uid: 2681 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 2746 + - uid: 2782 components: - type: Transform - pos: 59.5,64.5 + pos: 68.5,-16.5 parent: 2 - - uid: 2747 + - uid: 2783 components: - type: Transform - pos: 59.5,65.5 + pos: 68.5,-20.5 parent: 2 - - uid: 2748 + - uid: 2784 components: - type: Transform - pos: 57.5,65.5 + pos: 68.5,-18.5 parent: 2 - - uid: 2749 + - uid: 3260 components: - type: Transform - pos: 57.5,64.5 + pos: 58.5,-18.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 58.5,-19.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-39.5 + parent: 3564 + - uid: 3574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-40.5 + parent: 3564 + - uid: 3575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 3564 + - uid: 3576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-43.5 + parent: 3564 + - uid: 3588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-44.5 + parent: 3564 + - uid: 3700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-45.5 + parent: 3564 + - uid: 3923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,34.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,34.5 parent: 2 - uid: 4024 components: - type: Transform pos: 58.5,-17.5 parent: 2 - - uid: 4025 - components: - - type: Transform - pos: 57.5,-17.5 - parent: 2 - uid: 4026 components: - type: Transform @@ -33456,30 +45282,207 @@ entities: - type: Transform pos: 24.5,-16.5 parent: 2 - - uid: 4491 - components: - - type: Transform - pos: 53.5,61.5 - parent: 2 - - uid: 4492 - components: - - type: Transform - pos: 54.5,61.5 - parent: 2 - uid: 4493 components: - type: Transform pos: 55.5,61.5 parent: 2 - - uid: 4497 + - uid: 4698 components: - type: Transform - pos: 53.5,59.5 + pos: 20.5,32.5 parent: 2 - - uid: 4498 + - uid: 4699 components: - type: Transform - pos: 54.5,59.5 + pos: 19.5,32.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: 39.5,51.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: 39.5,49.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,32.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + pos: 68.5,-19.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: 68.5,-15.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: 68.5,-21.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: 68.5,-17.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: 68.5,-25.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: 68.5,-26.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: 68.5,-27.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: 64.5,-19.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + pos: 68.5,-29.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: 67.5,-29.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,26.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: 65.5,-29.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: 64.5,-29.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + pos: 63.5,-29.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: 62.5,-29.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + pos: 61.5,-29.5 parent: 2 - uid: 7830 components: @@ -33526,10 +45529,70 @@ entities: - type: Transform pos: 65.5,-6.5 parent: 2 - - uid: 7839 + - uid: 7840 components: - type: Transform - pos: 65.5,-5.5 + pos: 30.5,-16.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: -0.5,-18.5 parent: 2 - uid: 7853 components: @@ -33556,6 +45619,31 @@ entities: - type: Transform pos: 19.5,-16.5 parent: 2 + - uid: 7858 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 - uid: 7863 components: - type: Transform @@ -33631,6 +45719,91 @@ entities: - type: Transform pos: -0.5,-16.5 parent: 2 + - uid: 7878 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + pos: 68.5,-12.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: 68.5,-11.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + pos: 68.5,-10.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: 68.5,-8.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + pos: 68.5,-7.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: 68.5,-6.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 2 - uid: 7895 components: - type: Transform @@ -33756,6 +45929,536 @@ entities: - type: Transform pos: -1.5,-7.5 parent: 2 + - uid: 7920 + components: + - type: Transform + pos: 68.5,-4.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + pos: 68.5,-3.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + pos: 68.5,-2.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + pos: 68.5,-1.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + pos: 68.5,-0.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + pos: 68.5,0.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + pos: 68.5,1.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: 68.5,2.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: 68.5,3.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: 67.5,3.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: 66.5,3.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + pos: 65.5,3.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + pos: 65.5,4.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + pos: 64.5,4.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: 64.5,5.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + pos: 64.5,6.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + pos: 64.5,7.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + pos: 64.5,8.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: 64.5,10.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + pos: 64.5,14.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + pos: 64.5,15.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: 64.5,17.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + pos: 64.5,18.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + pos: 64.5,19.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + pos: 64.5,21.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: 64.5,22.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + pos: 64.5,24.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + pos: 64.5,25.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + pos: 64.5,26.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + pos: 64.5,36.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: 63.5,36.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + pos: 63.5,37.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: 63.5,38.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + pos: 63.5,39.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + pos: 63.5,40.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + pos: 63.5,41.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + pos: 63.5,42.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: 63.5,43.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + pos: 63.5,44.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + pos: 63.5,45.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + pos: 63.5,46.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + pos: 63.5,50.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + pos: 63.5,51.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + pos: 63.5,52.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + pos: 63.5,53.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + pos: 63.5,54.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: 63.5,55.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + pos: 63.5,56.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + pos: 63.5,57.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + pos: 63.5,58.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: 64.5,63.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + pos: 63.5,60.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: 62.5,63.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + pos: 62.5,62.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: 62.5,61.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + pos: 63.5,63.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + pos: 63.5,62.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: 63.5,61.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + pos: 65.5,63.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + pos: 66.5,63.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + pos: 67.5,63.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + pos: 67.5,64.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + pos: 67.5,65.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + pos: 67.5,66.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: 67.5,67.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + pos: 67.5,68.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + pos: 67.5,69.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + pos: 67.5,70.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + pos: 66.5,70.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + pos: 65.5,70.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + pos: 64.5,70.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + pos: 63.5,70.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + pos: 62.5,70.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + pos: 61.5,70.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + pos: 60.5,70.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: 59.5,70.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + pos: 58.5,70.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: 57.5,70.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + pos: 56.5,70.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: 54.5,70.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + pos: 53.5,70.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + pos: 52.5,70.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: 51.5,70.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: 50.5,70.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + pos: 49.5,70.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: 55.5,70.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: 49.5,69.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + pos: 49.5,68.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: 49.5,67.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + pos: 49.5,66.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + pos: 49.5,65.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + pos: 49.5,64.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: 49.5,63.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + pos: 50.5,63.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: 51.5,63.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + pos: 52.5,63.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + pos: 53.5,63.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + pos: 54.5,63.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 3564 - uid: 8036 components: - type: Transform @@ -34672,842 +47375,1472 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,37.5 parent: 2 -- proto: GrilleSpawner - entities: - - uid: 7840 + - uid: 8214 components: - type: Transform - pos: 37.5,-16.5 + pos: 60.5,-29.5 parent: 2 - - uid: 7841 + - uid: 8215 components: - type: Transform - pos: 36.5,-16.5 + pos: 64.5,-20.5 parent: 2 - - uid: 7842 + - uid: 8216 components: - type: Transform - pos: 35.5,-16.5 + pos: 65.5,-20.5 parent: 2 - - uid: 7843 + - uid: 8217 components: - type: Transform - pos: 34.5,-16.5 + pos: 65.5,-21.5 parent: 2 - - uid: 7844 + - uid: 8297 components: - type: Transform - pos: 33.5,-16.5 + pos: 65.5,-22.5 parent: 2 - - uid: 7845 + - uid: 8298 components: - type: Transform - pos: 32.5,-16.5 + pos: 65.5,-23.5 parent: 2 - - uid: 7846 + - uid: 8301 components: - type: Transform - pos: 31.5,-16.5 + pos: 24.5,-1.5 parent: 2 - - uid: 7847 + - uid: 8308 components: - type: Transform - pos: 30.5,-16.5 + pos: 65.5,-24.5 parent: 2 - - uid: 7848 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - uid: 7849 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 2 - - uid: 7850 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 2 - - uid: 7851 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 2 - - uid: 7852 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 2 - - uid: 7858 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 2 - - uid: 7859 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 7860 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 2 - - uid: 7861 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 2 - - uid: 7862 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 2 - - uid: 7878 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 2 - - uid: 7879 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 2 - - uid: 7880 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 2 - - uid: 7881 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 2 - - uid: 7882 - components: - - type: Transform - pos: -2.5,-19.5 - parent: 2 - - uid: 7883 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 2 - - uid: 7884 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 2 - - uid: 7885 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 2 - - uid: 7886 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 2 - - uid: 7887 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 2 - - uid: 7888 - components: - - type: Transform - pos: 68.5,-12.5 - parent: 2 - - uid: 7889 - components: - - type: Transform - pos: -6.5,-18.5 - parent: 2 - - uid: 7890 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 2 - - uid: 7891 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 2 - - uid: 7892 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 2 - - uid: 7893 - components: - - type: Transform - pos: -6.5,-14.5 - parent: 2 - - uid: 7894 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 2 - - uid: 7920 - components: - - type: Transform - pos: 68.5,-11.5 - parent: 2 - - uid: 7921 - components: - - type: Transform - pos: 68.5,-10.5 - parent: 2 - - uid: 7922 - components: - - type: Transform - pos: 68.5,-9.5 - parent: 2 - - uid: 7923 - components: - - type: Transform - pos: 68.5,-8.5 - parent: 2 - - uid: 7924 - components: - - type: Transform - pos: 68.5,-7.5 - parent: 2 - - uid: 7925 - components: - - type: Transform - pos: 68.5,-6.5 - parent: 2 - - uid: 7926 - components: - - type: Transform - pos: 68.5,-5.5 - parent: 2 - - uid: 7927 - components: - - type: Transform - pos: 68.5,-4.5 - parent: 2 - - uid: 7928 - components: - - type: Transform - pos: 68.5,-3.5 - parent: 2 - - uid: 7929 - components: - - type: Transform - pos: 68.5,-2.5 - parent: 2 - - uid: 7930 - components: - - type: Transform - pos: 68.5,-1.5 - parent: 2 - - uid: 7931 - components: - - type: Transform - pos: 68.5,-0.5 - parent: 2 - - uid: 7932 - components: - - type: Transform - pos: 68.5,0.5 - parent: 2 - - uid: 7933 - components: - - type: Transform - pos: 68.5,1.5 - parent: 2 - - uid: 7934 - components: - - type: Transform - pos: 68.5,2.5 - parent: 2 - - uid: 7935 - components: - - type: Transform - pos: 68.5,3.5 - parent: 2 - - uid: 7936 - components: - - type: Transform - pos: 67.5,3.5 - parent: 2 - - uid: 7937 - components: - - type: Transform - pos: 66.5,3.5 - parent: 2 - - uid: 7938 - components: - - type: Transform - pos: 65.5,3.5 - parent: 2 - - uid: 7939 - components: - - type: Transform - pos: 65.5,4.5 - parent: 2 - - uid: 7940 - components: - - type: Transform - pos: 64.5,4.5 - parent: 2 - - uid: 7941 - components: - - type: Transform - pos: 64.5,5.5 - parent: 2 - - uid: 7942 - components: - - type: Transform - pos: 64.5,6.5 - parent: 2 - - uid: 7943 - components: - - type: Transform - pos: 64.5,7.5 - parent: 2 - - uid: 7944 - components: - - type: Transform - pos: 64.5,8.5 - parent: 2 - - uid: 7945 - components: - - type: Transform - pos: 64.5,9.5 - parent: 2 - - uid: 7946 - components: - - type: Transform - pos: 64.5,10.5 - parent: 2 - - uid: 7947 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - - uid: 7948 - components: - - type: Transform - pos: 64.5,12.5 - parent: 2 - - uid: 7949 - components: - - type: Transform - pos: 64.5,13.5 - parent: 2 - - uid: 7950 - components: - - type: Transform - pos: 64.5,14.5 - parent: 2 - - uid: 7951 - components: - - type: Transform - pos: 64.5,15.5 - parent: 2 - - uid: 7952 - components: - - type: Transform - pos: 64.5,16.5 - parent: 2 - - uid: 7953 - components: - - type: Transform - pos: 64.5,17.5 - parent: 2 - - uid: 7954 - components: - - type: Transform - pos: 64.5,18.5 - parent: 2 - - uid: 7955 - components: - - type: Transform - pos: 64.5,19.5 - parent: 2 - - uid: 7956 - components: - - type: Transform - pos: 64.5,20.5 - parent: 2 - - uid: 7957 - components: - - type: Transform - pos: 64.5,21.5 - parent: 2 - - uid: 7958 - components: - - type: Transform - pos: 64.5,22.5 - parent: 2 - - uid: 7959 - components: - - type: Transform - pos: 64.5,23.5 - parent: 2 - - uid: 7960 - components: - - type: Transform - pos: 64.5,24.5 - parent: 2 - - uid: 7961 - components: - - type: Transform - pos: 64.5,25.5 - parent: 2 - - uid: 7962 - components: - - type: Transform - pos: 64.5,26.5 - parent: 2 - - uid: 7963 - components: - - type: Transform - pos: 64.5,36.5 - parent: 2 - - uid: 7964 - components: - - type: Transform - pos: 63.5,36.5 - parent: 2 - - uid: 7965 - components: - - type: Transform - pos: 63.5,37.5 - parent: 2 - - uid: 7966 - components: - - type: Transform - pos: 63.5,38.5 - parent: 2 - - uid: 7967 - components: - - type: Transform - pos: 63.5,39.5 - parent: 2 - - uid: 7968 - components: - - type: Transform - pos: 63.5,40.5 - parent: 2 - - uid: 7969 - components: - - type: Transform - pos: 63.5,41.5 - parent: 2 - - uid: 7970 - components: - - type: Transform - pos: 63.5,42.5 - parent: 2 - - uid: 7971 - components: - - type: Transform - pos: 63.5,43.5 - parent: 2 - - uid: 7972 - components: - - type: Transform - pos: 63.5,44.5 - parent: 2 - - uid: 7973 - components: - - type: Transform - pos: 63.5,45.5 - parent: 2 - - uid: 7974 - components: - - type: Transform - pos: 63.5,46.5 - parent: 2 - - uid: 7975 - components: - - type: Transform - pos: 63.5,50.5 - parent: 2 - - uid: 7976 - components: - - type: Transform - pos: 63.5,51.5 - parent: 2 - - uid: 7977 - components: - - type: Transform - pos: 63.5,52.5 - parent: 2 - - uid: 7978 - components: - - type: Transform - pos: 63.5,53.5 - parent: 2 - - uid: 7979 - components: - - type: Transform - pos: 63.5,54.5 - parent: 2 - - uid: 7980 - components: - - type: Transform - pos: 63.5,55.5 - parent: 2 - - uid: 7981 - components: - - type: Transform - pos: 63.5,56.5 - parent: 2 - - uid: 7982 - components: - - type: Transform - pos: 63.5,57.5 - parent: 2 - - uid: 7983 - components: - - type: Transform - pos: 63.5,58.5 - parent: 2 - - uid: 7984 - components: - - type: Transform - pos: 64.5,63.5 - parent: 2 - - uid: 7985 - components: - - type: Transform - pos: 63.5,60.5 - parent: 2 - - uid: 7986 - components: - - type: Transform - pos: 62.5,63.5 - parent: 2 - - uid: 7987 - components: - - type: Transform - pos: 62.5,62.5 - parent: 2 - - uid: 7988 - components: - - type: Transform - pos: 62.5,61.5 - parent: 2 - - uid: 7989 - components: - - type: Transform - pos: 63.5,63.5 - parent: 2 - - uid: 7990 - components: - - type: Transform - pos: 63.5,62.5 - parent: 2 - - uid: 7991 - components: - - type: Transform - pos: 63.5,61.5 - parent: 2 - - uid: 7992 - components: - - type: Transform - pos: 65.5,63.5 - parent: 2 - - uid: 7993 - components: - - type: Transform - pos: 66.5,63.5 - parent: 2 - - uid: 7994 - components: - - type: Transform - pos: 67.5,63.5 - parent: 2 - - uid: 7995 - components: - - type: Transform - pos: 67.5,64.5 - parent: 2 - - uid: 7996 - components: - - type: Transform - pos: 67.5,65.5 - parent: 2 - - uid: 7997 - components: - - type: Transform - pos: 67.5,66.5 - parent: 2 - - uid: 7998 - components: - - type: Transform - pos: 67.5,67.5 - parent: 2 - - uid: 7999 - components: - - type: Transform - pos: 67.5,68.5 - parent: 2 - - uid: 8000 - components: - - type: Transform - pos: 67.5,69.5 - parent: 2 - - uid: 8001 - components: - - type: Transform - pos: 67.5,70.5 - parent: 2 - - uid: 8002 - components: - - type: Transform - pos: 66.5,70.5 - parent: 2 - - uid: 8003 - components: - - type: Transform - pos: 65.5,70.5 - parent: 2 - - uid: 8004 - components: - - type: Transform - pos: 64.5,70.5 - parent: 2 - - uid: 8005 - components: - - type: Transform - pos: 63.5,70.5 - parent: 2 - - uid: 8006 - components: - - type: Transform - pos: 62.5,70.5 - parent: 2 - - uid: 8007 - components: - - type: Transform - pos: 61.5,70.5 - parent: 2 - - uid: 8008 - components: - - type: Transform - pos: 60.5,70.5 - parent: 2 - - uid: 8009 - components: - - type: Transform - pos: 59.5,70.5 - parent: 2 - - uid: 8010 - components: - - type: Transform - pos: 58.5,70.5 - parent: 2 - - uid: 8011 - components: - - type: Transform - pos: 57.5,70.5 - parent: 2 - - uid: 8012 - components: - - type: Transform - pos: 56.5,70.5 - parent: 2 - - uid: 8013 - components: - - type: Transform - pos: 54.5,70.5 - parent: 2 - - uid: 8014 - components: - - type: Transform - pos: 53.5,70.5 - parent: 2 - - uid: 8015 - components: - - type: Transform - pos: 52.5,70.5 - parent: 2 - - uid: 8016 - components: - - type: Transform - pos: 51.5,70.5 - parent: 2 - - uid: 8017 - components: - - type: Transform - pos: 50.5,70.5 - parent: 2 - - uid: 8018 - components: - - type: Transform - pos: 49.5,70.5 - parent: 2 - - uid: 8019 - components: - - type: Transform - pos: 55.5,70.5 - parent: 2 - - uid: 8020 - components: - - type: Transform - pos: 49.5,69.5 - parent: 2 - - uid: 8021 - components: - - type: Transform - pos: 49.5,68.5 - parent: 2 - - uid: 8022 - components: - - type: Transform - pos: 49.5,67.5 - parent: 2 - - uid: 8023 - components: - - type: Transform - pos: 49.5,66.5 - parent: 2 - - uid: 8024 - components: - - type: Transform - pos: 49.5,65.5 - parent: 2 - - uid: 8025 - components: - - type: Transform - pos: 49.5,64.5 - parent: 2 - - uid: 8026 - components: - - type: Transform - pos: 49.5,63.5 - parent: 2 - - uid: 8027 - components: - - type: Transform - pos: 50.5,63.5 - parent: 2 - - uid: 8028 - components: - - type: Transform - pos: 51.5,63.5 - parent: 2 - - uid: 8029 - components: - - type: Transform - pos: 52.5,63.5 - parent: 2 - - uid: 8030 - components: - - type: Transform - pos: 53.5,63.5 - parent: 2 - - uid: 8031 - components: - - type: Transform - pos: 54.5,63.5 - parent: 2 -- proto: GunpetInstrument - entities: - uid: 8310 components: - type: Transform - pos: 52.5,21.5 + rot: 3.141592653589793 rad + pos: 46.5,26.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,26.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + pos: 65.5,-25.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,26.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 3564 + - uid: 8843 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 3564 + - uid: 8844 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 3564 + - uid: 8845 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 3564 + - uid: 8846 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 3564 + - uid: 8847 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 3564 + - uid: 8848 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 3564 + - uid: 8849 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 3564 + - uid: 8850 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 3564 + - uid: 8851 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 3564 + - uid: 8852 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 3564 + - uid: 8853 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 3564 + - uid: 8854 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 3564 + - uid: 8855 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 3564 + - uid: 8856 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 3564 + - uid: 8857 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 3564 + - uid: 8858 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 3564 + - uid: 8859 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 3564 + - uid: 8860 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 3564 + - uid: 8861 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 3564 + - uid: 8862 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 3564 + - uid: 8863 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 3564 + - uid: 8864 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 3564 + - uid: 8865 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 3564 + - uid: 8866 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 3564 + - uid: 8867 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 3564 + - uid: 8868 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 3564 + - uid: 8869 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 3564 + - uid: 8870 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 3564 + - uid: 8871 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 3564 + - uid: 8872 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 3564 + - uid: 8873 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 3564 + - uid: 8874 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 3564 + - uid: 8875 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 3564 + - uid: 8876 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 3564 + - uid: 8877 + components: + - type: Transform + pos: 6.5,0.5 + parent: 3564 + - uid: 8878 + components: + - type: Transform + pos: 5.5,0.5 + parent: 3564 + - uid: 8879 + components: + - type: Transform + pos: 4.5,0.5 + parent: 3564 + - uid: 8880 + components: + - type: Transform + pos: 3.5,0.5 + parent: 3564 + - uid: 8881 + components: + - type: Transform + pos: 2.5,0.5 + parent: 3564 + - uid: 8882 + components: + - type: Transform + pos: 1.5,0.5 + parent: 3564 + - uid: 8883 + components: + - type: Transform + pos: 0.5,0.5 + parent: 3564 + - uid: 8884 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 3564 + - uid: 8885 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 3564 + - uid: 8886 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 3564 + - uid: 8887 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 3564 + - uid: 8888 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 3564 + - uid: 8889 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 3564 + - uid: 8890 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 3564 + - uid: 8891 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 3564 + - uid: 8892 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 3564 + - uid: 8893 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 3564 + - uid: 8894 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 3564 + - uid: 8895 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 3564 + - uid: 8896 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 3564 + - uid: 8897 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 3564 + - uid: 8898 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 3564 + - uid: 8899 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 3564 + - uid: 8900 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 3564 + - uid: 8901 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 3564 + - uid: 8902 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 3564 + - uid: 8903 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 3564 + - uid: 8904 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 3564 + - uid: 8905 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 3564 + - uid: 8906 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 3564 + - uid: 8907 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 3564 + - uid: 8908 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 3564 + - uid: 8909 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 3564 + - uid: 8910 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 3564 + - uid: 8911 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 3564 + - uid: 8912 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 3564 + - uid: 8913 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 3564 + - uid: 8914 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 3564 + - uid: 8915 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 3564 + - uid: 8916 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 3564 + - uid: 8917 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 3564 + - uid: 8918 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 3564 + - uid: 8919 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 3564 + - uid: 8920 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 3564 + - uid: 8921 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 3564 + - uid: 8922 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 3564 + - uid: 8923 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 3564 + - uid: 8924 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 3564 + - uid: 8925 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 3564 + - uid: 8926 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 3564 + - uid: 8927 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 3564 + - uid: 8928 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 3564 + - uid: 8929 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 3564 + - uid: 8930 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 3564 + - uid: 8931 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 3564 + - uid: 8932 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 3564 + - uid: 8933 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 3564 + - uid: 8934 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 3564 + - uid: 8935 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 3564 + - uid: 8936 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 3564 + - uid: 8937 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 3564 + - uid: 8938 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 3564 + - uid: 8939 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 3564 + - uid: 8940 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 3564 + - uid: 8941 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 3564 + - uid: 8942 + components: + - type: Transform + pos: 0.5,-57.5 + parent: 3564 + - uid: 8943 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 3564 + - uid: 8944 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 3564 + - uid: 8945 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 3564 + - uid: 8946 + components: + - type: Transform + pos: 0.5,-61.5 + parent: 3564 + - uid: 8947 + components: + - type: Transform + pos: 0.5,-62.5 + parent: 3564 + - uid: 8948 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 3564 + - uid: 8949 + components: + - type: Transform + pos: 0.5,-64.5 + parent: 3564 + - uid: 8950 + components: + - type: Transform + pos: 0.5,-65.5 + parent: 3564 + - uid: 8951 + components: + - type: Transform + pos: 0.5,-66.5 + parent: 3564 + - uid: 8952 + components: + - type: Transform + pos: 0.5,-67.5 + parent: 3564 + - uid: 8953 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 3564 + - uid: 8954 + components: + - type: Transform + pos: 0.5,-69.5 + parent: 3564 + - uid: 8955 + components: + - type: Transform + pos: 0.5,-70.5 + parent: 3564 + - uid: 8956 + components: + - type: Transform + pos: 0.5,-71.5 + parent: 3564 + - uid: 8957 + components: + - type: Transform + pos: 0.5,-72.5 + parent: 3564 + - uid: 8958 + components: + - type: Transform + pos: 0.5,-73.5 + parent: 3564 + - uid: 8959 + components: + - type: Transform + pos: 0.5,-74.5 + parent: 3564 + - uid: 8960 + components: + - type: Transform + pos: 0.5,-75.5 + parent: 3564 + - uid: 8961 + components: + - type: Transform + pos: 0.5,-76.5 + parent: 3564 + - uid: 8962 + components: + - type: Transform + pos: 0.5,-77.5 + parent: 3564 + - uid: 8963 + components: + - type: Transform + pos: 0.5,-78.5 + parent: 3564 + - uid: 8964 + components: + - type: Transform + pos: 0.5,-79.5 + parent: 3564 + - uid: 8965 + components: + - type: Transform + pos: 0.5,-80.5 + parent: 3564 + - uid: 8966 + components: + - type: Transform + pos: 0.5,-81.5 + parent: 3564 + - uid: 8967 + components: + - type: Transform + pos: 0.5,-82.5 + parent: 3564 + - uid: 8968 + components: + - type: Transform + pos: 0.5,-83.5 + parent: 3564 + - uid: 8969 + components: + - type: Transform + pos: 0.5,-84.5 + parent: 3564 + - uid: 8970 + components: + - type: Transform + pos: 0.5,-85.5 + parent: 3564 + - uid: 8971 + components: + - type: Transform + pos: 0.5,-86.5 + parent: 3564 + - uid: 8972 + components: + - type: Transform + pos: 0.5,-88.5 + parent: 3564 + - uid: 8973 + components: + - type: Transform + pos: 0.5,-89.5 + parent: 3564 + - uid: 8974 + components: + - type: Transform + pos: 0.5,-90.5 + parent: 3564 + - uid: 8975 + components: + - type: Transform + pos: 0.5,-91.5 + parent: 3564 + - uid: 8976 + components: + - type: Transform + pos: 0.5,-92.5 + parent: 3564 + - uid: 8977 + components: + - type: Transform + pos: 0.5,-87.5 + parent: 3564 + - uid: 8978 + components: + - type: Transform + pos: 1.5,-92.5 + parent: 3564 + - uid: 8979 + components: + - type: Transform + pos: 2.5,-92.5 + parent: 3564 + - uid: 8980 + components: + - type: Transform + pos: 3.5,-92.5 + parent: 3564 + - uid: 8981 + components: + - type: Transform + pos: 4.5,-92.5 + parent: 3564 + - uid: 8982 + components: + - type: Transform + pos: 5.5,-92.5 + parent: 3564 + - uid: 8983 + components: + - type: Transform + pos: 6.5,-92.5 + parent: 3564 + - uid: 8984 + components: + - type: Transform + pos: 6.5,-91.5 + parent: 3564 + - uid: 8985 + components: + - type: Transform + pos: 6.5,-90.5 + parent: 3564 + - uid: 8986 + components: + - type: Transform + pos: 6.5,-89.5 + parent: 3564 + - uid: 8987 + components: + - type: Transform + pos: 6.5,-88.5 + parent: 3564 + - uid: 8988 + components: + - type: Transform + pos: 6.5,-87.5 + parent: 3564 + - uid: 8989 + components: + - type: Transform + pos: 6.5,-86.5 + parent: 3564 + - uid: 8990 + components: + - type: Transform + pos: 6.5,-85.5 + parent: 3564 + - uid: 8991 + components: + - type: Transform + pos: 6.5,-84.5 + parent: 3564 + - uid: 8992 + components: + - type: Transform + pos: 6.5,-83.5 + parent: 3564 + - uid: 8993 + components: + - type: Transform + pos: 6.5,-82.5 + parent: 3564 + - uid: 8994 + components: + - type: Transform + pos: 6.5,-81.5 + parent: 3564 + - uid: 8995 + components: + - type: Transform + pos: 6.5,-80.5 + parent: 3564 + - uid: 8996 + components: + - type: Transform + pos: 5.5,-80.5 + parent: 3564 + - uid: 8997 + components: + - type: Transform + pos: 6.5,-79.5 + parent: 3564 + - uid: 8998 + components: + - type: Transform + pos: 6.5,-78.5 + parent: 3564 + - uid: 8999 + components: + - type: Transform + pos: 6.5,-77.5 + parent: 3564 + - uid: 9000 + components: + - type: Transform + pos: 6.5,-76.5 + parent: 3564 + - uid: 9001 + components: + - type: Transform + pos: 6.5,-75.5 + parent: 3564 + - uid: 9002 + components: + - type: Transform + pos: 6.5,-74.5 + parent: 3564 + - uid: 9003 + components: + - type: Transform + pos: 6.5,-73.5 + parent: 3564 + - uid: 9004 + components: + - type: Transform + pos: 6.5,-72.5 + parent: 3564 + - uid: 9005 + components: + - type: Transform + pos: 5.5,-72.5 + parent: 3564 + - uid: 9006 + components: + - type: Transform + pos: 6.5,-71.5 + parent: 3564 + - uid: 9007 + components: + - type: Transform + pos: 6.5,-70.5 + parent: 3564 + - uid: 9008 + components: + - type: Transform + pos: 6.5,-69.5 + parent: 3564 + - uid: 9009 + components: + - type: Transform + pos: 6.5,-68.5 + parent: 3564 + - uid: 9010 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 3564 + - uid: 9011 + components: + - type: Transform + pos: 6.5,-66.5 + parent: 3564 + - uid: 9012 + components: + - type: Transform + pos: 6.5,-65.5 + parent: 3564 + - uid: 9013 + components: + - type: Transform + pos: 6.5,-64.5 + parent: 3564 + - uid: 9014 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 3564 + - uid: 9015 + components: + - type: Transform + pos: 6.5,-62.5 + parent: 3564 + - uid: 9016 + components: + - type: Transform + pos: 6.5,-61.5 + parent: 3564 + - uid: 9017 + components: + - type: Transform + pos: 6.5,-60.5 + parent: 3564 + - uid: 9018 + components: + - type: Transform + pos: 6.5,-59.5 + parent: 3564 + - uid: 9019 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 3564 + - uid: 9020 + components: + - type: Transform + pos: 6.5,-57.5 + parent: 3564 + - uid: 9021 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 3564 + - uid: 9022 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 3564 + - uid: 9023 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 3564 + - uid: 9024 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 3564 + - uid: 9025 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 3564 + - uid: 9026 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 3564 + - uid: 9027 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 3564 + - uid: 9028 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 3564 + - uid: 9029 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 3564 + - uid: 9030 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 3564 + - uid: 9031 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 3564 + - uid: 9032 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 3564 + - uid: 9033 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 3564 + - uid: 9034 + components: + - type: Transform + pos: 19.5,-45.5 + parent: 3564 + - uid: 9035 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 3564 + - uid: 9036 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 3564 + - uid: 9037 + components: + - type: Transform + pos: 26.5,-48.5 + parent: 3564 + - uid: 9038 + components: + - type: Transform + pos: 26.5,-49.5 + parent: 3564 + - uid: 9039 + components: + - type: Transform + pos: 19.5,-48.5 + parent: 3564 + - uid: 9040 + components: + - type: Transform + pos: 19.5,-49.5 + parent: 3564 + - uid: 9041 + components: + - type: Transform + pos: 19.5,-52.5 + parent: 3564 + - uid: 9042 + components: + - type: Transform + pos: 19.5,-53.5 + parent: 3564 + - uid: 9043 + components: + - type: Transform + pos: 26.5,-52.5 + parent: 3564 + - uid: 9044 + components: + - type: Transform + pos: 26.5,-53.5 + parent: 3564 + - uid: 9045 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 3564 + - uid: 9046 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 3564 + - uid: 9047 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 3564 + - uid: 9048 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 3564 + - uid: 9049 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 3564 + - uid: 9050 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 3564 + - uid: 9051 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 3564 + - uid: 9052 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 3564 + - uid: 9053 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 3564 + - uid: 9054 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 3564 + - uid: 9055 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 3564 + - uid: 9056 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 3564 + - uid: 9057 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 3564 + - uid: 9058 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 3564 + - uid: 9059 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 3564 + - uid: 9060 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 3564 + - uid: 9061 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 3564 + - uid: 9062 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 3564 + - uid: 9063 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 3564 + - uid: 9065 + components: + - type: Transform + pos: 20.5,-56.5 + parent: 3564 + - uid: 9066 + components: + - type: Transform + pos: 21.5,-56.5 + parent: 3564 + - uid: 9067 + components: + - type: Transform + pos: 25.5,-56.5 + parent: 3564 + - uid: 9068 + components: + - type: Transform + pos: 24.5,-56.5 + parent: 3564 + - uid: 9069 + components: + - type: Transform + pos: 20.5,-62.5 + parent: 3564 + - uid: 9070 + components: + - type: Transform + pos: 21.5,-62.5 + parent: 3564 + - uid: 9071 + components: + - type: Transform + pos: 24.5,-62.5 + parent: 3564 + - uid: 9072 + components: + - type: Transform + pos: 25.5,-62.5 + parent: 3564 + - uid: 9073 + components: + - type: Transform + pos: 26.5,-63.5 + parent: 3564 + - uid: 9074 + components: + - type: Transform + pos: 26.5,-64.5 + parent: 3564 + - uid: 9075 + components: + - type: Transform + pos: 26.5,-65.5 + parent: 3564 + - uid: 9076 + components: + - type: Transform + pos: 26.5,-67.5 + parent: 3564 + - uid: 9077 + components: + - type: Transform + pos: 26.5,-68.5 + parent: 3564 + - uid: 9078 + components: + - type: Transform + pos: 26.5,-69.5 + parent: 3564 + - uid: 9133 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 3564 + - uid: 9136 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 3564 + - uid: 9727 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 3564 + - uid: 9730 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 3564 + - uid: 9756 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 3564 + - uid: 9757 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 3564 + - uid: 9925 + components: + - type: Transform + pos: 65.5,-26.5 + parent: 2 + - uid: 10614 + components: + - type: Transform + pos: 65.5,-27.5 + parent: 2 + - uid: 11213 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 2 + - uid: 11219 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 11220 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 11540 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 11541 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 11542 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 11543 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 11544 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 11545 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 11546 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 11547 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 11548 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 11557 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 +- proto: GunpetInstrument + entities: + - uid: 11127 + components: + - type: Transform + pos: 54.5,20.5 parent: 2 - proto: GunSafeDisabler entities: - - uid: 1002 + - uid: 9698 components: - type: Transform - pos: 41.5,-4.5 - parent: 2 + pos: 32.5,-57.5 + parent: 3564 - proto: GunSafeLaserCarbine entities: - - uid: 1363 + - uid: 10445 components: - type: Transform - pos: 43.5,-7.5 - parent: 2 -- proto: GunSafePistolMk58 - entities: - - uid: 1365 - components: - - type: Transform - pos: 41.5,-7.5 - parent: 2 + pos: 33.5,-57.5 + parent: 3564 - proto: GunSafeRifleLecter entities: - - uid: 960 + - uid: 10448 components: - type: Transform - pos: 42.5,-7.5 - parent: 2 -- proto: GunSafeShotgunEnforcer - entities: - - uid: 1260 - components: - - type: Transform - pos: 43.5,-4.5 - parent: 2 + pos: 36.5,-57.5 + parent: 3564 - proto: GunSafeShotgunKammerer entities: - - uid: 1298 + - uid: 10447 components: - type: Transform - pos: 44.5,-7.5 - parent: 2 + pos: 35.5,-57.5 + parent: 3564 - proto: GunSafeSubMachineGunDrozd entities: - - uid: 1345 + - uid: 10446 components: - type: Transform - pos: 42.5,-4.5 - parent: 2 -- proto: GunSafeSubMachineGunWt550 - entities: - - uid: 7652 - components: - - type: Transform - pos: 44.5,-4.5 - parent: 2 + pos: 34.5,-57.5 + parent: 3564 - proto: Handcuffs entities: + - uid: 1104 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 - uid: 1509 components: - type: Transform pos: 10.5,-8.5 parent: 2 - - uid: 2224 + - uid: 1593 components: - type: Transform - pos: 33.5,-6.5 + pos: 35.5,-2.5 parent: 2 - - uid: 2281 + - uid: 1762 components: - type: Transform - pos: 33.5,-6.5 + pos: 34.5,-2.5 parent: 2 - - uid: 7120 + - uid: 1767 components: - type: Transform - pos: 33.5,-5.5 + pos: 35.5,-2.5 parent: 2 - - uid: 7203 + - uid: 1811 components: - type: Transform - pos: 33.5,-5.5 + pos: 34.5,-2.5 parent: 2 - - uid: 7258 + - uid: 1813 components: - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7259 - components: - - type: Transform - pos: 33.5,-4.5 + pos: 33.5,-2.5 parent: 2 - uid: 7511 components: @@ -35524,6 +48857,203 @@ entities: - type: Transform pos: 48.5,19.5 parent: 2 + - uid: 10435 + components: + - type: Transform + pos: 30.5,-60.5 + parent: 3564 + - uid: 10436 + components: + - type: Transform + pos: 30.5,-60.5 + parent: 3564 + - uid: 10437 + components: + - type: Transform + pos: 30.5,-60.5 + parent: 3564 + - uid: 10438 + components: + - type: Transform + pos: 30.5,-61.5 + parent: 3564 + - uid: 10439 + components: + - type: Transform + pos: 30.5,-61.5 + parent: 3564 + - uid: 10440 + components: + - type: Transform + pos: 30.5,-61.5 + parent: 3564 + - uid: 10625 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 3564 + - uid: 10626 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 3564 + - uid: 10627 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 3564 + - uid: 10628 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 3564 + - uid: 10629 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 3564 + - uid: 10630 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 3564 + - uid: 10631 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 3564 + - uid: 10632 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 3564 + - uid: 10633 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10634 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10635 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10636 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10637 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10638 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10639 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10640 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10641 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10642 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10643 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10644 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10645 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10646 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10647 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10648 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10649 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10650 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10651 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10652 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10653 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10654 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10655 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10656 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 +- proto: HandheldHealthAnalyzer + entities: + - uid: 10341 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 3564 - proto: HandheldHealthAnalyzerUnpowered entities: - uid: 7446 @@ -35533,10 +49063,17 @@ entities: parent: 2 - proto: HandLabeler entities: - - uid: 7421 + - uid: 60 components: - type: Transform - pos: 31.5,10.5 + pos: 29.5,8.5 + parent: 2 +- proto: HandTeleporter + entities: + - uid: 11347 + components: + - type: Transform + pos: -5.5,5.5 parent: 2 - proto: HeatExchanger entities: @@ -35638,11 +49175,189 @@ entities: rot: 3.141592653589793 rad pos: 13.5,47.5 parent: 2 - - uid: 1644 + - uid: 7568 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,38.5 + pos: 17.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 7572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,30.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,29.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,28.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,29.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,30.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 7603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,29.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,30.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,29.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,28.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,28.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,28.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,30.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,30.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,30.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,30.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,31.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,31.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,31.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,27.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,27.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,27.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,27.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,27.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,27.5 parent: 2 - proto: HeatExchangerBend entities: @@ -35659,14 +49374,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 800 components: - type: Transform @@ -35747,408 +49454,370 @@ entities: - type: Transform pos: 12.5,47.5 parent: 2 - - uid: 1642 + - uid: 7487 components: - type: Transform - pos: 21.5,39.5 + pos: 25.5,31.5 parent: 2 - - type: AtmosPipeColor - color: '#947507FF' + - uid: 7489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,30.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,27.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,31.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,28.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,28.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,27.5 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 10396 + components: + - type: Transform + pos: 31.5,-58.5 + parent: 3564 + - uid: 10397 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 3564 - proto: HighSecCommandLocked entities: - - uid: 2171 + - uid: 1896 components: - type: Transform - pos: 59.5,6.5 + pos: 36.5,54.5 parent: 2 - - uid: 2787 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 2 -- proto: HolopadAiCore - entities: - - uid: 7782 - components: - - type: Transform - pos: 45.5,49.5 - parent: 2 -- proto: HolopadAiUpload - entities: - - uid: 7783 - components: - - type: Transform - pos: 32.5,53.5 - parent: 2 -- proto: HolopadCargoBay - entities: - - uid: 7796 - components: - - type: Transform - pos: 12.5,24.5 - parent: 2 -- proto: HolopadCargoFront - entities: - - uid: 7797 - components: - - type: Transform - pos: 17.5,24.5 - parent: 2 -- proto: HolopadCommandBridge - entities: - - uid: 7793 - components: - - type: Transform - pos: 57.5,31.5 - parent: 2 -- proto: HolopadCommandBridgeHallway +- proto: HolopadAiMain entities: - uid: 7792 components: - type: Transform - pos: 49.5,33.5 + pos: 45.5,50.5 parent: 2 +- proto: HolopadAiUpload + entities: + - uid: 7793 + components: + - type: Transform + pos: 31.5,54.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 7546 + components: + - type: Transform + pos: 57.5,31.5 + parent: 2 + - type: Label + currentLabel: Command - Control Room - proto: HolopadCommandCaptain entities: - - uid: 7795 + - uid: 7545 components: - type: Transform - pos: 59.5,21.5 - parent: 2 -- proto: HolopadCommandCe - entities: - - uid: 7798 - components: - - type: Transform - pos: 44.5,32.5 - parent: 2 -- proto: HolopadCommandCmo - entities: - - uid: 7801 - components: - - type: Transform - pos: 23.5,15.5 + pos: 57.5,22.5 parent: 2 + - type: Label + currentLabel: Command - Secure Storage - proto: HolopadCommandHop entities: - - uid: 7810 + - uid: 2392 components: - type: Transform - pos: 43.5,28.5 + pos: 45.5,27.5 parent: 2 -- proto: HolopadCommandQm +- proto: HolopadEngineeringAME entities: - - uid: 7817 + - uid: 7786 components: - type: Transform - pos: 15.5,31.5 - parent: 2 -- proto: HolopadCommandRd - entities: - - uid: 7818 - components: - - type: Transform - pos: 52.5,13.5 - parent: 2 -- proto: HolopadCommandVault - entities: - - uid: 7826 - components: - - type: Transform - pos: 60.5,7.5 - parent: 2 -- proto: HolopadEngineeringAtmosFront - entities: - - uid: 7788 - components: - - type: Transform - pos: 29.5,26.5 + pos: 45.5,36.5 parent: 2 - proto: HolopadEngineeringAtmosMain entities: - - uid: 7789 + - uid: 7782 components: - type: Transform - pos: 21.5,34.5 + pos: 28.5,-8.5 parent: 2 - proto: HolopadEngineeringAtmosTeg entities: - - uid: 7823 + - uid: 1562 components: - type: Transform - pos: 15.5,37.5 - parent: 2 -- proto: HolopadEngineeringFront - entities: - - uid: 7805 - components: - - type: Transform - pos: 30.5,23.5 + pos: 20.5,33.5 parent: 2 - proto: HolopadEngineeringMain entities: - - uid: 7806 + - uid: 5342 components: - type: Transform - pos: 35.5,32.5 + pos: 33.5,31.5 parent: 2 - proto: HolopadEngineeringStorage entities: - - uid: 7807 + - uid: 4742 components: - type: Transform - pos: 34.5,38.5 + pos: 20.5,41.5 parent: 2 -- proto: HolopadEngineeringTechVault +- proto: HolopadEngineeringTelecoms entities: - - uid: 7824 + - uid: 1505 components: - type: Transform - pos: 7.5,-11.5 + pos: -4.5,6.5 parent: 2 - proto: HolopadGeneralArrivals entities: - - uid: 7786 + - uid: 7783 components: - type: Transform pos: 60.5,48.5 parent: 2 - proto: HolopadGeneralCryosleep entities: - - uid: 7803 + - uid: 5211 components: - type: Transform - pos: 1.5,-0.5 - parent: 2 -- proto: HolopadGeneralDisposals - entities: - - uid: 7804 - components: - - type: Transform - pos: -6.5,5.5 + pos: 2.5,-1.5 parent: 2 - proto: HolopadGeneralEvac entities: - - uid: 7809 + - uid: 3048 components: - type: Transform pos: 59.5,-0.5 parent: 2 + - uid: 7751 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 2 + - type: Label + currentLabel: General - Observation - proto: HolopadGeneralEVAStorage entities: - - uid: 7808 + - uid: 3753 components: - type: Transform pos: 51.5,40.5 parent: 2 -- proto: HolopadGeneralLounge - entities: - - uid: 7813 - components: - - type: Transform - pos: 16.5,1.5 - parent: 2 -- proto: HolopadGeneralTools - entities: - - uid: 7825 - components: - - type: Transform - pos: 44.5,20.5 - parent: 2 -- proto: HolopadMedicalBreakroom - entities: - - uid: 7815 - components: - - type: Transform - pos: 27.5,15.5 - parent: 2 - proto: HolopadMedicalChemistry entities: - - uid: 7800 + - uid: 5862 components: - type: Transform - pos: 31.5,9.5 + pos: 32.5,10.5 parent: 2 -- proto: HolopadMedicalFront +- proto: HolopadMedicalMedbay entities: - - uid: 7814 + - uid: 2191 components: - type: Transform - pos: 14.5,12.5 + pos: 17.5,11.5 parent: 2 - proto: HolopadMedicalMorgue entities: - - uid: 7816 + - uid: 2047 components: - type: Transform pos: 3.5,14.5 parent: 2 -- proto: HolopadScienceAnomaly - entities: - - uid: 7784 - components: - - type: Transform - pos: 47.5,12.5 - parent: 2 -- proto: HolopadScienceArtifact - entities: - - uid: 7787 - components: - - type: Transform - pos: 50.5,3.5 - parent: 2 - proto: HolopadScienceFront entities: - - uid: 7820 + - uid: 1539 components: - type: Transform - pos: 46.5,7.5 - parent: 2 -- proto: HolopadScienceRobotics - entities: - - uid: 7819 - components: - - type: Transform - pos: 54.5,8.5 - parent: 2 -- proto: HolopadSecurityArmory - entities: - - uid: 7785 - components: - - type: Transform - pos: 41.5,-5.5 - parent: 2 -- proto: HolopadSecurityBreakroom - entities: - - uid: 7822 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 -- proto: HolopadSecurityBrig - entities: - - uid: 7794 - components: - - type: Transform - pos: 43.5,-0.5 + pos: 51.5,5.5 parent: 2 - proto: HolopadSecurityCourtroom entities: - - uid: 7802 + - uid: 5345 components: - type: Transform pos: 58.5,15.5 parent: 2 + - type: Label + currentLabel: Security - Assembly Room - proto: HolopadSecurityFront entities: - - uid: 7821 + - uid: 1535 components: - type: Transform - pos: 37.5,1.5 - parent: 2 -- proto: HolopadServiceBar - entities: - - uid: 7791 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 2 -- proto: HolopadServiceBotany - entities: - - uid: 7790 - components: - - type: Transform - pos: 14.5,-7.5 + pos: 38.5,0.5 parent: 2 - proto: HolopadServiceChapel entities: - - uid: 7799 + - uid: 6177 components: - type: Transform pos: -1.5,12.5 parent: 2 -- proto: HolopadServiceJanitor +- proto: HydroponicsToolMiniHoe entities: - - uid: 7811 + - uid: 10556 components: - type: Transform - pos: 0.5,7.5 - parent: 2 -- proto: HolopadServiceKitchen + pos: 11.5,-20.5 + parent: 3564 +- proto: HydroponicsTrayEmpty entities: - - uid: 7812 + - uid: 10548 components: - type: Transform - pos: 23.5,-9.5 - parent: 2 -- proto: hydroponicsTray - entities: - - uid: 140 + pos: 10.5,-22.5 + parent: 3564 + - uid: 10549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-7.5 - parent: 2 - - uid: 1293 + pos: 11.5,-22.5 + parent: 3564 + - uid: 10550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 - parent: 2 - - uid: 1384 + pos: 12.5,-22.5 + parent: 3564 + - uid: 10551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-6.5 - parent: 2 - - uid: 1440 + pos: 10.5,-23.5 + parent: 3564 + - uid: 10552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-6.5 - parent: 2 - - uid: 7656 + pos: 11.5,-23.5 + parent: 3564 + - uid: 10553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 2 - - uid: 8314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 2 -- proto: IDComputerCircuitboard - entities: - - uid: 2187 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 2 + pos: 12.5,-23.5 + parent: 3564 - proto: Igniter entities: + - uid: 1487 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 - uid: 7722 components: - type: Transform pos: 44.5,19.5 parent: 2 - - uid: 7723 + - uid: 8275 components: - type: Transform - pos: 47.5,20.5 + pos: 52.5,9.5 parent: 2 - - uid: 7724 + - uid: 8277 components: - type: Transform - pos: 48.5,20.5 + pos: 52.5,9.5 parent: 2 -- proto: IngotGold1 - entities: - - uid: 2162 + - uid: 8316 components: - type: Transform - pos: 62.642864,9.959549 + pos: 52.5,9.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 11132 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 11135 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 11215 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 11216 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: 52.5,9.5 parent: 2 - proto: IntercomCommand entities: @@ -36170,11 +49839,22 @@ entities: parent: 2 - proto: IntercomCommon entities: + - uid: 36 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 - uid: 4185 components: - type: Transform pos: 46.5,52.5 parent: 2 + - uid: 4930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 2 - uid: 7492 components: - type: Transform @@ -36192,24 +49872,12 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-0.5 parent: 2 - - uid: 7553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,9.5 - parent: 2 - uid: 7554 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 - - uid: 7571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-6.5 - parent: 2 - uid: 7577 components: - type: Transform @@ -36221,30 +49889,73 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,15.5 parent: 2 - - uid: 7596 + - uid: 8537 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,27.5 + pos: 11.5,28.5 parent: 2 - - uid: 7597 +- proto: IntercomEngineering + entities: + - uid: 846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,28.5 + pos: 29.5,32.5 parent: 2 - - uid: 7606 + - uid: 3008 components: - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,20.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 34.5,36.5 parent: 2 - - uid: 7607 + - uid: 6557 components: - type: Transform - pos: 21.5,35.5 + rot: 1.5707963267948966 rad + pos: 31.5,25.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + - uid: 8563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 parent: 2 - proto: IntercomMedical entities: + - uid: 1913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 2 - uid: 7443 components: - type: Transform @@ -36258,130 +49969,139 @@ entities: - type: Transform pos: 45.5,52.5 parent: 2 -- proto: JanitorialTrolley +- proto: JetpackBlueFilled entities: - - uid: 1881 + - uid: 8636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,6.5 + pos: 51.5,41.5 parent: 2 -- proto: Jukebox - entities: - - uid: 4065 + - uid: 8637 components: - type: Transform - pos: 31.5,-4.5 + pos: 52.5,41.5 parent: 2 + - uid: 8638 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 10483 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 3564 + - uid: 10484 + components: + - type: Transform + pos: 24.5,-69.5 + parent: 3564 + - uid: 10485 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 3564 + - uid: 10486 + components: + - type: Transform + pos: 20.5,-69.5 + parent: 3564 + - uid: 10487 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 3564 - proto: KitchenElectricGrill entities: - - uid: 2856 + - uid: 10568 components: - type: Transform - pos: 24.5,-10.5 - parent: 2 -- proto: KitchenKnife - entities: - - uid: 7118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.422783,13.597005 - parent: 2 + pos: 12.5,-29.5 + parent: 3564 - proto: KitchenMicrowave entities: - - uid: 2854 + - uid: 10573 components: - type: Transform - pos: 22.5,-10.5 - parent: 2 + pos: 9.5,-28.5 + parent: 3564 - proto: KitchenReagentGrinder entities: - - uid: 135 + - uid: 41 components: - type: Transform - pos: 14.5,-8.5 + pos: 34.5,10.5 parent: 2 - - uid: 764 - components: - - type: Transform - pos: 30.5,8.5 - parent: 2 - - uid: 2855 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 2 -- proto: KitchenSpike +- proto: LampInterrogator entities: - - uid: 2378 + - uid: 10326 components: - type: Transform - pos: 29.5,-12.5 + pos: 15.5,-32.5 + parent: 3564 +- proto: LightReplacer + entities: + - uid: 11556 + components: + - type: Transform + pos: 42.5,21.5 parent: 2 - proto: LockerAtmosphericsFilled entities: - - uid: 1688 + - uid: 3815 components: - type: Transform - pos: 30.5,35.5 + pos: 39.5,-9.5 parent: 2 - - uid: 1689 + - uid: 3817 components: - type: Transform - pos: 29.5,35.5 + pos: 40.5,-9.5 parent: 2 - - uid: 1722 + - uid: 3819 components: - type: Transform - pos: 31.5,35.5 + pos: 41.5,-9.5 parent: 2 -- proto: LockerBoozeFilled +- proto: LockerBrigmedicFilled entities: - - uid: 1498 + - uid: 10332 components: - type: Transform - pos: 23.5,0.5 - parent: 2 -- proto: LockerBotanistFilled - entities: - - uid: 1018 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 2 - - uid: 1631 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 2 + pos: 23.5,-16.5 + parent: 3564 - proto: LockerCaptainFilledNoLaser entities: - - uid: 2385 + - uid: 6176 components: - type: Transform - pos: 60.5,25.5 + pos: 59.5,24.5 parent: 2 - proto: LockerChemistryFilled entities: - - uid: 699 + - uid: 1105 components: - type: Transform - pos: 34.5,8.5 + pos: 30.5,12.5 parent: 2 -- proto: LockerChiefEngineerFilled +- proto: LockerChiefEngineerFilledHardsuit entities: - - uid: 1609 + - uid: 8325 components: - type: Transform - pos: 47.5,34.5 + pos: 18.5,42.5 parent: 2 - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - - uid: 68 + - uid: 2855 components: - type: Transform - pos: 22.5,13.5 + pos: 22.5,16.5 parent: 2 - proto: LockerDetectiveFilled entities: @@ -36390,95 +50110,148 @@ entities: - type: Transform pos: 36.5,2.5 parent: 2 -- proto: LockerElectricalSupplies - entities: - - uid: 7648 + - uid: 10502 components: - type: Transform - pos: 34.5,39.5 - parent: 2 + pos: 33.5,-25.5 + parent: 3564 - proto: LockerElectricalSuppliesFilled entities: - - uid: 1599 + - uid: 1726 components: - type: Transform - pos: 39.5,38.5 + pos: 22.5,42.5 parent: 2 - proto: LockerEngineerFilled entities: - - uid: 1566 + - uid: 1715 components: - type: Transform - pos: 39.5,41.5 + pos: 21.5,42.5 parent: 2 - - uid: 1567 + - uid: 4674 components: - type: Transform - pos: 39.5,40.5 + pos: 19.5,42.5 parent: 2 - - uid: 1783 + - uid: 4694 components: - type: Transform - pos: 39.5,39.5 + pos: 20.5,42.5 parent: 2 +- proto: LockerEvidence + entities: + - uid: 10503 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 3564 + - uid: 10504 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 3564 + - uid: 10505 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 3564 + - uid: 10506 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 3564 + - uid: 10507 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 3564 + - uid: 10508 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 3564 + - uid: 10509 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 3564 + - uid: 10510 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 3564 - proto: LockerFreezerVaultFilled entities: - - uid: 2165 + - uid: 7723 components: - type: Transform - pos: 61.5,10.5 + pos: 56.5,23.5 parent: 2 - proto: LockerHeadOfPersonnelFilled entities: - - uid: 2277 + - uid: 8317 components: - type: Transform pos: 41.5,29.5 parent: 2 -- proto: LockerHeadOfSecurityFilled +- proto: LockerHeadOfSecurityFilledHardsuit entities: - - uid: 6814 + - uid: 54 components: - type: Transform pos: 33.5,-0.5 parent: 2 +- proto: LockerMedicalFilled + entities: + - uid: 1533 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 10335 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 3564 + - uid: 10336 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 3564 - proto: LockerMedicineFilled entities: - - uid: 626 + - uid: 2856 components: - type: Transform - pos: 26.5,16.5 - parent: 2 - - uid: 766 - components: - - type: Transform - pos: 27.5,16.5 + pos: 29.5,12.5 parent: 2 - uid: 7444 components: - type: Transform pos: 12.5,16.5 parent: 2 -- proto: LockerParamedicFilled - entities: - - uid: 3161 + - uid: 10333 components: - type: Transform - pos: 28.5,16.5 - parent: 2 -- proto: LockerQuarterMasterFilled - entities: - - uid: 7635 + pos: 22.5,-16.5 + parent: 3564 + - uid: 10334 components: - type: Transform - pos: 11.5,32.5 - parent: 2 -- proto: LockerResearchDirectorFilled + pos: 21.5,-16.5 + parent: 3564 +- proto: LockerResearchDirectorFilledHardsuit entities: - - uid: 1542 + - uid: 1563 components: - type: Transform - pos: 50.5,14.5 + pos: 49.5,9.5 parent: 2 - proto: LockerScienceFilled entities: @@ -36509,6 +50282,113 @@ entities: - type: Transform pos: 8.5,-5.5 parent: 2 +- proto: LockerSteel + entities: + - uid: 935 + components: + - type: Transform + pos: 58.5,48.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 58.5,47.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: 58.5,51.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: 58.5,50.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: 58.5,46.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: 58.5,49.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 8577 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 8579 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 10498 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 3564 + - uid: 10499 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 3564 + - uid: 10500 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 3564 + - uid: 10501 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 3564 - proto: LockerWardenFilled entities: - uid: 1353 @@ -36516,18 +50396,34 @@ entities: - type: Transform pos: 33.5,0.5 parent: 2 +- proto: LockerWardenFilledHardsuit + entities: + - uid: 10431 + components: + - type: Transform + pos: 31.5,-69.5 + parent: 3564 - proto: LockerWeldingSuppliesFilled entities: - - uid: 1600 + - uid: 1728 components: - type: Transform - pos: 39.5,37.5 + pos: 23.5,42.5 parent: 2 - - uid: 7647 +- proto: LogicGateOr + entities: + - uid: 6692 components: - type: Transform - pos: 33.5,39.5 + pos: 12.5,30.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2984: + - - Output + - DoorBolt - proto: LogicGateXor entities: - uid: 1839 @@ -36562,52 +50458,57 @@ entities: 1848: - - Output - DoorBolt - - uid: 6658 + - uid: 3235 components: - type: Transform - anchored: True - pos: 63.5,48.5 + pos: 57.5,-19.5 parent: 2 - - type: Physics - canCollide: False - bodyType: Static - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2502: + 3232: - - Output - DoorBolt -- proto: MachineAnomalyGenerator +- proto: LootSpawnerArmory entities: - - uid: 1326 + - uid: 10455 components: - type: Transform - pos: 47.5,13.5 - parent: 2 + pos: 35.5,-59.5 + parent: 3564 +- proto: LootSpawnerArmoryArmorOnly + entities: + - uid: 10456 + components: + - type: Transform + pos: 34.5,-59.5 + parent: 3564 +- proto: LootSpawnerArmoryGunsOnly + entities: + - uid: 10457 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 3564 - proto: MachineAnomalyVessel entities: - - uid: 1515 + - uid: 2379 components: - type: Transform - pos: 47.5,11.5 - parent: 2 - - uid: 2341 - components: - - type: Transform - pos: 46.5,11.5 + pos: 48.5,2.5 parent: 2 - proto: MachineAPE entities: - - uid: 1544 + - uid: 6762 components: - type: Transform - pos: 48.5,9.5 + pos: 48.5,4.5 parent: 2 - - uid: 1556 + - uid: 11210 components: - type: Transform - pos: 49.5,9.5 + pos: 48.5,3.5 parent: 2 - proto: MachineArtifactAnalyzer entities: @@ -36616,22 +50517,36 @@ entities: - type: Transform pos: 53.5,0.5 parent: 2 -- proto: MagazinePistolSubMachineGunUranium +- proto: MachineCentrifuge entities: - - uid: 718 + - uid: 2809 components: - type: Transform - pos: 62.593937,23.56012 + pos: 34.5,9.5 parent: 2 - - uid: 741 +- proto: MachineElectrolysisUnit + entities: + - uid: 1657 components: - type: Transform - pos: 62.500187,24.52887 + pos: 31.5,8.5 parent: 2 - - uid: 790 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 1914 components: - type: Transform - pos: 62.578312,25.481995 + pos: 62.5,23.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: 62.5,24.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: 62.5,25.5 parent: 2 - proto: MaintenanceFluffSpawner entities: @@ -36642,10 +50557,20 @@ entities: parent: 2 - proto: MaintenanceInsulsSpawner entities: - - uid: 8311 + - uid: 4689 components: - type: Transform - pos: 51.5,19.5 + pos: 11.5,-10.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 11129 + components: + - type: Transform + pos: 54.5,20.5 parent: 2 - proto: MaintenancePlantSpawner entities: @@ -36654,44 +50579,36 @@ entities: - type: Transform pos: 61.5,23.5 parent: 2 - - uid: 7677 - components: - - type: Transform - pos: 33.5,-9.5 - parent: 2 -- proto: MaintenanceToolSpawner +- proto: MaintenanceWeaponSpawner entities: - - uid: 7676 + - uid: 5977 components: - type: Transform - pos: 37.5,-12.5 + pos: 17.5,24.5 + parent: 2 +- proto: MaterialBiomass1 + entities: + - uid: 6691 + components: + - type: Transform + pos: 11.5,26.5 parent: 2 - proto: MaterialCloth10 entities: - - uid: 7715 + - uid: 2948 components: - type: Transform - pos: 47.5,20.5 - parent: 2 - - uid: 7716 - components: - - type: Transform - pos: 44.5,19.5 + pos: 45.5,21.5 parent: 2 - proto: MaterialWoodPlank10 entities: - - uid: 7695 + - uid: 11142 components: - type: Transform - pos: 46.5,19.5 + pos: 50.5,19.5 parent: 2 - proto: MedicalBed entities: - - uid: 608 - components: - - type: Transform - pos: 15.5,9.5 - parent: 2 - uid: 637 components: - type: Transform @@ -36707,53 +50624,89 @@ entities: - type: Transform pos: 13.5,9.5 parent: 2 + - uid: 9064 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 3564 + - uid: 9731 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 3564 - proto: MedicalTechFab entities: - - uid: 7268 + - uid: 2331 components: - type: Transform - pos: 29.5,16.5 + pos: 22.5,14.5 parent: 2 -- proto: MedkitBrute + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices +- proto: MedkitBruteFilled entities: - - uid: 7367 + - uid: 6464 components: - type: Transform pos: 33.5,16.5 parent: 2 - - uid: 7374 + - uid: 6465 components: - type: Transform pos: 33.5,16.5 parent: 2 -- proto: MedkitBurn +- proto: MedkitBurnFilled entities: - - uid: 7361 + - uid: 6466 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 6467 components: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 7362 + - uid: 6468 components: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 7515 + - uid: 7187 components: - type: Transform pos: 10.5,-6.5 parent: 2 + - uid: 7342 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 - proto: MedkitFilled entities: - - uid: 7184 + - uid: 1765 components: - type: Transform - pos: 7.5,-10.5 + pos: 35.5,-2.5 parent: 2 - - uid: 7197 + - uid: 6349 components: - type: Transform - pos: 33.5,-6.5 + pos: 47.5,35.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + pos: 32.5,-10.5 parent: 2 - uid: 7223 components: @@ -36770,6 +50723,11 @@ entities: - type: Transform pos: 20.5,16.5 parent: 2 + - uid: 7365 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 - uid: 7540 components: - type: Transform @@ -36780,48 +50738,123 @@ entities: - type: Transform pos: 56.5,17.5 parent: 2 -- proto: MedkitO2 + - uid: 8286 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 10337 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 3564 + - uid: 10338 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 3564 + - uid: 10574 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 3564 + - uid: 10703 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 3564 + - uid: 11153 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 11186 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 +- proto: MedkitOxygenFilled entities: - - uid: 7375 + - uid: 7354 components: - type: Transform pos: 33.5,16.5 parent: 2 + - uid: 7361 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 7362 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 3287 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 - uid: 7377 components: - type: Transform - pos: 33.5,16.5 + pos: 13.5,-10.5 parent: 2 -- proto: MedkitRadiation - entities: - uid: 7378 components: - type: Transform - pos: 34.5,16.5 + pos: 34.5,23.5 parent: 2 - uid: 7379 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 7515 components: - type: Transform pos: 34.5,16.5 parent: 2 -- proto: MedkitToxin - entities: - - uid: 7356 + - uid: 11538 components: - type: Transform - pos: 19.5,16.5 - parent: 2 - - uid: 7358 + pos: 27.5,-16.5 + parent: 3564 + - uid: 11539 components: - type: Transform - pos: 19.5,16.5 - parent: 2 + pos: 26.5,-16.5 + parent: 3564 - proto: MopItem entities: - - uid: 7658 + - uid: 2794 components: - type: Transform - pos: -4.5,6.5 + pos: 42.5,21.5 parent: 2 - proto: Morgue entities: @@ -36907,31 +50940,73 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,16.5 parent: 2 - - uid: 1508 + - uid: 9786 components: - type: Transform - pos: 55.5,9.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + rot: 1.5707963267948966 rad + pos: 32.5,-19.5 + parent: 3564 + - uid: 9787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-20.5 + parent: 3564 + - uid: 9788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-22.5 + parent: 3564 + - uid: 9789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-21.5 + parent: 3564 + - uid: 9790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 3564 - proto: Multitool entities: + - uid: 1549 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 - uid: 7512 components: - type: Transform @@ -36946,26 +51021,71 @@ entities: parent: 2 - proto: NitrogenCanister entities: - - uid: 6602 + - uid: 37 components: - type: Transform - pos: 23.5,37.5 + pos: 40.5,-6.5 parent: 2 - - uid: 6603 + - uid: 1341 components: - type: Transform - pos: 23.5,38.5 + pos: 19.5,10.5 parent: 2 - - uid: 6604 + - uid: 2122 components: - type: Transform - pos: 23.5,39.5 + pos: 53.5,11.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: 49.5,12.5 parent: 2 - uid: 7497 components: - type: Transform pos: 20.5,6.5 parent: 2 + - uid: 7697 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 - proto: NitrousOxideCanister entities: - uid: 61 @@ -36976,6 +51096,21 @@ entities: parent: 2 - type: Physics bodyType: Static + - uid: 1520 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 - proto: NTDefaultCircuitBoard entities: - uid: 3806 @@ -36985,10 +51120,10 @@ entities: parent: 2 - proto: NuclearBomb entities: - - uid: 1930 + - uid: 3745 components: - type: Transform - pos: 60.5,10.5 + pos: 56.5,21.5 parent: 2 - proto: NutimovCircuitBoard entities: @@ -36997,50 +51132,182 @@ entities: - type: Transform pos: 30.5,51.5 parent: 2 -- proto: OperatingTable +- proto: Ointment1 entities: - - uid: 1560 + - uid: 1684 components: - type: Transform - pos: 52.5,7.5 + pos: 20.5,15.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 20.5,15.5 parent: 2 - proto: OxygenCanister entities: - - uid: 1792 + - uid: 55 components: - type: Transform - pos: 25.5,37.5 + pos: 41.5,-7.5 parent: 2 - - uid: 2761 + - uid: 844 components: - type: Transform - pos: 25.5,38.5 + pos: 28.5,37.5 parent: 2 - - uid: 3171 + - uid: 1273 components: - type: Transform - pos: 25.5,40.5 + pos: 20.5,10.5 parent: 2 - - uid: 3183 + - uid: 1335 components: - type: Transform - pos: 25.5,41.5 + pos: 32.5,39.5 parent: 2 - - uid: 4940 + - uid: 1548 components: - type: Transform - pos: 25.5,42.5 + pos: 54.5,14.5 parent: 2 - - uid: 6601 + - uid: 1691 components: - type: Transform - pos: 25.5,39.5 + pos: 40.5,-7.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: 29.5,39.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: 30.5,39.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: 28.5,39.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: 29.5,37.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: 30.5,37.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: 12.5,31.5 parent: 2 - uid: 7496 components: - type: Transform pos: 20.5,5.5 parent: 2 + - uid: 7574 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: 52.5,13.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + pos: 60.5,39.5 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 11508 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 - proto: PaladinCircuitBoard entities: - uid: 4743 @@ -37048,27 +51315,57 @@ entities: - type: Transform pos: 34.5,52.5 parent: 2 +- proto: Paper + entities: + - uid: 10429 + components: + - type: Transform + pos: 32.5,-65.5 + parent: 3564 - proto: PaperBin10 entities: - - uid: 7640 + - uid: 1442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,31.5 + pos: 20.5,-6.5 parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: 33.5,-64.5 + parent: 3564 + - uid: 10441 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 3564 + - uid: 10537 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 3564 + - uid: 10580 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 3564 + - uid: 10606 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 3564 - proto: PaperBin20 entities: - - uid: 1548 - components: - - type: Transform - pos: 53.5,14.5 - parent: 2 - - uid: 1615 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,31.5 - parent: 2 - uid: 7121 components: - type: Transform @@ -37088,8 +51385,11 @@ entities: entities: - uid: 149 components: + - type: MetaData + desc: An official-looking sheet of paper. + name: Corpse Yeeter 2003 Safety Warning - type: Transform - pos: -5.5404506,14.442275 + pos: -4.5,10.5 parent: 2 - type: Paper stampState: paper_stamp-centcom @@ -37097,6 +51397,338 @@ entities: - stampedColor: '#006600FF' stampedName: stamp-component-stamped-name-centcom content: Please do not use the corpse yeeter 2003 to yeet corpses. + - uid: 1598 + components: + - type: MetaData + name: paper- 'A Crash Course in Legal SOP on SS13' + - type: Transform + pos: 57.5,17.5 + parent: 2 + - type: Paper + content: >- + [bold]Roles:[/bold] + + The Forensic Technician is basically the investigator and prosecutor. + + The Staff Assistant can perform these functions with written authority from the Forensic Technician. + + The Captain/HoP/Warden is ct as the judicial authority. + + The Security Officers are responsible for executing warrants, security during trial, and prisoner transport. + + + [bold]Investigative Phase:[/bold] + + After the crime has been committed the Forensic Technician's job is to gather evidence and try to ascertain not only who did it but what happened. He must take special care to catalogue everything and don't leave anything out. Write out all the evidence on paper. Make sure you take an appropriate number of fingerprints. IF he must ask someone questions he has permission to confront them. If the person refuses he can ask a judicial authority to write a subpoena for questioning. If again he fails to respond then that person is to be jailed as insubordinate and obstructing justice. Said person will be released after he cooperates. + + + ONCE the FT has a clear idea as to who the criminal is he is to write an arrest warrant on the piece of paper. IT MUST LIST THE CHARGES. The FT is to then go to the judicial authority and explain a small version of his case. If the case is moderately acceptable the authority should sign it. Security must then execute said warrant. + + + [bold]Pre-Pre-Trial Phase:[/bold] + + Now a legal representative must be presented to the defendant if said defendant requests one. That person and the defendant are then to be given time to meet (in the jail IS ACCEPTABLE). The defendant and his lawyer are then to be given a copy of all the evidence that will be presented at trial (rewriting it all on paper is fine). THIS IS CALLED THE DISCOVERY PACK. With a few exceptions, THIS IS THE ONLY EVIDENCE BOTH SIDES MAY USE AT TRIAL. IF the prosecution will be seeking the death penalty it MUST be stated at this time. ALSO if the defense will be seeking not guilty by mental defect it must state this at this time to allow ample time for examination. + + Now at this time each side is to compile a list of witnesses. By default, the defendant is on both lists regardless of anything else. Also the defense and prosecution can compile more evidence beforehand BUT in order for it to be used the evidence MUST also be given to the other side. + + The defense has time to compile motions against some evidence here. + + [bold]Possible Motions:[/bold] + + 1. [italic]Invalidate Evidence-[/italic] Something with the evidence is wrong and the evidence is to be thrown out. This includes irrelevance or corrupt security. + + 2. [italic]Free Movement-[/italic] Basically the defendant is to be kept uncuffed before and during the trial. + + 3. [italic]Subpoena Witness-[/italic] If the defense presents god reasons for needing a witness but said person fails to cooperate then a subpoena is issued. + + 4. [italic]Drop the Charges-[/italic] Not enough evidence is there for a trial so the charges are to be dropped. The FT CAN RETRY but the judicial authority must carefully reexamine the new evidence. + + 5. [italic]Declare Incompetent-[/italic] Basically the defendant is insane. Once this is granted a medical official is to examine the patient. If he is indeed insane he is to be placed under care of the medical staff until he is deemed competent to stand trial. + + + ALL SIDES MOVE TO A COURTROOM + + [bold]Pre-Trial Hearings:[/bold] + + A judicial authority and the 2 sides are to meet in the trial room. NO ONE ELSE BESIDES A SECURITY DETAIL IS TO BE PRESENT. The defense submits a plea. If the plea is guilty then proceed directly to sentencing phase. Now the sides each present their motions to the judicial authority. He rules on them. Each side can debate each motion. Then the judicial authority gets a list of crew members. He first gets a chance to look at them all and pick out acceptable and available jurors. Those jurors are then called over. Each side can ask a few questions and dismiss jurors they find too biased. HOWEVER before dismissal the judicial authority MUST agree to the reasoning. + + + [bold]The Trial:[/bold] + + The trial has three phases. + + 1. [bold]Opening Arguments[/bold]- Each side can give a short speech. They may not present ANY evidence. + + 2. [bold]Witness Calling/Evidence Presentation[/bold]- The prosecution goes first and is able to call the witnesses on his approved list in any order. He can recall them if necessary. During the questioning the lawyer may use the evidence in the questions to help prove a point. After every witness the other side has a chance to cross-examine. After both sides are done questioning a witness the prosecution can present another or recall one (even the EXACT same one again!). After prosecution is done the defense can call witnesses. After the initial cases are presented both sides are free to call witnesses on either list. + + FINALLY once both sides are done calling witnesses we move onto the next phase. + + 3. [bold]Closing Arguments[/bold]- Same as opening. + + The jury then deliberates IN PRIVATE. THEY MUST ALL AGREE on a verdict. REMEMBER: They mix between some charges being guilty and others not guilty (IE if you supposedly killed someone with a gun and you unfortunately picked up a gun without authorization then you CAN be found not guilty of murder BUT guilty of possession of illegal weaponry.). Once they have agreed they present their verdict. If unable to reach a verdict and feel they will never they call a deadlocked jury and we restart at Pre-Trial phase with an entirely new set of jurors. + + + [bold]Sentencing Phase:[/bold] + + If the death penalty was sought (you MUST have gone through a trial for death penalty) then skip to the second part. + + I. Each side can present more evidence/witnesses in any order. There is NO ban on emotional aspects or anything. The prosecution is to submit a suggested penalty. After all the sides are done then the judicial authority is to give a sentence. + + II. The jury stays and does the same thing as I. Their sole job is to determine if the death penalty is applicable. If NOT then the judge selects a sentence. + + + TADA you're done. Security then executes the sentence and adds the applicable convictions to the person's record. + - uid: 7802 + components: + - type: Transform + pos: 7.3686285,34.76087 + parent: 2 + - uid: 11517 + components: + - type: MetaData + name: paper- 'Generator Startup Procedure' + - type: Transform + pos: 12.5,34.5 + parent: 2 + - type: Paper + content: >- + [head=1][bold]Thermo-Electric Generator Startup Procedure for Mark I Plasma-Fired Engines[/bold][/head] + + + [italic]Warning![/italic] Improper engine and generator operation may cause exposure to hazardous gasses, extremes of heat and cold, and dangerous electrical voltages. + + Only trained personnel should operate station systems. Follow all procedures carefully. Wear correct personal protective equipment at all times. + + Refer to your supervisor or Head of Personnel for procedure updates and additional information. + + + Standard checklist for engine and generator cold-start. + + [bullet] Perform visual inspection of external (cooling) and internal (heating) heat-exchange pipe loops. + + Refer any breaks or cracks in the pipe to Station Maintenance for repair before continuing. + + + [bullet] Connect a CO2 canister to the external (cooling) loop connector, and release the contents. Check loop pressurization is stable + + [italic]Note:[/italic] Observe standard canister safety procedures. + + [italic]Note:[/italic] Other gasses may be substituted as a medium in the external (cooling) loop in the event that CO2 is not available. + + + [bullet] Connect a CO2 canister to the internal (heating) loop connector, and release the contents. Check loop pressurization is stable. + + [italic]Note:[/italic] Observe standard canister safety procedures. + + [italic]Note:[/italic] Nitrogen may be substituted as a medium in the internal (heating) loop in the event that CO2 is not available. + + [italic]Do not use plasma in the internal (heating) pipe loop as an unsafe condition may result.[/italic] + + + [bullet] Using the thermo-electric generator (TEG) master control panel, engage the internal and external loop circulator pumps at 1% maximum rate. + + + [bullet] Ignite the engine. Refer to document NTRSN-113-H9-12939 for proper engine preparation, ignition, and plasma-oxygen loading procedures. + + [italic]Note:[/italic] Exceeding recommended plasma-oxygen concentrations can cause engine damage and potential hazards. + + + [bullet] Monitor engine temperatures until stable operation is achieved. + + + [bullet] Increase internal and external circulator pumps to 10% of maximum rate. Monitor the generated power output on the TEG control panel. + + [italic]Note:[/italic] Consult appendix A for expected electrical generation rates. + + + [bullet] Adjust circulator rates until required electrical demand is met. + + [italic]Note:[/italic] Generation rate varies with internal and external loop temperatures, exchange media pressure, and engine geometry. Refer to Appendix B or your supervisor for locally determined optimal settings. + + [italic]Note:[/italic] Do not exceed safety ratings for station power cabling and electrical equipment. + + + [bullet] With the power generation rate stable, engage charging of the superconducting magnetic energy storage (SMES) devices. + + Total SMES charging rate should not exceed total power generation rate, or an overload condition may occur. + - uid: 11520 + components: + - type: MetaData + name: paper- 'Standard Operating Procedure' + - type: Transform + pos: 63.5,34.5 + parent: 2 + - type: Paper + content: >- + Alert Levels: + + Blue- Emergency + + [bullet]1. Caused by fire + + [bullet]2. Caused by manual interaction + + [bullet]Action: + + [bullet][bullet]Close all fire doors. These can only be opened by reseting the alarm + + Red- Ejection/Self Destruct + + [bullet]1. Caused by module operating computer. + + [bullet]Action: + + [bullet][bullet]After the specified time the module will eject completely. + + + Engine Maintenance Instructions: + + [bullet]Shut off ignition systems: + + [bullet]Activate internal power + + [bullet]Activate orbital balance matrix + + [bullet]Remove volatile liquids from area + + [bullet]Wear a fire suit + + + [bullet]After + + [bullet][bullet]Decontaminate + + [bullet][bullet]Visit medical examiner + + + Toxin Laboratory Procedure: + + [bullet]Wear a gas mask regardless + + [bullet]Get an oxygen tank. + + [bullet]Activate internal atmosphere + + + [bullet]After + + [bullet][bullet]Decontaminate + + [bullet][bullet]Visit medical examiner + + + Disaster Procedure: + + [bullet]Fire: + + [bullet]Activate sector fire alarm. + + [bullet]Move to a safe area. + + [bullet]Get a fire suit + + [bullet][bullet]After: + + [bullet][bullet][bullet]Assess Damage + + [bullet][bullet][bullet]Repair damages + + [bullet][bullet][bullet]If needed, Evacuate + + [bullet]Meteor Shower: + + [bullet][bullet]Activate fire alarm + + [bullet][bullet]Move to the back of ship + + [bullet][bullet]After + + [bullet][bullet][bullet]Repair damage + + [bullet][bullet][bullet]If needed, Evacuate + + [bullet]Accidental Reentry: + + [bullet][bullet]Activate fire alrms in front of ship. + + [bullet][bullet]Move volatile matter to a fire proof area! + + [bullet][bullet]Get a fire suit. + + [bullet][bullet]Stay secure until an emergency ship arrives. + + + [bullet][bullet]If ship does not arrive- + + [bullet][bullet][bullet]Evacuate to a nearby safe area! + - uid: 11521 + components: + - type: MetaData + name: paper- 'Chemical Information' + - type: Transform + pos: 30.5,16.5 + parent: 2 + - type: Paper + content: >- + Known Onboard Toxins: + + Grade A Semi-Liquid Plasma: + + [bullet][bullet]Highly poisonous. You cannot sustain concentrations above 15 units. + + [bullet][bullet]A gas mask fails to filter plasma after 50 units. + + [bullet][bullet]Will attempt to diffuse like a gas. + + [bullet][bullet]Filtered by scrubbers. + + [bullet][bullet]There is a bottled version which is very different + + [bullet][bullet][bullet]from the version found in canisters! + + + [bullet][bullet]WARNING: Highly Flammable. Keep away from heat sources + + [bullet][bullet]except in a enclosed fire area! + + [bullet][bullet]WARNING: It is a crime to use this without authorization. + + Known Onboard Anti-Toxin: + + [bullet]Anti-Toxin Type 01P: Works against Grade A Plasma. + + [bullet][bullet]Best if injected directly into bloodstream. + + [bullet][bullet]A full injection is in every regular Med-Kit. + + [bullet][bullet]Special toxin Kits hold around 7. + + + Known Onboard Chemicals (other): + + [bullet]Rejuvenation T#001: + + [bullet][bullet]Even 1 unit injected directly into the bloodstream + + [bullet][bullet][bullet]will cure paralysis and sleep toxins. + + [bullet][bullet]If administered to a dying patient it will prevent + + [bullet][bullet][bullet]further damage for about units*3 seconds. + + [bullet][bullet][bullet]it will not cure them or allow them to be cured. + + [bullet][bullet]It can be administeredd to a non-dying patient + + [bullet][bullet][bullet]but the chemicals disappear just as fast. + + [bullet]Sleep Toxin T#054: + + [bullet][bullet]5 units wilkl induce precisely 1 minute of sleep. + + [bullet][bullet][bullet]The effects are cumulative. + + [bullet][bullet]WARNING: It is a crime to use this without authorization - proto: ParchisBoard entities: - uid: 7543 @@ -37104,6 +51736,26 @@ entities: - type: Transform pos: 18.5,-1.5 parent: 2 + - uid: 10308 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 3564 + - uid: 10312 + components: + - type: Transform + pos: 29.5,-42.5 + parent: 3564 + - uid: 10314 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 3564 + - uid: 11367 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 3564 - proto: PartRodMetal1 entities: - uid: 7269 @@ -37118,10 +51770,25 @@ entities: parent: 2 - proto: PartRodMetal10 entities: - - uid: 1638 + - uid: 1510 components: - type: Transform - pos: 27.5,38.5 + pos: 51.5,21.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: 38.5,31.5 parent: 2 - uid: 7713 components: @@ -37135,6 +51802,16 @@ entities: parent: 2 - proto: Pen entities: + - uid: 1557 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: 8.0769615,34.17754 + parent: 2 - uid: 7212 components: - type: Transform @@ -37155,6 +51832,26 @@ entities: - type: Transform pos: 18.5,0.5 parent: 2 + - uid: 10581 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 3564 + - uid: 10608 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 3564 + - uid: 10707 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 3564 + - uid: 11368 + components: + - type: Transform + pos: 32.5,-65.5 + parent: 3564 - proto: PillCanisterBicaridine entities: - uid: 7453 @@ -37169,11 +51866,33 @@ entities: - type: Transform pos: 62.5,33.5 parent: 2 + - uid: 5454 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 - uid: 7331 components: - type: Transform pos: 32.5,16.5 parent: 2 + - uid: 10619 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 10620 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 +- proto: PillCanisterCopper + entities: + - uid: 10623 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: PillCanisterDermaline entities: - uid: 7329 @@ -37181,6 +51900,11 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 + - uid: 10624 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: PillCanisterDexalin entities: - uid: 7454 @@ -37188,39 +51912,246 @@ entities: - type: Transform pos: 12.5,13.5 parent: 2 +- proto: PillCanisterIron + entities: + - uid: 10622 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: PlasmaCanister entities: + - uid: 890 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 - uid: 1576 components: - type: Transform pos: 62.5,26.5 parent: 2 - - uid: 6605 + - uid: 1638 components: - type: Transform - pos: 17.5,42.5 + pos: 38.5,37.5 parent: 2 - - uid: 6606 + - uid: 1686 components: - type: Transform - pos: 17.5,41.5 + pos: 37.5,37.5 parent: 2 - - uid: 6607 + - uid: 1705 components: - type: Transform - pos: 18.5,42.5 + pos: 36.5,37.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 34.5,39.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: 37.5,41.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: 28.5,41.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 36.5,39.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: 39.5,38.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: 35.5,37.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: 27.5,41.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 35.5,39.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: 37.5,39.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 38.5,39.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: 27.5,40.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + pos: 27.5,38.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: 27.5,37.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: 32.5,41.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: 38.5,41.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 39.5,41.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + pos: 30.5,41.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: 35.5,41.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + pos: 29.5,41.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: 39.5,37.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 8283 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: 30.5,28.5 parent: 2 - proto: PlasmaChemistryVial entities: - - uid: 7422 + - uid: 1519 components: - type: Transform - pos: 31.5,10.5 - parent: 2 - - uid: 7423 - components: - - type: Transform - pos: 32.5,10.5 + pos: 30.5,8.5 parent: 2 - uid: 7440 components: @@ -37232,6 +52163,38 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 4684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,28.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,30.5 + parent: 2 - proto: PlayerStationAi entities: - uid: 4561 @@ -37239,46 +52202,29 @@ entities: - type: Transform pos: 45.5,51.5 parent: 2 -- proto: PlushieLizard - entities: - - uid: 7573 - components: - - type: Transform - pos: 48.5,0.5 - parent: 2 - proto: PortableGeneratorPacman entities: - - uid: 914 + - uid: 1725 components: - type: Transform - pos: 27.5,41.5 + pos: 36.5,27.5 parent: 2 - - uid: 1574 + - uid: 4275 components: - type: Transform - pos: 27.5,40.5 - parent: 2 - - uid: 1575 - components: - - type: Transform - pos: 28.5,41.5 + pos: 36.5,26.5 parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 1773 + - uid: 2438 components: - type: Transform - pos: 31.5,40.5 + pos: 38.5,26.5 parent: 2 - - uid: 1774 + - uid: 5764 components: - type: Transform - pos: 31.5,41.5 - parent: 2 - - uid: 1775 - components: - - type: Transform - pos: 30.5,41.5 + pos: 38.5,27.5 parent: 2 - proto: PortableScrubber entities: @@ -37292,11 +52238,136 @@ entities: - type: Transform pos: 31.5,-1.5 parent: 2 + - uid: 303 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: 60.5,2.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: 60.5,1.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 61.5,4.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 - uid: 6703 components: - type: Transform pos: 22.5,10.5 parent: 2 + - uid: 6926 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 - uid: 8033 components: - type: Transform @@ -37312,155 +52383,76 @@ entities: - type: Transform pos: 50.5,58.5 parent: 2 -- proto: PosterContrabandMissingGloves + - uid: 8291 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 +- proto: PowerCellHigh entities: - - uid: 7535 + - uid: 11518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,20.5 + pos: 12.5,34.5 parent: 2 -- proto: PosterContrabandRise +- proto: PowerCellMedium entities: - - uid: 7482 + - uid: 3358 components: - type: Transform - pos: 10.5,2.5 + pos: 37.5,-12.5 parent: 2 -- proto: PosterLegitNanotrasenLogo + - uid: 3359 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 +- proto: PowerCellMediumPrinted entities: - - uid: 7536 + - uid: 2971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,17.5 + pos: 48.5,20.5 parent: 2 -- proto: PosterLegitObey + - uid: 11173 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 +- proto: PowerCellRecharger entities: - - uid: 6942 + - uid: 7347 components: - type: Transform - pos: 8.5,4.5 + pos: 12.5,-10.5 parent: 2 -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 7207 + - uid: 11364 components: - type: Transform - pos: 22.5,35.5 - parent: 2 -- proto: PosterLegitSecWatch - entities: - - uid: 3227 - components: - - type: Transform - pos: 25.5,1.5 - parent: 2 - - uid: 6943 - components: - - type: Transform - pos: 12.5,4.5 - parent: 2 -- proto: PosterLegitStateLaws - entities: - - uid: 7532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-13.5 - parent: 2 -- proto: PottedPlant28 - entities: - - uid: 1413 - components: - - type: Transform - pos: 44.5,-2.5 - parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 1558 - components: - - type: Transform - pos: 48.5,-1.5 - parent: 2 - - uid: 7639 - components: - - type: Transform - pos: 15.5,32.5 - parent: 2 -- proto: PottedPlantRandomPlastic - entities: - - uid: 2156 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 5083 - components: - - type: Transform - pos: 41.5,27.5 - parent: 2 -- proto: PottedPlantRD - entities: - - uid: 7631 - components: - - type: Transform - pos: 53.5,11.5 + pos: 39.5,35.5 parent: 2 - proto: PoweredDimSmallLight entities: - - uid: 1448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 2 - - uid: 1913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,2.5 - parent: 2 - - uid: 1914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,2.5 - parent: 2 - - uid: 3182 - components: - - type: Transform - pos: 4.5,16.5 - parent: 2 - - uid: 3231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,0.5 - parent: 2 - - uid: 3272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,13.5 - parent: 2 - - uid: 3273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,12.5 - parent: 2 - - uid: 3274 - components: - - type: Transform - pos: 53.5,14.5 - parent: 2 - - uid: 3275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,11.5 - parent: 2 - uid: 5435 components: - type: Transform @@ -37485,39 +52477,22 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,52.5 parent: 2 - - uid: 5439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,50.5 - parent: 2 - uid: 5440 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,48.5 + pos: 53.5,47.5 parent: 2 - uid: 5441 components: - type: Transform pos: 51.5,45.5 parent: 2 - - uid: 5442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,47.5 - parent: 2 - uid: 5443 components: - type: Transform pos: 41.5,45.5 parent: 2 - - uid: 5444 - components: - - type: Transform - pos: 44.5,45.5 - parent: 2 - uid: 5447 components: - type: Transform @@ -37536,12 +52511,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,43.5 parent: 2 - - uid: 7330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,11.5 - parent: 2 - uid: 8032 components: - type: Transform @@ -37550,126 +52519,12 @@ entities: parent: 2 - proto: PoweredLEDSmallLight entities: - - uid: 2361 - components: - - type: Transform - pos: 11.5,7.5 - parent: 2 - - type: PointLight - energy: 0.2 - - uid: 2473 - components: - - type: Transform - pos: 24.5,19.5 - parent: 2 - - type: PointLight - energy: 0.1 - - uid: 2480 - components: - - type: Transform - pos: 40.5,-9.5 - parent: 2 - - uid: 2481 - components: - - type: Transform - pos: 42.5,-9.5 - parent: 2 - - uid: 2484 - components: - - type: Transform - pos: 44.5,-9.5 - parent: 2 - - uid: 2494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-3.5 - parent: 2 - - type: PointLight - energy: 0.15 - - uid: 2528 - components: - - type: Transform - pos: 57.5,40.5 - parent: 2 - - type: PointLight - energy: 0.4 - - uid: 2616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,19.5 - parent: 2 - - type: PointLight - energy: 0.7 - - uid: 2618 + - uid: 10787 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,26.5 - parent: 2 - - type: PointLight - energy: 0.3 - - uid: 2619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,17.5 - parent: 2 - - type: PointLight - energy: 0.4 - - uid: 2621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,15.5 - parent: 2 - - type: PointLight - energy: 0.2 - - uid: 2623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,13.5 - parent: 2 - - type: PointLight - energy: 0.4 - - uid: 2624 - components: - - type: Transform - pos: 41.5,13.5 - parent: 2 - - type: PointLight - energy: 0.05 - - uid: 2632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,22.5 - parent: 2 - - type: PointLight - energy: 0.2 - - uid: 2633 - components: - - type: Transform - pos: 39.5,11.5 - parent: 2 - - type: PointLight - energy: 0.2 -- proto: PoweredlightExterior - entities: - - uid: 1896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,63.5 - parent: 2 - - uid: 1912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,63.5 - parent: 2 + pos: 22.5,-71.5 + parent: 3564 - proto: PoweredlightLED entities: - uid: 146 @@ -37684,39 +52539,48 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,11.5 parent: 2 - - uid: 152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,38.5 - parent: 2 - - uid: 217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,0.5 - parent: 2 - uid: 218 components: - type: Transform - pos: 17.5,-5.5 + pos: 16.5,-5.5 parent: 2 - - uid: 633 + - uid: 608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,5.5 + parent: 2 + - uid: 644 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-7.5 + pos: 27.5,50.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-2.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,5.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.2 - uid: 1790 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,8.5 + pos: 20.5,10.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1859 components: - type: Transform @@ -37735,35 +52599,59 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1890 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1891 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,9.5 parent: 2 - - uid: 1897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,17.5 - parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1910 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,16.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 1916 components: - type: Transform pos: 23.5,16.5 parent: 2 + - uid: 2049 + components: + - type: Transform + pos: 51.5,14.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 - uid: 2154 components: - type: Transform @@ -37775,6 +52663,69 @@ entities: rot: 3.141592653589793 rad pos: 61.5,4.5 parent: 2 + - uid: 2171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,12.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-16.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 57.5,40.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,21.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,26.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,17.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,15.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,15.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 - uid: 2233 components: - type: Transform @@ -37851,7 +52802,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-11.5 + pos: 5.5,-12.5 parent: 2 - uid: 2324 components: @@ -37868,25 +52819,29 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-7.5 + pos: 4.5,-6.5 parent: 2 - uid: 2339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,0.5 + rot: 3.141592653589793 rad + pos: 41.5,23.5 parent: 2 - uid: 2340 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,7.5 + pos: 1.5,5.5 parent: 2 - uid: 2360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,7.5 + pos: -3.5,7.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 39.5,11.5 parent: 2 - uid: 2372 components: @@ -37911,16 +52866,11 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,7.5 parent: 2 - - uid: 2387 - components: - - type: Transform - pos: 18.5,25.5 - parent: 2 - uid: 2388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,9.5 + rot: 3.141592653589793 rad + pos: 13.5,-3.5 parent: 2 - uid: 2389 components: @@ -37931,8 +52881,8 @@ entities: - uid: 2390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,1.5 + rot: 4.71238898038469 rad + pos: 49.5,2.5 parent: 2 - uid: 2437 components: @@ -37940,11 +52890,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,12.5 parent: 2 - - uid: 2451 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - uid: 2453 components: - type: Transform @@ -37962,40 +52907,11 @@ entities: - type: Transform pos: 59.5,54.5 parent: 2 - - uid: 2469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,24.5 - parent: 2 - - uid: 2470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,28.5 - parent: 2 - - uid: 2471 - components: - - type: Transform - pos: 13.5,32.5 - parent: 2 - - uid: 2472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,20.5 - parent: 2 - uid: 2474 components: - type: Transform pos: 37.5,2.5 parent: 2 - - uid: 2475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 2 - uid: 2476 components: - type: Transform @@ -38052,6 +52968,12 @@ entities: - type: Transform pos: 62.5,2.5 parent: 2 + - uid: 2494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,9.5 + parent: 2 - uid: 2497 components: - type: Transform @@ -38126,18 +53048,14 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,31.5 parent: 2 - - uid: 2531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,25.5 - parent: 2 - uid: 2534 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,39.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 2535 components: - type: Transform @@ -38149,24 +53067,14 @@ entities: rot: 3.141592653589793 rad pos: 31.5,33.5 parent: 2 - - uid: 2543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,21.5 - parent: 2 - - uid: 2556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,23.5 - parent: 2 - uid: 2563 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,33.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 2571 components: - type: Transform @@ -38179,46 +53087,33 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,33.5 parent: 2 - - uid: 2579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,39.5 - parent: 2 - - uid: 2588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,36.5 - parent: 2 - - uid: 2602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,40.5 - parent: 2 - uid: 2604 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,21.5 parent: 2 - - uid: 2605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,25.5 - parent: 2 - uid: 2606 components: - type: Transform - pos: 42.5,20.5 + pos: 42.5,21.5 parent: 2 - uid: 2615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,27.5 + rot: 4.71238898038469 rad + pos: 47.5,29.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,15.5 parent: 2 - uid: 2634 components: @@ -38266,12 +53161,13 @@ entities: - uid: 2642 components: - type: Transform - pos: 44.5,51.5 + rot: 1.5707963267948966 rad + pos: 42.5,51.5 parent: 2 - uid: 2643 components: - type: Transform - pos: 46.5,51.5 + pos: 49.5,51.5 parent: 2 - uid: 2644 components: @@ -38283,70 +53179,885 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,47.5 + pos: 48.5,47.5 parent: 2 - - uid: 3247 + - uid: 2728 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-10.5 + pos: 41.5,-7.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.19 - - uid: 4001 + - uid: 2729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-4.5 + rot: 3.141592653589793 rad + pos: 34.5,-10.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.17 - - uid: 4002 + - uid: 2730 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-10.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 2733 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-5.5 + pos: 44.5,-10.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.21 - - uid: 4003 + - uid: 2734 components: - type: Transform - pos: 29.5,-4.5 + rot: 1.5707963267948966 rad + pos: 37.5,-12.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-8.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,9.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,0.5 parent: 2 - - type: PointLight - energy: 25 - - type: RgbLightController - cycleRate: 0.23 - uid: 6708 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,41.5 parent: 2 - - uid: 7028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,39.5 - parent: 2 - uid: 7113 components: - type: Transform pos: 24.5,42.5 parent: 2 + - uid: 7194 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-3.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,22.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,38.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,9.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,2.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-10.5 + parent: 2 - uid: 8264 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,26.5 parent: 2 + - uid: 8313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,26.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,31.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,29.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,36.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + pos: 43.5,41.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,37.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,39.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,39.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,37.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,37.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + pos: 31.5,35.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,33.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8341 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,35.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,31.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,24.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,20.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,5.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,2.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 8595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,17.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,23.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,25.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,36.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,31.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,28.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,36.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,41.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,39.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,43.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,50.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,46.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,49.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: 25.5,57.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,49.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: 19.5,57.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,52.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,50.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,18.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,18.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-68.5 + parent: 3564 + - uid: 10710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-63.5 + parent: 3564 + - uid: 10711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-63.5 + parent: 3564 + - uid: 10712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-68.5 + parent: 3564 + - uid: 10713 + components: + - type: Transform + pos: 27.5,-63.5 + parent: 3564 + - uid: 10714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-69.5 + parent: 3564 + - uid: 10715 + components: + - type: Transform + pos: 15.5,-65.5 + parent: 3564 + - uid: 10716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-61.5 + parent: 3564 + - uid: 10717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-58.5 + parent: 3564 + - uid: 10718 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 3564 + - uid: 10719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-61.5 + parent: 3564 + - uid: 10720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-60.5 + parent: 3564 + - uid: 10721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-58.5 + parent: 3564 + - uid: 10722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-57.5 + parent: 3564 + - uid: 10723 + components: + - type: Transform + pos: 28.5,-52.5 + parent: 3564 + - uid: 10724 + components: + - type: Transform + pos: 17.5,-52.5 + parent: 3564 + - uid: 10725 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 3564 + - uid: 10726 + components: + - type: Transform + pos: 28.5,-48.5 + parent: 3564 + - uid: 10727 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 3564 + - uid: 10728 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 3564 + - uid: 10729 + components: + - type: Transform + pos: 28.5,-40.5 + parent: 3564 + - uid: 10730 + components: + - type: Transform + pos: 28.5,-36.5 + parent: 3564 + - uid: 10731 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 3564 + - uid: 10732 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 3564 + - uid: 10733 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 3564 + - uid: 10734 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 3564 + - uid: 10735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-45.5 + parent: 3564 + - uid: 10736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-37.5 + parent: 3564 + - uid: 10737 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 3564 + - uid: 10738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-37.5 + parent: 3564 + - uid: 10739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-51.5 + parent: 3564 + - uid: 10740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-51.5 + parent: 3564 + - uid: 10741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-47.5 + parent: 3564 + - uid: 10742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-43.5 + parent: 3564 + - uid: 10743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-39.5 + parent: 3564 + - uid: 10744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-35.5 + parent: 3564 + - uid: 10745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-35.5 + parent: 3564 + - uid: 10746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-39.5 + parent: 3564 + - uid: 10748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-47.5 + parent: 3564 + - uid: 10749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-42.5 + parent: 3564 + - uid: 10750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 3564 + - uid: 10751 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 3564 + - uid: 10752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-29.5 + parent: 3564 + - uid: 10753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-29.5 + parent: 3564 + - uid: 10754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-23.5 + parent: 3564 + - uid: 10755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 3564 + - uid: 10756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 3564 + - uid: 10757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 3564 + - uid: 10758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-18.5 + parent: 3564 + - uid: 10759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 3564 + - uid: 10760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-23.5 + parent: 3564 + - uid: 10761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-25.5 + parent: 3564 + - uid: 10762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-30.5 + parent: 3564 + - uid: 10763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-32.5 + parent: 3564 + - uid: 10764 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 3564 + - uid: 11221 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 11222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,4.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 4244 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 6043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,22.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 - proto: PoweredWarmSmallLight entities: - uid: 1962 @@ -38355,17 +54066,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,19.5 parent: 2 - - uid: 2234 - components: - - type: Transform - pos: 9.5,38.5 - parent: 2 - - uid: 2235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-12.5 - parent: 2 - uid: 2242 components: - type: Transform @@ -38384,27 +54084,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-14.5 parent: 2 - - uid: 2487 - components: - - type: Transform - pos: 35.5,-9.5 - parent: 2 - - uid: 2488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-10.5 - parent: 2 - - uid: 2489 - components: - - type: Transform - pos: 41.5,-11.5 - parent: 2 - - uid: 2620 - components: - - type: Transform - pos: 52.5,21.5 - parent: 2 - uid: 2742 components: - type: Transform @@ -38450,6 +54129,11 @@ entities: - type: Transform pos: 13.5,13.5 parent: 2 + - uid: 10621 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: PresentTrash entities: - uid: 7521 @@ -38464,107 +54148,225 @@ entities: parent: 2 - proto: Protolathe entities: - - uid: 2379 + - uid: 1508 components: - type: Transform - pos: 48.5,7.5 + pos: 54.5,7.5 parent: 2 - - uid: 7564 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices + - uid: 8479 components: - type: Transform - pos: 39.5,35.5 - parent: 2 -- proto: ProtolatheMachineCircuitboard - entities: - - uid: 2184 - components: - - type: Transform - pos: 13.5,-12.5 + pos: 36.5,33.5 parent: 2 + - type: TechnologyDatabase + supportedDisciplines: + - Industrial + - Arsenal + - Experimental + - CivilianServices - proto: ProximitySensor entities: + - uid: 828 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 - uid: 7180 components: - type: Transform pos: 59.5,34.5 parent: 2 - - uid: 7196 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - - uid: 7198 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - - uid: 7200 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - - uid: 7225 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - uid: 7254 components: - type: Transform pos: 55.5,29.5 parent: 2 - - uid: 7262 +- proto: PuddleBloodSmall + entities: + - uid: 6348 components: - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 7263 - components: - - type: Transform - pos: 33.5,-4.5 + pos: 7.5,34.5 parent: 2 - proto: Rack entities: - - uid: 1313 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 2064 - components: - - type: Transform - pos: 49.5,39.5 - parent: 2 - - uid: 2496 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 2791 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 2 - - uid: 2792 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 2 - - uid: 2793 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 2 - - uid: 2795 + - uid: 765 components: - type: Transform pos: 9.5,-12.5 parent: 2 - - uid: 2796 + - uid: 2619 components: - type: Transform - pos: 10.5,-12.5 + pos: 13.5,2.5 parent: 2 + - uid: 2632 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: 54.5,41.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: 30.5,52.5 + parent: 2 + - uid: 4725 + components: + - type: Transform + pos: 30.5,51.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: 34.5,51.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: 34.5,52.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: 32.5,51.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: 32.5,52.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: 30.5,48.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 51.5,41.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: 53.5,41.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: 52.5,41.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-69.5 + parent: 3564 + - uid: 10418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-69.5 + parent: 3564 + - uid: 10419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-69.5 + parent: 3564 + - uid: 10420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-69.5 + parent: 3564 + - uid: 10421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-69.5 + parent: 3564 + - uid: 10422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-69.5 + parent: 3564 - proto: RadioHandheld entities: - uid: 2370 @@ -38572,6 +54374,16 @@ entities: - type: Transform pos: 60.62494,34.605804 parent: 2 + - uid: 6690 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 - uid: 7587 components: - type: Transform @@ -38579,40 +54391,28 @@ entities: parent: 2 - proto: Railing entities: - - uid: 4057 + - uid: 235 components: - type: Transform - pos: 30.5,3.5 + pos: 26.5,-6.5 parent: 2 - - uid: 4058 + - uid: 241 components: - type: Transform - pos: 29.5,3.5 + pos: 27.5,-6.5 parent: 2 - - uid: 4059 + - uid: 254 components: - type: Transform - pos: 28.5,3.5 + rot: 1.5707963267948966 rad + pos: 28.5,-5.5 parent: 2 - - uid: 4060 +- proto: RailingCorner + entities: + - uid: 250 components: - type: Transform - pos: 27.5,3.5 - parent: 2 - - uid: 4061 - components: - - type: Transform - pos: 26.5,3.5 - parent: 2 - - uid: 4062 - components: - - type: Transform - pos: 25.5,3.5 - parent: 2 - - uid: 4063 - components: - - type: Transform - pos: 24.5,3.5 + pos: 28.5,-6.5 parent: 2 - proto: RandomEngineerCorpseSpawner entities: @@ -38621,710 +54421,329 @@ entities: - type: Transform pos: 35.5,45.5 parent: 2 -- proto: RandomMeat - entities: - - uid: 229 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 2 -- proto: RandomSpawner - entities: - - uid: 291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,57.5 - parent: 2 - - uid: 2157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,0.5 - parent: 2 - - uid: 2282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,23.5 - parent: 2 - - uid: 2768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,49.5 - parent: 2 - - uid: 3153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,45.5 - parent: 2 - - uid: 3311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,53.5 - parent: 2 - - uid: 4823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,43.5 - parent: 2 - - uid: 4826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,44.5 - parent: 2 - - uid: 6157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,45.5 - parent: 2 - - uid: 7226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,54.5 - parent: 2 - - uid: 7227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,55.5 - parent: 2 - - uid: 7228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,54.5 - parent: 2 - - uid: 7229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,54.5 - parent: 2 - - uid: 7230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,51.5 - parent: 2 - - uid: 7233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,55.5 - parent: 2 - - uid: 7234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,52.5 - parent: 2 - - uid: 7235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,50.5 - parent: 2 - - uid: 7336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,39.5 - parent: 2 - - uid: 7337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,38.5 - parent: 2 - - uid: 7338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,29.5 - parent: 2 - - uid: 7339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,14.5 - parent: 2 - - uid: 7340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,12.5 - parent: 2 - - uid: 7341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,12.5 - parent: 2 - - uid: 7342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,12.5 - parent: 2 - - uid: 7343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,18.5 - parent: 2 - - uid: 7344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,14.5 - parent: 2 - - uid: 7345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,15.5 - parent: 2 - - uid: 7346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,17.5 - parent: 2 - - uid: 7347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,16.5 - parent: 2 - - uid: 7348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,16.5 - parent: 2 - - uid: 7349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,17.5 - parent: 2 - - uid: 7350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,17.5 - parent: 2 - - uid: 7351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,15.5 - parent: 2 - - uid: 7352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,17.5 - parent: 2 - - uid: 7353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,0.5 - parent: 2 - - uid: 7354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,1.5 - parent: 2 - - uid: 7355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,0.5 - parent: 2 - - uid: 7357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,2.5 - parent: 2 - - uid: 7359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,6.5 - parent: 2 - - uid: 7360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,7.5 - parent: 2 - - uid: 7363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,10.5 - parent: 2 - - uid: 7364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,4.5 - parent: 2 - - uid: 7365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,10.5 - parent: 2 - - uid: 7366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,11.5 - parent: 2 - - uid: 7368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-14.5 - parent: 2 - - uid: 7369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-16.5 - parent: 2 - - uid: 7370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-16.5 - parent: 2 - - uid: 7371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-14.5 - parent: 2 - - uid: 7372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 2 - - uid: 7373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 2 - - uid: 7376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,14.5 - parent: 2 - - uid: 7381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,32.5 - parent: 2 - - uid: 7384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 2 - - uid: 7385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,9.5 - parent: 2 - - uid: 7386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,10.5 - parent: 2 - - uid: 7387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,15.5 - parent: 2 - - uid: 7388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,14.5 - parent: 2 - - uid: 7389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,11.5 - parent: 2 - - uid: 7390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,9.5 - parent: 2 - - uid: 7391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 2 - - uid: 7392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 2 - - uid: 7393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 2 - - uid: 7394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 2 - - uid: 7395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,7.5 - parent: 2 - - uid: 7396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 2 - - uid: 7397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 2 - - uid: 7398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,2.5 - parent: 2 - - uid: 7399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,3.5 - parent: 2 - - uid: 7401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 2 - - uid: 7402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-2.5 - parent: 2 - - uid: 7403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 2 - - uid: 7404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 2 - - uid: 7405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 2 - - uid: 7406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 2 - - uid: 7407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 2 - - uid: 7408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 2 - - uid: 7410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 2 - proto: RandomVendingClothing entities: + - uid: 6236 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 - uid: 7287 components: - type: Transform pos: 58.5,44.5 parent: 2 + - uid: 7360 + components: + - type: Transform + pos: 58.5,53.5 + parent: 2 - proto: RandomVendingDrinks entities: - - uid: 1376 - components: - - type: Transform - pos: 15.5,7.5 - parent: 2 - - uid: 1550 - components: - - type: Transform - pos: 52.5,14.5 - parent: 2 - uid: 1817 components: - type: Transform pos: 23.5,7.5 parent: 2 - - uid: 4848 - components: - - type: Transform - pos: 56.5,40.5 - parent: 2 - - uid: 5174 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - uid: 7003 components: - type: Transform - pos: 47.5,-12.5 - parent: 2 -- proto: RandomVendingSnacks - entities: - - uid: 697 - components: - - type: Transform - pos: 12.5,0.5 - parent: 2 - - uid: 1549 - components: - - type: Transform - pos: 51.5,14.5 - parent: 2 - - uid: 4849 - components: - - type: Transform - pos: 58.5,40.5 + pos: 13.5,0.5 parent: 2 - uid: 7004 components: - type: Transform - pos: 48.5,-12.5 + pos: 58.5,40.5 parent: 2 - uid: 7495 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - uid: 7744 components: - type: Transform pos: 16.5,7.5 parent: 2 -- proto: RCD - entities: - - uid: 7172 + - uid: 7780 components: - type: Transform - pos: 45.5,33.5 + pos: 53.5,26.5 parent: 2 -- proto: Recycler - entities: - - uid: 290 + - uid: 10567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,5.5 + pos: 14.5,-20.5 + parent: 3564 + - uid: 11224 + components: + - type: Transform + pos: 63.5,2.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 1815 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: 56.5,40.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 3564 + - uid: 11223 + components: + - type: Transform + pos: 62.5,2.5 parent: 2 - proto: ReinforcedPlasmaWindow entities: - - uid: 1354 + - uid: 143 components: - type: Transform - pos: 22.5,28.5 + pos: 23.5,-6.5 parent: 2 - - uid: 1379 + - uid: 150 components: - type: Transform - pos: 18.5,32.5 + pos: 24.5,-5.5 parent: 2 - - uid: 1380 + - uid: 165 components: - type: Transform - pos: 19.5,32.5 + pos: 24.5,-6.5 parent: 2 - - uid: 1383 + - uid: 176 components: - type: Transform - pos: 24.5,32.5 + pos: 22.5,-3.5 parent: 2 - - uid: 1390 + - uid: 186 components: - type: Transform - pos: 23.5,32.5 + pos: 23.5,-3.5 parent: 2 - - uid: 1393 + - uid: 551 components: - type: Transform - pos: 25.5,29.5 + pos: 24.5,-0.5 parent: 2 - - uid: 1394 + - uid: 553 components: - type: Transform - pos: 25.5,30.5 + pos: 26.5,-0.5 parent: 2 - - uid: 1405 + - uid: 554 components: - type: Transform - pos: 25.5,28.5 + pos: 28.5,-1.5 parent: 2 - - uid: 1439 + - uid: 626 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 903 components: - type: Transform pos: 22.5,32.5 parent: 2 - - uid: 1445 + - uid: 913 components: - type: Transform - pos: 17.5,32.5 + pos: 19.5,32.5 parent: 2 - - uid: 1462 + - uid: 914 components: - type: Transform pos: 25.5,32.5 parent: 2 - - uid: 1463 + - uid: 963 components: - type: Transform - pos: 25.5,31.5 + pos: 24.5,32.5 parent: 2 - - uid: 1477 + - uid: 1465 components: - type: Transform - pos: 25.5,27.5 + pos: 20.5,32.5 parent: 2 - - uid: 1525 + - uid: 1731 components: - type: Transform - pos: 25.5,26.5 + pos: 22.5,-6.5 parent: 2 - - uid: 1526 + - uid: 2899 components: - type: Transform - pos: 24.5,26.5 + pos: 24.5,-4.5 parent: 2 - - uid: 1527 + - uid: 4014 components: - type: Transform - pos: 23.5,26.5 + pos: 27.5,-11.5 parent: 2 - - uid: 1664 + - uid: 4057 components: - type: Transform - pos: 19.5,31.5 + pos: 29.5,-11.5 parent: 2 - - uid: 1665 + - uid: 4058 components: - type: Transform - pos: 19.5,30.5 + pos: 28.5,-11.5 parent: 2 - - uid: 1666 + - uid: 4664 components: - type: Transform - pos: 19.5,29.5 + pos: 18.5,32.5 parent: 2 - - uid: 1667 + - uid: 4665 components: - type: Transform - pos: 18.5,29.5 + pos: 23.5,32.5 parent: 2 - - uid: 1668 + - uid: 4682 components: - type: Transform - pos: 17.5,29.5 + pos: 17.5,32.5 parent: 2 - - uid: 1669 + - uid: 9661 components: - type: Transform - pos: 19.5,28.5 - parent: 2 - - uid: 1670 + pos: 14.5,-57.5 + parent: 3564 + - uid: 9662 components: - type: Transform - pos: 19.5,27.5 - parent: 2 - - uid: 1671 + pos: 14.5,-58.5 + parent: 3564 + - uid: 9663 components: - type: Transform - pos: 22.5,31.5 - parent: 2 - - uid: 1672 + pos: 14.5,-59.5 + parent: 3564 + - uid: 9664 components: - type: Transform - pos: 22.5,30.5 - parent: 2 - - uid: 1673 + pos: 13.5,-59.5 + parent: 3564 + - uid: 9665 components: - type: Transform - pos: 22.5,29.5 - parent: 2 - - uid: 1674 + pos: 12.5,-59.5 + parent: 3564 + - uid: 9666 components: - type: Transform - pos: 23.5,29.5 - parent: 2 - - uid: 1675 + pos: 12.5,-58.5 + parent: 3564 + - uid: 9667 components: - type: Transform - pos: 24.5,29.5 - parent: 2 - - uid: 1685 + pos: 12.5,-57.5 + parent: 3564 + - uid: 9668 components: - type: Transform - pos: 22.5,26.5 - parent: 2 - - uid: 1687 + pos: 11.5,-59.5 + parent: 3564 + - uid: 9676 components: - type: Transform - pos: 22.5,27.5 - parent: 2 + pos: 15.5,-62.5 + parent: 3564 + - uid: 9677 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 3564 + - uid: 9678 + components: + - type: Transform + pos: 17.5,-62.5 + parent: 3564 + - uid: 9679 + components: + - type: Transform + pos: 14.5,-63.5 + parent: 3564 + - uid: 9680 + components: + - type: Transform + pos: 14.5,-62.5 + parent: 3564 - proto: ReinforcedWindow entities: - uid: 9 @@ -39367,16 +54786,6 @@ entities: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 89 - components: - - type: Transform - pos: 30.5,17.5 - parent: 2 - - uid: 122 - components: - - type: Transform - pos: -5.5,6.5 - parent: 2 - uid: 126 components: - type: Transform @@ -39402,11 +54811,6 @@ entities: - type: Transform pos: 15.5,3.5 parent: 2 - - uid: 143 - components: - - type: Transform - pos: -7.5,6.5 - parent: 2 - uid: 144 components: - type: Transform @@ -39507,36 +54911,11 @@ entities: - type: Transform pos: -7.5,15.5 parent: 2 - - uid: 303 - components: - - type: Transform - pos: -7.5,16.5 - parent: 2 - - uid: 304 - components: - - type: Transform - pos: -7.5,8.5 - parent: 2 - - uid: 307 - components: - - type: Transform - pos: -8.5,13.5 - parent: 2 - - uid: 308 - components: - - type: Transform - pos: -8.5,11.5 - parent: 2 - uid: 312 components: - type: Transform pos: 13.5,-15.5 parent: 2 - - uid: 358 - components: - - type: Transform - pos: -7.5,4.5 - parent: 2 - uid: 360 components: - type: Transform @@ -39617,6 +54996,11 @@ entities: - type: Transform pos: 2.5,36.5 parent: 2 + - uid: 562 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 - uid: 568 components: - type: Transform @@ -39627,16 +55011,6 @@ entities: - type: Transform pos: 21.5,13.5 parent: 2 - - uid: 660 - components: - - type: Transform - pos: 20.5,36.5 - parent: 2 - - uid: 707 - components: - - type: Transform - pos: 20.5,37.5 - parent: 2 - uid: 713 components: - type: Transform @@ -39647,11 +55021,6 @@ entities: - type: Transform pos: 12.5,40.5 parent: 2 - - uid: 719 - components: - - type: Transform - pos: 20.5,35.5 - parent: 2 - uid: 736 components: - type: Transform @@ -39672,11 +55041,6 @@ entities: - type: Transform pos: 45.5,42.5 parent: 2 - - uid: 935 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - uid: 967 components: - type: Transform @@ -39872,81 +55236,6 @@ entities: - type: Transform pos: 41.5,0.5 parent: 2 - - uid: 1453 - components: - - type: Transform - pos: 18.5,38.5 - parent: 2 - - uid: 1499 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 2 - - uid: 1501 - components: - - type: Transform - pos: 29.5,-10.5 - parent: 2 - - uid: 1502 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 2 - - uid: 1503 - components: - - type: Transform - pos: 26.5,-10.5 - parent: 2 - - uid: 1511 - components: - - type: Transform - pos: 20.5,38.5 - parent: 2 - - uid: 1516 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 2 - - uid: 1622 - components: - - type: Transform - pos: 19.5,38.5 - parent: 2 - - uid: 1657 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 2 - - uid: 1684 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 2 - - uid: 1691 - components: - - type: Transform - pos: 32.5,-7.5 - parent: 2 - - uid: 1692 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - uid: 1811 - components: - - type: Transform - pos: 24.5,8.5 - parent: 2 - - uid: 1812 - components: - - type: Transform - pos: 25.5,8.5 - parent: 2 - - uid: 1813 - components: - - type: Transform - pos: 26.5,8.5 - parent: 2 - uid: 1814 components: - type: Transform @@ -40067,66 +55356,11 @@ entities: - type: Transform pos: 13.5,40.5 parent: 2 - - uid: 1922 - components: - - type: Transform - pos: 10.5,20.5 - parent: 2 - uid: 1933 components: - type: Transform pos: 51.5,38.5 parent: 2 - - uid: 1938 - components: - - type: Transform - pos: 29.5,17.5 - parent: 2 - - uid: 1940 - components: - - type: Transform - pos: 9.5,21.5 - parent: 2 - - uid: 1941 - components: - - type: Transform - pos: 35.5,15.5 - parent: 2 - - uid: 1948 - components: - - type: Transform - pos: 10.5,28.5 - parent: 2 - - uid: 1950 - components: - - type: Transform - pos: 8.5,27.5 - parent: 2 - - uid: 1952 - components: - - type: Transform - pos: 10.5,27.5 - parent: 2 - - uid: 1955 - components: - - type: Transform - pos: 8.5,24.5 - parent: 2 - - uid: 1956 - components: - - type: Transform - pos: 9.5,24.5 - parent: 2 - - uid: 1961 - components: - - type: Transform - pos: 10.5,24.5 - parent: 2 - - uid: 1966 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - uid: 1970 components: - type: Transform @@ -40157,20 +55391,15 @@ entities: - type: Transform pos: 51.5,-17.5 parent: 2 - - uid: 2109 - components: - - type: Transform - pos: 10.5,21.5 - parent: 2 - uid: 2127 components: - type: Transform pos: 53.5,-15.5 parent: 2 - - uid: 2129 + - uid: 2130 components: - type: Transform - pos: 8.5,21.5 + pos: 44.5,26.5 parent: 2 - uid: 2139 components: @@ -40282,11 +55511,6 @@ entities: - type: Transform pos: 64.5,35.5 parent: 2 - - uid: 2464 - components: - - type: Transform - pos: 64.5,27.5 - parent: 2 - uid: 2590 components: - type: Transform @@ -40312,70 +55536,96 @@ entities: - type: Transform pos: 56.5,63.5 parent: 2 - - uid: 2684 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - - uid: 2750 - components: - - type: Transform - pos: 59.5,64.5 - parent: 2 - - uid: 2751 - components: - - type: Transform - pos: 59.5,65.5 - parent: 2 - - uid: 2752 - components: - - type: Transform - pos: 57.5,65.5 - parent: 2 - - uid: 2753 - components: - - type: Transform - pos: 57.5,64.5 - parent: 2 - uid: 2756 components: - type: Transform pos: -0.5,36.5 parent: 2 - - uid: 2758 + - uid: 3245 components: - type: Transform - pos: -1.5,-9.5 + pos: 58.5,-18.5 parent: 2 - - uid: 2759 + - uid: 3247 components: - type: Transform - pos: -1.5,-11.5 + pos: 58.5,-19.5 parent: 2 - - uid: 4489 + - uid: 3248 components: - type: Transform - pos: 54.5,59.5 + pos: 58.5,-20.5 parent: 2 - - uid: 4490 + - uid: 3249 components: - type: Transform - pos: 53.5,59.5 + pos: 56.5,-18.5 parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-39.5 + parent: 3564 + - uid: 3568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-40.5 + parent: 3564 + - uid: 3569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 3564 + - uid: 3570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-43.5 + parent: 3564 + - uid: 3571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-44.5 + parent: 3564 + - uid: 3572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-45.5 + parent: 3564 - uid: 4494 components: - type: Transform pos: 55.5,61.5 parent: 2 - - uid: 4495 + - uid: 4685 components: - type: Transform - pos: 54.5,61.5 + pos: 25.5,25.5 parent: 2 - - uid: 4496 + - uid: 4686 components: - type: Transform - pos: 53.5,61.5 + pos: 25.5,24.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: 25.5,23.5 parent: 2 - uid: 6011 components: @@ -40392,11 +55642,6 @@ entities: - type: Transform pos: 56.5,-17.5 parent: 2 - - uid: 6014 - components: - - type: Transform - pos: 57.5,-17.5 - parent: 2 - uid: 6015 components: - type: Transform @@ -40407,10 +55652,363 @@ entities: - type: Transform pos: 53.5,-17.5 parent: 2 - - uid: 6305 + - uid: 6345 components: - type: Transform - pos: 62.5,59.5 + pos: 46.5,34.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 9452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-46.5 + parent: 3564 + - uid: 9453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-46.5 + parent: 3564 + - uid: 9712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-60.5 + parent: 3564 + - uid: 9734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 3564 + - uid: 9735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 3564 + - uid: 9736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-24.5 + parent: 3564 + - uid: 9737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 3564 + - uid: 9738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 3564 + - uid: 9739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-24.5 + parent: 3564 + - uid: 9740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 3564 + - uid: 9741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-32.5 + parent: 3564 + - uid: 9742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 3564 + - uid: 9743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-27.5 + parent: 3564 + - uid: 9744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-30.5 + parent: 3564 + - uid: 9745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-26.5 + parent: 3564 + - uid: 9746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 3564 + - uid: 9747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-30.5 + parent: 3564 + - uid: 9748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 3564 + - uid: 9749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 3564 + - uid: 9750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 3564 + - uid: 9751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-34.5 + parent: 3564 + - uid: 9752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-36.5 + parent: 3564 + - uid: 9753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-37.5 + parent: 3564 + - uid: 9754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 3564 + - uid: 9755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 3564 + - uid: 9758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-40.5 + parent: 3564 + - uid: 9759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 3564 + - uid: 9760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-44.5 + parent: 3564 + - uid: 9761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-45.5 + parent: 3564 + - uid: 9762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-44.5 + parent: 3564 + - uid: 9763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-45.5 + parent: 3564 + - uid: 9764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-48.5 + parent: 3564 + - uid: 9765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-49.5 + parent: 3564 + - uid: 9766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-48.5 + parent: 3564 + - uid: 9767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-49.5 + parent: 3564 + - uid: 9768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-52.5 + parent: 3564 + - uid: 9769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-53.5 + parent: 3564 + - uid: 9770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-52.5 + parent: 3564 + - uid: 9771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-53.5 + parent: 3564 + - uid: 9772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-56.5 + parent: 3564 + - uid: 9773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-56.5 + parent: 3564 + - uid: 9774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-56.5 + parent: 3564 + - uid: 9775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-56.5 + parent: 3564 + - uid: 9776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-62.5 + parent: 3564 + - uid: 9777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-62.5 + parent: 3564 + - uid: 9778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-62.5 + parent: 3564 + - uid: 9779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-62.5 + parent: 3564 + - uid: 9780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-63.5 + parent: 3564 + - uid: 9781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-64.5 + parent: 3564 + - uid: 9782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-65.5 + parent: 3564 + - uid: 9783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-67.5 + parent: 3564 + - uid: 9784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-68.5 + parent: 3564 + - uid: 9785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-69.5 + parent: 3564 + - uid: 11559 + components: + - type: Transform + pos: 23.5,26.5 parent: 2 - proto: RemoteSignaller entities: @@ -40424,31 +56022,66 @@ entities: - type: Transform pos: 56.5,29.5 parent: 2 + - uid: 808 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 - uid: 1614 components: - type: Transform pos: 63.5,32.5 parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 - uid: 6684 components: - type: Transform pos: 60.635353,34.56153 parent: 2 - - uid: 7195 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - uid: 7208 components: - type: Transform pos: 63.5,30.5 parent: 2 - - uid: 7216 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - uid: 7222 components: - type: Transform @@ -40459,10 +56092,10 @@ entities: - type: Transform pos: 18.5,-0.5 parent: 2 - - uid: 7697 + - uid: 7695 components: - type: Transform - pos: 46.5,19.5 + pos: 52.5,9.5 parent: 2 - uid: 7698 components: @@ -40479,27 +56112,74 @@ entities: - type: Transform pos: 45.5,19.5 parent: 2 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 1537 + - uid: 7734 components: - type: Transform - pos: 52.5,11.5 + pos: 48.5,19.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 11126 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 11133 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 11146 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 11147 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 11348 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 2487 + components: + - type: Transform + pos: -3.5,7.5 parent: 2 - proto: SalvageHumanCorpseSpawner entities: - - uid: 7267 + - uid: 5863 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,9.5 parent: 2 -- proto: SalvageMaterialCrateSpawner - entities: - - uid: 8291 + - uid: 7799 components: - type: Transform - pos: 14.5,22.5 + pos: 9.5,34.5 parent: 2 - proto: Screen entities: @@ -40518,37 +56198,70 @@ entities: - type: Transform pos: 49.5,-12.5 parent: 2 -- proto: SecurityTechFab +- proto: Screwdriver entities: - - uid: 1341 + - uid: 6566 components: - type: Transform - pos: 39.5,-4.5 + pos: 31.5,-10.5 parent: 2 - - type: TechnologyDatabase - supportedDisciplines: - - Industrial - - Arsenal - - Experimental - - CivilianServices + - uid: 6575 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 10398 + components: + - type: Transform + pos: 29.5,-69.5 + parent: 3564 - proto: SeedExtractor entities: - - uid: 1981 + - uid: 10547 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 3564 +- proto: SheetGlass + entities: + - uid: 7184 components: - type: Transform pos: 20.5,-5.5 parent: 2 - proto: SheetGlass10 entities: - - uid: 2132 + - uid: 1766 components: - type: Transform - pos: 29.5,37.5 + pos: 38.5,31.5 parent: 2 - - uid: 4742 + - uid: 1792 components: - type: Transform - pos: 48.5,3.5 + pos: 38.5,31.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 38.5,31.5 parent: 2 - uid: 7693 components: @@ -40560,19 +56273,84 @@ entities: - type: Transform pos: 45.5,19.5 parent: 2 -- proto: SheetPlasma10 - entities: - - uid: 1539 + - uid: 7816 components: - type: Transform - pos: 48.5,2.5 + pos: 53.5,9.5 + parent: 2 + - uid: 10527 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 3564 + - uid: 10528 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 3564 + - uid: 10529 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 3564 + - uid: 10530 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 3564 + - uid: 10531 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 3564 + - uid: 10532 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 3564 +- proto: SheetPlasma10 + entities: + - uid: 1363 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + pos: 38.5,29.5 parent: 2 - proto: SheetPlasteel10 entities: - - uid: 2164 + - uid: 1774 components: - type: Transform - pos: 28.5,37.5 + pos: 38.5,30.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: 38.5,30.5 parent: 2 - uid: 7691 components: @@ -40584,18 +56362,43 @@ entities: - type: Transform pos: 48.5,19.5 parent: 2 -- proto: SheetPlastic10 - entities: - - uid: 4738 + - uid: 10524 components: - type: Transform - pos: 48.5,4 + pos: 34.5,-25.5 + parent: 3564 + - uid: 10525 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 3564 + - uid: 10526 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 3564 +- proto: SheetPlastic10 + entities: + - uid: 5346 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + pos: 50.5,20.5 parent: 2 - uid: 7696 components: - type: Transform pos: 47.5,19.5 parent: 2 + - uid: 7820 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 - proto: SheetSteel1 entities: - uid: 8 @@ -40615,15 +56418,40 @@ entities: parent: 2 - proto: SheetSteel10 entities: - - uid: 1917 + - uid: 860 components: - type: Transform - pos: 27.5,37.5 + pos: 38.5,29.5 parent: 2 - - uid: 3048 + - uid: 1552 components: - type: Transform - pos: 48.5,4.5 + pos: 47.5,19.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: 48.5,19.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: 46.5,19.5 parent: 2 - uid: 7689 components: @@ -40635,18 +56463,90 @@ entities: - type: Transform pos: 49.5,21.5 parent: 2 + - uid: 10518 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 3564 + - uid: 10519 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 3564 + - uid: 10520 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 3564 + - uid: 10521 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 3564 + - uid: 10522 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 3564 + - uid: 10523 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 3564 + - uid: 11136 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 11137 + components: + - type: Transform + pos: 51.5,21.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 11143 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 5972 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 - proto: SignAi entities: + - uid: 1912 + components: + - type: Transform + pos: 40.5,49.5 + parent: 2 - uid: 2424 components: - type: Transform pos: 61.5,35.5 parent: 2 - - uid: 6120 - components: - - type: Transform - pos: 39.5,49.5 - parent: 2 - uid: 7236 components: - type: Transform @@ -40654,10 +56554,10 @@ entities: parent: 2 - proto: SignAiUpload entities: - - uid: 4557 + - uid: 4663 components: - type: Transform - pos: 29.5,49.5 + pos: 28.5,51.5 parent: 2 - proto: SignalButton entities: @@ -40681,43 +56581,6 @@ entities: 1254: - - Pressed - Toggle -- proto: SignalButtonDirectional - entities: - - uid: 7637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1581: - - - Pressed - - Toggle - 504: - - - Pressed - - Toggle - - uid: 7644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1909: - - - Pressed - - Toggle - - uid: 7646 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 454: - - - Pressed - - Toggle - proto: SignalSwitchDirectional entities: - uid: 694 @@ -40755,13 +56618,389 @@ entities: - On - - Off - Off - 1897: + 8588: - - On - On - - Off - Off lastSignals: Status: True + - uid: 1473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8334: + - - On + - Toggle + - - Off + - Toggle + 8333: + - - On + - Toggle + - - Off + - Toggle + 8331: + - - On + - Toggle + - - Off + - Toggle + 8332: + - - On + - Toggle + - - Off + - Toggle + 8335: + - - On + - Toggle + - - Off + - Toggle + - uid: 2505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2049: + - - On + - Toggle + - - Off + - Toggle + 2171: + - - On + - Toggle + - - Off + - Toggle + 2437: + - - On + - Toggle + - - Off + - Toggle + - uid: 2602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2734: + - - On + - Toggle + - - Off + - Toggle + 2732: + - - On + - Toggle + - - Off + - Toggle + 2733: + - - On + - Toggle + - - Off + - Toggle + - uid: 2621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2197: + - - On + - Toggle + - - Off + - Toggle + 8594: + - - On + - Toggle + - - Off + - Toggle + 2623: + - - On + - Toggle + - - Off + - Toggle + 2201: + - - On + - Toggle + - - Off + - Toggle + - uid: 2633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7466: + - - On + - Toggle + - - Off + - Toggle + 7400: + - - On + - Toggle + - - Off + - Toggle + - uid: 2983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4244: + - - On + - Off + - - Off + - On + - uid: 3006 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8336: + - - On + - Toggle + - - Off + - Toggle + 2536: + - - On + - Toggle + - - Off + - Toggle + 8337: + - - On + - Toggle + - - Off + - Toggle + - uid: 3033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5980: + - - On + - Off + - - Off + - On + - uid: 3710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4509: + - - On + - Off + - - Off + - On + - uid: 4510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6581: + - - On + - Off + - - Off + - On + - uid: 4652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2529: + - - On + - Toggle + - - Off + - Toggle + 8322: + - - On + - Toggle + - - Off + - Toggle + 8323: + - - On + - Toggle + - - Off + - Toggle + 7597: + - - On + - Toggle + - - Off + - Toggle + 8313: + - - On + - Toggle + - - Off + - Toggle + - uid: 4683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 465: + - - On + - Toggle + - - Off + - Toggle + - uid: 5852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4060: + - - On + - Toggle + - - Off + - Toggle + - uid: 5861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3324: + - - On + - Toggle + - - Off + - Toggle + - uid: 5943 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6173: + - - On + - Off + - - Off + - On + 6551: + - - On + - Off + - - Off + - On + - uid: 6579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6613: + - - On + - Off + - - Off + - On + - uid: 6694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6043: + - - On + - Off + - - Off + - On + 6550: + - - On + - Off + - - Off + - On + 6552: + - - On + - Off + - - Off + - On + 5979: + - - On + - Off + - - Off + - On + - uid: 6731 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2730: + - - On + - Toggle + - - Off + - Toggle + 2740: + - - On + - Toggle + - - Off + - Toggle + 2739: + - - On + - Toggle + - - Off + - Toggle + 2738: + - - On + - Toggle + - - Off + - Toggle + 2731: + - - On + - Toggle + - - Off + - Toggle + 2729: + - - On + - Toggle + - - Off + - Toggle + 1859: + - - On + - Toggle + - - Off + - Toggle + 2736: + - - On + - Toggle + - - Off + - Toggle - uid: 7005 components: - type: Transform @@ -40791,12 +57030,46 @@ entities: - On - - Off - Off + 7479: + - - On + - On + - - Off + - Off lastSignals: Status: True + - uid: 7330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7395: + - - On + - Toggle + - - Off + - Toggle + 2263: + - - On + - Toggle + - - Off + - Toggle + 2388: + - - On + - Toggle + - - Off + - Toggle + 7350: + - - On + - Toggle + - - Off + - Toggle - uid: 7430 components: - type: Transform - pos: 24.5,12.5 + rot: 3.141592653589793 rad + pos: 22.5,12.5 parent: 2 - type: SignalSwitch state: True @@ -40839,12 +57112,12 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 7330: + 2070: - - On - On - - Off - Off - 3182: + 2193: - - On - On - - Off @@ -40912,8 +57185,8 @@ entities: - uid: 7462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,40.5 + rot: -3.141592653589793 rad + pos: 54.5,38.5 parent: 2 - type: SignalSwitch state: True @@ -40924,6 +57197,11 @@ entities: - On - - Off - Off + 790: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7467 @@ -40936,12 +57214,7 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 152: - - - On - - On - - - Off - - Off - 2528: + 2196: - - On - On - - Off @@ -40951,6 +57224,36 @@ entities: - On - - Off - Off + 8602: + - - On + - On + - - Off + - Off + 8604: + - - On + - On + - - Off + - Off + 8603: + - - On + - On + - - Off + - Off + 8605: + - - On + - On + - - Off + - Off + 8607: + - - On + - On + - - Off + - Off + 8606: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7471 @@ -40979,18 +57282,28 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,23.5 + pos: 48.5,24.5 parent: 2 - type: SignalSwitch state: True - type: DeviceLinkSource linkedPorts: - 2618: + 2339: - - On - On - - Off - Off - 2632: + 8596: + - - On + - On + - - Off + - Off + 2198: + - - On + - On + - - Off + - Off + 8597: - - On - On - - Off @@ -41000,8 +57313,8 @@ entities: - uid: 7475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,27.5 + rot: 3.141592653589793 rad + pos: 43.5,26.5 parent: 2 - type: SignalSwitch state: True @@ -41014,28 +57327,18 @@ entities: - Off lastSignals: Status: True - - uid: 7479 + - uid: 7477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,21.5 + pos: 27.5,32.5 parent: 2 - - type: SignalSwitch - state: True - type: DeviceLinkSource linkedPorts: - 2616: + 1601: - - On - - On + - Toggle - - Off - - Off - 2623: - - - On - - On - - - Off - - Off - lastSignals: - Status: True + - Toggle - uid: 7480 components: - type: Transform @@ -41046,16 +57349,46 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2621: + 2616: - - On - On - - Off - Off - 2619: + 2200: - - On - On - - Off - Off + 2199: + - - On + - On + - - Off + - Off + 8595: + - - On + - On + - - Off + - Off + 2232: + - - On + - On + - - Off + - Off + 3182: + - - On + - On + - - Off + - Off + 2494: + - - On + - On + - - Off + - Off + 608: + - - Off + - Off + - - On + - On lastSignals: Status: True - uid: 7481 @@ -41068,17 +57401,17 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2494: + 7493: - - On - On - - Off - Off - 2388: + 7839: - - On - On - - Off - Off - 2624: + 8239: - - On - On - - Off @@ -41095,7 +57428,12 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2633: + 2361: + - - On + - On + - - Off + - Off + 2066: - - On - On - - Off @@ -41122,19 +57460,7 @@ entities: - On - - Off - Off - lastSignals: - Status: True - - uid: 7489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-7.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2475: + 2728: - - On - On - - Off @@ -41160,6 +57486,11 @@ entities: - On - - Off - Off + 1464: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7491 @@ -41179,28 +57510,6 @@ entities: - Off lastSignals: Status: True - - uid: 7493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,3.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 1914: - - - On - - On - - - Off - - Off - 1913: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - uid: 7499 components: - type: Transform @@ -41225,7 +57534,8 @@ entities: - uid: 7502 components: - type: Transform - pos: 1.5,8.5 + rot: 3.141592653589793 rad + pos: 1.5,4.5 parent: 2 - type: SignalSwitch state: True @@ -41253,22 +57563,22 @@ entities: state: True - type: DeviceLinkSource linkedPorts: - 2339: - - - On - - On - - - Off - - Off 2255: - - On - On - - Off - Off - 2263: + 7398: - - On - On - - Off - Off - 2361: + 7194: + - - On + - On + - - Off + - Off + 2194: - - On - On - - Off @@ -41278,7 +57588,7 @@ entities: - uid: 7507 components: - type: Transform - pos: 9.5,4.5 + pos: 8.5,4.5 parent: 2 - type: SignalSwitch state: True @@ -41294,7 +57604,7 @@ entities: - uid: 7508 components: - type: Transform - pos: 13.5,4.5 + pos: 12.5,4.5 parent: 2 - type: SignalSwitch state: True @@ -41310,7 +57620,8 @@ entities: - uid: 7509 components: - type: Transform - pos: 6.5,-4.5 + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 parent: 2 - type: SignalSwitch state: True @@ -41416,51 +57727,7 @@ entities: - On - - Off - Off - lastSignals: - Status: True - - uid: 7563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-13.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2235: - - - On - - On - - - Off - - Off - 2489: - - - On - - On - - - Off - - Off - 2487: - - - On - - On - - - Off - - Off - 2488: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-1.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 217: + 2195: - - On - On - - Off @@ -41470,8 +57737,7 @@ entities: - uid: 7569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-9.5 + pos: 17.5,-4.5 parent: 2 - type: SignalSwitch state: True @@ -41509,13 +57775,18 @@ entities: - On - - Off - Off + 8587: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,9.5 + rot: 1.5707963267948966 rad + pos: 47.5,5.5 parent: 2 - type: SignalSwitch state: True @@ -41541,6 +57812,16 @@ entities: - On - - Off - Off + 11222: + - - On + - On + - - Off + - Off + 11221: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7576 @@ -41572,8 +57853,7 @@ entities: - uid: 7580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,5.5 + pos: 59.5,10.5 parent: 2 - type: SignalSwitch state: True @@ -41584,6 +57864,16 @@ entities: - On - - Off - Off + 7727: + - - On + - On + - - Off + - Off + 1559: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7590 @@ -41606,71 +57896,12 @@ entities: - On - - Off - Off - lastSignals: - Status: True - - uid: 7591 - components: - - type: Transform - pos: 25.5,20.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2473: + 8647: - - On - On - - Off - Off - 2451: - - - On - - On - - - Off - - Off - 2387: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7592 - components: - - type: Transform - pos: 14.5,29.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2470: - - - On - - On - - - Off - - Off - 2469: - - - On - - On - - - Off - - Off - 2472: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,29.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2471: + 8648: - - On - On - - Off @@ -41697,84 +57928,35 @@ entities: - On - - Off - Off + 7728: + - - On + - On + - - Off + - Off lastSignals: Status: True - - uid: 7595 + - uid: 7596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,21.5 + pos: 22.5,35.5 parent: 2 - - type: SignalSwitch - state: True - type: DeviceLinkSource linkedPorts: - 2620: + 8328: - - On - - On + - Toggle - - Off - - Off - lastSignals: - Status: True - - uid: 7598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,24.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2531: + - Toggle + 8338: - - On - - On + - Toggle - - Off - - Off - 2556: - - - On - - On - - - Off - - Off - 2543: - - - On - - On - - - Off - - Off - 2536: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,36.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 7113: - - - On - - On - - - Off - - Off - 6708: - - - On - - On - - - Off - - Off - lastSignals: - Status: True + - Toggle - uid: 7600 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,33.5 + rot: -1.5707963267948966 rad + pos: 21.5,35.5 parent: 2 - type: SignalSwitch state: True @@ -41790,89 +57972,40 @@ entities: - On - - Off - Off + 8342: + - - On + - On + - - Off + - Off + 8341: + - - On + - On + - - Off + - Off + 8340: + - - On + - On + - - Off + - Off lastSignals: Status: True - uid: 7601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,30.5 + pos: 17.5,43.5 parent: 2 - - type: SignalSwitch - state: True - type: DeviceLinkSource linkedPorts: - 2605: + 6708: - - On - - On + - Toggle - - Off - - Off - lastSignals: - Status: True - - uid: 7602 - components: - - type: Transform - pos: 32.5,39.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 7028: + - Toggle + 7113: - - On - - On + - Toggle - - Off - - Off - 2602: - - - On - - On - - - Off - - Off - 2579: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7604 - components: - - type: Transform - pos: 45.5,35.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2571: - - - On - - On - - - Off - - Off - lastSignals: - Status: True - - uid: 7605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,35.5 - parent: 2 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 2588: - - - On - - On - - - Off - - Off - 2577: - - - On - - On - - - Off - - Off - lastSignals: - Status: True + - Toggle - uid: 7623 components: - type: Transform @@ -41966,13 +58099,66 @@ entities: - On - - Off - Off + 8643: + - - On + - On + - - Off + - Off + 8642: + - - On + - On + - - Off + - Off + 8640: + - - On + - On + - - Off + - Off + 8641: + - - On + - On + - - Off + - Off + 644: + - - On + - On + - - Off + - Off + 8644: + - - On + - On + - - Off + - Off lastSignals: Status: True + - uid: 7762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8348: + - - On + - Toggle + - - Off + - Toggle + 8346: + - - On + - Toggle + - - Off + - Toggle + 8347: + - - On + - Toggle + - - Off + - Toggle - uid: 7828 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-10.5 + pos: 4.5,-11.5 parent: 2 - type: SignalSwitch state: True @@ -41995,64 +58181,586 @@ entities: - Off lastSignals: Status: True - - uid: 8262 + - uid: 8324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,1.5 + pos: 36.5,32.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 28: + 8326: + - - On + - Toggle - - Off - - DoorBolt - - uid: 8263 + - Toggle + 8327: + - - On + - Toggle + - - Off + - Toggle + 8264: + - - On + - Toggle + - - Off + - Toggle + - uid: 8339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,1.5 + rot: 1.5707963267948966 rad + pos: 41.5,32.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 29: + 2571: + - - On + - Toggle - - Off - - DoorBolt -- proto: SignArmory - entities: - - uid: 1430 + - Toggle + 2577: + - - On + - Toggle + - - Off + - Toggle + 8330: + - - On + - Toggle + - - Off + - Toggle + 8329: + - - On + - Toggle + - - Off + - Toggle + - uid: 8343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7599: + - - On + - Toggle + - - Off + - Toggle + 8344: + - - On + - Toggle + - - Off + - Toggle + 2535: + - - On + - Toggle + - - Off + - Toggle + 2527: + - - On + - Toggle + - - Off + - Toggle + 8345: + - - On + - Toggle + - - Off + - Toggle + - uid: 8593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8591: + - - On + - Toggle + - - Off + - Toggle + 2065: + - - On + - Toggle + - - Off + - Toggle + 8592: + - - On + - Toggle + - - Off + - Toggle + 8590: + - - On + - Toggle + - - Off + - Toggle + - uid: 8598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8601: + - - On + - Toggle + - - Off + - Toggle + 8600: + - - On + - Toggle + - - Off + - Toggle + 8599: + - - On + - Toggle + - - Off + - Toggle + - uid: 10708 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 2 -- proto: SignAtmos - entities: - - uid: 1724 + pos: 23.5,-71.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10787: + - - On + - Toggle + - - Off + - Toggle + - uid: 10747 components: - type: Transform - pos: 31.5,32.5 - parent: 2 -- proto: SignBridge - entities: - - uid: 970 + rot: 1.5707963267948966 rad + pos: 19.5,-43.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10745: + - - On + - Toggle + - - Off + - Toggle + 10744: + - - On + - Toggle + - - Off + - Toggle + 10746: + - - On + - Toggle + - - Off + - Toggle + 10743: + - - On + - Toggle + - - Off + - Toggle + 10742: + - - On + - Toggle + - - Off + - Toggle + 10741: + - - On + - Toggle + - - Off + - Toggle + 10748: + - - On + - Toggle + - - Off + - Toggle + 10740: + - - On + - Toggle + - - Off + - Toggle + 10739: + - - On + - Toggle + - - Off + - Toggle + - uid: 10765 components: - type: Transform - pos: 18.5,58.5 - parent: 2 -- proto: SignCans - entities: - - uid: 1686 + rot: -1.5707963267948966 rad + pos: 37.5,-31.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10762: + - - On + - Toggle + - - Off + - Toggle + 10761: + - - On + - Toggle + - - Off + - Toggle + 10764: + - - On + - Toggle + - - Off + - Toggle + 10763: + - - On + - Toggle + - - Off + - Toggle + - uid: 10766 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10733: + - - On + - Toggle + - - Off + - Toggle + - uid: 10767 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,36.5 - parent: 2 -- proto: SignCargo - entities: - - uid: 1478 + pos: 26.5,-35.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10732: + - - On + - Toggle + - - Off + - Toggle + - uid: 10768 components: - type: Transform - pos: 16.5,23.5 + rot: 3.141592653589793 rad + pos: 26.5,-39.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10730: + - - On + - Toggle + - - Off + - Toggle + - uid: 10769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-43.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10729: + - - On + - Toggle + - - Off + - Toggle + - uid: 10770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-47.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10727: + - - On + - Toggle + - - Off + - Toggle + - uid: 10771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-51.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10726: + - - On + - Toggle + - - Off + - Toggle + - uid: 10772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-55.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10723: + - - On + - Toggle + - - Off + - Toggle + - uid: 10773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-55.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10724: + - - On + - Toggle + - - Off + - Toggle + - uid: 10774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-51.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10725: + - - On + - Toggle + - - Off + - Toggle + - uid: 10775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-47.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10728: + - - On + - Toggle + - - Off + - Toggle + - uid: 10776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-39.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10731: + - - On + - Toggle + - - Off + - Toggle + - uid: 10777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-38.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10736: + - - On + - Toggle + - - Off + - Toggle + - uid: 10778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10738: + - - On + - Toggle + - - Off + - Toggle + - uid: 10779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-44.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10735: + - - On + - Toggle + - - Off + - Toggle + - uid: 10780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-43.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10734: + - - On + - Toggle + - - Off + - Toggle + 10749: + - - On + - Toggle + - - Off + - Toggle + - uid: 10781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-62.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10719: + - - On + - Toggle + - - Off + - Toggle + 10718: + - - On + - Toggle + - - Off + - Toggle + - uid: 10782 + components: + - type: Transform + pos: 29.5,-62.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10713: + - - On + - Toggle + - - Off + - Toggle + 10711: + - - On + - Toggle + - - Off + - Toggle + 10712: + - - On + - Toggle + - - Off + - Toggle + 10714: + - - On + - Toggle + - - Off + - Toggle + - uid: 10783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-65.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10710: + - - On + - Toggle + - - Off + - Toggle + 10709: + - - On + - Toggle + - - Off + - Toggle + - uid: 10784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-61.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10722: + - - On + - Toggle + - - Off + - Toggle + - uid: 10785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-59.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10717: + - - On + - Toggle + - - Off + - Toggle + 10716: + - - On + - Toggle + - - Off + - Toggle + - uid: 10786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-68.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10715: + - - On + - Toggle + - - Off + - Toggle + - uid: 10788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 3564 + - type: DeviceLinkSource + linkedPorts: + 10737: + - - On + - Toggle + - - Off + - Toggle +- proto: SignAtmos + entities: + - uid: 3301 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 11400 + components: + - type: Transform + pos: 17.5,59.5 + parent: 2 +- proto: SignCans + entities: + - uid: 2013 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,36.5 + parent: 2 +- proto: SignCansScience + entities: + - uid: 4939 + components: + - type: Transform + pos: 49.5,10.5 parent: 2 - proto: SignChapel entities: @@ -42069,226 +58777,153 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,7.5 parent: 2 -- proto: SignCryo - entities: - - uid: 8239 - components: - - type: MetaData - desc: I poooooooop - - type: Transform - pos: 3.5,-3.5 - parent: 2 -- proto: SignDirectionalAtmos - entities: - - uid: 7412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,17.5 - parent: 2 -- proto: SignDirectionalBar - entities: - - uid: 2448 - components: - - type: Transform - pos: 29.5,1.5 - parent: 2 - - uid: 3815 - components: - - type: Transform - pos: 31.5,1.5 - parent: 2 - - uid: 6174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,8.5 - parent: 2 - - uid: 7417 - components: - - type: Transform - pos: 40.5,24.5 - parent: 2 - proto: SignDirectionalBridge entities: - - uid: 6177 + - uid: 4848 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,8.9 + pos: 35.5,8.75 parent: 2 - - uid: 8317 + - uid: 8278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,17.75 + parent: 2 + - uid: 8281 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,6.7 - parent: 2 -- proto: SignDirectionalChapel - entities: - - uid: 8316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,6.5 + pos: 27.5,6.75 parent: 2 - proto: SignDirectionalDorms entities: - - uid: 8286 + - uid: 1075 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,6.3 + pos: 27.5,6.25 + parent: 2 + - uid: 11404 + components: + - type: Transform + pos: 36.5,17.25 parent: 2 - proto: SignDirectionalEng entities: - - uid: 6175 + - uid: 5174 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,8.7 + pos: 35.5,8.5 parent: 2 - - uid: 7411 + - uid: 8285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,6.75 + parent: 2 + - uid: 4849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,17.75 + parent: 2 + - uid: 8280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,7.75 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 11401 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 11405 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,17.7 + pos: 35.5,8.25 parent: 2 - - uid: 8318 +- proto: SignDirectionalSci + entities: + - uid: 381 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,6.5 parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 2054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,17.5 - parent: 2 - - uid: 2057 - components: - - type: Transform - pos: 45.5,-3.5 - parent: 2 - - uid: 2948 - components: - - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 6155 - components: - - type: Transform - pos: 59.5,42.5 - parent: 2 - - uid: 6163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,17.5 - parent: 2 - - uid: 6164 - components: - - type: Transform - pos: 40.5,17.3 - parent: 2 - - uid: 8321 + - uid: 1801 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,7.5 parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 6176 + - uid: 11403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,8.3 - parent: 2 - - uid: 7416 - components: - - type: Transform - pos: 40.5,21.3 - parent: 2 - - uid: 8315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,6.7 - parent: 2 -- proto: SignDirectionalSci - entities: - - uid: 7414 - components: - - type: Transform - pos: 40.5,21.7 - parent: 2 - - uid: 8319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,6.3 - parent: 2 - - uid: 8320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,7.7 + pos: 40.5,17.5 parent: 2 - proto: SignDirectionalSec entities: - - uid: 7415 + - uid: 1376 components: - type: Transform - pos: 40.5,21.5 + rot: 1.5707963267948966 rad + pos: 28.5,6.25 parent: 2 -- proto: SignDirectionalSupply - entities: - - uid: 7413 + - uid: 11402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,17.3 + pos: 40.5,17.25 parent: 2 - proto: SignEngineering entities: - - uid: 1759 + - uid: 8279 components: - type: Transform - pos: 35.5,20.5 + rot: -1.5707963267948966 rad + pos: 36.5,22.5 parent: 2 - proto: SignEVA entities: - - uid: 1396 + - uid: 8468 components: - type: Transform - pos: 54.5,38.5 + pos: 54.5,37.5 parent: 2 -- proto: SignGravity +- proto: SignInterrogation entities: - - uid: 6598 + - uid: 10323 components: - type: Transform - pos: 40.5,35.5 + pos: 19.5,-31.5 + parent: 3564 +- proto: SignMaterials + entities: + - uid: 1773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,30.5 parent: 2 -- proto: SignHydro1 - entities: - - uid: 2755 + - uid: 5763 components: - type: Transform - pos: 17.5,-4.5 - parent: 2 -- proto: SignJanitor - entities: - - uid: 297 - components: - - type: MetaData - desc: Because you're the janitor. And it's snot. - name: _j_a_n_i_t_o_r_s_i_g_n_ - - type: Transform - pos: 3.5,5.5 + rot: 1.5707963267948966 rad + pos: 38.5,32.5 parent: 2 - proto: SignMedical entities: @@ -42310,20 +58945,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 2 -- proto: SignPrison - entities: - - uid: 1075 - components: - - type: Transform - pos: 41.5,-0.5 - parent: 2 -- proto: SignRobo - entities: - - uid: 1559 - components: - - type: Transform - pos: 51.5,8.5 - parent: 2 - proto: SignScience entities: - uid: 4066 @@ -42362,6 +58983,21 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,51.5 parent: 2 +- proto: SignSecurity + entities: + - uid: 11406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,4.5 + parent: 2 +- proto: SignServer + entities: + - uid: 3129 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 - proto: SignShipDock entities: - uid: 2058 @@ -42376,111 +59012,78 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-17.5 parent: 2 -- proto: SignSpace +- proto: SignTelecomms entities: - - uid: 265 + - uid: 2480 components: - - type: MetaData - desc: A sign warning that the area ahead is nothing but cold, empty space. Well, empty space. Space isn't cold. I mean, space here is, but actual space isn't- you know what? Nevermind. Cold, empty space. Whatever. - name: _s_p_a_c_e_s_i_g_n_ - type: Transform pos: 3.5,7.5 parent: 2 -- proto: SignTelecomms - entities: - - uid: 1299 - components: - - type: Transform - pos: 36.5,30.5 - parent: 2 - proto: SignToolStorage entities: - - uid: 423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,21.5 - parent: 2 - uid: 1436 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,18.5 parent: 2 - - uid: 2530 - components: - - type: Transform - pos: 32.5,36.5 - parent: 2 - - uid: 2782 + - uid: 4852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-9.5 + pos: 42.5,22.5 parent: 2 -- proto: SignVault +- proto: Sink entities: - - uid: 2042 + - uid: 10557 components: - type: Transform - pos: 59.5,7.5 - parent: 2 -- proto: SinkWide - entities: - - uid: 1534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 2 - - uid: 2809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 2 -- proto: SmallLight - entities: - - uid: 1801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,54.5 - parent: 2 + pos: 12.5,-20.5 + parent: 3564 - proto: SmartFridge entities: - - uid: 3162 + - uid: 2854 components: - type: Transform - pos: 30.5,12.5 + pos: 31.5,12.5 parent: 2 - proto: SMESAdvanced entities: - - uid: 1852 + - uid: 684 components: - type: Transform - pos: 34.5,27.5 + pos: 19.5,37.5 parent: 2 - - uid: 1853 + - uid: 687 components: - type: Transform - pos: 34.5,26.5 + pos: 19.5,38.5 parent: 2 - - uid: 5999 + - uid: 691 components: - type: Transform - pos: 34.5,28.5 + pos: 19.5,39.5 parent: 2 - - uid: 6000 + - uid: 1338 components: - type: Transform - pos: 34.5,29.5 + pos: 47.5,39.5 parent: 2 - - uid: 7649 + - uid: 1607 components: - type: Transform - pos: 34.5,30.5 + pos: 47.5,40.5 parent: 2 + - uid: 9435 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 3564 + - uid: 9436 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 3564 - proto: SMESBasic entities: - uid: 1337 @@ -42501,7 +59104,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 23.5,-1.5 + pos: 34.523518,48.651146 parent: 2 - type: SmokeOnTrigger solution: @@ -42522,7 +59125,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 23.5,-1.5 + pos: 34.36329,48.41327 parent: 2 - type: SmokeOnTrigger solution: @@ -42543,7 +59146,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 29.5,-11.5 + pos: 34.316414,48.522644 parent: 2 - type: SmokeOnTrigger solution: @@ -42564,7 +59167,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 29.5,-11.5 + pos: 34.523518,48.32302 parent: 2 - type: SmokeOnTrigger solution: @@ -42585,7 +59188,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 23.5,-1.5 + pos: 34.733295,48.78693 parent: 2 - type: SmokeOnTrigger solution: @@ -42600,20 +59203,14 @@ entities: smokePrototype: Foam missingComponents: - Contraband -- proto: SoapNT - entities: - - uid: 7661 - components: - - type: Transform - pos: -0.5,7.5 - parent: 2 - proto: SodaDispenser entities: - - uid: 2862 + - uid: 10569 components: - type: Transform - pos: 25.5,0.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 13.5,-29.5 + parent: 3564 - proto: SolarPanel entities: - uid: 2646 @@ -42895,6 +59492,666 @@ entities: - type: Transform pos: 57.5,68.5 parent: 2 + - uid: 6855 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 3564 + - uid: 6956 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 3564 + - uid: 6957 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 3564 + - uid: 6958 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 3564 + - uid: 6959 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 3564 + - uid: 6960 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 3564 + - uid: 6961 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 3564 + - uid: 6962 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 3564 + - uid: 6963 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 3564 + - uid: 6964 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 3564 + - uid: 6965 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 3564 + - uid: 6966 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 3564 + - uid: 6967 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 3564 + - uid: 6968 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 3564 + - uid: 6969 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 3564 + - uid: 6970 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 3564 + - uid: 6971 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 3564 + - uid: 6972 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 3564 + - uid: 6973 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 3564 + - uid: 6974 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 3564 + - uid: 6976 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 3564 + - uid: 6977 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 3564 + - uid: 6978 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 3564 + - uid: 6979 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 3564 + - uid: 6980 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 3564 + - uid: 6981 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 3564 + - uid: 6982 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 3564 + - uid: 6983 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 3564 + - uid: 6984 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 3564 + - uid: 6985 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 3564 + - uid: 6986 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 3564 + - uid: 6988 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 3564 + - uid: 6989 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 3564 + - uid: 6990 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 3564 + - uid: 6991 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 3564 + - uid: 6992 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 3564 + - uid: 6993 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 3564 + - uid: 6994 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 3564 + - uid: 6996 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 3564 + - uid: 6998 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 3564 + - uid: 7013 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 3564 + - uid: 7015 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 3564 + - uid: 7016 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 3564 + - uid: 7017 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 3564 + - uid: 7020 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 3564 + - uid: 7021 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 3564 + - uid: 7022 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 3564 + - uid: 7024 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 3564 + - uid: 7026 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 3564 + - uid: 7027 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 3564 + - uid: 7028 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 3564 + - uid: 7029 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 3564 + - uid: 7030 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 3564 + - uid: 7031 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 3564 + - uid: 7032 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 3564 + - uid: 7033 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 3564 + - uid: 7034 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 3564 + - uid: 7035 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 3564 + - uid: 7036 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 3564 + - uid: 7037 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 3564 + - uid: 7038 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 3564 + - uid: 7039 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 3564 + - uid: 7040 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 3564 + - uid: 7041 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 3564 + - uid: 7042 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 3564 + - uid: 7043 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 3564 + - uid: 7044 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 3564 + - uid: 7045 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 3564 + - uid: 7046 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 3564 + - uid: 7047 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 3564 + - uid: 7048 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 3564 + - uid: 7049 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 3564 + - uid: 7050 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 3564 + - uid: 7051 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 3564 + - uid: 7052 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 3564 + - uid: 7053 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 3564 + - uid: 7054 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 3564 + - uid: 7055 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 3564 + - uid: 7056 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 3564 + - uid: 7057 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 3564 + - uid: 7058 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 3564 + - uid: 7059 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 3564 + - uid: 7060 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 3564 + - uid: 7061 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 3564 + - uid: 7062 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 3564 + - uid: 7063 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 3564 + - uid: 7064 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 3564 + - uid: 7065 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 3564 + - uid: 7066 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 3564 + - uid: 7067 + components: + - type: Transform + pos: 2.5,-65.5 + parent: 3564 + - uid: 7068 + components: + - type: Transform + pos: 2.5,-68.5 + parent: 3564 + - uid: 7069 + components: + - type: Transform + pos: 2.5,-69.5 + parent: 3564 + - uid: 7070 + components: + - type: Transform + pos: 2.5,-70.5 + parent: 3564 + - uid: 7071 + components: + - type: Transform + pos: 2.5,-72.5 + parent: 3564 + - uid: 7072 + components: + - type: Transform + pos: 2.5,-73.5 + parent: 3564 + - uid: 7073 + components: + - type: Transform + pos: 2.5,-74.5 + parent: 3564 + - uid: 7074 + components: + - type: Transform + pos: 2.5,-76.5 + parent: 3564 + - uid: 7075 + components: + - type: Transform + pos: 2.5,-77.5 + parent: 3564 + - uid: 7076 + components: + - type: Transform + pos: 2.5,-78.5 + parent: 3564 + - uid: 7077 + components: + - type: Transform + pos: 4.5,-78.5 + parent: 3564 + - uid: 7078 + components: + - type: Transform + pos: 4.5,-77.5 + parent: 3564 + - uid: 7079 + components: + - type: Transform + pos: 4.5,-76.5 + parent: 3564 + - uid: 7080 + components: + - type: Transform + pos: 4.5,-74.5 + parent: 3564 + - uid: 7081 + components: + - type: Transform + pos: 4.5,-73.5 + parent: 3564 + - uid: 7082 + components: + - type: Transform + pos: 4.5,-72.5 + parent: 3564 + - uid: 7083 + components: + - type: Transform + pos: 4.5,-70.5 + parent: 3564 + - uid: 7084 + components: + - type: Transform + pos: 4.5,-69.5 + parent: 3564 + - uid: 7085 + components: + - type: Transform + pos: 4.5,-68.5 + parent: 3564 + - uid: 7086 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 3564 + - uid: 7087 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 3564 + - uid: 7088 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 3564 + - uid: 7089 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 3564 + - uid: 7090 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 3564 + - uid: 7091 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 3564 + - uid: 7092 + components: + - type: Transform + pos: 2.5,-80.5 + parent: 3564 + - uid: 7093 + components: + - type: Transform + pos: 2.5,-81.5 + parent: 3564 + - uid: 7094 + components: + - type: Transform + pos: 2.5,-82.5 + parent: 3564 + - uid: 7095 + components: + - type: Transform + pos: 2.5,-84.5 + parent: 3564 + - uid: 7096 + components: + - type: Transform + pos: 2.5,-85.5 + parent: 3564 + - uid: 7097 + components: + - type: Transform + pos: 2.5,-86.5 + parent: 3564 + - uid: 7098 + components: + - type: Transform + pos: 2.5,-88.5 + parent: 3564 + - uid: 7099 + components: + - type: Transform + pos: 2.5,-89.5 + parent: 3564 + - uid: 7100 + components: + - type: Transform + pos: 2.5,-90.5 + parent: 3564 + - uid: 7101 + components: + - type: Transform + pos: 4.5,-90.5 + parent: 3564 + - uid: 7102 + components: + - type: Transform + pos: 4.5,-89.5 + parent: 3564 + - uid: 7103 + components: + - type: Transform + pos: 4.5,-88.5 + parent: 3564 + - uid: 7104 + components: + - type: Transform + pos: 4.5,-86.5 + parent: 3564 + - uid: 7120 + components: + - type: Transform + pos: 4.5,-85.5 + parent: 3564 + - uid: 7122 + components: + - type: Transform + pos: 4.5,-84.5 + parent: 3564 + - uid: 7123 + components: + - type: Transform + pos: 4.5,-82.5 + parent: 3564 + - uid: 7128 + components: + - type: Transform + pos: 4.5,-81.5 + parent: 3564 + - uid: 7149 + components: + - type: Transform + pos: 4.5,-80.5 + parent: 3564 - proto: SolarTracker entities: - uid: 2697 @@ -42907,6 +60164,11 @@ entities: - type: Transform pos: 58.5,69.5 parent: 2 + - uid: 7152 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 3564 - proto: SolidSecretDoor entities: - uid: 240 @@ -42915,42 +60177,14 @@ entities: rot: 3.141592653589793 rad pos: 61.5,19.5 parent: 2 -- proto: SpaceCash10 +- proto: SpaceVillainArcadeFilled entities: - - uid: 7117 + - uid: 10571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.563408,13.315755 - parent: 2 -- proto: SpaceCash10000 - entities: - - uid: 1925 - components: - - type: Transform - pos: 62.610744,10.56906 - parent: 2 -- proto: SpawnMobCat - entities: - - uid: 644 - components: - - type: Transform - pos: 23.5,14.5 - parent: 2 -- proto: SpawnMobCorgi - entities: - - uid: 562 - components: - - type: Transform - pos: 43.5,29.5 - parent: 2 -- proto: SpawnMobFoxRenault - entities: - - uid: 1288 - components: - - type: Transform - pos: 59.5,24.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 3564 - proto: SpawnMobMonkey entities: - uid: 627 @@ -42968,6 +60202,11 @@ entities: - type: Transform pos: 24.5,9.5 parent: 2 + - uid: 6999 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 3564 - proto: SpawnMobMonkeyPunpun entities: - uid: 711 @@ -42976,62 +60215,17 @@ entities: rot: 3.141592653589793 rad pos: 27.5,10.5 parent: 2 -- proto: SpawnMobMouse - entities: - - uid: 1927 - components: - - type: Transform - pos: 52.5,19.5 - parent: 2 - - uid: 7023 - components: - - type: Transform - pos: 14.5,18.5 - parent: 2 -- proto: SpawnMobSmile - entities: - - uid: 141 - components: - - type: Transform - pos: 52.5,0.5 - parent: 2 - proto: SpawnPointAtmos entities: - - uid: 3238 + - uid: 1719 components: - type: Transform - pos: 30.5,34.5 + pos: 26.5,-8.5 parent: 2 - - uid: 4744 + - uid: 1722 components: - type: Transform - pos: 29.5,34.5 - parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 7266 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 1563 - components: - - type: Transform - pos: 53.5,8.5 - parent: 2 - - uid: 2559 - components: - - type: Transform - pos: 52.5,8.5 - parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 847 - components: - - type: Transform - pos: 15.5,-7.5 + pos: 25.5,-8.5 parent: 2 - proto: SpawnPointCaptain entities: @@ -43040,18 +60234,6 @@ entities: - type: Transform pos: 62.5,31.5 parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 491 - components: - - type: Transform - pos: 18.5,24.5 - parent: 2 - - uid: 535 - components: - - type: Transform - pos: 19.5,24.5 - parent: 2 - proto: SpawnPointChaplain entities: - uid: 7000 @@ -43059,19 +60241,12 @@ entities: - type: Transform pos: -2.5,18.5 parent: 2 -- proto: SpawnPointChef - entities: - - uid: 7265 - components: - - type: Transform - pos: 29.5,-12.5 - parent: 2 - proto: SpawnPointChemist entities: - - uid: 7383 + - uid: 10331 components: - type: Transform - pos: 30.5,10.5 + pos: 26.5,11.5 parent: 2 - proto: SpawnPointChiefEngineer entities: @@ -43113,13 +60288,6 @@ entities: - type: Transform pos: 34.5,-0.5 parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 326 - components: - - type: Transform - pos: -1.5,6.5 - parent: 2 - proto: SpawnPointLatejoin entities: - uid: 2512 @@ -43154,24 +60322,17 @@ entities: - type: Transform pos: 57.5,18.5 parent: 2 -- proto: SpawnPointLibrarian - entities: - - uid: 5172 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - proto: SpawnPointMedicalDoctor entities: - - uid: 567 - components: - - type: Transform - pos: 10.5,11.5 - parent: 2 - uid: 7105 components: - type: Transform - pos: 10.5,12.5 + pos: 15.5,11.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: 16.5,13.5 parent: 2 - proto: SpawnPointMedicalIntern entities: @@ -43194,11 +60355,11 @@ entities: parent: 2 - proto: SpawnPointParamedic entities: - - uid: 1939 + - uid: 11117 components: - type: Transform - pos: 14.5,14.5 - parent: 2 + pos: 25.5,-20.5 + parent: 3564 - proto: SpawnPointPassenger entities: - uid: 33 @@ -43226,13 +60387,6 @@ entities: - type: Transform pos: 10.5,-1.5 parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 6710 - components: - - type: Transform - pos: 62.5,32.5 - parent: 2 - proto: SpawnPointResearchAssistant entities: - uid: 4922 @@ -43247,27 +60401,22 @@ entities: parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 6045 + - uid: 1547 components: - type: Transform - pos: 54.5,11.5 + pos: 62.5,32.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 1538 + - uid: 6045 components: - type: Transform - pos: 51.5,4.5 + pos: 52.5,6.5 parent: 2 - - uid: 1543 + - uid: 6174 components: - type: Transform - pos: 52.5,4.5 - parent: 2 - - uid: 2505 - components: - - type: Transform - pos: 53.5,4.5 + pos: 51.5,6.5 parent: 2 - proto: SpawnPointSecurityCadet entities: @@ -43295,15 +60444,15 @@ entities: parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 1565 + - uid: 1724 components: - type: Transform - pos: 38.5,40.5 + pos: 29.5,30.5 parent: 2 - - uid: 2533 + - uid: 7659 components: - type: Transform - pos: 38.5,41.5 + pos: 29.5,29.5 parent: 2 - proto: SpawnPointTechnicalAssistant entities: @@ -43319,23 +60468,11 @@ entities: parent: 2 - proto: SpawnPointWarden entities: - - uid: 7264 + - uid: 9791 components: - type: Transform - pos: 39.5,-5.5 - parent: 2 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 7662 - components: - - type: Transform - pos: -1.5,7.5 - parent: 2 - - uid: 7663 - components: - - type: Transform - pos: -1.5,7.5 - parent: 2 + pos: 28.5,-66.5 + parent: 3564 - proto: StasisBed entities: - uid: 470 @@ -43353,13 +60490,16 @@ entities: - type: Transform pos: 7.5,11.5 parent: 2 -- proto: StationAiUploadCircuitboard - entities: - - uid: 8214 + - uid: 9728 components: - type: Transform - pos: 13.5,-10.5 - parent: 2 + pos: 21.5,-19.5 + parent: 3564 + - uid: 9729 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 3564 - proto: StationAiUploadComputer entities: - uid: 4556 @@ -43374,6 +60514,11 @@ entities: - type: Transform pos: 3.5,33.5 parent: 2 + - uid: 9659 + components: + - type: Transform + pos: 15.5,-66.5 + parent: 3564 - proto: StationEfficiencyCircuitBoard entities: - uid: 1377 @@ -43383,145 +60528,77 @@ entities: parent: 2 - proto: StationMap entities: - - uid: 5736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-2.5 - parent: 2 - - uid: 6166 - components: - - type: Transform - pos: 10.5,8.5 - parent: 2 - - uid: 6169 - components: - - type: Transform - pos: 62.5,3.5 - parent: 2 - - uid: 6172 - components: - - type: Transform - pos: 38.5,24.5 - parent: 2 - - uid: 6173 - components: - - type: Transform - pos: 24.5,20.5 - parent: 2 - - uid: 6314 - components: - - type: Transform - pos: 50.5,18.5 - parent: 2 - - uid: 6571 - components: - - type: Transform - pos: 55.5,38.5 - parent: 2 - - uid: 8313 + - uid: 11522 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-12.5 + pos: 14.5,2.5 parent: 2 - - uid: 8322 + - uid: 11523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,52.5 + pos: 50.5,27.5 parent: 2 - - uid: 8323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,42.5 - parent: 2 - - uid: 8324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,28.5 - parent: 2 - - uid: 8325 - components: - - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 8326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,20.5 - parent: 2 - - uid: 8327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 2 - - uid: 8328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,1.5 - parent: 2 - - uid: 8329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-9.5 - parent: 2 - - uid: 8330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,3.5 - parent: 2 - - uid: 8331 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,5.5 - parent: 2 -- proto: StationRecordsComputerCircuitboard +- proto: Stool entities: - - uid: 8216 + - uid: 1925 components: - type: Transform - pos: 13.5,-11.5 + anchored: True + rot: 3.141592653589793 rad + pos: 44.5,28.5 parent: 2 -- proto: StoolBar + - type: Physics + bodyType: Static + - uid: 7476 + components: + - type: Transform + anchored: True + rot: 3.141592653589793 rad + pos: 45.5,28.5 + parent: 2 + - type: Physics + bodyType: Static + - uid: 7707 + components: + - type: Transform + anchored: True + rot: 3.141592653589793 rad + pos: 46.5,28.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: StorageCanister entities: - - uid: 2860 + - uid: 1709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-3.5 + pos: 44.5,-4.5 parent: 2 - - uid: 2861 + - uid: 4064 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-3.5 + pos: 37.5,-4.5 parent: 2 + - uid: 6765 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 +- proto: Stunbaton + entities: + - uid: 10416 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 3564 - proto: SubstationBasic entities: - - uid: 846 - components: - - type: Transform - pos: 35.5,35.5 - parent: 2 - uid: 1472 components: - type: Transform pos: 13.5,18.5 parent: 2 - - uid: 2780 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 2 - uid: 2789 components: - type: Transform @@ -43537,94 +60614,44 @@ entities: - type: Transform pos: 54.5,19.5 parent: 2 -- proto: SubstationMachineCircuitboard - entities: - - uid: 2189 + - uid: 6665 components: - type: Transform - pos: 13.5,-12.5 + pos: 22.5,-12.5 parent: 2 - - uid: 8217 + - uid: 8415 components: - type: Transform - pos: 13.5,-12.5 + pos: 47.5,36.5 parent: 2 + - uid: 9460 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 3564 - proto: SuitStorageAtmos entities: - - uid: 1721 + - uid: 4002 components: - type: Transform - pos: 31.5,33.5 + pos: 44.5,-9.5 parent: 2 - - uid: 1789 + - uid: 4004 components: - type: Transform - pos: 30.5,33.5 - parent: 2 -- proto: SuitStorageCE - entities: - - uid: 6660 - components: - - type: Transform - pos: 47.5,31.5 + pos: 43.5,-9.5 parent: 2 - proto: SuitStorageEngi entities: - - uid: 913 + - uid: 1636 components: - type: Transform - pos: 33.5,41.5 + pos: 25.5,42.5 parent: 2 - - uid: 6599 + - uid: 1708 components: - type: Transform - pos: 34.5,41.5 - parent: 2 - - uid: 6600 - components: - - type: Transform - pos: 35.5,41.5 - parent: 2 -- proto: SuitStorageEVA - entities: - - uid: 1464 - components: - - type: Transform - pos: 51.5,41.5 - parent: 2 - - uid: 1931 - components: - - type: Transform - pos: 54.5,41.5 - parent: 2 - - uid: 2065 - components: - - type: Transform - pos: 52.5,41.5 - parent: 2 - - uid: 2066 - components: - - type: Transform - pos: 53.5,41.5 - parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 1012 - components: - - type: Transform - pos: 39.5,-7.5 - parent: 2 -- proto: SuitStorageSec - entities: - - uid: 986 - components: - - type: Transform - pos: 38.5,-7.5 - parent: 2 - - uid: 1328 - components: - - type: Transform - pos: 37.5,-7.5 + pos: 24.5,42.5 parent: 2 - proto: SurveillanceCameraCommand entities: @@ -43635,7 +60662,7 @@ entities: pos: 59.5,34.5 parent: 2 - type: SurveillanceCamera - id: Bridge + id: Control Room - uid: 7458 components: - type: Transform @@ -43643,7 +60670,7 @@ entities: pos: 56.5,24.5 parent: 2 - type: SurveillanceCamera - id: Captain's Quarters + id: Secure Storage - uid: 7472 components: - type: Transform @@ -43652,14 +60679,6 @@ entities: parent: 2 - type: SurveillanceCamera id: HoP Office - - uid: 7579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,6.5 - parent: 2 - - type: SurveillanceCamera - id: Vault - uid: 7620 components: - type: Transform @@ -43675,33 +60694,121 @@ entities: pos: 34.5,51.5 parent: 2 - type: SurveillanceCamera - id: AI Upload + id: AI Upload Station - proto: SurveillanceCameraEngineering entities: - - uid: 6583 + - uid: 1080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - type: SurveillanceCamera + id: Telecomms + - uid: 2129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,33.5 + parent: 2 + - type: SurveillanceCamera + id: Anchor + - uid: 2387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 2 + - type: SurveillanceCamera + id: Main Engine + - uid: 2609 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-10.5 + pos: 44.5,-4.5 parent: 2 - type: SurveillanceCamera - id: Tech Vault + id: Atmo. Gas Storage + - uid: 3231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 2 + - type: SurveillanceCamera + id: ' Atmospherics Entrance' + - uid: 4219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,26.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Control + - uid: 4666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Hallway (E) + - uid: 4700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,21.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Hall (South) + - uid: 4946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 2 + - type: SurveillanceCamera + id: Atmospheric Control Room + - uid: 5207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Hall (Center) + - uid: 5208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,42.5 + parent: 2 + - type: SurveillanceCamera + id: Engine Hallway (W) + - uid: 5209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,37.5 + parent: 2 + - type: SurveillanceCamera + id: Generator Room (West) + - uid: 5884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,35.5 + parent: 2 + - type: SurveillanceCamera + id: AME - uid: 7470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,61.5 + rot: -1.5707963267948966 rad + pos: 56.5,62.5 parent: 2 - type: SurveillanceCamera - id: Solars North - - uid: 7608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,28.5 - parent: 2 - - type: SurveillanceCamera - id: Gas Storage + id: Northern Airlock - uid: 7609 components: - type: Transform @@ -43709,40 +60816,64 @@ entities: parent: 2 - type: SurveillanceCamera id: TEG - - uid: 7610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,39.5 - parent: 2 - - type: SurveillanceCamera - id: Engineering Tools - - uid: 7611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,32.5 - parent: 2 - - type: SurveillanceCamera - id: Main Engineering - - uid: 7612 + - uid: 8564 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,41.5 + pos: 37.5,-10.5 parent: 2 - type: SurveillanceCamera - id: Gravity Generator -- proto: SurveillanceCameraGeneral - entities: - - uid: 4740 + id: Atmospherics Locker Storage + - uid: 11397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,36.5 + parent: 2 + - type: SurveillanceCamera + id: Anchor + - uid: 11398 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,13.5 + pos: 39.5,38.5 parent: 2 - type: SurveillanceCamera - id: Chapel + id: Plasma Storage + - uid: 11399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,39.5 + parent: 2 + - type: SurveillanceCamera + id: Generator Room (East) +- proto: SurveillanceCameraGeneral + entities: + - uid: 2469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,20.5 + parent: 2 + - type: SurveillanceCamera + id: Supply Room + - uid: 4931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,23.5 + parent: 2 + - type: SurveillanceCamera + id: Escape Pod Bay + - uid: 4938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - type: SurveillanceCamera + id: Repair Bay - uid: 7282 components: - type: MetaData @@ -43752,7 +60883,7 @@ entities: pos: 66.5,-7.5 parent: 2 - type: SurveillanceCamera - id: Evac Dock + id: External - shuttle dock - uid: 7283 components: - type: Transform @@ -43760,7 +60891,7 @@ entities: pos: 56.5,-0.5 parent: 2 - type: SurveillanceCamera - id: Evac North + id: Evac Shuttle Bay - uid: 7284 components: - type: Transform @@ -43768,7 +60899,7 @@ entities: pos: 49.5,-14.5 parent: 2 - type: SurveillanceCamera - id: Evac South + id: Observation - uid: 7464 components: - type: Transform @@ -43776,7 +60907,7 @@ entities: pos: 54.5,41.5 parent: 2 - type: SurveillanceCamera - id: EVA + id: EVA Storage - uid: 7465 components: - type: Transform @@ -43784,7 +60915,7 @@ entities: pos: 49.5,37.5 parent: 2 - type: SurveillanceCamera - id: Bridge Hallway + id: Control Access - uid: 7468 components: - type: Transform @@ -43792,7 +60923,7 @@ entities: pos: 58.5,44.5 parent: 2 - type: SurveillanceCamera - id: Arrivals South + id: Crew Shuttle Disembarkment Hall North - uid: 7469 components: - type: Transform @@ -43800,15 +60931,15 @@ entities: pos: 58.5,53.5 parent: 2 - type: SurveillanceCamera - id: Arrivals North + id: Crew Shuttle Disembarkment Hall North - uid: 7478 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,16.5 + pos: 36.5,15.5 parent: 2 - type: SurveillanceCamera - id: Middle Hallways + id: Central Hallway - uid: 7483 components: - type: Transform @@ -43816,7 +60947,7 @@ entities: pos: 46.5,0.5 parent: 2 - type: SurveillanceCamera - id: Evac Hallway West + id: Transit tunnel (East) - uid: 7505 components: - type: Transform @@ -43824,7 +60955,7 @@ entities: pos: 4.5,-0.5 parent: 2 - type: SurveillanceCamera - id: Dorms + id: Crew Sleeping Area - uid: 7506 components: - type: Transform @@ -43832,7 +60963,7 @@ entities: pos: 0.5,-1.5 parent: 2 - type: SurveillanceCamera - id: Cryosleep + id: Sleeping Area Annex - uid: 7517 components: - type: Transform @@ -43840,7 +60971,7 @@ entities: pos: 15.5,0.5 parent: 2 - type: SurveillanceCamera - id: Meeting Room + id: Lounge/Meeting Area - uid: 7542 components: - type: Transform @@ -43848,7 +60979,7 @@ entities: pos: 9.5,7.5 parent: 2 - type: SurveillanceCamera - id: Western Hallway + id: Personell Lockers - uid: 7560 components: - type: Transform @@ -43856,23 +60987,15 @@ entities: pos: 2.5,-11.5 parent: 2 - type: SurveillanceCamera - id: Southwest Maintenance - - uid: 7572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-11.5 - parent: 2 - - type: SurveillanceCamera - id: Southeast Maintenance + id: Main Solar Control - uid: 7578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,10.5 + rot: 3.141592653589793 rad + pos: 59.5,9.5 parent: 2 - type: SurveillanceCamera - id: Evac Hallway East + id: East of Research Lab - uid: 7582 components: - type: Transform @@ -43880,15 +61003,7 @@ entities: pos: 62.5,15.5 parent: 2 - type: SurveillanceCamera - id: Courtroom - - uid: 7613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,19.5 - parent: 2 - - type: SurveillanceCamera - id: Supply Hallway + id: Assembly Room - uid: 7616 components: - type: Transform @@ -43904,7 +61019,7 @@ entities: pos: 17.5,55.5 parent: 2 - type: SurveillanceCamera - id: Outside Foyer + id: AI Upload Airlock Entrance - uid: 7618 components: - type: Transform @@ -43921,7 +61036,7 @@ entities: pos: 27.5,16.5 parent: 2 - type: SurveillanceCamera - id: Medical Logistics + id: Medical Lab - uid: 7432 components: - type: Transform @@ -43929,7 +61044,7 @@ entities: pos: 16.5,16.5 parent: 2 - type: SurveillanceCamera - id: Medbay + id: Medical Bay - uid: 7433 components: - type: Transform @@ -43940,59 +61055,64 @@ entities: id: Morgue - proto: SurveillanceCameraRouterCommand entities: - - uid: 6350 + - uid: 2622 components: - type: Transform - pos: 45.5,47.5 + pos: 0.5,5.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 6344 + - uid: 2780 components: - type: Transform - pos: 43.5,47.5 + pos: -0.5,7.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 6346 + - uid: 7118 components: - type: Transform - pos: 45.5,48.5 + pos: 1.5,7.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 6345 + - uid: 2203 components: - type: Transform - pos: 47.5,48.5 + pos: -1.5,7.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 6348 + - uid: 2680 components: - type: Transform - pos: 47.5,47.5 + pos: -3.5,5.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 6343 + - uid: 2481 components: - type: Transform - pos: 50.5,50.5 + pos: -0.5,5.5 parent: 2 + - uid: 11336 + components: + - type: Transform + pos: 27.5,-69.5 + parent: 3564 - proto: SurveillanceCameraRouterService entities: - - uid: 6349 + - uid: 2489 components: - type: Transform - pos: 49.5,47.5 + pos: -2.5,5.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 6347 + - uid: 2488 components: - type: Transform - pos: 49.5,48.5 + pos: -1.5,5.5 parent: 2 - proto: SurveillanceCameraScience entities: @@ -44003,15 +61123,15 @@ entities: pos: 55.5,5.5 parent: 2 - type: SurveillanceCamera - id: Science - - uid: 7574 + id: Research Lab + - uid: 7001 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 50.5,14.5 parent: 2 - type: SurveillanceCamera - id: Accurate Depiction of an Academic's Living Conditions + id: Research Gas Storage - proto: SurveillanceCameraSecurity entities: - uid: 7485 @@ -44021,7 +61141,7 @@ entities: pos: 42.5,-0.5 parent: 2 - type: SurveillanceCamera - id: Brig + id: Prison - uid: 7486 components: - type: Transform @@ -44029,15 +61149,7 @@ entities: pos: 34.5,2.5 parent: 2 - type: SurveillanceCamera - id: Security - - uid: 7487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 2 - - type: SurveillanceCamera - id: Armory + id: Security (Main) - uid: 7516 components: - type: Transform @@ -44045,56 +61157,89 @@ entities: pos: 10.5,-6.5 parent: 2 - type: SurveillanceCamera - id: Security Outpost + id: Security (West) + - uid: 10538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-25.5 + parent: 3564 + - type: SurveillanceCamera + id: Security Office + - uid: 10539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 3564 + - type: SurveillanceCamera + id: Recreation Area (East) + - uid: 10540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 3564 + - type: SurveillanceCamera + id: Recreation Area (West) + - uid: 10541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 3564 + - type: SurveillanceCamera + id: Infirmary + - uid: 10542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 3564 + - type: SurveillanceCamera + id: Solitary Cells + - uid: 10543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-66.5 + parent: 3564 + - type: SurveillanceCamera + id: Warden's Office + - uid: 10544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-66.5 + parent: 3564 + - type: SurveillanceCamera + id: Brig Anchor + - uid: 10545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-61.5 + parent: 3564 + - type: SurveillanceCamera + id: Brig Atmos - proto: SurveillanceCameraService entities: - uid: 4737 components: - type: Transform + rot: 1.5707963267948966 rad pos: 20.5,-8.5 parent: 2 - type: SurveillanceCamera - id: Botany - - uid: 7500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,7.5 - parent: 2 - - type: SurveillanceCamera - id: Janisposals - - uid: 7568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 2 - - type: SurveillanceCamera - id: Nightclub -- proto: SurveillanceCameraSupply - entities: - - uid: 7614 + id: Aux Storage + - uid: 7002 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,26.5 + pos: 0.5,13.5 parent: 2 - type: SurveillanceCamera - id: Cargo -- proto: SurveillanceCameraWirelessRouterConstructed - entities: - - uid: 6351 - components: - - type: Transform - pos: 50.5,51.5 - parent: 2 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 6352 - components: - - type: Transform - pos: 43.5,48.5 - parent: 2 + id: Chapel - proto: Table entities: - uid: 31 @@ -44102,16 +61247,6 @@ entities: - type: Transform pos: 7.5,2.5 parent: 2 - - uid: 134 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 2 - - uid: 252 - components: - - type: Transform - pos: 27.5,38.5 - parent: 2 - uid: 253 components: - type: Transform @@ -44122,6 +61257,11 @@ entities: - type: Transform pos: 10.5,-7.5 parent: 2 + - uid: 305 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 - uid: 453 components: - type: Transform @@ -44157,10 +61297,10 @@ entities: - type: Transform pos: 29.5,8.5 parent: 2 - - uid: 657 + - uid: 729 components: - type: Transform - pos: 14.5,-8.5 + pos: 18.5,16.5 parent: 2 - uid: 732 components: @@ -44182,11 +61322,6 @@ entities: - type: Transform pos: 58.5,31.5 parent: 2 - - uid: 807 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - uid: 1011 components: - type: Transform @@ -44202,6 +61337,11 @@ entities: - type: Transform pos: 60.5,14.5 parent: 2 + - uid: 1246 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 - uid: 1261 components: - type: Transform @@ -44217,70 +61357,45 @@ entities: - type: Transform pos: 63.5,31.5 parent: 2 - - uid: 1375 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 1381 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 2 - - uid: 1407 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - uid: 1444 components: - type: Transform pos: 42.5,1.5 parent: 2 - - uid: 1491 + - uid: 1499 components: - type: Transform - pos: 30.5,-7.5 + pos: 34.5,-2.5 parent: 2 - - uid: 1535 + - uid: 1500 components: - type: Transform - pos: 48.5,0.5 + pos: 35.5,-2.5 parent: 2 - - uid: 1562 + - uid: 1501 components: - type: Transform - pos: 48.5,-0.5 + pos: 33.5,-2.5 parent: 2 - - uid: 1633 + - uid: 1529 components: - type: Transform - pos: 27.5,37.5 + pos: 34.5,10.5 parent: 2 - - uid: 1634 + - uid: 1791 components: - type: Transform - pos: 28.5,37.5 + pos: 38.5,31.5 parent: 2 - - uid: 1635 + - uid: 1799 components: - type: Transform - pos: 29.5,37.5 + pos: 38.5,29.5 parent: 2 - - uid: 1727 + - uid: 1917 components: - type: Transform - pos: 28.5,35.5 - parent: 2 - - uid: 1893 - components: - - type: Transform - pos: -0.5,7.5 - parent: 2 - - uid: 1919 - components: - - type: Transform - pos: -1.5,7.5 + pos: 38.5,30.5 parent: 2 - uid: 2006 components: @@ -44322,25 +61437,25 @@ entities: - type: Transform pos: 58.5,17.5 parent: 2 - - uid: 2047 + - uid: 2048 components: - type: Transform - pos: 48.5,4.5 + pos: 54.5,9.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: 46.5,29.5 parent: 2 - uid: 2136 components: - type: Transform pos: 55.5,28.5 parent: 2 - - uid: 2180 + - uid: 2184 components: - type: Transform - pos: 7.5,-12.5 - parent: 2 - - uid: 2204 - components: - - type: Transform - pos: 40.5,0.5 + pos: 13.5,-11.5 parent: 2 - uid: 2246 components: @@ -44357,41 +61472,11 @@ entities: - type: Transform pos: 47.5,21.5 parent: 2 - - uid: 2265 - components: - - type: Transform - pos: 45.5,26.5 - parent: 2 - - uid: 2284 - components: - - type: Transform - pos: 44.5,27.5 - parent: 2 - - uid: 2285 - components: - - type: Transform - pos: 43.5,27.5 - parent: 2 - uid: 2342 components: - type: Transform pos: 59.5,26.5 parent: 2 - - uid: 2422 - components: - - type: Transform - pos: 31.5,10.5 - parent: 2 - - uid: 2430 - components: - - type: Transform - pos: 59.5,28.5 - parent: 2 - - uid: 2627 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 2 - uid: 2675 components: - type: Transform @@ -44417,66 +61502,111 @@ entities: - type: Transform pos: 2.5,-7.5 parent: 2 - - uid: 2794 + - uid: 2777 components: - type: Transform - pos: 7.5,-10.5 + pos: -5.5,5.5 parent: 2 - - uid: 2858 + - uid: 2788 components: - type: Transform - pos: 31.5,-6.5 + pos: 31.5,8.5 parent: 2 - - uid: 3313 + - uid: 2862 components: - type: Transform - pos: 58.5,38.5 + pos: 34.5,9.5 parent: 2 - - uid: 3817 + - uid: 3007 components: - type: Transform - pos: 30.5,-6.5 + pos: 34.5,24.5 parent: 2 - - uid: 4601 + - uid: 3340 components: - type: Transform - pos: 34.5,51.5 + pos: 38.5,-9.5 parent: 2 - - uid: 4729 + - uid: 3352 components: - type: Transform - pos: 34.5,52.5 + pos: 37.5,-12.5 parent: 2 - - uid: 4731 + - uid: 3353 components: - type: Transform - pos: 30.5,52.5 + pos: 38.5,-12.5 parent: 2 - - uid: 4732 + - uid: 3357 components: - type: Transform - pos: 30.5,51.5 + pos: 13.5,-12.5 parent: 2 - - uid: 4733 + - uid: 3362 components: - type: Transform - pos: 32.5,52.5 + pos: 20.5,-5.5 parent: 2 - - uid: 4735 + - uid: 3363 components: - type: Transform - pos: 32.5,51.5 + pos: 20.5,-6.5 parent: 2 - - uid: 4736 + - uid: 3816 components: - type: Transform - pos: 30.5,48.5 + pos: 32.5,-10.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: 39.5,35.5 parent: 2 - uid: 5544 components: - type: Transform pos: 56.5,17.5 parent: 2 + - uid: 5970 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 - uid: 6123 components: - type: Transform @@ -44487,6 +61617,11 @@ entities: - type: Transform pos: 63.5,34.5 parent: 2 + - uid: 6478 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 - uid: 6662 components: - type: Transform @@ -44542,16 +61677,10 @@ entities: - type: Transform pos: 57.5,34.5 parent: 2 - - uid: 6999 + - uid: 7117 components: - type: Transform - pos: 46.5,-17.5 - parent: 2 - - uid: 7115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,13.5 + pos: 45.5,35.5 parent: 2 - uid: 7332 components: @@ -44563,10 +61692,25 @@ entities: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 7380 + - uid: 7345 components: - type: Transform - pos: 32.5,10.5 + pos: 12.5,-10.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: 20.5,-7.5 parent: 2 - uid: 7382 components: @@ -44583,21 +61727,6 @@ entities: - type: Transform pos: 8.5,16.5 parent: 2 - - uid: 7545 - components: - - type: Transform - pos: 48.5,3.5 - parent: 2 - - uid: 7546 - components: - - type: Transform - pos: 48.5,2.5 - parent: 2 - - uid: 7566 - components: - - type: Transform - pos: 27.5,35.5 - parent: 2 - uid: 7666 components: - type: Transform @@ -44608,10 +61737,398 @@ entities: - type: Transform pos: 19.5,-12.5 parent: 2 - - uid: 7675 + - uid: 7711 components: - type: Transform - pos: 37.5,-12.5 + pos: 59.5,28.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 9701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-65.5 + parent: 3564 + - uid: 9715 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 3564 + - uid: 9716 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 3564 + - uid: 9717 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 3564 + - uid: 9718 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 3564 + - uid: 9719 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 3564 + - uid: 9720 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 + - uid: 9721 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 3564 + - uid: 9722 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 3564 + - uid: 9723 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 3564 + - uid: 9724 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 3564 + - uid: 9725 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 3564 + - uid: 9726 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 3564 + - uid: 9909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-54.5 + parent: 3564 + - uid: 10261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-50.5 + parent: 3564 + - uid: 10262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-46.5 + parent: 3564 + - uid: 10263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-38.5 + parent: 3564 + - uid: 10264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-34.5 + parent: 3564 + - uid: 10265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-38.5 + parent: 3564 + - uid: 10266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-42.5 + parent: 3564 + - uid: 10267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-46.5 + parent: 3564 + - uid: 10268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-50.5 + parent: 3564 + - uid: 10269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-54.5 + parent: 3564 + - uid: 10324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-32.5 + parent: 3564 + - uid: 10325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-33.5 + parent: 3564 + - uid: 10400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-66.5 + parent: 3564 + - uid: 10403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-64.5 + parent: 3564 + - uid: 10405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-64.5 + parent: 3564 + - uid: 10406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-66.5 + parent: 3564 + - uid: 10409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-69.5 + parent: 3564 + - uid: 10433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-60.5 + parent: 3564 + - uid: 10434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-61.5 + parent: 3564 + - uid: 10452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-59.5 + parent: 3564 + - uid: 10453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-59.5 + parent: 3564 + - uid: 10454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-59.5 + parent: 3564 + - uid: 10512 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 3564 + - uid: 10513 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 3564 + - uid: 10514 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 3564 + - uid: 10515 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 3564 + - uid: 10516 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 3564 + - uid: 10517 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 3564 + - uid: 10555 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 3564 + - uid: 10558 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 3564 + - uid: 10559 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 3564 + - uid: 10560 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 3564 + - uid: 10561 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 3564 + - uid: 10562 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 3564 + - uid: 10563 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 3564 + - uid: 10564 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 3564 + - uid: 10565 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 3564 + - uid: 10566 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 3564 + - uid: 10582 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 3564 + - uid: 10583 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 3564 + - uid: 10584 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 3564 + - uid: 10585 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 3564 + - uid: 10586 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 3564 + - uid: 10587 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 3564 + - uid: 10588 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 3564 + - uid: 10589 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 3564 + - uid: 11212 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 11352 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 11356 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 11509 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 + - uid: 11510 + components: + - type: Transform + pos: 12.5,34.5 parent: 2 - proto: TableBrass entities: @@ -44627,21 +62144,6 @@ entities: parent: 2 - proto: TableCounterMetal entities: - - uid: 96 - components: - - type: Transform - pos: 18.5,-4.5 - parent: 2 - - uid: 492 - components: - - type: Transform - pos: 18.5,23.5 - parent: 2 - - uid: 515 - components: - - type: Transform - pos: 17.5,23.5 - parent: 2 - uid: 540 components: - type: Transform @@ -44667,11 +62169,6 @@ entities: - type: Transform pos: 14.5,13.5 parent: 2 - - uid: 710 - components: - - type: Transform - pos: 31.5,12.5 - parent: 2 - uid: 1098 components: - type: Transform @@ -44682,259 +62179,46 @@ entities: - type: Transform pos: 32.5,7.5 parent: 2 - - uid: 1294 - components: - - type: Transform - pos: 19.5,23.5 - parent: 2 - - uid: 1475 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 2 - - uid: 1486 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 2 - - uid: 1489 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 2 - - uid: 1492 - components: - - type: Transform - pos: 27.5,-2.5 - parent: 2 - - uid: 1493 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 2 - - uid: 1494 - components: - - type: Transform - pos: 26.5,-2.5 - parent: 2 - - uid: 1495 - components: - - type: Transform - pos: 25.5,0.5 - parent: 2 - - uid: 1496 - components: - - type: Transform - pos: 26.5,0.5 - parent: 2 - - uid: 1749 - components: - - type: Transform - pos: 29.5,22.5 - parent: 2 - - uid: 1765 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 - - uid: 1767 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 2193 - components: - - type: Transform - pos: 45.5,8.5 - parent: 2 - - uid: 2194 - components: - - type: Transform - pos: 45.5,7.5 - parent: 2 - - uid: 2195 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - - uid: 2196 - components: - - type: Transform - pos: 46.5,6.5 - parent: 2 - - uid: 2628 - components: - - type: Transform - pos: 24.5,-10.5 - parent: 2 - - uid: 2629 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 2 - - uid: 2671 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 - - uid: 2803 - components: - - type: Transform - pos: 22.5,-10.5 - parent: 2 - - uid: 2857 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 2 - uid: 3163 components: - type: Transform pos: 32.5,12.5 parent: 2 - - uid: 7653 + - uid: 9713 components: - type: Transform - pos: 24.5,-9.5 - parent: 2 -- proto: TableFancyBlue + pos: 26.5,-58.5 + parent: 3564 + - uid: 9714 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 3564 +- proto: TableFancyBlack entities: - - uid: 2278 + - uid: 11351 components: - type: Transform - pos: 42.5,29.5 + rot: 1.5707963267948966 rad + pos: -4.5,10.5 parent: 2 - proto: TableGlass entities: - - uid: 546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,16.5 - parent: 2 - uid: 793 components: - type: Transform pos: 63.5,30.5 parent: 2 - - uid: 1273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 2 - uid: 1480 components: - type: Transform pos: 59.5,31.5 parent: 2 - - uid: 1541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,14.5 - parent: 2 - - uid: 1545 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,13.5 - parent: 2 - - uid: 1611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,31.5 - parent: 2 - - uid: 1612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,32.5 - parent: 2 - - uid: 1613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,33.5 - parent: 2 - - uid: 1967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,10.5 - parent: 2 - - uid: 2039 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,9.5 - parent: 2 - - uid: 2073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,8.5 - parent: 2 - - uid: 2130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,7.5 - parent: 2 - uid: 2429 components: - type: Transform pos: 63.5,32.5 parent: 2 - - uid: 7636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,31.5 - parent: 2 - - uid: 7643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,31.5 - parent: 2 - - uid: 7645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,32.5 - parent: 2 - - uid: 7727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,6.5 - parent: 2 - - uid: 7728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,5.5 - parent: 2 - - uid: 7729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,4.5 - parent: 2 - - uid: 7730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,4.5 - parent: 2 - - uid: 7731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,4.5 - parent: 2 - proto: TegCenter entities: - uid: 1302 @@ -44970,71 +62254,49 @@ entities: - type: DeviceLinkSink ports: - Trigger -- proto: TelecomServerCircuitboard +- proto: TelecomServerFilled entities: - - uid: 2173 + - uid: 2859 components: - type: Transform - pos: 13.5,-12.5 + pos: -5.5,7.5 parent: 2 -- proto: TelecomServerFilledCargo +- proto: ThrusterFlatpack entities: - - uid: 1589 + - uid: 5962 components: - type: Transform - pos: 38.5,26.5 + pos: 14.5,28.5 parent: 2 -- proto: TelecomServerFilledCommand - entities: - - uid: 1582 + - uid: 5973 components: - type: Transform - pos: 38.5,27.5 + pos: 14.5,28.5 parent: 2 -- proto: TelecomServerFilledCommon - entities: - - uid: 1590 + - uid: 5974 components: - type: Transform - pos: 38.5,28.5 + pos: 14.5,28.5 parent: 2 -- proto: TelecomServerFilledEngineering +- proto: ThrusterUnanchored entities: - - uid: 1585 + - uid: 5968 components: - type: Transform - pos: 38.5,29.5 + pos: 10.5,31.5 parent: 2 -- proto: TelecomServerFilledMedical - entities: - - uid: 1584 + - uid: 5969 components: - type: Transform - pos: 36.5,26.5 - parent: 2 -- proto: TelecomServerFilledScience - entities: - - uid: 1588 - components: - - type: Transform - pos: 36.5,27.5 - parent: 2 -- proto: TelecomServerFilledSecurity - entities: - - uid: 1583 - components: - - type: Transform - pos: 36.5,28.5 - parent: 2 -- proto: TelecomServerFilledService - entities: - - uid: 1587 - components: - - type: Transform - pos: 36.5,29.5 + pos: 12.5,29.5 parent: 2 - proto: TimerTrigger entities: + - uid: 1388 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 - uid: 7220 components: - type: Transform @@ -45050,22 +62312,40 @@ entities: - type: Transform pos: 45.5,19.5 parent: 2 - - uid: 7702 + - uid: 7810 components: - type: Transform - pos: 48.5,19.5 + pos: 52.5,9.5 parent: 2 -- proto: ToiletDirtyWater - entities: - - uid: 4008 + - uid: 7814 components: - type: Transform - pos: 42.5,-9.5 + pos: 52.5,9.5 parent: 2 - - uid: 4009 + - uid: 8401 components: - type: Transform - pos: 44.5,-9.5 + pos: 38.5,30.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 11148 + components: + - type: Transform + pos: 49.5,19.5 + parent: 2 + - uid: 11154 + components: + - type: Transform + pos: 43.5,20.5 parent: 2 - proto: ToolboxArtisticFilled entities: @@ -45076,66 +62356,206 @@ entities: parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 2259 + - uid: 889 components: - type: Transform - pos: 49.5,19.5 + pos: 38.5,30.5 parent: 2 - - uid: 2287 + - uid: 1313 components: - type: Transform - pos: 49.5,19.5 + pos: 13.5,-7.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 10534 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 3564 + - uid: 11152 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 11171 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + pos: 11.5,34.5 parent: 2 - proto: ToolboxEmergencyFilled entities: - - uid: 573 + - uid: 1298 components: - type: Transform - pos: 47.5,19.5 + pos: 20.5,11.5 parent: 2 - - uid: 862 + - uid: 1577 components: - type: Transform - pos: 47.5,19.5 + pos: 45.5,29.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 35.5,-9.5 parent: 2 - uid: 1764 components: - type: Transform pos: 59.5,31.5 parent: 2 + - uid: 4368 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 - uid: 7190 components: - type: Transform pos: 38.5,-1.5 parent: 2 -- proto: ToolboxGoldFilled - entities: - - uid: 2163 + - uid: 7709 components: - type: Transform - pos: 62.57238,9.313311 + pos: 44.5,29.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + pos: 34.5,-63.5 + parent: 3564 + - uid: 10533 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 3564 + - uid: 10615 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 3564 + - uid: 11158 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11159 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 +- proto: ToolboxGoldFilled + entities: + - uid: 8269 + components: + - type: Transform + pos: 59.5,23.5 parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 2286 + - uid: 867 components: - type: Transform - pos: 48.5,19.5 + pos: 38.5,29.5 parent: 2 - - uid: 2866 - components: - - type: Transform - pos: 48.5,19.5 - parent: 2 -- proto: ToyFigurineHeadOfPersonnel +- proto: TrackingImplanter entities: - - uid: 7218 + - uid: 10612 components: - type: Transform - pos: 42.5,29.9 - parent: 2 + pos: 28.5,-23.5 + parent: 3564 + - uid: 10613 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 3564 - proto: trayScanner entities: + - uid: 4386 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 - uid: 7219 components: - type: Transform @@ -45146,105 +62566,19 @@ entities: - type: Transform pos: 47.5,21.5 parent: 2 -- proto: TritiumCanister +- proto: TreasureFlopDiskDrive entities: - - uid: 6609 + - uid: 6685 components: - type: Transform - pos: 20.5,42.5 + pos: 11.5,22.5 parent: 2 -- proto: TwoWayLever - entities: - - uid: 828 - components: - - type: Transform - pos: -5.5,7.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 254: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 150: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 258: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 256: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 290: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 259: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 165: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 294: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 118: - - - Left - - Reverse - - - Right - - Forward - - - Middle - - Off - 382: - - - Left - - Open - - - Right - - Close - - - Middle - - Close - 357: - - - Left - - Close - - - Right - - Open - - - Middle - - Close - proto: UniformPrinter entities: - - uid: 2275 + - uid: 7784 components: - type: Transform - pos: 45.5,29.5 + pos: 42.5,29.5 parent: 2 - type: TechnologyDatabase supportedDisciplines: @@ -45252,26 +62586,12 @@ entities: - Arsenal - Experimental - CivilianServices -- proto: VendingMachineBooze - entities: - - uid: 1374 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 - proto: VendingMachineCart entities: - - uid: 2280 + - uid: 7787 components: - type: Transform - pos: 46.5,29.5 - parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 1402 - components: - - type: Transform - pos: 26.5,-7.5 + pos: 43.5,29.5 parent: 2 - proto: VendingMachineChemDrobe entities: @@ -45287,88 +62607,63 @@ entities: - type: Transform pos: 28.5,9.5 parent: 2 -- proto: VendingMachineClothing - entities: - - uid: 7008 - components: - - type: Transform - pos: 58.5,53.5 - parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 2609 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 2 -- proto: VendingMachineDiscount - entities: - - uid: 1497 - components: - - type: Transform - pos: 30.5,31.5 - parent: 2 - proto: VendingMachineEngivend entities: - - uid: 1569 + - uid: 7766 components: - type: Transform - pos: 37.5,41.5 + pos: 23.5,38.5 parent: 2 - proto: VendingMachineMedical entities: - - uid: 532 + - uid: 6314 components: - type: Transform - pos: 25.5,16.5 - parent: 2 -- proto: VendingMachineNutri - entities: - - uid: 879 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 1557 - components: - - type: Transform - pos: 53.5,9.5 + pos: 34.5,13.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 7213 + - uid: 1328 components: - type: Transform - pos: 35.5,-4.5 + pos: 37.5,2.5 parent: 2 -- proto: VendingMachineSeeds +- proto: VendingMachineSeedsUnlocked entities: - - uid: 1711 + - uid: 10546 components: - type: Transform - pos: 13.5,-5.5 - parent: 2 + pos: 9.5,-20.5 + parent: 3564 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 1623 + - uid: 1012 components: - type: Transform - pos: 35.5,37.5 + pos: 49.5,14.5 parent: 2 - - uid: 1624 + - uid: 2909 components: - type: Transform - pos: 36.5,37.5 - parent: 2 - - uid: 1625 - components: - - type: Transform - pos: 37.5,37.5 + pos: 36.5,29.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: + - uid: 1326 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 - uid: 1929 components: - type: Transform @@ -45379,16 +62674,31 @@ entities: - type: Transform pos: 49.5,41.5 parent: 2 - - uid: 2626 + - uid: 3366 components: - type: Transform - pos: 6.5,-12.5 + pos: 10.5,-12.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: 13.5,31.5 parent: 2 - uid: 7665 components: - type: Transform pos: 17.5,-12.5 parent: 2 + - uid: 8304 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 - proto: VendingMachineVendomat entities: - uid: 2245 @@ -45396,30 +62706,18 @@ entities: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 2612 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 2 -- proto: VendingMachineWinter - entities: - - uid: 6544 - components: - - type: Transform - pos: 8.5,0.5 - parent: 2 - proto: VendingMachineYouTool entities: - - uid: 889 - components: - - type: Transform - pos: 37.5,40.5 - parent: 2 - uid: 2244 components: - type: Transform pos: 41.5,20.5 parent: 2 + - uid: 7760 + components: + - type: Transform + pos: 23.5,37.5 + parent: 2 - proto: WallReinforced entities: - uid: 43 @@ -45427,6 +62725,16 @@ entities: - type: Transform pos: 6.5,30.5 parent: 2 + - uid: 161 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 - uid: 174 components: - type: Transform @@ -45507,6 +62815,11 @@ entities: - type: Transform pos: 2.5,5.5 parent: 2 + - uid: 284 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 - uid: 299 components: - type: Transform @@ -45562,6 +62875,11 @@ entities: - type: Transform pos: 7.5,31.5 parent: 2 + - uid: 639 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 - uid: 643 components: - type: Transform @@ -45587,6 +62905,46 @@ entities: - type: Transform pos: -0.5,32.5 parent: 2 + - uid: 662 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 - uid: 700 components: - type: Transform @@ -45677,6 +63035,11 @@ entities: - type: Transform pos: 10.5,38.5 parent: 2 + - uid: 795 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 - uid: 858 components: - type: Transform @@ -45782,11 +63145,6 @@ entities: - type: Transform pos: 17.5,43.5 parent: 2 - - uid: 895 - components: - - type: Transform - pos: 59.5,9.5 - parent: 2 - uid: 896 components: - type: Transform @@ -46122,11 +63480,6 @@ entities: - type: Transform pos: 47.5,5.5 parent: 2 - - uid: 1197 - components: - - type: Transform - pos: 59.5,5.5 - parent: 2 - uid: 1198 components: - type: Transform @@ -46352,6 +63705,26 @@ entities: - type: Transform pos: 37.5,3.5 parent: 2 + - uid: 1476 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 - uid: 1573 components: - type: Transform @@ -46412,15 +63785,10 @@ entities: - type: Transform pos: 28.5,56.5 parent: 2 - - uid: 1946 + - uid: 1954 components: - type: Transform - pos: 59.5,7.5 - parent: 2 - - uid: 2043 - components: - - type: Transform - pos: 59.5,8.5 + pos: 20.5,19.5 parent: 2 - uid: 2090 components: @@ -46597,11 +63965,48 @@ entities: - type: Transform pos: 16.5,62.5 parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 67.5,-13.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 67.5,-23.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 - uid: 3395 components: - type: Transform pos: 16.5,26.5 parent: 2 + - uid: 3565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-46.5 + parent: 3564 + - uid: 3566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-38.5 + parent: 3564 + - uid: 3929 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 - uid: 4266 components: - type: Transform @@ -47022,16 +64427,6 @@ entities: - type: Transform pos: 28.5,51.5 parent: 2 - - uid: 4417 - components: - - type: Transform - pos: 39.5,51.5 - parent: 2 - - uid: 4420 - components: - - type: Transform - pos: 39.5,49.5 - parent: 2 - uid: 4421 components: - type: Transform @@ -47297,6 +64692,11 @@ entities: - type: Transform pos: 41.5,47.5 parent: 2 + - uid: 7233 + components: + - type: Transform + pos: 67.5,-24.5 + parent: 2 - uid: 7239 components: - type: Transform @@ -47307,8 +64707,2153 @@ entities: - type: Transform pos: 14.5,47.5 parent: 2 + - uid: 7396 + components: + - type: Transform + pos: 67.5,-28.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: 44.5,33.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-38.5 + parent: 3564 + - uid: 9080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-38.5 + parent: 3564 + - uid: 9081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-38.5 + parent: 3564 + - uid: 9082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-39.5 + parent: 3564 + - uid: 9083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-40.5 + parent: 3564 + - uid: 9084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-37.5 + parent: 3564 + - uid: 9085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-36.5 + parent: 3564 + - uid: 9086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-36.5 + parent: 3564 + - uid: 9087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-36.5 + parent: 3564 + - uid: 9088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-39.5 + parent: 3564 + - uid: 9089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-35.5 + parent: 3564 + - uid: 9090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-36.5 + parent: 3564 + - uid: 9091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-35.5 + parent: 3564 + - uid: 9092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-36.5 + parent: 3564 + - uid: 9093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-35.5 + parent: 3564 + - uid: 9094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-36.5 + parent: 3564 + - uid: 9095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-35.5 + parent: 3564 + - uid: 9096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-36.5 + parent: 3564 + - uid: 9097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-37.5 + parent: 3564 + - uid: 9098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-38.5 + parent: 3564 + - uid: 9099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-39.5 + parent: 3564 + - uid: 9100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-39.5 + parent: 3564 + - uid: 9101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-38.5 + parent: 3564 + - uid: 9102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-37.5 + parent: 3564 + - uid: 9103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-39.5 + parent: 3564 + - uid: 9104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-39.5 + parent: 3564 + - uid: 9105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-39.5 + parent: 3564 + - uid: 9106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-39.5 + parent: 3564 + - uid: 9107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-39.5 + parent: 3564 + - uid: 9108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-35.5 + parent: 3564 + - uid: 9109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-35.5 + parent: 3564 + - uid: 9110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-35.5 + parent: 3564 + - uid: 9111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-35.5 + parent: 3564 + - uid: 9112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-43.5 + parent: 3564 + - uid: 9113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-43.5 + parent: 3564 + - uid: 9114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-43.5 + parent: 3564 + - uid: 9115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-43.5 + parent: 3564 + - uid: 9116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-43.5 + parent: 3564 + - uid: 9117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-43.5 + parent: 3564 + - uid: 9118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-43.5 + parent: 3564 + - uid: 9119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-43.5 + parent: 3564 + - uid: 9120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-42.5 + parent: 3564 + - uid: 9121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-43.5 + parent: 3564 + - uid: 9122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-44.5 + parent: 3564 + - uid: 9123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-45.5 + parent: 3564 + - uid: 9124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-44.5 + parent: 3564 + - uid: 9125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-45.5 + parent: 3564 + - uid: 9126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-44.5 + parent: 3564 + - uid: 9127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-45.5 + parent: 3564 + - uid: 9128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-46.5 + parent: 3564 + - uid: 9129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-46.5 + parent: 3564 + - uid: 9130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-46.5 + parent: 3564 + - uid: 9131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-46.5 + parent: 3564 + - uid: 9132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-46.5 + parent: 3564 + - uid: 9134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-46.5 + parent: 3564 + - uid: 9135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-46.5 + parent: 3564 + - uid: 9137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-47.5 + parent: 3564 + - uid: 9138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-47.5 + parent: 3564 + - uid: 9139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-47.5 + parent: 3564 + - uid: 9140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-47.5 + parent: 3564 + - uid: 9141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-47.5 + parent: 3564 + - uid: 9142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-48.5 + parent: 3564 + - uid: 9143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-49.5 + parent: 3564 + - uid: 9144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-50.5 + parent: 3564 + - uid: 9145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-51.5 + parent: 3564 + - uid: 9146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-52.5 + parent: 3564 + - uid: 9147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-53.5 + parent: 3564 + - uid: 9148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-54.5 + parent: 3564 + - uid: 9149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-55.5 + parent: 3564 + - uid: 9150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-56.5 + parent: 3564 + - uid: 9151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-55.5 + parent: 3564 + - uid: 9152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-56.5 + parent: 3564 + - uid: 9153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-55.5 + parent: 3564 + - uid: 9154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-56.5 + parent: 3564 + - uid: 9155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-55.5 + parent: 3564 + - uid: 9156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-56.5 + parent: 3564 + - uid: 9157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-55.5 + parent: 3564 + - uid: 9158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-56.5 + parent: 3564 + - uid: 9159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-57.5 + parent: 3564 + - uid: 9160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-58.5 + parent: 3564 + - uid: 9161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-59.5 + parent: 3564 + - uid: 9162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-57.5 + parent: 3564 + - uid: 9163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-58.5 + parent: 3564 + - uid: 9164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-59.5 + parent: 3564 + - uid: 9165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-57.5 + parent: 3564 + - uid: 9166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-57.5 + parent: 3564 + - uid: 9167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-61.5 + parent: 3564 + - uid: 9168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-60.5 + parent: 3564 + - uid: 9169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-62.5 + parent: 3564 + - uid: 9170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-62.5 + parent: 3564 + - uid: 9171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-61.5 + parent: 3564 + - uid: 9172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-62.5 + parent: 3564 + - uid: 9173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-61.5 + parent: 3564 + - uid: 9174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-62.5 + parent: 3564 + - uid: 9175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-51.5 + parent: 3564 + - uid: 9176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-51.5 + parent: 3564 + - uid: 9177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-51.5 + parent: 3564 + - uid: 9178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-51.5 + parent: 3564 + - uid: 9179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-51.5 + parent: 3564 + - uid: 9180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-51.5 + parent: 3564 + - uid: 9181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-51.5 + parent: 3564 + - uid: 9182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-51.5 + parent: 3564 + - uid: 9183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-55.5 + parent: 3564 + - uid: 9184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-56.5 + parent: 3564 + - uid: 9185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-55.5 + parent: 3564 + - uid: 9186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-56.5 + parent: 3564 + - uid: 9187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-55.5 + parent: 3564 + - uid: 9188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-56.5 + parent: 3564 + - uid: 9189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-55.5 + parent: 3564 + - uid: 9190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-56.5 + parent: 3564 + - uid: 9191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-55.5 + parent: 3564 + - uid: 9192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-56.5 + parent: 3564 + - uid: 9193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-56.5 + parent: 3564 + - uid: 9194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-56.5 + parent: 3564 + - uid: 9195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-56.5 + parent: 3564 + - uid: 9196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-56.5 + parent: 3564 + - uid: 9197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-56.5 + parent: 3564 + - uid: 9198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-56.5 + parent: 3564 + - uid: 9199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-56.5 + parent: 3564 + - uid: 9200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-57.5 + parent: 3564 + - uid: 9201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-58.5 + parent: 3564 + - uid: 9202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-59.5 + parent: 3564 + - uid: 9203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-60.5 + parent: 3564 + - uid: 9204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-61.5 + parent: 3564 + - uid: 9205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-62.5 + parent: 3564 + - uid: 9206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-62.5 + parent: 3564 + - uid: 9207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-62.5 + parent: 3564 + - uid: 9208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-62.5 + parent: 3564 + - uid: 9209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-62.5 + parent: 3564 + - uid: 9210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-62.5 + parent: 3564 + - uid: 9211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-62.5 + parent: 3564 + - uid: 9212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-62.5 + parent: 3564 + - uid: 9213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-62.5 + parent: 3564 + - uid: 9214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-63.5 + parent: 3564 + - uid: 9215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-64.5 + parent: 3564 + - uid: 9216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-65.5 + parent: 3564 + - uid: 9217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-66.5 + parent: 3564 + - uid: 9218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-67.5 + parent: 3564 + - uid: 9219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-68.5 + parent: 3564 + - uid: 9220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-69.5 + parent: 3564 + - uid: 9221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-70.5 + parent: 3564 + - uid: 9222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-70.5 + parent: 3564 + - uid: 9223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-70.5 + parent: 3564 + - uid: 9224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-70.5 + parent: 3564 + - uid: 9225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-70.5 + parent: 3564 + - uid: 9226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-70.5 + parent: 3564 + - uid: 9227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-70.5 + parent: 3564 + - uid: 9228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-70.5 + parent: 3564 + - uid: 9229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-70.5 + parent: 3564 + - uid: 9230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-70.5 + parent: 3564 + - uid: 9231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-70.5 + parent: 3564 + - uid: 9232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-70.5 + parent: 3564 + - uid: 9233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-70.5 + parent: 3564 + - uid: 9234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-71.5 + parent: 3564 + - uid: 9235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-72.5 + parent: 3564 + - uid: 9236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-70.5 + parent: 3564 + - uid: 9237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-71.5 + parent: 3564 + - uid: 9238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-72.5 + parent: 3564 + - uid: 9239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-70.5 + parent: 3564 + - uid: 9240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-70.5 + parent: 3564 + - uid: 9241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-70.5 + parent: 3564 + - uid: 9242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-64.5 + parent: 3564 + - uid: 9243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-64.5 + parent: 3564 + - uid: 9244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-64.5 + parent: 3564 + - uid: 9245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-64.5 + parent: 3564 + - uid: 9246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-64.5 + parent: 3564 + - uid: 9247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-65.5 + parent: 3564 + - uid: 9248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-66.5 + parent: 3564 + - uid: 9249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-63.5 + parent: 3564 + - uid: 9250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-69.5 + parent: 3564 + - uid: 9251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-68.5 + parent: 3564 + - uid: 9252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-68.5 + parent: 3564 + - uid: 9253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-68.5 + parent: 3564 + - uid: 9254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-68.5 + parent: 3564 + - uid: 9255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-68.5 + parent: 3564 + - uid: 9256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-68.5 + parent: 3564 + - uid: 9257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-68.5 + parent: 3564 + - uid: 9258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-67.5 + parent: 3564 + - uid: 9259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-66.5 + parent: 3564 + - uid: 9260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-65.5 + parent: 3564 + - uid: 9261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-64.5 + parent: 3564 + - uid: 9262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-64.5 + parent: 3564 + - uid: 9263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-64.5 + parent: 3564 + - uid: 9264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-63.5 + parent: 3564 + - uid: 9265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-62.5 + parent: 3564 + - uid: 9266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-61.5 + parent: 3564 + - uid: 9267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-60.5 + parent: 3564 + - uid: 9268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-59.5 + parent: 3564 + - uid: 9269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-58.5 + parent: 3564 + - uid: 9270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-57.5 + parent: 3564 + - uid: 9271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-56.5 + parent: 3564 + - uid: 9272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-56.5 + parent: 3564 + - uid: 9273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-56.5 + parent: 3564 + - uid: 9274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-56.5 + parent: 3564 + - uid: 9275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-56.5 + parent: 3564 + - uid: 9276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-54.5 + parent: 3564 + - uid: 9277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-53.5 + parent: 3564 + - uid: 9278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-52.5 + parent: 3564 + - uid: 9279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-51.5 + parent: 3564 + - uid: 9280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-50.5 + parent: 3564 + - uid: 9281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-49.5 + parent: 3564 + - uid: 9282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-48.5 + parent: 3564 + - uid: 9283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-47.5 + parent: 3564 + - uid: 9284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-46.5 + parent: 3564 + - uid: 9285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-45.5 + parent: 3564 + - uid: 9286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-44.5 + parent: 3564 + - uid: 9287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-43.5 + parent: 3564 + - uid: 9288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-42.5 + parent: 3564 + - uid: 9289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-41.5 + parent: 3564 + - uid: 9290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-40.5 + parent: 3564 + - uid: 9291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-39.5 + parent: 3564 + - uid: 9292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-38.5 + parent: 3564 + - uid: 9293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-37.5 + parent: 3564 + - uid: 9294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-36.5 + parent: 3564 + - uid: 9295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-35.5 + parent: 3564 + - uid: 9296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-34.5 + parent: 3564 + - uid: 9297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-33.5 + parent: 3564 + - uid: 9298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-32.5 + parent: 3564 + - uid: 9299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-31.5 + parent: 3564 + - uid: 9300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-31.5 + parent: 3564 + - uid: 9301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-31.5 + parent: 3564 + - uid: 9302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-31.5 + parent: 3564 + - uid: 9303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-31.5 + parent: 3564 + - uid: 9304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-34.5 + parent: 3564 + - uid: 9305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-34.5 + parent: 3564 + - uid: 9306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-34.5 + parent: 3564 + - uid: 9307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-34.5 + parent: 3564 + - uid: 9308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-34.5 + parent: 3564 + - uid: 9309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-34.5 + parent: 3564 + - uid: 9310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-34.5 + parent: 3564 + - uid: 9311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-31.5 + parent: 3564 + - uid: 9312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-31.5 + parent: 3564 + - uid: 9313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-31.5 + parent: 3564 + - uid: 9314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-31.5 + parent: 3564 + - uid: 9315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-35.5 + parent: 3564 + - uid: 9316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-35.5 + parent: 3564 + - uid: 9317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-35.5 + parent: 3564 + - uid: 9318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-35.5 + parent: 3564 + - uid: 9319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-39.5 + parent: 3564 + - uid: 9320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-39.5 + parent: 3564 + - uid: 9321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-39.5 + parent: 3564 + - uid: 9322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-39.5 + parent: 3564 + - uid: 9323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-43.5 + parent: 3564 + - uid: 9324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-43.5 + parent: 3564 + - uid: 9325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-43.5 + parent: 3564 + - uid: 9326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-43.5 + parent: 3564 + - uid: 9327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-47.5 + parent: 3564 + - uid: 9328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-47.5 + parent: 3564 + - uid: 9329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-47.5 + parent: 3564 + - uid: 9330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-47.5 + parent: 3564 + - uid: 9331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-32.5 + parent: 3564 + - uid: 9332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-33.5 + parent: 3564 + - uid: 9333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-34.5 + parent: 3564 + - uid: 9334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-30.5 + parent: 3564 + - uid: 9335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 3564 + - uid: 9336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-30.5 + parent: 3564 + - uid: 9337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-31.5 + parent: 3564 + - uid: 9338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-31.5 + parent: 3564 + - uid: 9339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-30.5 + parent: 3564 + - uid: 9340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-31.5 + parent: 3564 + - uid: 9341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-30.5 + parent: 3564 + - uid: 9342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-31.5 + parent: 3564 + - uid: 9343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-30.5 + parent: 3564 + - uid: 9344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-29.5 + parent: 3564 + - uid: 9345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-28.5 + parent: 3564 + - uid: 9346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-27.5 + parent: 3564 + - uid: 9347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-26.5 + parent: 3564 + - uid: 9348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 3564 + - uid: 9349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-24.5 + parent: 3564 + - uid: 9350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-23.5 + parent: 3564 + - uid: 9351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-22.5 + parent: 3564 + - uid: 9352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-21.5 + parent: 3564 + - uid: 9353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 3564 + - uid: 9354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-19.5 + parent: 3564 + - uid: 9355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 3564 + - uid: 9356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 3564 + - uid: 9357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 3564 + - uid: 9358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 3564 + - uid: 9359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-19.5 + parent: 3564 + - uid: 9360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 3564 + - uid: 9361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 3564 + - uid: 9362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 3564 + - uid: 9363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-19.5 + parent: 3564 + - uid: 9364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-19.5 + parent: 3564 + - uid: 9365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-19.5 + parent: 3564 + - uid: 9366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-19.5 + parent: 3564 + - uid: 9367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 3564 + - uid: 9368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-22.5 + parent: 3564 + - uid: 9369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-21.5 + parent: 3564 + - uid: 9370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-23.5 + parent: 3564 + - uid: 9371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-30.5 + parent: 3564 + - uid: 9372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-30.5 + parent: 3564 + - uid: 9373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-30.5 + parent: 3564 + - uid: 9374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-30.5 + parent: 3564 + - uid: 9375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 3564 + - uid: 9376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-30.5 + parent: 3564 + - uid: 9377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-30.5 + parent: 3564 + - uid: 9378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-31.5 + parent: 3564 + - uid: 9379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-31.5 + parent: 3564 + - uid: 9380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-19.5 + parent: 3564 + - uid: 9381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-20.5 + parent: 3564 + - uid: 9382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-21.5 + parent: 3564 + - uid: 9383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-22.5 + parent: 3564 + - uid: 9384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-23.5 + parent: 3564 + - uid: 9385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-24.5 + parent: 3564 + - uid: 9386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-24.5 + parent: 3564 + - uid: 9387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-24.5 + parent: 3564 + - uid: 9388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-24.5 + parent: 3564 + - uid: 9389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-24.5 + parent: 3564 + - uid: 9390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-24.5 + parent: 3564 + - uid: 9391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-24.5 + parent: 3564 + - uid: 9392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-24.5 + parent: 3564 + - uid: 9393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-24.5 + parent: 3564 + - uid: 9394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 3564 + - uid: 9395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-24.5 + parent: 3564 + - uid: 9396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-24.5 + parent: 3564 + - uid: 9397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-24.5 + parent: 3564 + - uid: 9398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-34.5 + parent: 3564 + - uid: 9399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-33.5 + parent: 3564 + - uid: 9400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-32.5 + parent: 3564 + - uid: 9401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-31.5 + parent: 3564 + - uid: 9402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-30.5 + parent: 3564 + - uid: 9403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-29.5 + parent: 3564 + - uid: 9404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-28.5 + parent: 3564 + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-27.5 + parent: 3564 + - uid: 9406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-26.5 + parent: 3564 + - uid: 9407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-25.5 + parent: 3564 + - uid: 9408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-16.5 + parent: 3564 + - uid: 9409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-16.5 + parent: 3564 + - uid: 9410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-16.5 + parent: 3564 + - uid: 9411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-16.5 + parent: 3564 + - uid: 9412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-17.5 + parent: 3564 + - uid: 9413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-18.5 + parent: 3564 + - uid: 9414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-19.5 + parent: 3564 + - uid: 9415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-20.5 + parent: 3564 + - uid: 9416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-21.5 + parent: 3564 + - uid: 9417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-22.5 + parent: 3564 + - uid: 9418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-23.5 + parent: 3564 + - uid: 9419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-15.5 + parent: 3564 + - uid: 9420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-15.5 + parent: 3564 + - uid: 9421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-15.5 + parent: 3564 + - uid: 9422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-15.5 + parent: 3564 + - uid: 9423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-15.5 + parent: 3564 + - uid: 9424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-15.5 + parent: 3564 + - uid: 9425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-15.5 + parent: 3564 + - uid: 9426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-15.5 + parent: 3564 + - uid: 9427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-15.5 + parent: 3564 + - uid: 9428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 3564 + - uid: 9429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 3564 + - uid: 9430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-15.5 + parent: 3564 + - uid: 9431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-16.5 + parent: 3564 + - uid: 9432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-17.5 + parent: 3564 + - uid: 9433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-18.5 + parent: 3564 - proto: WallReinforcedRust entities: + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-27.5 + parent: 2 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-26.5 + parent: 2 - uid: 496 components: - type: Transform @@ -48244,6 +67789,18 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,57.5 parent: 2 + - uid: 2423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-17.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-15.5 + parent: 2 - uid: 2566 components: - type: Transform @@ -48298,12 +67855,36 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,57.5 parent: 2 + - uid: 2626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-14.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-16.5 + parent: 2 - uid: 2781 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,57.5 parent: 2 + - uid: 2786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-19.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-21.5 + parent: 2 - uid: 3089 components: - type: Transform @@ -48505,6 +68086,18 @@ entities: - type: Transform pos: 16.5,31.5 parent: 2 + - uid: 7228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-20.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-22.5 + parent: 2 - uid: 7237 components: - type: Transform @@ -48595,6 +68188,60 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-12.5 parent: 2 + - uid: 7339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-18.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-25.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-28.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-28.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-28.5 + parent: 2 + - uid: 7402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-28.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-28.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-28.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-28.5 + parent: 2 - proto: WallSolid entities: - uid: 3 @@ -48615,7 +68262,7 @@ entities: - uid: 22 components: - type: Transform - pos: 16.5,24.5 + pos: 15.5,32.5 parent: 2 - uid: 23 components: @@ -48707,6 +68354,11 @@ entities: - type: Transform pos: 21.5,-6.5 parent: 2 + - uid: 88 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 - uid: 90 components: - type: Transform @@ -48757,11 +68409,6 @@ entities: - type: Transform pos: 12.5,4.5 parent: 2 - - uid: 102 - components: - - type: Transform - pos: 13.5,4.5 - parent: 2 - uid: 103 components: - type: Transform @@ -48782,11 +68429,6 @@ entities: - type: Transform pos: 8.5,4.5 parent: 2 - - uid: 107 - components: - - type: Transform - pos: 9.5,4.5 - parent: 2 - uid: 108 components: - type: Transform @@ -48852,6 +68494,11 @@ entities: - type: Transform pos: 15.5,-13.5 parent: 2 + - uid: 137 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 - uid: 142 components: - type: Transform @@ -48862,11 +68509,26 @@ entities: - type: Transform pos: 18.5,-13.5 parent: 2 + - uid: 156 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 - uid: 158 components: - type: Transform pos: 17.5,-4.5 parent: 2 + - uid: 159 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 - uid: 163 components: - type: Transform @@ -48927,6 +68589,11 @@ entities: - type: Transform pos: 14.5,-12.5 parent: 2 + - uid: 205 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 - uid: 206 components: - type: Transform @@ -48987,6 +68654,11 @@ entities: - type: Transform pos: 8.5,-4.5 parent: 2 + - uid: 252 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 - uid: 264 components: - type: Transform @@ -49252,6 +68924,11 @@ entities: - type: Transform pos: 6.5,17.5 parent: 2 + - uid: 457 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 - uid: 458 components: - type: Transform @@ -49317,6 +68994,21 @@ entities: - type: Transform pos: 5.5,-9.5 parent: 2 + - uid: 490 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 - uid: 494 components: - type: Transform @@ -49352,16 +69044,36 @@ entities: - type: Transform pos: 7.5,8.5 parent: 2 + - uid: 515 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 - uid: 520 components: - type: Transform pos: 8.5,-9.5 parent: 2 + - uid: 535 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 - uid: 542 components: - type: Transform pos: 6.5,16.5 parent: 2 + - uid: 545 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 - uid: 549 components: - type: Transform @@ -49422,6 +69134,11 @@ entities: - type: Transform pos: 16.5,17.5 parent: 2 + - uid: 579 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 - uid: 580 components: - type: Transform @@ -49432,6 +69149,11 @@ entities: - type: Transform pos: 20.5,17.5 parent: 2 + - uid: 586 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 - uid: 587 components: - type: Transform @@ -49447,11 +69169,6 @@ entities: - type: Transform pos: 27.5,17.5 parent: 2 - - uid: 591 - components: - - type: Transform - pos: 50.5,19.5 - parent: 2 - uid: 594 components: - type: Transform @@ -49542,26 +69259,21 @@ entities: - type: Transform pos: 16.5,19.5 parent: 2 - - uid: 629 - components: - - type: Transform - pos: 24.5,14.5 - parent: 2 - uid: 630 components: - type: Transform pos: 13.5,-9.5 parent: 2 + - uid: 631 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 - uid: 632 components: - type: Transform pos: 15.5,-9.5 parent: 2 - - uid: 634 - components: - - type: Transform - pos: 24.5,16.5 - parent: 2 - uid: 645 components: - type: Transform @@ -49572,46 +69284,6 @@ entities: - type: Transform pos: 30.5,7.5 parent: 2 - - uid: 662 - components: - - type: Transform - pos: 25.5,20.5 - parent: 2 - - uid: 664 - components: - - type: Transform - pos: 26.5,20.5 - parent: 2 - - uid: 665 - components: - - type: Transform - pos: 28.5,20.5 - parent: 2 - - uid: 667 - components: - - type: Transform - pos: 32.5,22.5 - parent: 2 - - uid: 668 - components: - - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 671 - components: - - type: Transform - pos: 35.5,20.5 - parent: 2 - - uid: 672 - components: - - type: Transform - pos: 36.5,20.5 - parent: 2 - - uid: 675 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 2 - uid: 677 components: - type: Transform @@ -49635,7 +69307,7 @@ entities: - uid: 681 components: - type: Transform - pos: 16.5,23.5 + pos: 16.5,25.5 parent: 2 - uid: 702 components: @@ -49695,28 +69367,18 @@ entities: - uid: 757 components: - type: Transform - pos: 16.5,20.5 + pos: 18.5,19.5 parent: 2 - - uid: 761 + - uid: 759 components: - type: Transform - pos: 24.5,15.5 + pos: 15.5,29.5 parent: 2 - uid: 769 components: - type: Transform pos: -0.5,16.5 parent: 2 - - uid: 808 - components: - - type: Transform - pos: 32.5,-8.5 - parent: 2 - - uid: 822 - components: - - type: Transform - pos: 49.5,14.5 - parent: 2 - uid: 824 components: - type: Transform @@ -49772,20 +69434,15 @@ entities: - type: Transform pos: 36.5,22.5 parent: 2 - - uid: 972 - components: - - type: Transform - pos: 35.5,22.5 - parent: 2 - uid: 973 components: - type: Transform - pos: 35.5,21.5 + pos: 29.5,21.5 parent: 2 - uid: 974 components: - type: Transform - pos: 36.5,21.5 + pos: 25.5,21.5 parent: 2 - uid: 975 components: @@ -49822,11 +69479,6 @@ entities: - type: Transform pos: 40.5,29.5 parent: 2 - - uid: 992 - components: - - type: Transform - pos: 35.5,-8.5 - parent: 2 - uid: 1015 components: - type: Transform @@ -49922,11 +69574,6 @@ entities: - type: Transform pos: 26.5,-13.5 parent: 2 - - uid: 1070 - components: - - type: Transform - pos: 49.5,13.5 - parent: 2 - uid: 1072 components: - type: Transform @@ -50052,6 +69699,11 @@ entities: - type: Transform pos: 14.5,7.5 parent: 2 + - uid: 1170 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 - uid: 1171 components: - type: Transform @@ -50137,11 +69789,6 @@ entities: - type: Transform pos: 50.5,-0.5 parent: 2 - - uid: 1246 - components: - - type: Transform - pos: 50.5,-1.5 - parent: 2 - uid: 1276 components: - type: Transform @@ -50232,11 +69879,6 @@ entities: - type: Transform pos: 36.5,-12.5 parent: 2 - - uid: 1400 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 2 - uid: 1401 components: - type: Transform @@ -50322,105 +69964,75 @@ entities: - type: Transform pos: 25.5,-13.5 parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 - uid: 1458 components: - type: Transform pos: 44.5,-13.5 parent: 2 - - uid: 1465 - components: - - type: Transform - pos: 27.5,39.5 - parent: 2 - uid: 1467 components: - type: Transform - pos: 30.5,39.5 + pos: 28.5,32.5 parent: 2 - - uid: 1468 + - uid: 1478 components: - type: Transform - pos: 31.5,39.5 + pos: 12.5,23.5 parent: 2 - - uid: 1469 + - uid: 1484 components: - type: Transform - pos: 32.5,39.5 + pos: 24.5,8.5 parent: 2 - - uid: 1470 + - uid: 1486 components: - type: Transform - pos: 32.5,40.5 + pos: 26.5,8.5 parent: 2 - - uid: 1471 + - uid: 1498 components: - type: Transform - pos: 32.5,41.5 + pos: 35.5,15.5 parent: 2 - - uid: 1473 + - uid: 1515 components: - type: Transform - pos: 28.5,39.5 - parent: 2 - - uid: 1474 - components: - - type: Transform - pos: 27.5,20.5 - parent: 2 - - uid: 1490 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 2 - - uid: 1504 - components: - - type: Transform - pos: 49.5,12.5 - parent: 2 - - uid: 1506 - components: - - type: Transform - pos: 51.5,12.5 - parent: 2 - - uid: 1507 - components: - - type: Transform - pos: 51.5,11.5 + pos: 51.5,22.5 parent: 2 - uid: 1522 components: - type: Transform pos: 22.5,37.5 parent: 2 - - uid: 1551 + - uid: 1555 components: - type: Transform - pos: 51.5,9.5 - parent: 2 - - uid: 1553 - components: - - type: Transform - pos: 51.5,8.5 + pos: 49.5,-0.5 parent: 2 - uid: 1568 components: - type: Transform pos: 12.5,17.5 parent: 2 - - uid: 1571 + - uid: 1574 components: - type: Transform - pos: 36.5,41.5 + pos: 26.5,32.5 parent: 2 - - uid: 1572 + - uid: 1575 components: - type: Transform - pos: 36.5,40.5 + pos: 27.5,32.5 parent: 2 - - uid: 1577 + - uid: 1581 components: - type: Transform - pos: 50.5,21.5 + pos: 15.5,21.5 parent: 2 - uid: 1586 components: @@ -50430,52 +70042,17 @@ entities: - uid: 1594 components: - type: Transform - pos: 36.5,30.5 - parent: 2 - - uid: 1595 - components: - - type: Transform - pos: 35.5,29.5 + pos: 21.5,33.5 parent: 2 - uid: 1596 components: - type: Transform pos: 35.5,30.5 parent: 2 - - uid: 1602 + - uid: 1618 components: - type: Transform - pos: 43.5,33.5 - parent: 2 - - uid: 1603 - components: - - type: Transform - pos: 43.5,34.5 - parent: 2 - - uid: 1604 - components: - - type: Transform - pos: 43.5,35.5 - parent: 2 - - uid: 1605 - components: - - type: Transform - pos: 44.5,35.5 - parent: 2 - - uid: 1606 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 2 - - uid: 1607 - components: - - type: Transform - pos: 47.5,35.5 - parent: 2 - - uid: 1608 - components: - - type: Transform - pos: 46.5,35.5 + pos: 22.5,21.5 parent: 2 - uid: 1627 components: @@ -50487,10 +70064,10 @@ entities: - type: Transform pos: 35.5,28.5 parent: 2 - - uid: 1713 + - uid: 1633 components: - type: Transform - pos: 30.5,24.5 + pos: 35.5,32.5 parent: 2 - uid: 1714 components: @@ -50502,41 +70079,31 @@ entities: - type: Transform pos: 28.5,21.5 parent: 2 - - uid: 1720 + - uid: 1744 components: - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 1729 - components: - - type: Transform - pos: 30.5,32.5 - parent: 2 - - uid: 1742 - components: - - type: Transform - pos: 28.5,22.5 + pos: 21.5,21.5 parent: 2 - uid: 1745 components: - type: Transform - pos: 32.5,24.5 + pos: 40.5,-13.5 parent: 2 - uid: 1754 components: - type: Transform - pos: 32.5,21.5 + pos: 39.5,-13.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: 24.5,21.5 parent: 2 - uid: 1761 components: - type: Transform pos: 31.5,24.5 parent: 2 - - uid: 1762 - components: - - type: Transform - pos: 29.5,24.5 - parent: 2 - uid: 1763 components: - type: Transform @@ -50547,6 +70114,41 @@ entities: - type: Transform pos: 31.5,25.5 parent: 2 + - uid: 1770 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 - uid: 1800 components: - type: Transform @@ -50560,37 +70162,32 @@ entities: - uid: 1803 components: - type: Transform - pos: 10.5,31.5 + pos: 19.5,25.5 parent: 2 - uid: 1804 components: - type: Transform - pos: 10.5,30.5 + pos: 15.5,22.5 parent: 2 - uid: 1806 components: - type: Transform - pos: 10.5,29.5 - parent: 2 - - uid: 1807 - components: - - type: Transform - pos: 11.5,29.5 + pos: 11.5,32.5 parent: 2 - uid: 1808 components: - type: Transform - pos: 12.5,29.5 + pos: 12.5,21.5 parent: 2 - uid: 1809 components: - type: Transform - pos: 14.5,29.5 + pos: 15.5,28.5 parent: 2 - uid: 1810 components: - type: Transform - pos: 15.5,29.5 + pos: 15.5,26.5 parent: 2 - uid: 1833 components: @@ -50622,16 +70219,61 @@ entities: - type: Transform pos: 49.5,-4.5 parent: 2 + - uid: 1897 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 - uid: 1926 components: - type: Transform pos: 53.5,19.5 parent: 2 + - uid: 1940 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 - uid: 1944 components: - type: Transform pos: 49.5,18.5 parent: 2 + - uid: 1948 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 - uid: 1969 components: - type: Transform @@ -50652,6 +70294,11 @@ entities: - type: Transform pos: 57.5,3.5 parent: 2 + - uid: 1981 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 - uid: 1982 components: - type: Transform @@ -50722,6 +70369,11 @@ entities: - type: Transform pos: 62.5,19.5 parent: 2 + - uid: 2042 + components: + - type: Transform + pos: 65.5,25.5 + parent: 2 - uid: 2060 components: - type: Transform @@ -50767,11 +70419,6 @@ entities: - type: Transform pos: 55.5,39.5 parent: 2 - - uid: 2085 - components: - - type: Transform - pos: 55.5,38.5 - parent: 2 - uid: 2086 components: - type: Transform @@ -50817,16 +70464,6 @@ entities: - type: Transform pos: 49.5,-12.5 parent: 2 - - uid: 2207 - components: - - type: Transform - pos: 42.5,21.5 - parent: 2 - - uid: 2208 - components: - - type: Transform - pos: 41.5,21.5 - parent: 2 - uid: 2209 components: - type: Transform @@ -50907,26 +70544,16 @@ entities: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 2266 + - uid: 2258 components: - type: Transform - pos: 44.5,26.5 + pos: 25.5,8.5 parent: 2 - uid: 2268 components: - type: Transform pos: 43.5,26.5 parent: 2 - - uid: 2269 - components: - - type: Transform - pos: 47.5,26.5 - parent: 2 - - uid: 2270 - components: - - type: Transform - pos: 46.5,26.5 - parent: 2 - uid: 2272 components: - type: Transform @@ -51177,6 +70804,11 @@ entities: - type: Transform pos: 59.5,41.5 parent: 2 + - uid: 2543 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 - uid: 2544 components: - type: Transform @@ -51232,6 +70864,11 @@ entities: - type: Transform pos: 58.5,43.5 parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 - uid: 2558 components: - type: Transform @@ -51322,55 +70959,40 @@ entities: - type: Transform pos: 61.5,63.5 parent: 2 - - uid: 2622 - components: - - type: Transform - pos: 43.5,-9.5 - parent: 2 - - uid: 2625 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 2 - uid: 2743 components: - type: Transform pos: 9.5,-9.5 parent: 2 - - uid: 2777 - components: - - type: Transform - pos: 22.5,-12.5 - parent: 2 - uid: 2778 components: - type: Transform pos: 22.5,-13.5 parent: 2 - - uid: 2783 + - uid: 2864 components: - type: Transform - pos: 11.5,-10.5 + pos: 36.5,-10.5 parent: 2 - - uid: 2784 + - uid: 2902 components: - type: Transform - pos: 11.5,-12.5 + pos: 36.5,20.5 parent: 2 - - uid: 2785 + - uid: 2905 components: - type: Transform - pos: 8.5,-10.5 + pos: 36.5,32.5 parent: 2 - - uid: 2786 + - uid: 2910 components: - type: Transform - pos: 8.5,-12.5 + pos: 36.5,28.5 parent: 2 - - uid: 2859 + - uid: 2911 components: - type: Transform - pos: 24.5,-2.5 + pos: 38.5,28.5 parent: 2 - uid: 3018 components: @@ -51397,50 +71019,75 @@ entities: - type: Transform pos: -3.5,16.5 parent: 2 + - uid: 3103 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 - uid: 3106 components: - type: Transform pos: 15.5,40.5 parent: 2 - - uid: 3232 + - uid: 3183 components: - type: Transform - pos: 24.5,0.5 - parent: 2 - - uid: 3245 - components: - - type: Transform - pos: 24.5,-1.5 - parent: 2 - - uid: 3249 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 2 - - uid: 3394 - components: - - type: Transform - pos: 39.5,-10.5 + pos: 38.5,32.5 parent: 2 - uid: 3452 components: - type: Transform pos: 10.5,3.5 parent: 2 - - uid: 3818 + - uid: 3577 components: - type: Transform - pos: 41.5,-10.5 + pos: 55.5,38.5 parent: 2 - - uid: 3819 + - uid: 3693 components: - type: Transform - pos: 41.5,-9.5 + pos: 60.5,38.5 parent: 2 - - uid: 4006 + - uid: 3697 components: - type: Transform - pos: 39.5,-9.5 + pos: 42.5,22.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 29.5,17.5 parent: 2 - uid: 4249 components: @@ -51532,15 +71179,15 @@ entities: - type: Transform pos: 16.5,55.5 parent: 2 - - uid: 4510 + - uid: 4508 components: - type: Transform - pos: 20.5,20.5 + pos: 19.5,19.5 parent: 2 - - uid: 4512 + - uid: 4511 components: - type: Transform - pos: 24.5,20.5 + pos: 30.5,17.5 parent: 2 - uid: 4514 components: @@ -51677,6 +71324,11 @@ entities: - type: Transform pos: 57.5,45.5 parent: 2 + - uid: 4718 + components: + - type: Transform + pos: 60.5,40.5 + parent: 2 - uid: 4782 components: - type: Transform @@ -51692,6 +71344,11 @@ entities: - type: Transform pos: 45.5,-9.5 parent: 2 + - uid: 4811 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 - uid: 4929 components: - type: Transform @@ -51707,11 +71364,6 @@ entities: - type: Transform pos: 56.5,42.5 parent: 2 - - uid: 5232 - components: - - type: Transform - pos: 45.5,35.5 - parent: 2 - uid: 5355 components: - type: Transform @@ -51742,31 +71394,176 @@ entities: - type: Transform pos: 57.5,7.5 parent: 2 - - uid: 5633 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - uid: 5725 components: - type: Transform pos: 31.5,32.5 parent: 2 + - uid: 5847 + components: + - type: Transform + pos: 30.5,32.5 + parent: 2 - uid: 6052 components: - type: Transform pos: 61.5,61.5 parent: 2 - - uid: 6149 + - uid: 6346 components: - type: Transform - pos: 38.5,30.5 + pos: 48.5,1.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: 13.5,1.5 parent: 2 - uid: 6852 components: - type: Transform pos: -5.5,16.5 parent: 2 + - uid: 7124 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + pos: 65.5,24.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + pos: 65.5,23.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + pos: 65.5,26.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: 65.5,27.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + pos: 55.5,37.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + pos: 54.5,37.5 + parent: 2 + - uid: 11188 + components: + - type: Transform + pos: 65.5,22.5 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 + - uid: 11190 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - uid: 11194 + components: + - type: Transform + pos: 65.5,16.5 + parent: 2 + - uid: 11195 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - uid: 11197 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 11198 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - uid: 11199 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 11200 + components: + - type: Transform + pos: 65.5,10.5 + parent: 2 - proto: WallSolidRust entities: - uid: 209 @@ -52052,24 +71849,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,52.5 parent: 2 - - uid: 4508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,20.5 - parent: 2 - - uid: 4509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,20.5 - parent: 2 - - uid: 4511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,20.5 - parent: 2 - uid: 4515 components: - type: Transform @@ -52356,13 +72135,6 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,11.5 parent: 2 -- proto: WardrobeBlackFilled - entities: - - uid: 7009 - components: - - type: Transform - pos: 58.5,51.5 - parent: 2 - proto: WardrobeBlueFilled entities: - uid: 2158 @@ -52370,11 +72142,16 @@ entities: - type: Transform pos: 66.5,1.5 parent: 2 - - uid: 7010 + - uid: 7023 components: - type: Transform - pos: 58.5,50.5 + pos: 6.5,0.5 parent: 2 + - uid: 10443 + components: + - type: Transform + pos: 29.5,-57.5 + parent: 3564 - proto: WardrobeChapelFilled entities: - uid: 7271 @@ -52411,23 +72188,16 @@ entities: - type: Transform pos: 66.5,-1.5 parent: 2 - - uid: 7012 + - uid: 8585 components: - type: Transform - pos: 58.5,46.5 + pos: 8.5,0.5 parent: 2 - - uid: 7400 + - uid: 10444 components: - type: Transform - pos: 6.5,0.5 - parent: 2 -- proto: WardrobePinkFilled - entities: - - uid: 7011 - components: - - type: Transform - pos: 58.5,47.5 - parent: 2 + pos: 30.5,-57.5 + parent: 3564 - proto: WardrobePrisonFilled entities: - uid: 1359 @@ -52440,6 +72210,46 @@ entities: - type: Transform pos: 39.5,-2.5 parent: 2 + - uid: 10316 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 3564 + - uid: 10317 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 3564 + - uid: 10318 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 3564 + - uid: 10319 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 3564 + - uid: 10320 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 3564 + - uid: 10321 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 3564 + - uid: 10322 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 3564 + - uid: 10442 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 3564 - proto: WardrobeSecurityFilled entities: - uid: 7210 @@ -52447,51 +72257,81 @@ entities: - type: Transform pos: 38.5,-2.5 parent: 2 +- proto: WardrobeYellowFilled + entities: + - uid: 8296 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 - proto: WarningN2 entities: - - uid: 1746 + - uid: 358 components: - type: Transform - pos: 19.5,28.5 + pos: 26.5,-1.5 parent: 2 + - uid: 9672 + components: + - type: Transform + pos: 13.5,-59.5 + parent: 3564 - proto: WarningO2 entities: - - uid: 1682 + - uid: 326 components: - type: Transform - pos: 19.5,30.5 + pos: 24.5,-1.5 parent: 2 -- proto: WarningPlasma - entities: - - uid: 1683 + - uid: 9671 components: - type: Transform - pos: 22.5,30.5 - parent: 2 + pos: 11.5,-59.5 + parent: 3564 - proto: WarningWaste entities: - - uid: 1681 + - uid: 3111 components: - type: Transform - pos: 22.5,28.5 + pos: 24.5,-3.5 parent: 2 + - uid: 9687 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 3564 - proto: WaterTankFull entities: - - uid: 2250 + - uid: 1474 components: - type: Transform - pos: -3.5,7.5 + pos: 37.5,23.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: 12.5,-7.5 parent: 2 - uid: 7463 components: - type: Transform pos: 49.5,30.5 parent: 2 - - uid: 7477 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2 - uid: 7498 components: - type: Transform @@ -52507,40 +72347,13 @@ entities: - type: Transform pos: 15.5,-11.5 parent: 2 -- proto: WaterTankHighCapacity - entities: - - uid: 132 + - uid: 11515 components: - type: Transform - pos: 12.5,-8.5 - parent: 2 -- proto: WaterVaporCanister - entities: - - uid: 798 - components: - - type: MetaData - desc: A canister that can contain any type of gas. This one contains a good time. Use sparingly! - name: party gas canister - - type: Transform - pos: 27.5,-8.5 - parent: 2 - - type: Pullable - prevFixedRotation: True - - uid: 1593 - components: - - type: MetaData - desc: A canister that can contain any type of gas. This one contains a good time. Use sparingly! - name: party gas canister - - type: Transform - pos: 22.5,0.5 + pos: 22.5,33.5 parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 2392 - components: - - type: Transform - pos: 48.5,-0.5 - parent: 2 - uid: 7133 components: - type: Transform @@ -52556,6 +72369,16 @@ entities: - type: Transform pos: 10.5,-7.5 parent: 2 + - uid: 10417 + components: + - type: Transform + pos: 33.5,-69.5 + parent: 3564 + - uid: 11218 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 - proto: WeaponEnergyTurretAI entities: - uid: 1540 @@ -52563,128 +72386,86 @@ entities: - type: Transform pos: 33.5,55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 1920 components: - type: Transform pos: 31.5,55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2188 components: - type: Transform pos: 34.5,50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2607 components: - type: Transform pos: 27.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2762 components: - type: Transform pos: 21.5,57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2764 components: - type: Transform pos: 20.5,57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2766 components: - type: Transform pos: 19.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 2767 components: - type: Transform pos: 23.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7555 components: - type: Transform pos: 25.5,57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7622 components: - type: Transform pos: 37.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7628 components: - type: Transform pos: 42.5,47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7629 components: - type: Transform pos: 50.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - uid: 7630 components: - type: Transform pos: 49.5,50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 8332 - proto: WeaponEnergyTurretAIControlPanel entities: - - uid: 8332 + - uid: 4557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,59.5 + rot: 3.141592653589793 rad + pos: 29.5,49.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,56.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,46.5 parent: 2 - - type: DeviceList - devices: - - 2764 - - 2762 - - 2766 - - 2767 - - 7555 - - 2607 - - 2188 - - 1920 - - 1540 - - 7622 - - 7628 - - 7630 - - 7629 - proto: Welder entities: - uid: 7549 @@ -52694,26 +72475,51 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 1728 + - uid: 2164 components: - type: Transform - pos: 30.5,37.5 + pos: 36.5,30.5 parent: 2 - - uid: 2551 + - uid: 3274 components: - type: Transform - pos: 31.5,37.5 + pos: 47.5,27.5 parent: 2 - - uid: 7476 + - uid: 3311 components: - type: Transform - pos: 47.5,29.5 + pos: 12.5,-6.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: 33.5,-10.5 parent: 2 - uid: 7672 components: - type: Transform pos: 15.5,-12.5 parent: 2 + - uid: 8355 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 - proto: Windoor entities: - uid: 32 @@ -52727,10 +72533,17 @@ entities: - type: Transform pos: 19.5,3.5 parent: 2 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,4.5 + parent: 2 - uid: 59 components: - type: Transform - pos: 43.5,21.5 + rot: 1.5707963267948966 rad + pos: 40.5,23.5 parent: 2 - uid: 80 components: @@ -52759,12 +72572,6 @@ entities: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,5.5 - parent: 2 - uid: 257 components: - type: Transform @@ -52797,11 +72604,11 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,12.5 parent: 2 - - uid: 635 + - uid: 697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,17.5 + rot: 1.5707963267948966 rad + pos: 14.5,5.5 parent: 2 - uid: 792 components: @@ -52818,11 +72625,46 @@ entities: - type: Transform pos: 17.5,8.5 parent: 2 - - uid: 1170 + - uid: 1291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,17.5 + rot: 1.5707963267948966 rad + pos: 12.5,26.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-9.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 61.5,42.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,24.5 parent: 2 - uid: 1945 components: @@ -52842,10 +72684,10 @@ entities: rot: 3.141592653589793 rad pos: 58.5,11.5 parent: 2 - - uid: 2271 + - uid: 2132 components: - type: Transform - pos: 45.5,26.5 + pos: 37.5,32.5 parent: 2 - uid: 2380 components: @@ -52869,46 +72711,283 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,16.5 parent: 2 + - uid: 3171 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 - uid: 3234 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,16.5 parent: 2 -- proto: WindoorHydroponicsLocked - entities: - - uid: 139 + - uid: 3313 components: - type: Transform - pos: 19.5,-4.5 + rot: 1.5707963267948966 rad + pos: 48.5,25.5 parent: 2 - - uid: 376 + - uid: 3760 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: 61.5,40.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,48.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: 43.5,35.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 7387 components: - type: Transform pos: 18.5,-4.5 parent: 2 -- proto: WindoorJanitorLocked - entities: - - uid: 176 + - uid: 7414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,6.5 + pos: 43.5,22.5 parent: 2 - - uid: 186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,5.5 - parent: 2 -- proto: WindoorKitchenHydroponicsLocked - entities: - - uid: 2680 + - uid: 8367 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-8.5 + pos: 31.5,34.5 parent: 2 + - uid: 8392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,31.5 + parent: 2 + - uid: 10344 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - uid: 10345 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 3564 + - uid: 10346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-26.5 + parent: 3564 + - uid: 10347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-27.5 + parent: 3564 + - uid: 10348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 3564 + - uid: 10349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-38.5 + parent: 3564 + - uid: 10350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 3564 + - uid: 10351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-34.5 + parent: 3564 + - uid: 10352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 + parent: 3564 + - uid: 10353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 3564 + - uid: 10354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-42.5 + parent: 3564 + - uid: 10355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-42.5 + parent: 3564 + - uid: 10356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-46.5 + parent: 3564 + - uid: 10357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-46.5 + parent: 3564 + - uid: 10358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-46.5 + parent: 3564 + - uid: 10359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-46.5 + parent: 3564 + - uid: 10360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 3564 + - uid: 10361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-50.5 + parent: 3564 + - uid: 10362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-50.5 + parent: 3564 + - uid: 10363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 3564 + - uid: 10364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-54.5 + parent: 3564 + - uid: 10365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-54.5 + parent: 3564 + - uid: 10366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-54.5 + parent: 3564 + - uid: 10367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-54.5 + parent: 3564 + - uid: 10375 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 3564 + - uid: 10427 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 107 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 10373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-59.5 + parent: 3564 + - uid: 10374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-58.5 + parent: 3564 + - uid: 10376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-61.5 + parent: 3564 + - uid: 10377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-66.5 + parent: 3564 - proto: WindoorSecureChapelLocked entities: - uid: 356 @@ -52930,12 +73009,22 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,11.5 parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 - uid: 2222 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,7.5 parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 - proto: WindoorSecureCommandLocked entities: - uid: 125 @@ -52954,6 +73043,18 @@ entities: - type: AccessReader access: - - Captain + - uid: 692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,50.5 + parent: 2 + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,50.5 + parent: 2 - uid: 2399 components: - type: Transform @@ -52963,50 +73064,69 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -122722.266 + secondsUntilStateChange: -239673.5 state: Opening - type: Airlock autoClose: False - - uid: 2400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,25.5 - parent: 2 - uid: 3814 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,31.5 parent: 2 + - uid: 4601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,50.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,54.5 + parent: 2 - proto: WindoorSecureEngineeringLocked entities: + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 - uid: 321 components: - type: Transform pos: 60.5,60.5 parent: 2 + - uid: 1365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 - uid: 2645 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 2267 + - uid: 8396 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,26.5 + pos: 33.5,36.5 parent: 2 -- proto: WindoorSecureKitchenLocked - entities: - - uid: 1487 + - uid: 8476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-7.5 + rot: 1.5707963267948966 rad + pos: 21.5,34.5 parent: 2 - proto: WindoorSecureMedicalLocked entities: @@ -53045,14 +73165,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,11.5 parent: 2 -- proto: WindoorSecureScienceLocked - entities: - - uid: 2198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,9.5 - parent: 2 - proto: WindoorSecureSecurityLawyerLocked entities: - uid: 1231 @@ -53061,6 +73173,52 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,0.5 parent: 2 + - uid: 10329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-32.5 + parent: 3564 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10330: + - - DoorStatus + - DoorBolt + - uid: 10330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-32.5 + parent: 3564 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10329: + - - DoorStatus + - DoorBolt + - uid: 10368 + components: + - type: Transform + pos: 22.5,-62.5 + parent: 3564 + - uid: 10369 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 3564 + - uid: 10370 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 3564 + - uid: 10371 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 3564 - proto: WindoorSecureSecurityLocked entities: - uid: 1053 @@ -53075,6 +73233,13 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,-2.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1441: + - - DoorStatus + - DoorBolt - uid: 1364 components: - type: Transform @@ -53086,44 +73251,21 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-2.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1097: + - - DoorStatus + - DoorBolt + - uid: 10372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-28.5 + parent: 3564 - proto: WindowDirectional entities: - - uid: 168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 2 - - uid: 216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 2 - - uid: 223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,5.5 - parent: 2 - - uid: 235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 2 - - uid: 255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 2 - - uid: 425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 2 - uid: 471 components: - type: Transform @@ -53304,24 +73446,6 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,1.5 parent: 2 - - uid: 1451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 2 - - uid: 1484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 2 - - uid: 1533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 2 - uid: 2002 components: - type: Transform @@ -53380,29 +73504,53 @@ entities: - type: Transform pos: 53.5,35.5 parent: 2 - - uid: 4004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 2 - - uid: 4005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 2 - - uid: 7296 + - uid: 6014 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-7.5 + pos: 30.5,-10.5 parent: 2 - - uid: 7297 + - uid: 6382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-7.5 + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-7.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-7.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-7.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-7.5 parent: 2 - uid: 7298 components: @@ -53416,6 +73564,18 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,12.5 parent: 2 + - uid: 8365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,33.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,35.5 + parent: 2 - proto: WindowReinforcedDirectional entities: - uid: 20 @@ -53510,17 +73670,17 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-0.5 parent: 2 - - uid: 1071 - components: - - type: Transform - pos: 53.5,7.5 - parent: 2 - uid: 1101 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,1.5 parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 - uid: 1322 components: - type: Transform @@ -53539,24 +73699,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-0.5 parent: 2 - - uid: 1730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,33.5 - parent: 2 - - uid: 1758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,35.5 - parent: 2 - - uid: 1791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,34.5 - parent: 2 - uid: 1886 components: - type: Transform @@ -53581,33 +73723,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,38.5 parent: 2 - - uid: 2134 - components: - - type: Transform - pos: 52.5,7.5 - parent: 2 - - uid: 2197 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - - uid: 2199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,6.5 - parent: 2 - - uid: 2200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,8.5 - parent: 2 - - uid: 2201 - components: - - type: Transform - pos: 46.5,6.5 - parent: 2 - uid: 2229 components: - type: Transform @@ -53644,6 +73759,12 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,61.5 parent: 2 + - uid: 2629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,11.5 + parent: 2 - uid: 2631 components: - type: Transform @@ -53684,6 +73805,12 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,29.5 parent: 2 + - uid: 3784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,42.5 + parent: 2 - uid: 3811 components: - type: Transform @@ -53696,6 +73823,23 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,34.5 parent: 2 + - uid: 5343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,34.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,35.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: 42.5,35.5 + parent: 2 - uid: 7285 components: - type: Transform @@ -53713,6 +73857,95 @@ entities: rot: 3.141592653589793 rad pos: 54.5,32.5 parent: 2 + - uid: 7415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,42.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,42.5 + parent: 2 + - uid: 11201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,33.5 + parent: 2 + - uid: 11202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,32.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,31.5 + parent: 2 + - uid: 11204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,30.5 + parent: 2 + - uid: 11205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,29.5 + parent: 2 + - uid: 11206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,28.5 + parent: 2 + - uid: 11357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,15.5 + parent: 2 + - uid: 11358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,14.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - uid: 11360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 + - uid: 11361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 2 - proto: Wirecutter entities: - uid: 7520 @@ -53720,30 +73953,51 @@ entities: - type: Transform pos: 17.5,0.5 parent: 2 -- proto: WoodDoor - entities: - - uid: 7157 - components: - - type: Transform - pos: 5.5,8.5 - parent: 2 - proto: Wrench entities: - - uid: 3226 + - uid: 2182 components: - type: Transform - pos: 22.422697,-0.5009035 + pos: 53.5,3.5 parent: 2 - - uid: 7654 + - uid: 3161 components: - type: Transform - pos: 26.5,-8.5 + pos: 30.5,8.5 parent: 2 -- proto: WristwatchGold - entities: - - uid: 7732 + - uid: 6350 components: - type: Transform - pos: 62.5,7.5 + pos: 45.5,35.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 11516 + components: + - type: Transform + pos: 17.5,33.5 parent: 2 ... diff --git a/Resources/Prototypes/Maps/relic.yml b/Resources/Prototypes/Maps/relic.yml index 1cfa5c66ec..74476455d1 100644 --- a/Resources/Prototypes/Maps/relic.yml +++ b/Resources/Prototypes/Maps/relic.yml @@ -2,14 +2,16 @@ id: Relic mapName: 'Relic' mapPath: /Maps/relic.yml - minPlayers: 10 - maxPlayers: 50 + maxRandomOffset: 0 + randomRotation: false + minPlayers: 15 + maxPlayers: 35 stations: Relic: stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Relic Station {1}' + mapNameTemplate: '{0} Relic Station SS13' nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'OG' @@ -19,23 +21,24 @@ shuttlePath: /Maps/Shuttles/arrivals_relic.yml - type: StationCargoShuttle path: /Maps/Shuttles/cargo_relic.yml + - type: GridSpawn + groups: + trade: !type:GridSpawnGroup + minCount: 0 + maxCount: 0 + paths: + - /Maps/Shuttles/trading_outpost.yml - type: StationJobs availableJobs: - #command (7) + #command (6) Captain: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] HeadOfSecurity: [ 1, 1 ] ChiefMedicalOfficer: [ 1, 1 ] ChiefEngineer: [ 1, 1 ] ResearchDirector: [ 1, 1 ] - Quartermaster: [ 1, 1 ] - #service (6 - 7) - Bartender: [ 1, 1 ] - Botanist: [ 1, 2 ] - Chef: [ 1, 1 ] - Janitor: [ 1, 1 ] + #service (1) Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] #engineering (4) AtmosphericTechnician: [ 2, 2 ] StationEngineer: [ 2, 2 ] @@ -45,8 +48,8 @@ MedicalDoctor: [ 2, 2 ] Paramedic: [ 1, 1 ] MedicalIntern: [ 2, 2 ] #intern, not counted - #science (1 - 3) - Scientist: [ 1, 3 ] + #science (1 - 2) + Scientist: [ 1, 2 ] ResearchAssistant: [ 2, 2 ] #intern, not counted #security (4 - 5) Warden: [ 1, 1 ] @@ -54,10 +57,8 @@ Detective: [ 1, 1 ] SecurityCadet: [ 2, 2 ] #intern, not counted Lawyer: [ 1, 1 ] - #supply (2) - CargoTechnician: [ 2, 2 ] + #supply (0) #civilian (1+) Passenger: [ -1, -1 ] #infinite, not counted - #silicon (3) + #silicon (1) StationAi: [ 1, 1 ] - Borg: [ 2, 2 ] diff --git a/Resources/Prototypes/Parallaxes/relic.yml b/Resources/Prototypes/Parallaxes/relic.yml new file mode 100644 index 0000000000..ba72af7ace --- /dev/null +++ b/Resources/Prototypes/Parallaxes/relic.yml @@ -0,0 +1,9 @@ +- type: parallax + id: RelicStation + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/Parallaxes/oldspace.png" + slowness: 0.0 + scrolling: "-0.25, 0" + scale: "1, 1" diff --git a/Resources/Textures/Parallaxes/oldspace.png b/Resources/Textures/Parallaxes/oldspace.png new file mode 100644 index 0000000000000000000000000000000000000000..7960ffaf44fc5ad95e7649fa8bd27b515b5331ce GIT binary patch literal 790 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=DjSK$uZf!>a+Pp*=Gsq9nrC$0|8LS1&OoKPgqOBDVmjnt{Q_ zzM>#8IXksPAt^OIGtXB2{qFth3YjUk>fxro2EGN(sTr9bRYj@6RemAKRoTgwDeCri zyj(UFRzMSSQ%e#RDspr3imfVamB0pD0ofp7eI+}aqLehNAQv~N3Lwu`DWjyMz)D}g zyu4hm+*mKaC|%#s($Z4jz)0W7NEfI=x41H|B(Xv_uUHvsfJi^MBT&`V?*5(W8)NaQ$q`*G{Yn%sP!e8 zX$brCilM;(3=n;gjJ~0s0m#W9wv~TTW-8DXAS>+*ZNTywmu*id1#}B#We37?rj(1 zxa5}^@``NzcYML8ipqxO?{&-!3Q8P`2Luh>W-RNR&N!u9P;gr6!>6)`E&6WToPV(Q zdGhi=y)+NLJFSmdxm}KUD;c`Q-EwrfZhfG5A(sVLxPKA1%I+;E1t(6Q6(IY9bGu!l zSV5TencWAhc9yoQ_%LPt$`$3x-*|3O#H(2C)Emwm-*`MSzBf;u&+_HKl*TBXT;DlL z4%|xiALddC^XnE{BlT&`>s{~Mt(4{pYie6E+t%qt{a7!Mb#PM7l?(eq aKQYCBDZckgc<~ER;`DU&b6Mw<&;$T;XdDy( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Parallaxes/oldspace.png.yml b/Resources/Textures/Parallaxes/oldspace.png.yml new file mode 100644 index 0000000000..a2cfb0a1fe --- /dev/null +++ b/Resources/Textures/Parallaxes/oldspace.png.yml @@ -0,0 +1 @@ +preload: false From 80cfd8041d552c33270b301c5aa83eef9727cf3c Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 28 Aug 2025 17:41:45 +0000 Subject: [PATCH 184/194] Automatic changelog update --- Resources/Changelog/Maps.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Resources/Changelog/Maps.yml b/Resources/Changelog/Maps.yml index 1202c255af..a9b6223ec3 100644 --- a/Resources/Changelog/Maps.yml +++ b/Resources/Changelog/Maps.yml @@ -566,4 +566,19 @@ id: 69 time: '2025-08-26T08:32:58.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39330 +- author: Vortebo + changes: + - message: On Relic, added the prison station. + type: Add + - message: On Relic, Cargo has been removed, along with the trade station. Botany, + the Janitor's closet, and the bar have also been removed. + type: Remove + - message: On Relic, Atmospherics has been relocated, with accompanying pipe adjustments. + The layouts and contents of Engineering, Science, Security, and many individual + rooms have been modified. The cargo shuttle is now a prison shuttle. The arrivals + shuttle now flies in the correct direction. + type: Tweak + id: 70 + time: '2025-08-28T17:40:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39215 Order: 1 From ff54dcc2f433eceda3b213185174facf343351dd Mon Sep 17 00:00:00 2001 From: qwerltaz <69696513+qwerltaz@users.noreply.github.com> Date: Thu, 28 Aug 2025 19:41:52 +0200 Subject: [PATCH 185/194] box station: tweak hop office (#39779) * fix box station hop office * fax machine above hop chair * paper bin, folder, stamps * fix table uid --- Resources/Maps/box.yml | 356 ++++++++++++++++++----------------------- 1 file changed, 154 insertions(+), 202 deletions(-) diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index b47c15cf62..cf37eabfca 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -4,8 +4,8 @@ meta: engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 08/18/2025 19:36:14 - entityCount: 28741 + time: 08/20/2025 13:48:01 + entityCount: 28742 maps: - 780 grids: @@ -14938,9 +14938,6 @@ entities: - type: Transform pos: 24.5,16.5 parent: 8364 - - type: Door - secondsUntilStateChange: -144181.02 - state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True @@ -23044,6 +23041,11 @@ entities: parent: 8364 - proto: BoxFolderYellow entities: + - uid: 5745 + components: + - type: Transform + pos: -11.496632,-21.394827 + parent: 8364 - uid: 10197 components: - type: Transform @@ -23558,6 +23560,11 @@ entities: - type: Transform pos: -66.5,15.5 parent: 8364 + - uid: 561 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 8364 - uid: 564 components: - type: Transform @@ -28908,6 +28915,11 @@ entities: - type: Transform pos: 47.5,19.5 parent: 8364 + - uid: 11765 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 8364 - uid: 11767 components: - type: Transform @@ -45333,6 +45345,11 @@ entities: - type: Transform pos: -3.5,-20.5 parent: 8364 + - uid: 28203 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 8364 - uid: 28295 components: - type: Transform @@ -64245,6 +64262,12 @@ entities: parent: 8364 - proto: CarpetSBlue entities: + - uid: 300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 8364 - uid: 941 components: - type: Transform @@ -64280,11 +64303,6 @@ entities: - type: Transform pos: -11.5,-13.5 parent: 8364 - - uid: 5563 - components: - - type: Transform - pos: -9.5,-23.5 - parent: 8364 - uid: 5564 components: - type: Transform @@ -64300,11 +64318,6 @@ entities: - type: Transform pos: -9.5,-24.5 parent: 8364 - - uid: 5568 - components: - - type: Transform - pos: -10.5,-22.5 - parent: 8364 - uid: 5569 components: - type: Transform @@ -64325,6 +64338,11 @@ entities: - type: Transform pos: -9.5,-16.5 parent: 8364 + - uid: 6389 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 8364 - uid: 8198 components: - type: Transform @@ -69464,6 +69482,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-43.5 parent: 8364 + - uid: 20698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.441114,-24.41229 + parent: 8364 - uid: 21275 components: - type: Transform @@ -74470,12 +74494,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-15.5 parent: 8364 - - uid: 5869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 8364 - uid: 5873 components: - type: Transform @@ -74657,6 +74675,12 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-57.5 parent: 8364 + - uid: 17678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 8364 - uid: 18634 components: - type: Transform @@ -74899,6 +74923,12 @@ entities: parent: 8364 - proto: ComputerCrewMonitoring entities: + - uid: 5340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 8364 - uid: 5525 components: - type: Transform @@ -74995,10 +75025,11 @@ entities: parent: 8364 - proto: ComputerFundingAllocation entities: - - uid: 20698 + - uid: 5563 components: - type: Transform - pos: -11.5,-21.5 + rot: -1.5707963267948966 rad + pos: -9.5,-26.5 parent: 8364 - proto: ComputerId entities: @@ -75008,7 +75039,7 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 8364 - - uid: 5635 + - uid: 5608 components: - type: Transform rot: 3.141592653589793 rad @@ -75240,12 +75271,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,44.5 parent: 8364 - - uid: 9260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 8364 - uid: 19297 components: - type: Transform @@ -79060,12 +79085,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-20.5 parent: 8364 - - uid: 6209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 8364 - uid: 6210 components: - type: Transform @@ -85373,6 +85392,12 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-36.5 parent: 8364 + - uid: 5568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 8364 - uid: 5891 components: - type: Transform @@ -85397,12 +85422,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-11.5 parent: 8364 - - uid: 6207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 - parent: 8364 - uid: 6649 components: - type: Transform @@ -85734,16 +85753,16 @@ entities: - type: Transform pos: -24.5,-13.5 parent: 8364 + - uid: 5868 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 8364 - uid: 5908 components: - type: Transform pos: -6.5,-11.5 parent: 8364 - - uid: 5909 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 8364 - uid: 5910 components: - type: Transform @@ -87924,6 +87943,11 @@ entities: parent: 8364 - type: FaxMachine name: Conference Room + - uid: 5869 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 8364 - uid: 8859 components: - type: Transform @@ -88036,21 +88060,6 @@ entities: parent: 8364 - proto: filingCabinet entities: - - uid: 5523 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 8364 - - uid: 5608 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 8364 - - uid: 5877 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 8364 - uid: 15378 components: - type: Transform @@ -88063,11 +88072,6 @@ entities: - type: Transform pos: 69.5,-49.5 parent: 8364 - - uid: 5340 - components: - - type: Transform - pos: -9.5,-21.5 - parent: 8364 - uid: 7274 components: - type: Transform @@ -88100,6 +88104,11 @@ entities: - type: Transform pos: 40.5,-18.5 parent: 8364 + - uid: 5523 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 8364 - uid: 8767 components: - type: Transform @@ -88127,6 +88136,21 @@ entities: - type: Transform pos: -7.5,-65.5 parent: 8364 + - uid: 5635 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 8364 + - uid: 5645 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 8364 + - uid: 5646 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 8364 - uid: 7293 components: - type: Transform @@ -90401,17 +90425,11 @@ entities: - type: Transform pos: 18.5,-13.5 parent: 8364 - - type: Door - secondsUntilStateChange: -51412.016 - state: Closing - uid: 13388 components: - type: Transform pos: 18.5,-14.5 parent: 8364 - - type: Door - secondsUntilStateChange: -51447.715 - state: Closing - uid: 13389 components: - type: Transform @@ -90567,9 +90585,6 @@ entities: - type: Transform pos: -34.5,-14.5 parent: 8364 - - type: Door - secondsUntilStateChange: -138369.55 - state: Closing - uid: 15010 components: - type: Transform @@ -130478,16 +130493,16 @@ entities: parent: 8364 - proto: HandLabeler entities: - - uid: 561 - components: - - type: Transform - pos: -9.5991,-25.410784 - parent: 8364 - uid: 5001 components: - type: Transform pos: 38.4924,-28.821447 parent: 8364 + - uid: 5909 + components: + - type: Transform + pos: -9.530318,-27.415377 + parent: 8364 - uid: 14338 components: - type: Transform @@ -130700,7 +130715,7 @@ entities: - uid: 23250 components: - type: Transform - pos: -9.5,-23.5 + pos: -8.5,-23.5 parent: 8364 - proto: HolopadCommandHos entities: @@ -133900,10 +133915,10 @@ entities: parent: 8364 - proto: MaterialCloth entities: - - uid: 5868 + - uid: 6390 components: - type: Transform - pos: -9.522169,-25.204441 + pos: -9.606551,-24.320076 parent: 8364 - proto: MaterialDiamond1 entities: @@ -133914,10 +133929,10 @@ entities: parent: 8364 - proto: MaterialDurathread entities: - - uid: 6390 + - uid: 9260 components: - type: Transform - pos: -9.303419,-25.688816 + pos: -9.231335,-24.591099 parent: 8364 - proto: MaterialWoodPlank entities: @@ -135291,31 +135306,6 @@ entities: - type: Transform pos: 6.2533393,-15.307499 parent: 8364 - - uid: 5743 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - - uid: 5744 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - - uid: 5745 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - - uid: 5746 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - - uid: 5747 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 8364 - uid: 6426 components: - type: Transform @@ -135580,6 +135570,11 @@ entities: parent: 8364 - proto: PaperBin20 entities: + - uid: 5743 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 8364 - uid: 8551 components: - type: Transform @@ -135760,6 +135755,11 @@ entities: - type: Transform pos: 6.7796197,-15.189568 parent: 8364 + - uid: 5744 + components: + - type: Transform + pos: -13.786074,-21.56161 + parent: 8364 - uid: 5771 components: - type: Transform @@ -137015,14 +137015,6 @@ entities: - type: Transform pos: -10.5,-37.5 parent: 8364 - - uid: 5645 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 8364 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 5668 components: - type: Transform @@ -137153,6 +137145,11 @@ entities: - type: Transform pos: 73.5,-5.5 parent: 8364 + - uid: 28204 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 8364 - proto: PottedPlantRandomPlastic entities: - uid: 7185 @@ -137592,6 +137589,12 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 + - uid: 6209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 8364 - uid: 6223 components: - type: Transform @@ -139909,12 +139912,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-24.5 parent: 8364 - - uid: 28204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 8364 - uid: 28207 components: - type: Transform @@ -148488,6 +148485,11 @@ entities: parent: 8364 - proto: RubberStampApproved entities: + - uid: 5746 + components: + - type: Transform + pos: -11.069336,-21.207197 + parent: 8364 - uid: 10198 components: - type: Transform @@ -148495,6 +148497,11 @@ entities: parent: 8364 - proto: RubberStampDenied entities: + - uid: 5747 + components: + - type: Transform + pos: -11.058914,-21.499067 + parent: 8364 - uid: 14190 components: - type: Transform @@ -154347,7 +154354,7 @@ entities: parent: 8364 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 11765 + - uid: 6207 components: - type: Transform pos: -11.5,-22.5 @@ -155921,17 +155928,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Conference Room - - uid: 300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge West - uid: 301 components: - type: Transform @@ -156048,11 +156044,14 @@ entities: - uid: 28201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-26.5 + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 parent: 8364 - type: SurveillanceCamera - id: AI Entrance Airlock + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: HOP - uid: 28202 components: - type: Transform @@ -156732,28 +156731,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Closet - - uid: 16974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-7.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bridge Entrance W - - uid: 17678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Eva - uid: 17693 components: - type: Transform @@ -157010,14 +156987,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Library - - uid: 28203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-29.5 - parent: 8364 - - type: SurveillanceCamera - id: Hall Outside AI - uid: 28548 components: - type: Transform @@ -160610,6 +160579,11 @@ entities: - type: Transform pos: -9.5,-27.5 parent: 8364 + - uid: 5877 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 8364 - uid: 6123 components: - type: Transform @@ -160621,11 +160595,6 @@ entities: - type: Transform pos: -7.5,22.5 parent: 8364 - - uid: 6389 - components: - - type: Transform - pos: -9.5,-25.5 - parent: 8364 - uid: 6472 components: - type: Transform @@ -161145,6 +161114,11 @@ entities: - type: Transform pos: -13.5,-14.5 parent: 8364 + - uid: 16974 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 8364 - uid: 18581 components: - type: Transform @@ -161206,6 +161180,11 @@ entities: - type: Transform pos: 18.5,-9.5 parent: 8364 + - uid: 28725 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 8364 - proto: TargetClown entities: - uid: 7612 @@ -181875,33 +181854,6 @@ entities: - type: Transform pos: -5.5,-6.5 parent: 8364 - - uid: 5646 - components: - - type: Transform - pos: -9.5,-27.5 - parent: 8364 - - type: ContainerContainer - containers: - WeaponCapacitorCharger-powerCellContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger-slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - charger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - uid: 5680 components: - type: Transform From 0edd848e922c244bb9e98aab75a6131e0124d807 Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Sat, 30 Aug 2025 00:40:24 +0200 Subject: [PATCH 186/194] Don't network ZombifyOnDeathComponent and ZombieImmuneComponent (#39963) no networking --- Content.Shared/Zombies/ZombieImmuneComponent.cs | 2 +- Content.Shared/Zombies/ZombifyOnDeathComponent.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Zombies/ZombieImmuneComponent.cs b/Content.Shared/Zombies/ZombieImmuneComponent.cs index 18ad228363..483b1810f2 100644 --- a/Content.Shared/Zombies/ZombieImmuneComponent.cs +++ b/Content.Shared/Zombies/ZombieImmuneComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Zombies; /// /// Entities with this component cannot be zombified. /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent] public sealed partial class ZombieImmuneComponent : Component { //still no diff --git a/Content.Shared/Zombies/ZombifyOnDeathComponent.cs b/Content.Shared/Zombies/ZombifyOnDeathComponent.cs index 138ea6e409..60029aca6f 100644 --- a/Content.Shared/Zombies/ZombifyOnDeathComponent.cs +++ b/Content.Shared/Zombies/ZombifyOnDeathComponent.cs @@ -5,7 +5,7 @@ namespace Content.Shared.Zombies; /// /// Entities with this component zombify on death. /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent] public sealed partial class ZombifyOnDeathComponent : Component { //this is not the component you are looking for From c061798f4b7fa74564c625e5c15aad24a7fed71c Mon Sep 17 00:00:00 2001 From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com> Date: Fri, 29 Aug 2025 16:28:28 -0700 Subject: [PATCH 187/194] [STAGING] 1984 Derelict Syndicate Borgs (#39978) 1984 Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> --- .../Mobs/Cyborgs/base_borg_chassis.yml | 27 ++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 4b170af6be..dd6f5a570b 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -389,7 +389,7 @@ - type: entity id: BaseBorgChassisSyndicateDerelict #For assault borg and maybe others in time - parent: BaseBorgChassisSyndicate + parent: BaseBorgChassis # We don't want them to see Nukies or have syndi comms, their database is out of date abstract: true components: - type: SiliconLawProvider @@ -399,6 +399,31 @@ - type: IonStormTarget chance: 1 - type: ShowJobIcons + - type: NpcFactionMember # They're still syndicate even if they can't listen to the radio or see icons + factions: + - Syndicate + - type: Access + tags: + - NuclearOperative + - SyndicateAgent + - type: AccessReader + access: [ [ "SyndicateAgent" ], [ "NuclearOperative" ] ] + - type: IntrinsicRadioTransmitter # Copy components from base SyndiBorg but without the stuff we don't want + channels: + - Binary #1984 + - type: ActiveRadio + channels: + - Binary + - type: MovementAlwaysTouching + - type: Speech + speechSounds: SyndieBorg + allowedEmotes: + - Laugh + - type: Vocal + sounds: + Unsexed: UnisexSiliconSyndicate + - type: PointLight + color: "#dd200b" - type: entity parent: BaseBorgChassisNotIonStormable From b41cbcf696266f56134499824f41d50d5dd3581e Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Sun, 31 Aug 2025 10:58:15 +0200 Subject: [PATCH 188/194] Fix latejoinspawner on Elkridge (#40010) --- Resources/Maps/elkridge.yml | 1376 ++++++++++++++++++++++++++++++++++- 1 file changed, 1373 insertions(+), 3 deletions(-) diff --git a/Resources/Maps/elkridge.yml b/Resources/Maps/elkridge.yml index 01129f897a..e3b6021c07 100644 --- a/Resources/Maps/elkridge.yml +++ b/Resources/Maps/elkridge.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 15:38:07 - entityCount: 18654 + time: 08/31/2025 08:35:35 + entityCount: 18658 maps: - 1 grids: @@ -10918,6 +10918,8 @@ entities: - 454 - 18629 - 18628 + - type: Fixtures + fixtures: {} - uid: 811 components: - type: MetaData @@ -10945,6 +10947,8 @@ entities: - 197 - 243 - 1619 + - type: Fixtures + fixtures: {} - uid: 813 components: - type: MetaData @@ -10958,6 +10962,8 @@ entities: - 902 - 909 - 1628 + - type: Fixtures + fixtures: {} - uid: 814 components: - type: MetaData @@ -10976,6 +10982,8 @@ entities: - 265 - 266 - 1629 + - type: Fixtures + fixtures: {} - uid: 817 components: - type: MetaData @@ -10989,6 +10997,8 @@ entities: - 960 - 959 - 975 + - type: Fixtures + fixtures: {} - uid: 818 components: - type: MetaData @@ -11005,6 +11015,8 @@ entities: - 197 - 243 - 1619 + - type: Fixtures + fixtures: {} - uid: 819 components: - type: MetaData @@ -11018,6 +11030,8 @@ entities: - 912 - 911 - 944 + - type: Fixtures + fixtures: {} - uid: 822 components: - type: MetaData @@ -11030,6 +11044,8 @@ entities: - 947 - 946 - 12722 + - type: Fixtures + fixtures: {} - uid: 958 components: - type: MetaData @@ -11051,6 +11067,8 @@ entities: - 10846 - 10847 - 10848 + - type: Fixtures + fixtures: {} - uid: 1136 components: - type: MetaData @@ -11063,6 +11081,8 @@ entities: - 7523 - 13848 - 368 + - type: Fixtures + fixtures: {} - uid: 2196 components: - type: MetaData @@ -11077,6 +11097,8 @@ entities: - 11393 - 14212 - 14136 + - type: Fixtures + fixtures: {} - uid: 2200 components: - type: MetaData @@ -11099,6 +11121,8 @@ entities: - 12452 - 12449 - 12453 + - type: Fixtures + fixtures: {} - uid: 3078 components: - type: MetaData @@ -11112,6 +11136,8 @@ entities: - 1395 - 12516 - 12541 + - type: Fixtures + fixtures: {} - uid: 3330 components: - type: MetaData @@ -11125,6 +11151,8 @@ entities: - 11812 - 12426 - 8895 + - type: Fixtures + fixtures: {} - uid: 3340 components: - type: MetaData @@ -11140,6 +11168,8 @@ entities: - 14465 - 12539 - 12538 + - type: Fixtures + fixtures: {} - uid: 5566 components: - type: MetaData @@ -11151,6 +11181,8 @@ entities: - type: DeviceList devices: - 7952 + - type: Fixtures + fixtures: {} - uid: 5980 components: - type: MetaData @@ -11166,6 +11198,8 @@ entities: - 1029 - 1028 - 9755 + - type: Fixtures + fixtures: {} - uid: 6106 components: - type: Transform @@ -11177,6 +11211,8 @@ entities: - 2280 - 3484 - 10525 + - type: Fixtures + fixtures: {} - uid: 6195 components: - type: MetaData @@ -11185,6 +11221,8 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8141 components: - type: MetaData @@ -11196,6 +11234,8 @@ entities: - type: DeviceList devices: - 13849 + - type: Fixtures + fixtures: {} - uid: 10356 components: - type: MetaData @@ -11204,6 +11244,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11015 components: - type: MetaData @@ -11216,6 +11258,8 @@ entities: - 11037 - 11038 - 11039 + - type: Fixtures + fixtures: {} - uid: 11020 components: - type: MetaData @@ -11236,6 +11280,8 @@ entities: - 10804 - 10878 - 10879 + - type: Fixtures + fixtures: {} - uid: 11079 components: - type: MetaData @@ -11250,6 +11296,8 @@ entities: - 10999 - 10876 - 10877 + - type: Fixtures + fixtures: {} - uid: 11080 components: - type: MetaData @@ -11263,6 +11311,8 @@ entities: - 11057 - 11058 - 11065 + - type: Fixtures + fixtures: {} - uid: 11082 components: - type: MetaData @@ -11278,6 +11328,8 @@ entities: - 10998 - 10874 - 10875 + - type: Fixtures + fixtures: {} - uid: 11083 components: - type: MetaData @@ -11292,6 +11344,8 @@ entities: - 5035 - 10874 - 10875 + - type: Fixtures + fixtures: {} - uid: 11197 components: - type: MetaData @@ -11307,6 +11361,8 @@ entities: - 14237 - 11190 - 5155 + - type: Fixtures + fixtures: {} - uid: 11199 components: - type: MetaData @@ -11322,6 +11378,8 @@ entities: - 12751 - 6856 - 16465 + - type: Fixtures + fixtures: {} - uid: 11203 components: - type: MetaData @@ -11334,6 +11392,8 @@ entities: - 13082 - 14784 - 6886 + - type: Fixtures + fixtures: {} - uid: 11204 components: - type: MetaData @@ -11349,6 +11409,8 @@ entities: - 11205 - 16469 - 16468 + - type: Fixtures + fixtures: {} - uid: 11206 components: - type: MetaData @@ -11362,6 +11424,8 @@ entities: - 6737 - 5295 - 11198 + - type: Fixtures + fixtures: {} - uid: 11207 components: - type: MetaData @@ -11377,6 +11441,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - uid: 11208 components: - type: MetaData @@ -11390,6 +11456,8 @@ entities: - 11254 - 13087 - 12921 + - type: Fixtures + fixtures: {} - uid: 11209 components: - type: MetaData @@ -11400,6 +11468,8 @@ entities: - type: DeviceList devices: - 16480 + - type: Fixtures + fixtures: {} - uid: 11210 components: - type: MetaData @@ -11413,6 +11483,8 @@ entities: - 11185 - 11202 - 11150 + - type: Fixtures + fixtures: {} - uid: 11211 components: - type: MetaData @@ -11431,6 +11503,8 @@ entities: - 6856 - 16465 - 16471 + - type: Fixtures + fixtures: {} - uid: 11212 components: - type: MetaData @@ -11445,6 +11519,8 @@ entities: - 11163 - 13967 - 12920 + - type: Fixtures + fixtures: {} - uid: 11289 components: - type: MetaData @@ -11458,6 +11534,8 @@ entities: - 11285 - 5028 - 11257 + - type: Fixtures + fixtures: {} - uid: 11291 components: - type: MetaData @@ -11471,6 +11549,8 @@ entities: - 11288 - 8834 - 1908 + - type: Fixtures + fixtures: {} - uid: 11296 components: - type: MetaData @@ -11483,6 +11563,8 @@ entities: - 5498 - 5500 - 11315 + - type: Fixtures + fixtures: {} - uid: 11297 components: - type: MetaData @@ -11494,6 +11576,8 @@ entities: - type: DeviceList devices: - 11290 + - type: Fixtures + fixtures: {} - uid: 11301 components: - type: MetaData @@ -11507,6 +11591,8 @@ entities: - 11261 - 11258 - 11259 + - type: Fixtures + fixtures: {} - uid: 11357 components: - type: MetaData @@ -11519,6 +11605,8 @@ entities: devices: - 11344 - 357 + - type: Fixtures + fixtures: {} - uid: 11358 components: - type: MetaData @@ -11532,6 +11620,8 @@ entities: - 11320 - 11318 - 11361 + - type: Fixtures + fixtures: {} - uid: 11359 components: - type: MetaData @@ -11545,6 +11635,8 @@ entities: - 11319 - 11321 - 11360 + - type: Fixtures + fixtures: {} - uid: 11397 components: - type: MetaData @@ -11558,6 +11650,8 @@ entities: - 11392 - 11395 - 11394 + - type: Fixtures + fixtures: {} - uid: 11399 components: - type: MetaData @@ -11572,6 +11666,8 @@ entities: - 11410 - 11411 - 10873 + - type: Fixtures + fixtures: {} - uid: 12625 components: - type: MetaData @@ -11586,6 +11682,8 @@ entities: - 12649 - 10376 - 1437 + - type: Fixtures + fixtures: {} - uid: 12674 components: - type: MetaData @@ -11597,6 +11695,8 @@ entities: - type: DeviceList devices: - 2624 + - type: Fixtures + fixtures: {} - uid: 12724 components: - type: MetaData @@ -11616,6 +11716,8 @@ entities: - 3278 - 3622 - 6044 + - type: Fixtures + fixtures: {} - uid: 12725 components: - type: MetaData @@ -11629,6 +11731,8 @@ entities: - 9018 - 9027 - 9028 + - type: Fixtures + fixtures: {} - uid: 12726 components: - type: MetaData @@ -11641,6 +11745,8 @@ entities: - 4927 - 4937 - 9064 + - type: Fixtures + fixtures: {} - uid: 12727 components: - type: MetaData @@ -11654,6 +11760,8 @@ entities: - 8327 - 4923 - 9048 + - type: Fixtures + fixtures: {} - uid: 12729 components: - type: MetaData @@ -11667,6 +11775,8 @@ entities: - 10476 - 10064 - 12703 + - type: Fixtures + fixtures: {} - uid: 12730 components: - type: MetaData @@ -11679,6 +11789,8 @@ entities: - 10444 - 10477 - 10427 + - type: Fixtures + fixtures: {} - uid: 12731 components: - type: MetaData @@ -11690,6 +11802,8 @@ entities: - type: DeviceList devices: - 10065 + - type: Fixtures + fixtures: {} - uid: 12732 components: - type: MetaData @@ -11705,12 +11819,16 @@ entities: - 2768 - 13804 - 13805 + - type: Fixtures + fixtures: {} - uid: 13031 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13789 components: - type: MetaData @@ -11728,6 +11846,8 @@ entities: - 10826 - 10820 - 357 + - type: Fixtures + fixtures: {} - uid: 13790 components: - type: MetaData @@ -11748,6 +11868,8 @@ entities: - 10824 - 10814 - 10812 + - type: Fixtures + fixtures: {} - uid: 13791 components: - type: MetaData @@ -11768,6 +11890,8 @@ entities: - 14212 - 14136 - 18028 + - type: Fixtures + fixtures: {} - uid: 13792 components: - type: MetaData @@ -11786,6 +11910,8 @@ entities: - 11641 - 11644 - 11642 + - type: Fixtures + fixtures: {} - uid: 13793 components: - type: MetaData @@ -11803,6 +11929,8 @@ entities: - 10812 - 10813 - 10817 + - type: Fixtures + fixtures: {} - uid: 13794 components: - type: MetaData @@ -11824,6 +11952,8 @@ entities: - 10832 - 10833 - 12011 + - type: Fixtures + fixtures: {} - uid: 13795 components: - type: MetaData @@ -11841,6 +11971,8 @@ entities: - 10828 - 14970 - 14997 + - type: Fixtures + fixtures: {} - uid: 13800 components: - type: MetaData @@ -11860,6 +11992,8 @@ entities: - 12549 - 12547 - 12548 + - type: Fixtures + fixtures: {} - uid: 13811 components: - type: MetaData @@ -11878,6 +12012,8 @@ entities: - 10898 - 10899 - 13810 + - type: Fixtures + fixtures: {} - uid: 13812 components: - type: MetaData @@ -11892,6 +12028,8 @@ entities: - 8740 - 8741 - 13810 + - type: Fixtures + fixtures: {} - uid: 13813 components: - type: MetaData @@ -11909,6 +12047,8 @@ entities: - 10899 - 10900 - 10901 + - type: Fixtures + fixtures: {} - uid: 13814 components: - type: MetaData @@ -11922,6 +12062,8 @@ entities: - 8713 - 8714 - 8699 + - type: Fixtures + fixtures: {} - uid: 13815 components: - type: MetaData @@ -11935,6 +12077,8 @@ entities: - 8686 - 8677 - 12546 + - type: Fixtures + fixtures: {} - uid: 13816 components: - type: MetaData @@ -11951,6 +12095,8 @@ entities: - 10902 - 10901 - 10900 + - type: Fixtures + fixtures: {} - uid: 13817 components: - type: MetaData @@ -11965,6 +12111,8 @@ entities: - 8695 - 10905 - 4374 + - type: Fixtures + fixtures: {} - uid: 13818 components: - type: MetaData @@ -11977,6 +12125,8 @@ entities: - 5762 - 1428 - 8754 + - type: Fixtures + fixtures: {} - uid: 13819 components: - type: MetaData @@ -11991,6 +12141,8 @@ entities: - 8623 - 8622 - 10902 + - type: Fixtures + fixtures: {} - uid: 13821 components: - type: MetaData @@ -12003,6 +12155,8 @@ entities: - 8799 - 8800 - 8814 + - type: Fixtures + fixtures: {} - uid: 13822 components: - type: MetaData @@ -12015,6 +12169,8 @@ entities: - 8781 - 8782 - 8780 + - type: Fixtures + fixtures: {} - uid: 13823 components: - type: MetaData @@ -12028,6 +12184,8 @@ entities: - 8790 - 8792 - 8791 + - type: Fixtures + fixtures: {} - uid: 13824 components: - type: MetaData @@ -12040,6 +12198,8 @@ entities: - 8757 - 8756 - 8758 + - type: Fixtures + fixtures: {} - uid: 13825 components: - type: MetaData @@ -12053,6 +12213,8 @@ entities: - 8733 - 8731 - 8732 + - type: Fixtures + fixtures: {} - uid: 13852 components: - type: MetaData @@ -12067,6 +12229,8 @@ entities: - 2835 - 10412 - 10907 + - type: Fixtures + fixtures: {} - uid: 13862 components: - type: MetaData @@ -12087,6 +12251,8 @@ entities: - 10891 - 10890 - 11143 + - type: Fixtures + fixtures: {} - uid: 13863 components: - type: MetaData @@ -12107,6 +12273,8 @@ entities: - 12542 - 10894 - 10895 + - type: Fixtures + fixtures: {} - uid: 13864 components: - type: MetaData @@ -12120,6 +12288,8 @@ entities: - 12469 - 12468 - 12471 + - type: Fixtures + fixtures: {} - uid: 13865 components: - type: MetaData @@ -12133,6 +12303,8 @@ entities: - 12454 - 12455 - 12470 + - type: Fixtures + fixtures: {} - uid: 13870 components: - type: MetaData @@ -12159,6 +12331,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - uid: 13933 components: - type: MetaData @@ -12178,6 +12352,8 @@ entities: - 10883 - 10840 - 10841 + - type: Fixtures + fixtures: {} - uid: 13934 components: - type: MetaData @@ -12191,6 +12367,8 @@ entities: - 12395 - 12398 - 12401 + - type: Fixtures + fixtures: {} - uid: 13935 components: - type: MetaData @@ -12205,6 +12383,8 @@ entities: - 12400 - 12403 - 10883 + - type: Fixtures + fixtures: {} - uid: 13962 components: - type: MetaData @@ -12222,6 +12402,8 @@ entities: - 12404 - 10840 - 10841 + - type: Fixtures + fixtures: {} - uid: 13971 components: - type: MetaData @@ -12234,6 +12416,8 @@ entities: - 12647 - 10859 - 18302 + - type: Fixtures + fixtures: {} - uid: 14483 components: - type: MetaData @@ -12246,6 +12430,8 @@ entities: devices: - 18031 - 18032 + - type: Fixtures + fixtures: {} - uid: 14484 components: - type: MetaData @@ -12258,6 +12444,8 @@ entities: - 18029 - 18028 - 18030 + - type: Fixtures + fixtures: {} - uid: 14486 components: - type: MetaData @@ -12269,6 +12457,8 @@ entities: - type: DeviceList devices: - 18033 + - type: Fixtures + fixtures: {} - uid: 14552 components: - type: MetaData @@ -12287,6 +12477,8 @@ entities: - 13834 - 13835 - 13850 + - type: Fixtures + fixtures: {} - uid: 14605 components: - type: MetaData @@ -12306,6 +12498,8 @@ entities: - 18030 - 18031 - 18032 + - type: Fixtures + fixtures: {} - uid: 14859 components: - type: MetaData @@ -12322,6 +12516,8 @@ entities: - 14998 - 14999 - 4973 + - type: Fixtures + fixtures: {} - uid: 15065 components: - type: MetaData @@ -12336,6 +12532,8 @@ entities: - 11896 - 1879 - 1878 + - type: Fixtures + fixtures: {} - uid: 15066 components: - type: MetaData @@ -12351,6 +12549,8 @@ entities: - 14847 - 14970 - 14997 + - type: Fixtures + fixtures: {} - uid: 15067 components: - type: MetaData @@ -12365,6 +12565,8 @@ entities: - 13746 - 13539 - 4973 + - type: Fixtures + fixtures: {} - uid: 15069 components: - type: MetaData @@ -12380,6 +12582,8 @@ entities: - 14029 - 14998 - 14999 + - type: Fixtures + fixtures: {} - uid: 15093 components: - type: MetaData @@ -12388,6 +12592,8 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15135 components: - type: MetaData @@ -12398,6 +12604,8 @@ entities: - type: DeviceList devices: - 13744 + - type: Fixtures + fixtures: {} - uid: 15190 components: - type: MetaData @@ -12410,6 +12618,8 @@ entities: - 12743 - 5665 - 11808 + - type: Fixtures + fixtures: {} - uid: 15197 components: - type: MetaData @@ -12418,6 +12628,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15328 components: - type: MetaData @@ -12442,6 +12654,8 @@ entities: - 1879 - 1878 - 18033 + - type: Fixtures + fixtures: {} - uid: 15382 components: - type: MetaData @@ -12455,6 +12669,8 @@ entities: - 1782 - 4448 - 15429 + - type: Fixtures + fixtures: {} - uid: 15453 components: - type: MetaData @@ -12466,6 +12682,8 @@ entities: devices: - 15450 - 15454 + - type: Fixtures + fixtures: {} - uid: 15456 components: - type: MetaData @@ -12489,6 +12707,8 @@ entities: - 10854 - 10853 - 10852 + - type: Fixtures + fixtures: {} - uid: 15650 components: - type: MetaData @@ -12500,6 +12720,8 @@ entities: - type: DeviceList devices: - 15649 + - type: Fixtures + fixtures: {} - uid: 15720 components: - type: MetaData @@ -12513,6 +12735,8 @@ entities: - 15571 - 15318 - 15319 + - type: Fixtures + fixtures: {} - uid: 15876 components: - type: MetaData @@ -12526,6 +12750,8 @@ entities: - 6491 - 15875 - 6202 + - type: Fixtures + fixtures: {} - uid: 15940 components: - type: MetaData @@ -12539,6 +12765,8 @@ entities: - 15941 - 15942 - 15943 + - type: Fixtures + fixtures: {} - uid: 16172 components: - type: MetaData @@ -12552,6 +12780,8 @@ entities: - 8812 - 8811 - 8813 + - type: Fixtures + fixtures: {} - uid: 16745 components: - type: MetaData @@ -12560,6 +12790,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16808 components: - type: MetaData @@ -12576,6 +12808,8 @@ entities: - 16807 - 10890 - 10891 + - type: Fixtures + fixtures: {} - uid: 17020 components: - type: MetaData @@ -12594,6 +12828,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - uid: 17459 components: - type: MetaData @@ -12606,6 +12842,8 @@ entities: - 17521 - 17463 - 17520 + - type: Fixtures + fixtures: {} - uid: 17460 components: - type: MetaData @@ -12618,6 +12856,8 @@ entities: - 17498 - 17531 - 17499 + - type: Fixtures + fixtures: {} - uid: 17461 components: - type: MetaData @@ -12631,6 +12871,8 @@ entities: - 17484 - 17464 - 17488 + - type: Fixtures + fixtures: {} - uid: 17462 components: - type: MetaData @@ -12644,6 +12886,8 @@ entities: - 17529 - 17530 - 17465 + - type: Fixtures + fixtures: {} - uid: 17609 components: - type: MetaData @@ -12662,6 +12906,8 @@ entities: - 15890 - 963 - 14946 + - type: Fixtures + fixtures: {} - uid: 18230 components: - type: MetaData @@ -12680,6 +12926,8 @@ entities: - 8973 - 10077 - 13803 + - type: Fixtures + fixtures: {} - uid: 18231 components: - type: MetaData @@ -12693,6 +12941,8 @@ entities: - 5367 - 1054 - 1053 + - type: Fixtures + fixtures: {} - uid: 18303 components: - type: MetaData @@ -12719,6 +12969,8 @@ entities: - 10810 - 10811 - 10804 + - type: Fixtures + fixtures: {} - proto: AirAlarmElectronics entities: - uid: 1784 @@ -12741,6 +12993,8 @@ entities: - 1388 - 290 - 1430 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 6295 @@ -16219,6 +16473,8 @@ entities: - type: Transform pos: -2.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 431 components: - type: MetaData @@ -16227,6 +16483,8 @@ entities: rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 432 components: - type: MetaData @@ -16235,6 +16493,8 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 505 components: - type: MetaData @@ -16242,6 +16502,8 @@ entities: - type: Transform pos: -31.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 653 components: - type: MetaData @@ -16250,6 +16512,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 682 components: - type: MetaData @@ -16258,6 +16522,8 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 972 components: - type: MetaData @@ -16266,6 +16532,8 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1149 components: - type: MetaData @@ -16274,6 +16542,8 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1393 components: - type: MetaData @@ -16282,6 +16552,8 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1419 components: - type: MetaData @@ -16290,6 +16562,8 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1562 components: - type: MetaData @@ -16297,6 +16571,8 @@ entities: - type: Transform pos: 25.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2556 components: - type: MetaData @@ -16305,6 +16581,8 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2584 components: - type: MetaData @@ -16312,6 +16590,8 @@ entities: - type: Transform pos: -24.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2771 components: - type: MetaData @@ -16320,6 +16600,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2809 components: - type: MetaData @@ -16328,6 +16610,8 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3295 components: - type: MetaData @@ -16336,6 +16620,8 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3297 components: - type: MetaData @@ -16344,6 +16630,8 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3298 components: - type: MetaData @@ -16351,6 +16639,8 @@ entities: - type: Transform pos: -29.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3433 components: - type: MetaData @@ -16359,6 +16649,8 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3445 components: - type: MetaData @@ -16366,6 +16658,8 @@ entities: - type: Transform pos: -24.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3587 components: - type: MetaData @@ -16374,6 +16668,8 @@ entities: rot: 3.141592653589793 rad pos: -14.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4449 components: - type: MetaData @@ -16382,6 +16678,8 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4473 components: - type: MetaData @@ -16389,6 +16687,8 @@ entities: - type: Transform pos: -32.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4776 components: - type: MetaData @@ -16397,6 +16697,8 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4827 components: - type: MetaData @@ -16405,6 +16707,8 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4829 components: - type: MetaData @@ -16412,6 +16716,8 @@ entities: - type: Transform pos: -17.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5097 components: - type: MetaData @@ -16420,6 +16726,8 @@ entities: rot: 3.141592653589793 rad pos: -23.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5175 components: - type: MetaData @@ -16427,6 +16735,8 @@ entities: - type: Transform pos: -24.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5210 components: - type: MetaData @@ -16435,6 +16745,8 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5241 components: - type: MetaData @@ -16443,6 +16755,8 @@ entities: rot: 3.141592653589793 rad pos: -15.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5371 components: - type: MetaData @@ -16451,6 +16765,8 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5484 components: - type: MetaData @@ -16459,6 +16775,8 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5734 components: - type: MetaData @@ -16467,6 +16785,8 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5739 components: - type: MetaData @@ -16474,6 +16794,8 @@ entities: - type: Transform pos: -1.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5740 components: - type: MetaData @@ -16482,6 +16804,8 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5836 components: - type: MetaData @@ -16489,6 +16813,8 @@ entities: - type: Transform pos: -5.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5926 components: - type: MetaData @@ -16497,6 +16823,8 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6151 components: - type: MetaData @@ -16505,6 +16833,8 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6163 components: - type: MetaData @@ -16513,6 +16843,8 @@ entities: rot: 3.141592653589793 rad pos: -15.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6267 components: - type: MetaData @@ -16521,6 +16853,8 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6860 components: - type: MetaData @@ -16528,6 +16862,8 @@ entities: - type: Transform pos: -11.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6933 components: - type: MetaData @@ -16536,6 +16872,8 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6978 components: - type: MetaData @@ -16544,6 +16882,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6981 components: - type: MetaData @@ -16552,6 +16892,8 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6985 components: - type: MetaData @@ -16559,6 +16901,8 @@ entities: - type: Transform pos: -38.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6999 components: - type: MetaData @@ -16566,6 +16910,8 @@ entities: - type: Transform pos: -15.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7325 components: - type: MetaData @@ -16574,6 +16920,8 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7326 components: - type: MetaData @@ -16582,6 +16930,8 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7328 components: - type: MetaData @@ -16590,6 +16940,8 @@ entities: rot: 3.141592653589793 rad pos: -9.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7483 components: - type: MetaData @@ -16597,6 +16949,8 @@ entities: - type: Transform pos: 3.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7510 components: - type: MetaData @@ -16604,6 +16958,8 @@ entities: - type: Transform pos: 13.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7516 components: - type: MetaData @@ -16612,6 +16968,8 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7517 components: - type: MetaData @@ -16620,6 +16978,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7518 components: - type: MetaData @@ -16628,6 +16988,8 @@ entities: rot: 3.141592653589793 rad pos: 11.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7519 components: - type: MetaData @@ -16636,6 +16998,8 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7780 components: - type: MetaData @@ -16644,6 +17008,8 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7943 components: - type: MetaData @@ -16651,6 +17017,8 @@ entities: - type: Transform pos: 21.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8241 components: - type: MetaData @@ -16659,6 +17027,8 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8616 components: - type: MetaData @@ -16666,6 +17036,8 @@ entities: - type: Transform pos: -46.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8620 components: - type: MetaData @@ -16674,6 +17046,8 @@ entities: rot: 3.141592653589793 rad pos: -3.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8751 components: - type: MetaData @@ -16681,6 +17055,8 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8945 components: - type: MetaData @@ -16689,6 +17065,8 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9111 components: - type: MetaData @@ -16697,6 +17075,8 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9157 components: - type: MetaData @@ -16704,6 +17084,8 @@ entities: - type: Transform pos: 33.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9201 components: - type: MetaData @@ -16712,6 +17094,8 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9281 components: - type: MetaData @@ -16720,6 +17104,8 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9297 components: - type: MetaData @@ -16728,6 +17114,8 @@ entities: rot: 3.141592653589793 rad pos: 21.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9632 components: - type: MetaData @@ -16736,6 +17124,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9695 components: - type: MetaData @@ -16743,6 +17133,8 @@ entities: - type: Transform pos: 34.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9696 components: - type: MetaData @@ -16750,6 +17142,8 @@ entities: - type: Transform pos: 26.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9697 components: - type: MetaData @@ -16758,6 +17152,8 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9698 components: - type: MetaData @@ -16765,6 +17161,8 @@ entities: - type: Transform pos: 39.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9700 components: - type: MetaData @@ -16772,6 +17170,8 @@ entities: - type: Transform pos: 34.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9701 components: - type: MetaData @@ -16779,6 +17179,8 @@ entities: - type: Transform pos: 22.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9702 components: - type: MetaData @@ -16787,6 +17189,8 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9703 components: - type: MetaData @@ -16794,6 +17198,8 @@ entities: - type: Transform pos: 29.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9704 components: - type: MetaData @@ -16801,6 +17207,8 @@ entities: - type: Transform pos: 35.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9822 components: - type: MetaData @@ -16809,6 +17217,8 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9910 components: - type: MetaData @@ -16816,6 +17226,8 @@ entities: - type: Transform pos: 18.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9937 components: - type: MetaData @@ -16824,6 +17236,8 @@ entities: rot: 3.141592653589793 rad pos: 1.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9944 components: - type: MetaData @@ -16832,6 +17246,8 @@ entities: rot: 3.141592653589793 rad pos: -8.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9950 components: - type: MetaData @@ -16840,6 +17256,8 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9996 components: - type: MetaData @@ -16848,6 +17266,8 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10027 components: - type: MetaData @@ -16855,6 +17275,8 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10100 components: - type: MetaData @@ -16863,6 +17285,8 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10521 components: - type: MetaData @@ -16871,6 +17295,8 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10558 components: - type: MetaData @@ -16879,6 +17305,8 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10755 components: - type: MetaData @@ -16886,6 +17314,8 @@ entities: - type: Transform pos: 34.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11177 components: - type: MetaData @@ -16894,6 +17324,8 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11819 components: - type: MetaData @@ -16902,6 +17334,8 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12084 components: - type: MetaData @@ -16910,6 +17344,8 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12187 components: - type: MetaData @@ -16918,6 +17354,8 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12212 components: - type: MetaData @@ -16925,6 +17363,8 @@ entities: - type: Transform pos: 34.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13643 components: - type: MetaData @@ -16933,6 +17373,8 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14028 components: - type: MetaData @@ -16941,6 +17383,8 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14169 components: - type: MetaData @@ -16949,6 +17393,8 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14312 components: - type: MetaData @@ -16957,6 +17403,8 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15147 components: - type: MetaData @@ -16964,6 +17412,8 @@ entities: - type: Transform pos: -1.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15387 components: - type: MetaData @@ -16971,6 +17421,8 @@ entities: - type: Transform pos: 6.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15615 components: - type: MetaData @@ -16978,6 +17430,8 @@ entities: - type: Transform pos: 38.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15627 components: - type: MetaData @@ -16986,6 +17440,8 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15823 components: - type: MetaData @@ -16994,6 +17450,8 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15931 components: - type: MetaData @@ -17002,6 +17460,8 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16014 components: - type: MetaData @@ -17010,6 +17470,8 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16809 components: - type: MetaData @@ -17017,6 +17479,8 @@ entities: - type: Transform pos: 11.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17039 components: - type: MetaData @@ -17024,6 +17488,8 @@ entities: - type: Transform pos: -36.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18312 components: - type: MetaData @@ -17032,6 +17498,8 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 1789 @@ -17064,6 +17532,8 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: AppraisalTool entities: - uid: 14317 @@ -17078,24 +17548,32 @@ entities: - type: Transform pos: -8.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14633 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14634 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14635 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtistCircuitBoard entities: - uid: 5380 @@ -21561,6 +22039,8 @@ entities: - type: Transform pos: 1.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignSpacebucks entities: - uid: 5917 @@ -21568,6 +22048,8 @@ entities: - type: Transform pos: -17.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSpoon entities: - uid: 11927 @@ -51585,6 +52067,8 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetBombFilled entities: - uid: 5817 @@ -55259,52 +55743,70 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13950 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13951 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14424 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15297 components: - type: Transform pos: 10.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15476 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15520 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18081 components: - type: Transform pos: -59.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18082 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 2999 @@ -61480,6 +61982,8 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ExtinguisherCabinetFilled entities: - uid: 1257 @@ -61487,102 +61991,138 @@ entities: - type: Transform pos: 25.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4487 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7216 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15963 components: - type: Transform pos: -42.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15964 components: - type: Transform pos: -27.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15965 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15966 components: - type: Transform pos: -2.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15969 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15970 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15971 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15972 components: - type: Transform pos: 27.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15973 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15974 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15977 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15980 components: - type: Transform pos: -46.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15981 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18107 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18108 components: - type: Transform pos: -5.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 4025 @@ -61830,6 +62370,8 @@ entities: - 15890 - 963 - 14946 + - type: Fixtures + fixtures: {} - uid: 8138 components: - type: MetaData @@ -61846,6 +62388,8 @@ entities: - 10849 - 10850 - 10851 + - type: Fixtures + fixtures: {} - uid: 10771 components: - type: MetaData @@ -61854,6 +62398,8 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11390 components: - type: MetaData @@ -61866,6 +62412,8 @@ entities: - 10822 - 10823 - 10824 + - type: Fixtures + fixtures: {} - uid: 11391 components: - type: MetaData @@ -61888,6 +62436,8 @@ entities: - 10839 - 1938 - 1437 + - type: Fixtures + fixtures: {} - uid: 11574 components: - type: MetaData @@ -61907,6 +62457,8 @@ entities: - 10832 - 10833 - 12011 + - type: Fixtures + fixtures: {} - uid: 11575 components: - type: MetaData @@ -61928,6 +62480,8 @@ entities: - 1879 - 1878 - 18033 + - type: Fixtures + fixtures: {} - uid: 11576 components: - type: MetaData @@ -61943,6 +62497,8 @@ entities: - 10829 - 14970 - 14997 + - type: Fixtures + fixtures: {} - uid: 12224 components: - type: MetaData @@ -61966,6 +62522,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - uid: 12225 components: - type: MetaData @@ -61982,6 +62540,8 @@ entities: - 10883 - 10841 - 10840 + - type: Fixtures + fixtures: {} - uid: 12226 components: - type: MetaData @@ -61994,6 +62554,8 @@ entities: devices: - 10841 - 10840 + - type: Fixtures + fixtures: {} - uid: 12553 components: - type: MetaData @@ -62005,6 +62567,8 @@ entities: - type: DeviceList devices: - 13803 + - type: Fixtures + fixtures: {} - uid: 13456 components: - type: MetaData @@ -62024,6 +62588,8 @@ entities: - 10907 - 1630 - 15890 + - type: Fixtures + fixtures: {} - uid: 13457 components: - type: MetaData @@ -62044,6 +62610,8 @@ entities: - 10846 - 10847 - 10848 + - type: Fixtures + fixtures: {} - uid: 13936 components: - type: MetaData @@ -62062,6 +62630,8 @@ entities: - 10887 - 10889 - 10888 + - type: Fixtures + fixtures: {} - uid: 14119 components: - type: MetaData @@ -62076,6 +62646,8 @@ entities: - 10825 - 10827 - 357 + - type: Fixtures + fixtures: {} - uid: 14126 components: - type: MetaData @@ -62089,6 +62661,8 @@ entities: - 10814 - 10813 - 10817 + - type: Fixtures + fixtures: {} - uid: 14128 components: - type: MetaData @@ -62106,6 +62680,8 @@ entities: - 10822 - 10823 - 10824 + - type: Fixtures + fixtures: {} - uid: 14129 components: - type: MetaData @@ -62123,6 +62699,8 @@ entities: - 10820 - 10826 - 18028 + - type: Fixtures + fixtures: {} - uid: 14279 components: - type: MetaData @@ -62137,6 +62715,8 @@ entities: - 10876 - 10875 - 10874 + - type: Fixtures + fixtures: {} - uid: 14525 components: - type: MetaData @@ -62149,6 +62729,8 @@ entities: - 18029 - 18028 - 18030 + - type: Fixtures + fixtures: {} - uid: 14526 components: - type: MetaData @@ -62162,6 +62744,8 @@ entities: - 18030 - 18031 - 18032 + - type: Fixtures + fixtures: {} - uid: 14641 components: - type: MetaData @@ -62185,6 +62769,8 @@ entities: - 266 - 1628 - 1629 + - type: Fixtures + fixtures: {} - uid: 14651 components: - type: MetaData @@ -62201,6 +62787,8 @@ entities: - 1629 - 963 - 14946 + - type: Fixtures + fixtures: {} - uid: 14652 components: - type: MetaData @@ -62213,6 +62801,8 @@ entities: devices: - 243 - 197 + - type: Fixtures + fixtures: {} - uid: 14654 components: - type: MetaData @@ -62230,6 +62820,8 @@ entities: - 10810 - 10811 - 10804 + - type: Fixtures + fixtures: {} - uid: 14655 components: - type: MetaData @@ -62242,6 +62834,8 @@ entities: devices: - 10875 - 10874 + - type: Fixtures + fixtures: {} - uid: 14656 components: - type: MetaData @@ -62253,6 +62847,8 @@ entities: - type: DeviceList devices: - 10873 + - type: Fixtures + fixtures: {} - uid: 14665 components: - type: MetaData @@ -62268,6 +62864,8 @@ entities: - 13835 - 13834 - 13850 + - type: Fixtures + fixtures: {} - uid: 14667 components: - type: MetaData @@ -62281,6 +62879,8 @@ entities: - 13835 - 13834 - 13850 + - type: Fixtures + fixtures: {} - uid: 14668 components: - type: MetaData @@ -62296,6 +62896,8 @@ entities: - 10853 - 10854 - 13810 + - type: Fixtures + fixtures: {} - uid: 14669 components: - type: MetaData @@ -62310,6 +62912,8 @@ entities: - 10900 - 10898 - 10899 + - type: Fixtures + fixtures: {} - uid: 14671 components: - type: MetaData @@ -62325,6 +62929,8 @@ entities: - 10901 - 10902 - 14672 + - type: Fixtures + fixtures: {} - uid: 14673 components: - type: MetaData @@ -62339,6 +62945,8 @@ entities: - 14670 - 10905 - 4374 + - type: Fixtures + fixtures: {} - uid: 14675 components: - type: MetaData @@ -62350,6 +62958,8 @@ entities: - type: DeviceList devices: - 10902 + - type: Fixtures + fixtures: {} - uid: 14677 components: - type: MetaData @@ -62366,6 +62976,8 @@ entities: - 10893 - 10892 - 11143 + - type: Fixtures + fixtures: {} - uid: 14678 components: - type: MetaData @@ -62382,6 +62994,8 @@ entities: - 10893 - 10894 - 10895 + - type: Fixtures + fixtures: {} - uid: 14679 components: - type: MetaData @@ -62394,6 +63008,8 @@ entities: devices: - 10894 - 10895 + - type: Fixtures + fixtures: {} - uid: 14683 components: - type: MetaData @@ -62405,6 +63021,8 @@ entities: - type: DeviceList devices: - 13810 + - type: Fixtures + fixtures: {} - uid: 14684 components: - type: MetaData @@ -62416,6 +63034,8 @@ entities: - type: DeviceList devices: - 10907 + - type: Fixtures + fixtures: {} - uid: 15059 components: - type: MetaData @@ -62428,6 +63048,8 @@ entities: devices: - 14970 - 14997 + - type: Fixtures + fixtures: {} - uid: 15060 components: - type: MetaData @@ -62441,6 +63063,8 @@ entities: - 14998 - 14999 - 4973 + - type: Fixtures + fixtures: {} - uid: 15061 components: - type: Transform @@ -62451,6 +63075,8 @@ entities: devices: - 1879 - 1878 + - type: Fixtures + fixtures: {} - uid: 15232 components: - type: MetaData @@ -62462,6 +63088,8 @@ entities: devices: - 14998 - 14999 + - type: Fixtures + fixtures: {} - uid: 15794 components: - type: MetaData @@ -62474,6 +63102,8 @@ entities: devices: - 14212 - 14136 + - type: Fixtures + fixtures: {} - uid: 15796 components: - type: MetaData @@ -62485,6 +63115,8 @@ entities: - type: DeviceList devices: - 357 + - type: Fixtures + fixtures: {} - uid: 16327 components: - type: MetaData @@ -62498,6 +63130,8 @@ entities: - 18629 - 18628 - 1628 + - type: Fixtures + fixtures: {} - uid: 16472 components: - type: MetaData @@ -62510,6 +63144,8 @@ entities: devices: - 16467 - 16470 + - type: Fixtures + fixtures: {} - uid: 16473 components: - type: MetaData @@ -62528,6 +63164,8 @@ entities: - 6856 - 16465 - 16471 + - type: Fixtures + fixtures: {} - uid: 16474 components: - type: MetaData @@ -62539,6 +63177,8 @@ entities: devices: - 6856 - 16465 + - type: Fixtures + fixtures: {} - uid: 16475 components: - type: MetaData @@ -62550,6 +63190,8 @@ entities: - type: DeviceList devices: - 16471 + - type: Fixtures + fixtures: {} - uid: 16476 components: - type: MetaData @@ -62562,6 +63204,8 @@ entities: devices: - 16469 - 16468 + - type: Fixtures + fixtures: {} - uid: 16477 components: - type: MetaData @@ -62574,6 +63218,8 @@ entities: - 16479 - 16478 - 11224 + - type: Fixtures + fixtures: {} - uid: 16827 components: - type: MetaData @@ -62588,6 +63234,8 @@ entities: - 10891 - 16806 - 16807 + - type: Fixtures + fixtures: {} - uid: 17019 components: - type: MetaData @@ -62603,6 +63251,8 @@ entities: - 11224 - 16478 - 16479 + - type: Fixtures + fixtures: {} - proto: FireAlarmElectronics entities: - uid: 2284 @@ -62617,12 +63267,16 @@ entities: - type: Transform pos: 30.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15812 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 1914 @@ -89041,17 +89695,23 @@ entities: - type: Transform pos: -26.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17256 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17442 components: - type: Transform pos: -42.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomAssembly entities: - uid: 16722 @@ -89068,12 +89728,16 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14474 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 8816 @@ -89082,6 +89746,8 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 4076 @@ -89090,6 +89756,8 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 11181 @@ -89098,6 +89766,8 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 3496 @@ -89106,17 +89776,23 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8618 components: - type: Transform pos: -2.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15299 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 15899 @@ -89125,6 +89801,8 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 9995 @@ -89133,6 +89811,8 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 7354 @@ -89486,6 +90166,8 @@ entities: 3436: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonCaptain entities: - uid: 13976 @@ -89515,6 +90197,8 @@ entities: 11048: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChiefEngineer entities: - uid: 16183 @@ -89539,6 +90223,8 @@ entities: 8126: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonChiefMedicalOfficer entities: - uid: 16176 @@ -89555,6 +90241,8 @@ entities: 16174: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonCommand entities: - uid: 11097 @@ -89602,6 +90290,8 @@ entities: 15279: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18607 components: - type: MetaData @@ -89627,6 +90317,8 @@ entities: - Open - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockableButtonEngineering entities: - uid: 2911 @@ -89641,6 +90333,8 @@ entities: 12655: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonExternal entities: - uid: 6221 @@ -89667,6 +90361,8 @@ entities: 15143: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8194 components: - type: MetaData @@ -89692,6 +90388,8 @@ entities: 15143: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHeadOfPersonnel entities: - uid: 14619 @@ -89714,6 +90412,8 @@ entities: 3135: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonHeadOfSecurity entities: - uid: 18105 @@ -89732,6 +90432,8 @@ entities: 15186: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonKitchen entities: - uid: 4481 @@ -89755,6 +90457,8 @@ entities: 16222: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonMedical entities: - uid: 9089 @@ -89773,6 +90477,8 @@ entities: 3916: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 13575 components: - type: MetaData @@ -89789,6 +90495,8 @@ entities: 4706: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13768 components: - type: MetaData @@ -89804,6 +90512,8 @@ entities: 5080: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16210 components: - type: MetaData @@ -89820,6 +90530,8 @@ entities: 16147: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonQuartermaster entities: - uid: 16161 @@ -89847,6 +90559,8 @@ entities: 16155: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonResearchDirector entities: - uid: 11128 @@ -89866,6 +90580,8 @@ entities: 11182: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilled entities: - uid: 2107 @@ -91504,21 +92220,29 @@ entities: - type: Transform pos: -0.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 281 components: - type: Transform pos: 1.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 282 components: - type: Transform pos: 3.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18053 components: - type: Transform pos: -9.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MonkeyCube entities: - uid: 15919 @@ -91711,32 +92435,44 @@ entities: - type: Transform pos: 3.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13678 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13679 components: - type: Transform pos: 24.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13680 components: - type: Transform pos: 5.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13681 components: - type: Transform pos: -32.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15881 components: - type: Transform pos: -12.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 1594 @@ -91879,6 +92615,8 @@ entities: - type: Transform pos: 3.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PairedChopsticks entities: - uid: 317 @@ -92594,6 +93332,8 @@ entities: - type: Transform pos: 36.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandC20r entities: - uid: 16064 @@ -92601,6 +93341,8 @@ entities: - type: Transform pos: -16.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEnlistGorlex entities: - uid: 6322 @@ -92608,6 +93350,8 @@ entities: - type: Transform pos: -19.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandFunPolice entities: - uid: 16063 @@ -92615,6 +93359,8 @@ entities: - type: Transform pos: -14.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 18596 @@ -92622,6 +93368,8 @@ entities: - type: Transform pos: 9.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandSyndicateRecruitment entities: - uid: 16054 @@ -92629,6 +93377,8 @@ entities: - type: Transform pos: -18.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitFoamForceAd entities: - uid: 2970 @@ -92636,6 +93386,8 @@ entities: - type: Transform pos: 18.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 3227 @@ -92644,12 +93396,16 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3230 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlantRandom entities: - uid: 759 @@ -98902,83 +99658,113 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13525 components: - type: Transform pos: -63.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14555 components: - type: Transform pos: -51.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14636 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14637 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14638 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14640 components: - type: Transform pos: 2.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14642 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14644 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14645 components: - type: Transform pos: -35.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14647 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14648 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14916 components: - type: Transform pos: 29.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15097 components: - type: Transform pos: -18.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17582 components: - type: Transform pos: -1.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 15457 @@ -99648,16 +100434,22 @@ entities: - type: Transform pos: -9.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3809 components: - type: Transform pos: -39.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5468 components: - type: Transform pos: -34.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 18100 @@ -99685,6 +100477,8 @@ entities: 18098: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 841 @@ -99695,6 +100489,8 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1491 components: - type: MetaData @@ -99714,6 +100510,8 @@ entities: 11766: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2449 components: - type: MetaData @@ -99727,6 +100525,8 @@ entities: 12655: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 2643 components: - type: MetaData @@ -99743,6 +100543,8 @@ entities: 2360: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 3473 components: - type: MetaData @@ -99762,6 +100564,8 @@ entities: 6996: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 6029 components: - type: MetaData @@ -99774,6 +100578,8 @@ entities: 7748: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 7024 components: - type: MetaData @@ -99790,6 +100596,8 @@ entities: 16017: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9353 components: - type: MetaData @@ -99803,6 +100611,8 @@ entities: 8133: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 9658 components: - type: MetaData @@ -99822,6 +100632,8 @@ entities: 2332: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 10510 components: - type: MetaData @@ -99834,6 +100646,8 @@ entities: 9968: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11169 components: - type: MetaData @@ -99847,6 +100661,8 @@ entities: 14013: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11201 components: - type: MetaData @@ -99862,6 +100678,8 @@ entities: 11215: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 11351 components: - type: MetaData @@ -99883,6 +100701,8 @@ entities: 1514: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12773 components: - type: MetaData @@ -99899,6 +100719,8 @@ entities: 5141: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 12908 components: - type: MetaData @@ -99921,6 +100743,8 @@ entities: 1443: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13629 components: - type: MetaData @@ -99934,6 +100758,8 @@ entities: 15892: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14428 components: - type: MetaData @@ -99949,6 +100775,8 @@ entities: 7942: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14431 components: - type: MetaData @@ -99964,6 +100792,8 @@ entities: 2526: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14435 components: - type: MetaData @@ -99979,6 +100809,8 @@ entities: 3916: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14437 components: - type: MetaData @@ -99995,6 +100827,8 @@ entities: 2588: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14511 components: - type: MetaData @@ -100011,6 +100845,8 @@ entities: 4514: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 14512 components: - type: MetaData @@ -100027,6 +100863,8 @@ entities: 4531: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15612 components: - type: MetaData @@ -100035,6 +100873,8 @@ entities: rot: 1.5707963267948966 rad pos: -1.5549712,-18.496132 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15737 components: - type: MetaData @@ -100051,6 +100891,8 @@ entities: 1256: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15861 components: - type: MetaData @@ -100064,6 +100906,8 @@ entities: 6033: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 15865 components: - type: MetaData @@ -100077,6 +100921,8 @@ entities: 6303: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 15868 components: - type: MetaData @@ -100090,6 +100936,8 @@ entities: 15857: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15871 components: - type: MetaData @@ -100103,6 +100951,8 @@ entities: 15872: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15880 components: - type: MetaData @@ -100116,6 +100966,8 @@ entities: 15856: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15886 components: - type: MetaData @@ -100129,6 +100981,8 @@ entities: 15884: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15889 components: - type: MetaData @@ -100142,6 +100996,8 @@ entities: 15888: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 15895 components: - type: MetaData @@ -100155,6 +101011,8 @@ entities: 3590: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 16553 components: - type: MetaData @@ -100168,6 +101026,8 @@ entities: 16579: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18047 components: - type: MetaData @@ -100181,6 +101041,8 @@ entities: 18048: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 18062 components: - type: MetaData @@ -100197,6 +101059,8 @@ entities: 3047: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalSwitchDirectional entities: - uid: 9640 @@ -100258,6 +101122,8 @@ entities: - Forward - - Off - Off + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 16169 @@ -100265,6 +101131,8 @@ entities: - type: Transform pos: -19.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 5317 @@ -100272,6 +101140,8 @@ entities: - type: Transform pos: -22.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 5648 @@ -100280,6 +101150,8 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 12611 @@ -100287,6 +101159,8 @@ entities: - type: Transform pos: 35.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 21 @@ -100295,6 +101169,8 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBath entities: - uid: 15938 @@ -100302,6 +101178,8 @@ entities: - type: Transform pos: -43.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBiohazardMed entities: - uid: 12777 @@ -100309,11 +101187,15 @@ entities: - type: Transform pos: 26.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12778 components: - type: Transform pos: 22.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 1377 @@ -100321,6 +101203,8 @@ entities: - type: Transform pos: 36.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 4218 @@ -100328,6 +101212,8 @@ entities: - type: Transform pos: 8.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargoDock entities: - uid: 6506 @@ -100335,11 +101221,15 @@ entities: - type: Transform pos: 8.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6507 components: - type: Transform pos: 8.5,40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 3245 @@ -100348,6 +101238,8 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 1930 @@ -100356,11 +101248,15 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4110 components: - type: Transform pos: 29.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 4171 @@ -100369,6 +101265,8 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 4068 @@ -100376,11 +101274,15 @@ entities: - type: Transform pos: 36.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6308 components: - type: Transform pos: 12.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDetective entities: - uid: 5848 @@ -100388,6 +101290,8 @@ entities: - type: Transform pos: 1.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 11727 @@ -100396,12 +101300,16 @@ entities: rot: 1.5707963267948966 rad pos: -20.501694,-14.704858 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14742 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.497725,-40.304935 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 11753 @@ -100409,35 +101317,47 @@ entities: - type: Transform pos: -4.4989257,18.304083 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12812 components: - type: Transform pos: 18.501328,3.7005234 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12951 components: - type: Transform rot: 3.141592653589793 rad pos: -23.50321,-14.303962 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14761 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15032 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15040 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.498208,18.692 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 15044 @@ -100445,6 +101365,8 @@ entities: - type: Transform pos: -14.498813,-14.699825 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 11734 @@ -100453,30 +101375,40 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13582 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.498813,-14.304178 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14344 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.496222,-1.7055917 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14744 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.50147,15.697969 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15047 components: - type: Transform rot: 3.141592653589793 rad pos: 12.502421,15.691843 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 6112 @@ -100484,11 +101416,15 @@ entities: - type: Transform pos: -32.50111,-32.70194 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15039 components: - type: Transform pos: -14.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 11096 @@ -100497,40 +101433,54 @@ entities: rot: 3.141592653589793 rad pos: -17.495373,-27.69906 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11754 components: - type: Transform rot: 3.141592653589793 rad pos: 14.500077,-11.300287 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13531 components: - type: Transform pos: 18.497702,12.302287 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13624 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.50321,-14.6975975 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13693 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5034904,-11.692226 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14762 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.503107,-40.69738 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15042 components: - type: Transform pos: -6.4968357,11.693296 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEscapePod entities: - uid: 5555 @@ -100539,70 +101489,94 @@ entities: rot: 3.141592653589793 rad pos: -8.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8427 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11590 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13877 components: - type: Transform pos: -28.5,-44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13878 components: - type: Transform pos: -37.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14105 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14740 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.49834,18.307442 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15035 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.497536,-2.7050738 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17328 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17331 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17332 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17371 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 11723 @@ -100610,77 +101584,105 @@ entities: - type: Transform pos: -6.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11729 components: - type: Transform pos: -17.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13536 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13690 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13726 components: - type: Transform pos: 18.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14123 components: - type: Transform pos: -18.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14162 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14708 components: - type: Transform pos: -10.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14733 components: - type: Transform pos: -4.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14840 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14993 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15036 components: - type: Transform pos: -20.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15043 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15891 components: - type: Transform pos: 18.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 12758 @@ -100689,18 +101691,24 @@ entities: rot: 1.5707963267948966 rad pos: -26.497725,-40.69556 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14000 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.496222,-1.2993416 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14764 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 11902 @@ -100709,12 +101717,16 @@ entities: rot: 1.5707963267948966 rad pos: -20.501694,-14.30642 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18358 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.498719,15.302658 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 627 @@ -100722,53 +101734,71 @@ entities: - type: Transform pos: 18.497702,12.692912 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11725 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.497272,-28.30454 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12017 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.49786,-18.297403 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13339 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.50076,15.701214 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14104 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.499932,-11.301019 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14524 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14719 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4997537,15.306389 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14845 components: - type: Transform rot: 3.141592653589793 rad pos: -18.496513,-31.303017 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15045 components: - type: Transform pos: -10.496966,-2.2960353 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 11051 @@ -100777,42 +101807,56 @@ entities: rot: 3.141592653589793 rad pos: -17.50317,-27.31334 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11728 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.498208,18.301374 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13689 components: - type: Transform rot: 3.141592653589793 rad pos: -10.502838,-11.307338 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14520 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5002685,18.692705 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14676 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15033 components: - type: Transform rot: 3.141592653589793 rad pos: 18.499554,-2.3014147 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15046 components: - type: Transform rot: 3.141592653589793 rad pos: -10.4983835,3.2940526 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 11430 @@ -100820,57 +101864,77 @@ entities: - type: Transform pos: 18.498915,3.3042421 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11724 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.501745,-40.300663 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11726 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.497155,-11.7099 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12860 components: - type: Transform pos: -10.498068,-2.7127101 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13225 components: - type: Transform pos: 18.500702,-2.6998522 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14994 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.49976,15.29352 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14995 components: - type: Transform rot: 3.141592653589793 rad pos: -18.501804,-31.709396 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15037 components: - type: Transform pos: -6.5035267,11.294012 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15038 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.497272,-28.702978 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15049 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.50137,-18.69309 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 1299 @@ -100878,59 +101942,79 @@ entities: - type: Transform pos: 13.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15068 components: - type: Transform pos: 5.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15071 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15072 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15982 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15983 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15984 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15985 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15986 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15987 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 6117 @@ -100939,36 +102023,48 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11735 components: - type: Transform rot: 3.141592653589793 rad pos: -10.500978,-11.697264 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11903 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14739 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15034 components: - type: Transform rot: 3.141592653589793 rad pos: -10.4983835,3.708115 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15041 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalWash entities: - uid: 14836 @@ -100977,6 +102073,8 @@ entities: rot: -1.5707963267948966 rad pos: -32.501183,-32.302574 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDisposalSpace entities: - uid: 12615 @@ -100984,11 +102082,15 @@ entities: - type: Transform pos: 46.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12616 components: - type: Transform pos: 46.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 1354 @@ -100996,121 +102098,167 @@ entities: - type: Transform pos: 61.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1448 components: - type: Transform pos: 44.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1450 components: - type: Transform pos: 61.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1496 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1498 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1601 components: - type: Transform pos: 44.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1956 components: - type: Transform pos: 15.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4286 components: - type: Transform pos: -6.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4287 components: - type: Transform pos: 1.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5070 components: - type: Transform pos: -34.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5231 components: - type: Transform pos: -10.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6134 components: - type: Transform pos: -29.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6283 components: - type: Transform pos: 43.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7945 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8292 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8355 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10472 components: - type: Transform pos: 40.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11477 components: - type: Transform pos: 26.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11483 components: - type: Transform pos: 12.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12776 components: - type: Transform pos: 35.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18070 components: - type: Transform pos: -16.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18074 components: - type: Transform pos: -13.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18075 components: - type: Transform pos: -10.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 75 @@ -101118,16 +102266,22 @@ entities: - type: Transform pos: 30.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12736 components: - type: Transform pos: 38.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12745 components: - type: Transform pos: 37.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 1447 @@ -101135,6 +102289,8 @@ entities: - type: Transform pos: 25.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 5443 @@ -101142,31 +102298,43 @@ entities: - type: Transform pos: 45.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13889 components: - type: Transform pos: -27.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14358 components: - type: Transform pos: 45.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14775 components: - type: Transform pos: -23.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15024 components: - type: Transform pos: -28.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17377 components: - type: Transform pos: -20.5,56.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 7 @@ -101174,11 +102342,15 @@ entities: - type: Transform pos: -17.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16466 components: - type: Transform pos: -8.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 12705 @@ -101186,6 +102358,8 @@ entities: - type: Transform pos: 32.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFlammableMed entities: - uid: 5548 @@ -101193,16 +102367,22 @@ entities: - type: Transform pos: 27.5,-29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6138 components: - type: Transform pos: 30.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15260 components: - type: Transform pos: 28.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGenpop entities: - uid: 6110 @@ -101210,11 +102390,15 @@ entities: - type: Transform pos: -9.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6500 components: - type: Transform pos: -13.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 8365 @@ -101222,6 +102406,8 @@ entities: - type: Transform pos: 38.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 2269 @@ -101229,11 +102415,15 @@ entities: - type: Transform pos: -29.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10518 components: - type: Transform pos: -11.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 12734 @@ -101241,6 +102431,8 @@ entities: - type: Transform pos: 13.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 5512 @@ -101248,6 +102440,8 @@ entities: - type: Transform pos: -2.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 410 @@ -101255,12 +102449,16 @@ entities: - type: Transform pos: -5.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 426 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKitchen entities: - uid: 343 @@ -101268,6 +102466,8 @@ entities: - type: Transform pos: 7.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLawyer entities: - uid: 2761 @@ -101275,11 +102475,15 @@ entities: - type: Transform pos: -32.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15874 components: - type: Transform pos: -20.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 2194 @@ -101287,6 +102491,8 @@ entities: - type: Transform pos: -17.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMagneticsMed entities: - uid: 14324 @@ -101294,11 +102500,15 @@ entities: - type: Transform pos: 22.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15687 components: - type: Transform pos: 44.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMail entities: - uid: 16820 @@ -101306,6 +102516,8 @@ entities: - type: Transform pos: 9.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 12670 @@ -101313,6 +102525,8 @@ entities: - type: Transform pos: 34.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 1065 @@ -101320,6 +102534,8 @@ entities: - type: Transform pos: 22.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 4020 @@ -101328,6 +102544,8 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 12735 @@ -101335,6 +102553,8 @@ entities: - type: Transform pos: -29.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNosmoking entities: - uid: 12769 @@ -101342,16 +102562,22 @@ entities: - type: Transform pos: 34.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12772 components: - type: Transform pos: 27.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15250 components: - type: Transform pos: 16.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPrison entities: - uid: 1645 @@ -101359,11 +102585,15 @@ entities: - type: Transform pos: -7.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11776 components: - type: Transform pos: -6.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 4211 @@ -101371,6 +102601,8 @@ entities: - type: Transform pos: 5.5,19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 18595 @@ -101378,6 +102610,8 @@ entities: - type: Transform pos: 8.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 11141 @@ -101385,6 +102619,8 @@ entities: - type: Transform pos: -15.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 10494 @@ -101392,6 +102628,8 @@ entities: - type: Transform pos: -16.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 12749 @@ -101399,6 +102637,8 @@ entities: - type: Transform pos: 17.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 11170 @@ -101406,6 +102646,8 @@ entities: - type: Transform pos: -8.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 4492 @@ -101413,31 +102655,43 @@ entities: - type: Transform pos: -23.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5599 components: - type: Transform pos: -11.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5749 components: - type: Transform pos: -9.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6599 components: - type: Transform pos: -13.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12767 components: - type: Transform pos: 37.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15471 components: - type: Transform pos: -5.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 5558 @@ -101445,21 +102699,29 @@ entities: - type: Transform pos: -2.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6622 components: - type: Transform pos: -34.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6646 components: - type: Transform pos: -4.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8658 components: - type: Transform pos: 18.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 10122 @@ -101467,21 +102729,29 @@ entities: - type: Transform pos: -53.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12617 components: - type: Transform pos: -43.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15792 components: - type: Transform pos: -53.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15793 components: - type: Transform pos: -61.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 6034 @@ -101489,16 +102759,22 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12679 components: - type: Transform pos: 28.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12771 components: - type: Transform pos: 38.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 2151 @@ -101506,46 +102782,64 @@ entities: - type: Transform pos: 13.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6108 components: - type: Transform pos: -38.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12753 components: - type: Transform pos: 30.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12754 components: - type: Transform pos: 47.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12755 components: - type: Transform pos: 38.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12756 components: - type: Transform pos: 41.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16101 components: - type: Transform pos: -22.5,55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17642 components: - type: Transform pos: 23.5,42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18605 components: - type: Transform pos: 48.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 4067 @@ -101553,6 +102847,8 @@ entities: - type: Transform pos: 33.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 7999 @@ -101560,6 +102856,8 @@ entities: - type: Transform pos: 31.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTheater entities: - uid: 344 @@ -101567,6 +102865,8 @@ entities: - type: Transform pos: 5.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 8238 @@ -101574,6 +102874,8 @@ entities: - type: Transform pos: -3.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVault entities: - uid: 15513 @@ -101581,6 +102883,8 @@ entities: - type: Transform pos: 8.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 3978 @@ -101589,6 +102893,8 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignXenobio entities: - uid: 5402 @@ -101596,6 +102902,8 @@ entities: - type: Transform pos: -31.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SilverRingDiamond entities: - uid: 10378 @@ -102896,6 +104204,28 @@ entities: - type: Transform pos: -4.5,6.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 18655 + components: + - type: Transform + pos: -5.5,46.5 + parent: 2 + - uid: 18656 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 18657 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 + - uid: 18658 + components: + - type: Transform + pos: -5.5,39.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 7804 @@ -103678,69 +105008,93 @@ entities: - type: Transform pos: -17.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12867 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14620 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14621 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14623 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14624 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14626 components: - type: Transform pos: -27.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14880 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15927 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17229 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17581 components: - type: Transform pos: -0.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18357 components: - type: Transform pos: 11.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: StationMapBroken entities: - uid: 14628 @@ -103749,6 +105103,8 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SteelBench entities: - uid: 1309 @@ -106085,6 +107441,8 @@ entities: - type: Transform pos: -14.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SyndieHandyFlag entities: - uid: 16078 @@ -122375,6 +123733,8 @@ entities: - type: Transform pos: 37.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 14218 @@ -122382,6 +123742,8 @@ entities: - type: Transform pos: 37.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 13985 @@ -122389,6 +123751,8 @@ entities: - type: Transform pos: 37.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 13984 @@ -122397,6 +123761,8 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningTritium entities: - uid: 13983 @@ -122405,6 +123771,8 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 13982 @@ -122413,6 +123781,8 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 1683 From b4bd973fbf4e97adecc117d9cf1b610618ef5a7b Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Sun, 31 Aug 2025 10:58:22 +0200 Subject: [PATCH 189/194] Fix latejoinspawner on Exo (#40011) --- Resources/Maps/exo.yml | 154 +++++++++++++++++++++++------------------ 1 file changed, 88 insertions(+), 66 deletions(-) diff --git a/Resources/Maps/exo.yml b/Resources/Maps/exo.yml index 535245958c..512da6036f 100644 --- a/Resources/Maps/exo.yml +++ b/Resources/Maps/exo.yml @@ -4,8 +4,8 @@ meta: engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 08/27/2025 14:22:57 - entityCount: 19813 + time: 08/31/2025 08:35:05 + entityCount: 19817 maps: - 1 grids: @@ -4591,10 +4591,10 @@ entities: 0: 55551 8,-16: 0: 271 - 4: 17408 + 2: 17408 8,-15: 1: 4096 - 4: 4 + 2: 4 8,-14: 0: 32752 8,-13: @@ -5288,8 +5288,8 @@ entities: 0: 65535 9,-16: 0: 15 - 5: 4352 - 2: 17408 + 3: 4352 + 4: 17408 10,-20: 0: 65280 10,-19: @@ -5300,8 +5300,8 @@ entities: 0: 65535 10,-16: 0: 15 - 2: 4352 - 6: 17408 + 4: 4352 + 5: 17408 11,-20: 0: 65024 11,-19: @@ -5313,7 +5313,7 @@ entities: 11,-16: 0: 15 1: 35840 - 2: 4352 + 4: 4352 12,-20: 0: 65280 12,-19: @@ -5346,7 +5346,7 @@ entities: 0: 61183 12,-16: 0: 3 - 2: 2184 + 4: 2184 1: 8960 13,-20: 0: 65024 @@ -5359,7 +5359,7 @@ entities: 13,-21: 1: 16179 13,-16: - 2: 819 + 4: 819 1: 8 14,-20: 0: 53504 @@ -5559,7 +5559,7 @@ entities: 0: 59392 11,-15: 1: 32904 - 2: 1 + 4: 1 12,-14: 0: 62926 11,-14: @@ -5680,12 +5680,12 @@ entities: 0: 60625 11,-10: 0: 34944 - 3: 13104 + 6: 13104 12,-9: 0: 56784 11,-9: 0: 65416 - 3: 2 + 6: 2 12,-8: 0: 57117 13,-11: @@ -5831,7 +5831,7 @@ entities: 10,-11: 0: 65535 10,-10: - 3: 65520 + 6: 65520 0: 4 10,-13: 0: 12276 @@ -5894,14 +5894,14 @@ entities: 11,-3: 1: 12288 9,-15: - 5: 1 - 2: 4 + 3: 1 + 4: 4 1: 32768 9,-14: 0: 36848 10,-15: - 2: 1 - 6: 4 + 4: 1 + 5: 4 10,-14: 0: 65520 -8,-24: @@ -6011,6 +6011,7 @@ entities: - volume: 2500 temperature: 293.15 moles: + - 6666.982 - 0 - 0 - 0 @@ -6022,6 +6023,50 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - 0 - volume: 2500 temperature: 235 @@ -6038,51 +6083,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -10066,7 +10066,7 @@ entities: pos: 11.5,-30.5 parent: 2 - type: Door - secondsUntilStateChange: -231715.92 + secondsUntilStateChange: -231736.94 state: Opening - type: DeviceLinkSource lastSignals: @@ -10414,7 +10414,7 @@ entities: pos: 34.5,-36.5 parent: 2 - type: Door - secondsUntilStateChange: -7213.6187 + secondsUntilStateChange: -7234.6396 state: Opening - type: DeviceLinkSource lastSignals: @@ -101937,6 +101937,28 @@ entities: - type: Transform pos: -8.5,-48.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 14218 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 14221 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 3459 From 1150053580c84dd5f0785ce61901189615ed6240 Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Sun, 31 Aug 2025 10:58:28 +0200 Subject: [PATCH 190/194] Fix latejoin spawner on Plasma (#40012) --- Resources/Maps/plasma.yml | 1498 ++++++++++++++++++++++++++++++++++++- 1 file changed, 1492 insertions(+), 6 deletions(-) diff --git a/Resources/Maps/plasma.yml b/Resources/Maps/plasma.yml index df62227ce3..b5d76a75e0 100644 --- a/Resources/Maps/plasma.yml +++ b/Resources/Maps/plasma.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 266.0.0 forkId: "" forkVersion: "" - time: 07/22/2025 14:44:01 - entityCount: 26380 + time: 08/31/2025 08:36:21 + entityCount: 26386 maps: - 1 grids: @@ -10064,6 +10064,8 @@ entities: - 25266 - 25235 - 25090 + - type: Fixtures + fixtures: {} - uid: 346 components: - type: MetaData @@ -10076,6 +10078,8 @@ entities: devices: - 9330 - 18807 + - type: Fixtures + fixtures: {} - uid: 374 components: - type: MetaData @@ -10089,6 +10093,8 @@ entities: - 23516 - 9976 - 23320 + - type: Fixtures + fixtures: {} - uid: 461 components: - type: MetaData @@ -10101,6 +10107,8 @@ entities: - 23370 - 23872 - 23368 + - type: Fixtures + fixtures: {} - uid: 854 components: - type: Transform @@ -10112,6 +10120,8 @@ entities: - 457 - 18223 - 972 + - type: Fixtures + fixtures: {} - uid: 927 components: - type: MetaData @@ -10131,6 +10141,8 @@ entities: - 25858 - 25856 - 25857 + - type: Fixtures + fixtures: {} - uid: 1848 components: - type: MetaData @@ -10149,6 +10161,8 @@ entities: - 24570 - 24569 - 26337 + - type: Fixtures + fixtures: {} - uid: 2136 components: - type: MetaData @@ -10171,6 +10185,8 @@ entities: - 10020 - 10021 - 6939 + - type: Fixtures + fixtures: {} - uid: 3073 components: - type: MetaData @@ -10188,6 +10204,8 @@ entities: - 11250 - 11253 - 11254 + - type: Fixtures + fixtures: {} - uid: 3074 components: - type: MetaData @@ -10202,6 +10220,8 @@ entities: - 10402 - 11246 - 11254 + - type: Fixtures + fixtures: {} - uid: 3287 components: - type: MetaData @@ -10233,6 +10253,8 @@ entities: - 2980 - 2987 - 6938 + - type: Fixtures + fixtures: {} - uid: 4080 components: - type: MetaData @@ -10249,6 +10271,8 @@ entities: - 11179 - 16988 - 16991 + - type: Fixtures + fixtures: {} - uid: 4214 components: - type: MetaData @@ -10266,6 +10290,8 @@ entities: - 12510 - 11070 - 24045 + - type: Fixtures + fixtures: {} - uid: 5387 components: - type: MetaData @@ -10277,6 +10303,8 @@ entities: - type: DeviceList devices: - 5385 + - type: Fixtures + fixtures: {} - uid: 5658 components: - type: MetaData @@ -10288,6 +10316,8 @@ entities: - type: DeviceList devices: - 5379 + - type: Fixtures + fixtures: {} - uid: 5898 components: - type: MetaData @@ -10304,6 +10334,8 @@ entities: - 14951 - 14950 - 14948 + - type: Fixtures + fixtures: {} - uid: 5906 components: - type: MetaData @@ -10314,6 +10346,8 @@ entities: - type: DeviceList devices: - 19290 + - type: Fixtures + fixtures: {} - uid: 6850 components: - type: MetaData @@ -10327,6 +10361,8 @@ entities: - 11379 - 7088 - 11181 + - type: Fixtures + fixtures: {} - uid: 6929 components: - type: MetaData @@ -10342,6 +10378,8 @@ entities: - 18710 - 17897 - 17967 + - type: Fixtures + fixtures: {} - uid: 7346 components: - type: MetaData @@ -10359,6 +10397,8 @@ entities: - 7808 - 23895 - 22713 + - type: Fixtures + fixtures: {} - uid: 8070 components: - type: MetaData @@ -10369,6 +10409,8 @@ entities: - type: DeviceList devices: - 25859 + - type: Fixtures + fixtures: {} - uid: 8072 components: - type: MetaData @@ -10380,6 +10422,8 @@ entities: - type: DeviceList devices: - 25860 + - type: Fixtures + fixtures: {} - uid: 8411 components: - type: MetaData @@ -10392,6 +10436,8 @@ entities: - 860 - 853 - 24038 + - type: Fixtures + fixtures: {} - uid: 8934 components: - type: MetaData @@ -10407,6 +10453,8 @@ entities: - 11810 - 11072 - 5744 + - type: Fixtures + fixtures: {} - uid: 8941 components: - type: MetaData @@ -10426,6 +10474,8 @@ entities: - 13217 - 12001 - 13220 + - type: Fixtures + fixtures: {} - uid: 8947 components: - type: MetaData @@ -10444,6 +10494,8 @@ entities: - 14689 - 13863 - 15360 + - type: Fixtures + fixtures: {} - uid: 8954 components: - type: MetaData @@ -10456,6 +10508,8 @@ entities: devices: - 15356 - 5746 + - type: Fixtures + fixtures: {} - uid: 9146 components: - type: MetaData @@ -10469,6 +10523,8 @@ entities: - 12441 - 12514 - 11100 + - type: Fixtures + fixtures: {} - uid: 9162 components: - type: MetaData @@ -10482,6 +10538,8 @@ entities: - 12244 - 12247 - 2488 + - type: Fixtures + fixtures: {} - uid: 9167 components: - type: Transform @@ -10499,6 +10557,8 @@ entities: - 24662 - 4910 - 7653 + - type: Fixtures + fixtures: {} - uid: 9253 components: - type: MetaData @@ -10523,6 +10583,8 @@ entities: - 14353 - 14356 - 1782 + - type: Fixtures + fixtures: {} - uid: 9346 components: - type: MetaData @@ -10536,6 +10598,8 @@ entities: - 12298 - 25653 - 25651 + - type: Fixtures + fixtures: {} - uid: 9348 components: - type: MetaData @@ -10547,6 +10611,8 @@ entities: devices: - 14863 - 14864 + - type: Fixtures + fixtures: {} - uid: 9385 components: - type: Transform @@ -10558,6 +10624,8 @@ entities: - 24697 - 869 - 16816 + - type: Fixtures + fixtures: {} - uid: 9430 components: - type: MetaData @@ -10576,6 +10644,8 @@ entities: - 13438 - 19613 - 14948 + - type: Fixtures + fixtures: {} - uid: 9459 components: - type: MetaData @@ -10588,6 +10658,8 @@ entities: - 6868 - 7843 - 16418 + - type: Fixtures + fixtures: {} - uid: 9624 components: - type: MetaData @@ -10599,6 +10671,8 @@ entities: - type: DeviceList devices: - 9476 + - type: Fixtures + fixtures: {} - uid: 11242 components: - type: MetaData @@ -10613,6 +10687,8 @@ entities: - 2968 - 2976 - 11251 + - type: Fixtures + fixtures: {} - uid: 11243 components: - type: MetaData @@ -10630,6 +10706,8 @@ entities: - 11249 - 2976 - 11252 + - type: Fixtures + fixtures: {} - uid: 11244 components: - type: MetaData @@ -10644,6 +10722,8 @@ entities: - 23990 - 14980 - 7351 + - type: Fixtures + fixtures: {} - uid: 11298 components: - type: MetaData @@ -10662,6 +10742,8 @@ entities: - 11805 - 24031 - 24034 + - type: Fixtures + fixtures: {} - uid: 11722 components: - type: MetaData @@ -10680,6 +10762,8 @@ entities: - 24647 - 24646 - 24645 + - type: Fixtures + fixtures: {} - uid: 11837 components: - type: MetaData @@ -10706,6 +10790,8 @@ entities: - 11817 - 11816 - 23126 + - type: Fixtures + fixtures: {} - uid: 11893 components: - type: MetaData @@ -10728,6 +10814,8 @@ entities: - 7808 - 23895 - 22713 + - type: Fixtures + fixtures: {} - uid: 12151 components: - type: MetaData @@ -10770,6 +10858,8 @@ entities: - 18200 - 1658 - 19471 + - type: Fixtures + fixtures: {} - uid: 14263 components: - type: MetaData @@ -10783,6 +10873,8 @@ entities: - 14272 - 4875 - 4280 + - type: Fixtures + fixtures: {} - uid: 14861 components: - type: MetaData @@ -10795,6 +10887,8 @@ entities: - 23614 - 22162 - 19738 + - type: Fixtures + fixtures: {} - uid: 15140 components: - type: MetaData @@ -10810,6 +10904,8 @@ entities: - 24127 - 24124 - 24128 + - type: Fixtures + fixtures: {} - uid: 15348 components: - type: MetaData @@ -10827,6 +10923,8 @@ entities: - 15353 - 15355 - 15354 + - type: Fixtures + fixtures: {} - uid: 15359 components: - type: MetaData @@ -10845,6 +10943,8 @@ entities: - 11105 - 9134 - 12047 + - type: Fixtures + fixtures: {} - uid: 15364 components: - type: MetaData @@ -10858,6 +10958,8 @@ entities: - 15103 - 24123 - 1599 + - type: Fixtures + fixtures: {} - uid: 15411 components: - type: MetaData @@ -10871,6 +10973,8 @@ entities: - 24124 - 24125 - 24126 + - type: Fixtures + fixtures: {} - uid: 15412 components: - type: MetaData @@ -10884,6 +10988,8 @@ entities: - 15079 - 15078 - 24126 + - type: Fixtures + fixtures: {} - uid: 15413 components: - type: MetaData @@ -10896,6 +11002,8 @@ entities: - 24128 - 14285 - 15121 + - type: Fixtures + fixtures: {} - uid: 15415 components: - type: MetaData @@ -10915,6 +11023,8 @@ entities: - 15369 - 15373 - 15417 + - type: Fixtures + fixtures: {} - uid: 15416 components: - type: MetaData @@ -10923,6 +11033,8 @@ entities: rot: -1.5707963267948966 rad pos: -62.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15581 components: - type: MetaData @@ -10940,6 +11052,8 @@ entities: - 4826 - 5626 - 5622 + - type: Fixtures + fixtures: {} - uid: 16218 components: - type: MetaData @@ -10955,6 +11069,8 @@ entities: - 22218 - 10448 - 1166 + - type: Fixtures + fixtures: {} - uid: 17332 components: - type: MetaData @@ -10967,6 +11083,8 @@ entities: devices: - 13824 - 16746 + - type: Fixtures + fixtures: {} - uid: 17569 components: - type: MetaData @@ -10980,6 +11098,8 @@ entities: - 17180 - 24048 - 24045 + - type: Fixtures + fixtures: {} - uid: 17849 components: - type: MetaData @@ -10993,6 +11113,8 @@ entities: - 15036 - 25561 - 11829 + - type: Fixtures + fixtures: {} - uid: 18696 components: - type: MetaData @@ -11007,6 +11129,8 @@ entities: - 18024 - 18012 - 18708 + - type: Fixtures + fixtures: {} - uid: 18697 components: - type: MetaData @@ -11021,6 +11145,8 @@ entities: - 18037 - 18038 - 18048 + - type: Fixtures + fixtures: {} - uid: 18703 components: - type: MetaData @@ -11028,6 +11154,8 @@ entities: - type: Transform pos: -87.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18704 components: - type: MetaData @@ -11041,6 +11169,8 @@ entities: - 18060 - 18722 - 18072 + - type: Fixtures + fixtures: {} - uid: 18705 components: - type: MetaData @@ -11054,6 +11184,8 @@ entities: - 16034 - 17442 - 18721 + - type: Fixtures + fixtures: {} - uid: 18706 components: - type: MetaData @@ -11066,6 +11198,8 @@ entities: - 17994 - 18707 - 17241 + - type: Fixtures + fixtures: {} - uid: 19277 components: - type: MetaData @@ -11079,6 +11213,8 @@ entities: - 17091 - 19288 - 18053 + - type: Fixtures + fixtures: {} - uid: 19278 components: - type: MetaData @@ -11093,6 +11229,8 @@ entities: - 18843 - 18844 - 19289 + - type: Fixtures + fixtures: {} - uid: 19280 components: - type: MetaData @@ -11105,6 +11243,8 @@ entities: devices: - 19291 - 19292 + - type: Fixtures + fixtures: {} - uid: 19281 components: - type: MetaData @@ -11116,6 +11256,8 @@ entities: - type: DeviceList devices: - 10148 + - type: Fixtures + fixtures: {} - uid: 19282 components: - type: MetaData @@ -11130,6 +11272,8 @@ entities: - 18893 - 19285 - 18985 + - type: Fixtures + fixtures: {} - uid: 19284 components: - type: MetaData @@ -11141,6 +11285,8 @@ entities: devices: - 16940 - 5384 + - type: Fixtures + fixtures: {} - uid: 19286 components: - type: MetaData @@ -11159,6 +11305,8 @@ entities: - 26338 - 18957 - 18891 + - type: Fixtures + fixtures: {} - uid: 19293 components: - type: MetaData @@ -11173,6 +11321,8 @@ entities: - 19294 - 18965 - 15582 + - type: Fixtures + fixtures: {} - uid: 19297 components: - type: MetaData @@ -11184,11 +11334,15 @@ entities: - type: DeviceList devices: - 19298 + - type: Fixtures + fixtures: {} - uid: 19570 components: - type: Transform pos: -96.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19798 components: - type: MetaData @@ -11205,6 +11359,8 @@ entities: - 19713 - 19797 - 19714 + - type: Fixtures + fixtures: {} - uid: 19805 components: - type: MetaData @@ -11218,6 +11374,8 @@ entities: - 19804 - 10170 - 18879 + - type: Fixtures + fixtures: {} - uid: 19806 components: - type: MetaData @@ -11231,6 +11389,8 @@ entities: - 19792 - 19652 - 19653 + - type: Fixtures + fixtures: {} - uid: 19910 components: - type: MetaData @@ -11271,6 +11431,8 @@ entities: - 24779 - 24782 - 24783 + - type: Fixtures + fixtures: {} - uid: 20216 components: - type: MetaData @@ -11283,6 +11445,8 @@ entities: - 4332 - 19029 - 20094 + - type: Fixtures + fixtures: {} - uid: 20303 components: - type: MetaData @@ -11295,6 +11459,8 @@ entities: devices: - 275 - 20304 + - type: Fixtures + fixtures: {} - uid: 20316 components: - type: MetaData @@ -11320,6 +11486,8 @@ entities: - 17492 - 431 - 507 + - type: Fixtures + fixtures: {} - uid: 20318 components: - type: MetaData @@ -11332,6 +11500,8 @@ entities: - 20373 - 20374 - 20375 + - type: Fixtures + fixtures: {} - uid: 20367 components: - type: MetaData @@ -11345,6 +11515,8 @@ entities: - 20120 - 20119 - 20377 + - type: Fixtures + fixtures: {} - uid: 20372 components: - type: MetaData @@ -11360,6 +11532,8 @@ entities: - 14633 - 7825 - 20079 + - type: Fixtures + fixtures: {} - uid: 20948 components: - type: MetaData @@ -11378,6 +11552,8 @@ entities: - 24050 - 24048 - 24049 + - type: Fixtures + fixtures: {} - uid: 21036 components: - type: MetaData @@ -11390,6 +11566,8 @@ entities: - 15048 - 19791 - 14840 + - type: Fixtures + fixtures: {} - uid: 21473 components: - type: MetaData @@ -11403,6 +11581,8 @@ entities: - 20074 - 20104 - 20472 + - type: Fixtures + fixtures: {} - uid: 21674 components: - type: MetaData @@ -11415,6 +11595,8 @@ entities: - 7039 - 22285 - 24230 + - type: Fixtures + fixtures: {} - uid: 22168 components: - type: MetaData @@ -11433,6 +11615,8 @@ entities: - 24680 - 24681 - 24693 + - type: Fixtures + fixtures: {} - uid: 23400 components: - type: MetaData @@ -11445,6 +11629,8 @@ entities: devices: - 19571 - 19790 + - type: Fixtures + fixtures: {} - uid: 23457 components: - type: MetaData @@ -11458,6 +11644,8 @@ entities: - 788 - 23519 - 20779 + - type: Fixtures + fixtures: {} - uid: 23681 components: - type: MetaData @@ -11487,6 +11675,8 @@ entities: - 14628 - 16293 - 15676 + - type: Fixtures + fixtures: {} - uid: 23983 components: - type: MetaData @@ -11497,6 +11687,8 @@ entities: - type: DeviceList devices: - 23984 + - type: Fixtures + fixtures: {} - uid: 24026 components: - type: MetaData @@ -11513,6 +11705,8 @@ entities: - 14937 - 14938 - 14936 + - type: Fixtures + fixtures: {} - uid: 24037 components: - type: MetaData @@ -11525,6 +11719,8 @@ entities: devices: - 25633 - 25632 + - type: Fixtures + fixtures: {} - uid: 24043 components: - type: MetaData @@ -11538,6 +11734,8 @@ entities: - 12329 - 8663 - 24044 + - type: Fixtures + fixtures: {} - uid: 24108 components: - type: MetaData @@ -11557,6 +11755,8 @@ entities: - 24164 - 24162 - 24867 + - type: Fixtures + fixtures: {} - uid: 24232 components: - type: MetaData @@ -11572,6 +11772,8 @@ entities: - 18613 - 24515 - 24509 + - type: Fixtures + fixtures: {} - uid: 24742 components: - type: MetaData @@ -11588,6 +11790,8 @@ entities: - 24130 - 15021 - 9250 + - type: Fixtures + fixtures: {} - uid: 25258 components: - type: MetaData @@ -11605,6 +11809,8 @@ entities: - 25256 - 25150 - 25248 + - type: Fixtures + fixtures: {} - uid: 25270 components: - type: MetaData @@ -11616,6 +11822,8 @@ entities: devices: - 24899 - 25192 + - type: Fixtures + fixtures: {} - uid: 25280 components: - type: MetaData @@ -11628,6 +11836,8 @@ entities: - 25190 - 25265 - 25177 + - type: Fixtures + fixtures: {} - uid: 25402 components: - type: MetaData @@ -11636,6 +11846,8 @@ entities: rot: -1.5707963267948966 rad pos: -111.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25644 components: - type: MetaData @@ -11648,6 +11860,8 @@ entities: - 12271 - 15039 - 10133 + - type: Fixtures + fixtures: {} - uid: 25886 components: - type: MetaData @@ -11664,6 +11878,8 @@ entities: - 20361 - 20362 - 20203 + - type: Fixtures + fixtures: {} - uid: 25887 components: - type: MetaData @@ -11680,6 +11896,8 @@ entities: - 19726 - 24558 - 19789 + - type: Fixtures + fixtures: {} - uid: 26179 components: - type: MetaData @@ -11693,6 +11911,8 @@ entities: - 13210 - 13021 - 11803 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 1236 @@ -14467,7 +14687,7 @@ entities: pos: -131.5,-45.5 parent: 2 - type: Door - secondsUntilStateChange: -52604.145 + secondsUntilStateChange: -52623.953 state: Opening - type: DeviceLinkSource lastSignals: @@ -15798,6 +16018,8 @@ entities: - type: Transform pos: -44.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 381 components: - type: MetaData @@ -15806,6 +16028,8 @@ entities: rot: -1.5707963267948966 rad pos: -116.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1957 components: - type: MetaData @@ -15813,6 +16037,8 @@ entities: - type: Transform pos: -122.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2083 components: - type: MetaData @@ -15820,6 +16046,8 @@ entities: - type: Transform pos: -108.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3069 components: - type: MetaData @@ -15828,6 +16056,8 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3126 components: - type: MetaData @@ -15836,6 +16066,8 @@ entities: rot: -1.5707963267948966 rad pos: -65.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3136 components: - type: MetaData @@ -15844,6 +16076,8 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3322 components: - type: MetaData @@ -15852,6 +16086,8 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3395 components: - type: MetaData @@ -15860,6 +16096,8 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3719 components: - type: MetaData @@ -15868,12 +16106,16 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3812 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4211 components: - type: MetaData @@ -15881,6 +16123,8 @@ entities: - type: Transform pos: -20.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4216 components: - type: MetaData @@ -15889,6 +16133,8 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4225 components: - type: MetaData @@ -15897,11 +16143,15 @@ entities: rot: -1.5707963267948966 rad pos: -135.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4341 components: - type: Transform pos: -56.5,-76.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4387 components: - type: MetaData @@ -15910,6 +16160,8 @@ entities: rot: 3.141592653589793 rad pos: -96.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4410 components: - type: MetaData @@ -15918,11 +16170,15 @@ entities: rot: 3.141592653589793 rad pos: -84.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4419 components: - type: Transform pos: -43.5,-72.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4990 components: - type: MetaData @@ -15931,6 +16187,8 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5159 components: - type: MetaData @@ -15939,6 +16197,8 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5836 components: - type: MetaData @@ -15947,6 +16207,8 @@ entities: rot: -1.5707963267948966 rad pos: -135.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6228 components: - type: MetaData @@ -15954,11 +16216,15 @@ entities: - type: Transform pos: -125.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6662 components: - type: Transform pos: -97.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7226 components: - type: MetaData @@ -15966,6 +16232,8 @@ entities: - type: Transform pos: -14.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7956 components: - type: MetaData @@ -15974,6 +16242,8 @@ entities: rot: 3.141592653589793 rad pos: -134.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8020 components: - type: MetaData @@ -15982,6 +16252,8 @@ entities: rot: 3.141592653589793 rad pos: -127.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8021 components: - type: MetaData @@ -15990,6 +16262,8 @@ entities: rot: 3.141592653589793 rad pos: -117.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8023 components: - type: MetaData @@ -15998,6 +16272,8 @@ entities: rot: 3.141592653589793 rad pos: -129.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8027 components: - type: MetaData @@ -16006,6 +16282,8 @@ entities: rot: 1.5707963267948966 rad pos: -123.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8310 components: - type: MetaData @@ -16014,6 +16292,8 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8342 components: - type: MetaData @@ -16022,6 +16302,8 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8354 components: - type: MetaData @@ -16030,6 +16312,8 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8931 components: - type: MetaData @@ -16038,6 +16322,8 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8933 components: - type: MetaData @@ -16045,6 +16331,8 @@ entities: - type: Transform pos: -41.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9076 components: - type: MetaData @@ -16052,6 +16340,8 @@ entities: - type: Transform pos: -31.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9157 components: - type: MetaData @@ -16060,6 +16350,8 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9357 components: - type: MetaData @@ -16067,6 +16359,8 @@ entities: - type: Transform pos: -26.5,-61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9638 components: - type: MetaData @@ -16075,6 +16369,8 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-65.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9833 components: - type: MetaData @@ -16083,6 +16379,8 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 10543 components: - type: MetaData @@ -16091,6 +16389,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11326 components: - type: MetaData @@ -16098,6 +16398,8 @@ entities: - type: Transform pos: -23.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13009 components: - type: MetaData @@ -16106,6 +16408,8 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13016 components: - type: MetaData @@ -16114,6 +16418,8 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13591 components: - type: MetaData @@ -16121,6 +16427,8 @@ entities: - type: Transform pos: -88.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13608 components: - type: MetaData @@ -16129,6 +16437,8 @@ entities: rot: 3.141592653589793 rad pos: -134.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13720 components: - type: MetaData @@ -16136,6 +16446,8 @@ entities: - type: Transform pos: -140.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13742 components: - type: MetaData @@ -16144,6 +16456,8 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14167 components: - type: MetaData @@ -16152,6 +16466,8 @@ entities: rot: 1.5707963267948966 rad pos: -123.5,-52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14237 components: - type: MetaData @@ -16160,6 +16476,8 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14281 components: - type: MetaData @@ -16168,6 +16486,8 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14753 components: - type: MetaData @@ -16176,6 +16496,8 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15262 components: - type: MetaData @@ -16184,6 +16506,8 @@ entities: rot: 1.5707963267948966 rad pos: -73.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15429 components: - type: MetaData @@ -16192,6 +16516,8 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16220 components: - type: MetaData @@ -16199,6 +16525,8 @@ entities: - type: Transform pos: -99.5,23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16994 components: - type: MetaData @@ -16207,6 +16535,8 @@ entities: rot: -1.5707963267948966 rad pos: -96.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18201 components: - type: MetaData @@ -16215,6 +16545,8 @@ entities: rot: -1.5707963267948966 rad pos: -85.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18385 components: - type: MetaData @@ -16222,6 +16554,8 @@ entities: - type: Transform pos: -110.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18403 components: - type: MetaData @@ -16230,6 +16564,8 @@ entities: rot: 3.141592653589793 rad pos: -85.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18405 components: - type: MetaData @@ -16238,6 +16574,8 @@ entities: rot: -1.5707963267948966 rad pos: -79.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18406 components: - type: MetaData @@ -16246,17 +16584,23 @@ entities: rot: -1.5707963267948966 rad pos: -89.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18418 components: - type: Transform pos: -93.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18422 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18990 components: - type: MetaData @@ -16265,6 +16609,8 @@ entities: rot: 1.5707963267948966 rad pos: -117.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19026 components: - type: MetaData @@ -16272,6 +16618,8 @@ entities: - type: Transform pos: -122.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19028 components: - type: MetaData @@ -16280,6 +16628,8 @@ entities: rot: 1.5707963267948966 rad pos: -117.5,-14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19053 components: - type: MetaData @@ -16288,6 +16638,8 @@ entities: rot: -1.5707963267948966 rad pos: -122.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19075 components: - type: MetaData @@ -16296,6 +16648,8 @@ entities: rot: 3.141592653589793 rad pos: -121.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19156 components: - type: MetaData @@ -16303,6 +16657,8 @@ entities: - type: Transform pos: -136.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19157 components: - type: MetaData @@ -16311,6 +16667,8 @@ entities: rot: 3.141592653589793 rad pos: -140.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19764 components: - type: MetaData @@ -16319,6 +16677,8 @@ entities: rot: 3.141592653589793 rad pos: -88.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19812 components: - type: MetaData @@ -16327,6 +16687,8 @@ entities: rot: -1.5707963267948966 rad pos: -86.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19814 components: - type: MetaData @@ -16335,6 +16697,8 @@ entities: rot: -1.5707963267948966 rad pos: -97.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19815 components: - type: MetaData @@ -16343,6 +16707,8 @@ entities: rot: 3.141592653589793 rad pos: -86.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20011 components: - type: MetaData @@ -16350,6 +16716,8 @@ entities: - type: Transform pos: -92.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20851 components: - type: MetaData @@ -16357,6 +16725,8 @@ entities: - type: Transform pos: -35.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21872 components: - type: MetaData @@ -16365,6 +16735,8 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22123 components: - type: MetaData @@ -16373,6 +16745,8 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22712 components: - type: MetaData @@ -16381,6 +16755,8 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23178 components: - type: MetaData @@ -16389,11 +16765,15 @@ entities: rot: 3.141592653589793 rad pos: -94.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23212 components: - type: Transform pos: -98.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23671 components: - type: MetaData @@ -16401,6 +16781,8 @@ entities: - type: Transform pos: -57.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24078 components: - type: MetaData @@ -16408,6 +16790,8 @@ entities: - type: Transform pos: -17.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25110 components: - type: MetaData @@ -16416,6 +16800,8 @@ entities: rot: 3.141592653589793 rad pos: -120.5,-88.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25136 components: - type: MetaData @@ -16423,6 +16809,8 @@ entities: - type: Transform pos: -119.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25880 components: - type: MetaData @@ -16431,6 +16819,8 @@ entities: rot: 3.141592653589793 rad pos: -137.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25910 components: - type: MetaData @@ -16438,6 +16828,8 @@ entities: - type: Transform pos: -117.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25949 components: - type: MetaData @@ -16446,6 +16838,8 @@ entities: rot: -1.5707963267948966 rad pos: -73.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26346 components: - type: MetaData @@ -16454,6 +16848,8 @@ entities: rot: 3.141592653589793 rad pos: -117.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHighCapacity entities: - uid: 2133 @@ -16464,6 +16860,8 @@ entities: rot: 3.141592653589793 rad pos: -64.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHyperCapacity entities: - uid: 3246 @@ -16474,6 +16872,8 @@ entities: rot: -1.5707963267948966 rad pos: -70.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: AppraisalTool entities: - uid: 23940 @@ -16489,12 +16889,16 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26177 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtifactFragment1 entities: - uid: 5997 @@ -24161,6 +24565,8 @@ entities: - type: Transform pos: -70.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignEngineChange entities: - uid: 8776 @@ -24168,6 +24574,8 @@ entities: - type: Transform pos: -10.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BarSignRobustaCafe entities: - uid: 15680 @@ -24175,11 +24583,15 @@ entities: - type: Transform pos: -64.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22381 components: - type: Transform pos: -20.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BaseBallBat entities: - uid: 9740 @@ -25419,6 +25831,8 @@ entities: - type: Transform pos: -56.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: BoxLatexGloves entities: - uid: 4183 @@ -25528,6 +25942,8 @@ entities: - AutoClose - - Start - Close + - type: Fixtures + fixtures: {} - uid: 14643 components: - type: Transform @@ -25543,6 +25959,8 @@ entities: - AutoClose - - Start - Close + - type: Fixtures + fixtures: {} - proto: Brutepack entities: - uid: 20642 @@ -64328,6 +64746,8 @@ entities: - type: Transform pos: -19.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: CleanerGrenade entities: - uid: 3324 @@ -68329,35 +68749,47 @@ entities: - type: Transform pos: -36.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4027 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4028 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4078 components: - type: Transform pos: -21.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4079 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13768 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DeployableBarrier entities: - uid: 873 @@ -77628,64 +78060,86 @@ entities: - type: Transform pos: -107.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19505 components: - type: Transform rot: -1.5707963267948966 rad pos: -114.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24306 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24307 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24308 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24310 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24311 components: - type: Transform pos: -110.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24313 components: - type: Transform pos: -132.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24315 components: - type: Transform rot: 1.5707963267948966 rad pos: -123.5,-53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24316 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24317 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ExtinguisherCabinetFilled entities: - uid: 3936 @@ -77693,47 +78147,63 @@ entities: - type: Transform pos: -36.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11237 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11238 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15346 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20952 components: - type: Transform pos: -116.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23939 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24321 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24354 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FaxMachineBase entities: - uid: 3 @@ -78087,6 +78557,8 @@ entities: devices: - 1208 - 1122 + - type: Fixtures + fixtures: {} - uid: 1814 components: - type: Transform @@ -78106,6 +78578,8 @@ entities: - 14360 - 11805 - 24025 + - type: Fixtures + fixtures: {} - uid: 3288 components: - type: MetaData @@ -78137,6 +78611,8 @@ entities: - 2980 - 2987 - 6938 + - type: Fixtures + fixtures: {} - uid: 8155 components: - type: MetaData @@ -78150,6 +78626,8 @@ entities: - 5739 - 6601 - 8333 + - type: Fixtures + fixtures: {} - uid: 9164 components: - type: MetaData @@ -78166,6 +78644,8 @@ entities: - 14590 - 13444 - 13445 + - type: Fixtures + fixtures: {} - uid: 12768 components: - type: Transform @@ -78204,6 +78684,8 @@ entities: - 24779 - 24782 - 24783 + - type: Fixtures + fixtures: {} - uid: 12769 components: - type: Transform @@ -78232,6 +78714,8 @@ entities: - 23680 - 15676 - 23679 + - type: Fixtures + fixtures: {} - uid: 13490 components: - type: MetaData @@ -78243,6 +78727,8 @@ entities: - type: DeviceList devices: - 19610 + - type: Fixtures + fixtures: {} - uid: 13492 components: - type: MetaData @@ -78255,6 +78741,8 @@ entities: - 8955 - 13485 - 19610 + - type: Fixtures + fixtures: {} - uid: 13736 components: - type: Transform @@ -78266,6 +78754,8 @@ entities: - 13788 - 13847 - 17422 + - type: Fixtures + fixtures: {} - uid: 14953 components: - type: MetaData @@ -78285,6 +78775,8 @@ entities: - 14948 - 14354 - 13438 + - type: Fixtures + fixtures: {} - uid: 14954 components: - type: MetaData @@ -78302,6 +78794,8 @@ entities: - 19471 - 14948 - 14354 + - type: Fixtures + fixtures: {} - uid: 15026 components: - type: Transform @@ -78320,6 +78814,8 @@ entities: - 11108 - 9134 - 15358 + - type: Fixtures + fixtures: {} - uid: 15347 components: - type: MetaData @@ -78337,6 +78833,8 @@ entities: - 11816 - 23126 - 11802 + - type: Fixtures + fixtures: {} - uid: 16688 components: - type: Transform @@ -78358,6 +78856,8 @@ entities: - 14597 - 24130 - 24743 + - type: Fixtures + fixtures: {} - uid: 17419 components: - type: Transform @@ -78369,6 +78869,8 @@ entities: - 11936 - 17427 - 17432 + - type: Fixtures + fixtures: {} - uid: 17420 components: - type: Transform @@ -78383,6 +78885,8 @@ entities: - 17436 - 14618 - 20370 + - type: Fixtures + fixtures: {} - uid: 17833 components: - type: Transform @@ -78407,6 +78911,8 @@ entities: - 25593 - 20380 - 20371 + - type: Fixtures + fixtures: {} - uid: 17850 components: - type: Transform @@ -78425,6 +78931,8 @@ entities: - 25643 - 25642 - 15354 + - type: Fixtures + fixtures: {} - uid: 18317 components: - type: MetaData @@ -78438,6 +78946,8 @@ entities: - 25564 - 25565 - 14590 + - type: Fixtures + fixtures: {} - uid: 18819 components: - type: MetaData @@ -78446,6 +78956,8 @@ entities: rot: -1.5707963267948966 rad pos: -142.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19506 components: - type: MetaData @@ -78460,6 +78972,8 @@ entities: - 25565 - 25564 - 19517 + - type: Fixtures + fixtures: {} - uid: 19526 components: - type: MetaData @@ -78478,6 +78992,8 @@ entities: - 13447 - 13445 - 13444 + - type: Fixtures + fixtures: {} - uid: 19747 components: - type: Transform @@ -78492,6 +79008,8 @@ entities: - 9135 - 25638 - 24046 + - type: Fixtures + fixtures: {} - uid: 22327 components: - type: MetaData @@ -78508,6 +79026,8 @@ entities: - 2984 - 2983 - 6939 + - type: Fixtures + fixtures: {} - uid: 23991 components: - type: MetaData @@ -78522,6 +79042,8 @@ entities: - 11230 - 11231 - 14980 + - type: Fixtures + fixtures: {} - uid: 24300 components: - type: Transform @@ -78555,6 +79077,8 @@ entities: - 16404 - 23865 - 15365 + - type: Fixtures + fixtures: {} - uid: 24309 components: - type: Transform @@ -78569,6 +79093,8 @@ entities: - 22802 - 22797 - 15417 + - type: Fixtures + fixtures: {} - uid: 24312 components: - type: Transform @@ -78582,6 +79108,8 @@ entities: - 14162 - 11743 - 25584 + - type: Fixtures + fixtures: {} - uid: 24784 components: - type: Transform @@ -78598,6 +79126,8 @@ entities: - 23895 - 7808 - 7345 + - type: Fixtures + fixtures: {} - uid: 24785 components: - type: Transform @@ -78610,6 +79140,8 @@ entities: - 14877 - 11265 - 22171 + - type: Fixtures + fixtures: {} - uid: 25562 components: - type: MetaData @@ -78621,6 +79153,8 @@ entities: devices: - 25563 - 19520 + - type: Fixtures + fixtures: {} - uid: 25598 components: - type: Transform @@ -78631,6 +79165,8 @@ entities: devices: - 25597 - 8935 + - type: Fixtures + fixtures: {} - uid: 25599 components: - type: Transform @@ -78640,6 +79176,8 @@ entities: - type: DeviceList devices: - 8955 + - type: Fixtures + fixtures: {} - uid: 25600 components: - type: Transform @@ -78649,6 +79187,8 @@ entities: devices: - 7540 - 8996 + - type: Fixtures + fixtures: {} - uid: 25603 components: - type: Transform @@ -78664,6 +79204,8 @@ entities: - 13484 - 25597 - 8935 + - type: Fixtures + fixtures: {} - uid: 25604 components: - type: Transform @@ -78680,6 +79222,8 @@ entities: - 13620 - 13618 - 13765 + - type: Fixtures + fixtures: {} - uid: 25607 components: - type: Transform @@ -78690,6 +79234,8 @@ entities: - 14596 - 13447 - 13446 + - type: Fixtures + fixtures: {} - uid: 25640 components: - type: Transform @@ -78707,6 +79253,8 @@ entities: - 8989 - 8976 - 9069 + - type: Fixtures + fixtures: {} - uid: 25641 components: - type: Transform @@ -78720,6 +79268,8 @@ entities: - 8976 - 9069 - 15039 + - type: Fixtures + fixtures: {} - uid: 25645 components: - type: Transform @@ -78733,6 +79283,8 @@ entities: - 5742 - 11105 - 15357 + - type: Fixtures + fixtures: {} - uid: 25647 components: - type: Transform @@ -78753,6 +79305,8 @@ entities: - 8778 - 8777 - 15355 + - type: Fixtures + fixtures: {} - uid: 25648 components: - type: Transform @@ -78765,6 +79319,8 @@ entities: - 5843 - 5827 - 15360 + - type: Fixtures + fixtures: {} - uid: 25649 components: - type: Transform @@ -78783,6 +79339,8 @@ entities: - 19613 - 14947 - 25653 + - type: Fixtures + fixtures: {} - uid: 26109 components: - type: Transform @@ -78803,6 +79361,8 @@ entities: - 25635 - 25634 - 15353 + - type: Fixtures + fixtures: {} - uid: 26263 components: - type: Transform @@ -78820,6 +79380,8 @@ entities: - 18609 - 26276 - 18829 + - type: Fixtures + fixtures: {} - uid: 26264 components: - type: Transform @@ -78830,6 +79392,8 @@ entities: devices: - 7039 - 26266 + - type: Fixtures + fixtures: {} - uid: 26265 components: - type: Transform @@ -78847,6 +79411,8 @@ entities: - 16009 - 16948 - 16010 + - type: Fixtures + fixtures: {} - proto: FireAxeCabinetFilled entities: - uid: 7884 @@ -78855,11 +79421,15 @@ entities: rot: 3.141592653589793 rad pos: -62.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25990 components: - type: Transform pos: -117.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 9441 @@ -83253,7 +83823,7 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-26.5 parent: 2 -- proto: FoodDonutJellySlugcat +- proto: FoodDonutJellyScurret entities: - uid: 18408 components: @@ -83403,6 +83973,8 @@ entities: rot: 3.141592653589793 rad pos: -112.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: GameMasterCircuitBoard entities: - uid: 24943 @@ -126031,42 +126603,56 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23352 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23353 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23354 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25394 components: - type: Transform rot: 1.5707963267948966 rad pos: -121.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25395 components: - type: Transform rot: 3.141592653589793 rad pos: -120.5,-84.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25396 components: - type: Transform rot: -1.5707963267948966 rad pos: -119.5,-83.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommand entities: - uid: 23355 @@ -126075,6 +126661,8 @@ entities: rot: 1.5707963267948966 rad pos: -65.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 1224 @@ -126083,34 +126671,46 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-66.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16529 components: - type: Transform pos: -62.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16654 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23357 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25844 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25925 components: - type: Transform pos: -101.5,-64.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 4699 @@ -126119,41 +126719,55 @@ entities: rot: 1.5707963267948966 rad pos: -124.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16928 components: - type: Transform rot: 3.141592653589793 rad pos: -112.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23030 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23342 components: - type: Transform pos: -123.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23343 components: - type: Transform rot: 3.141592653589793 rad pos: -140.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23344 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25611 components: - type: Transform rot: 1.5707963267948966 rad pos: -132.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 13759 @@ -126162,41 +126776,55 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13761 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17025 components: - type: Transform pos: -31.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17745 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25845 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25846 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25847 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomScience entities: - uid: 12734 @@ -126204,12 +126832,16 @@ entities: - type: Transform pos: -122.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25843 components: - type: Transform rot: -1.5707963267948966 rad pos: -132.5,-46.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 2170 @@ -126218,33 +126850,45 @@ entities: rot: -1.5707963267948966 rad pos: -85.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18421 components: - type: Transform pos: -98.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22319 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23345 components: - type: Transform pos: -91.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23349 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26280 components: - type: Transform pos: -93.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomService entities: - uid: 22320 @@ -126253,12 +126897,16 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25652 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSupply entities: - uid: 22321 @@ -126266,29 +126914,39 @@ entities: - type: Transform pos: -98.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25606 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25608 components: - type: Transform pos: -91.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25609 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25610 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JanitorialTrolley entities: - uid: 7826 @@ -126669,6 +127327,8 @@ entities: currentLabel: Plasma Storage Vent - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - uid: 5326 components: - type: MetaData @@ -126685,6 +127345,8 @@ entities: currentLabel: Burn Chamber Vent - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - proto: LockableButtonCommand entities: - uid: 11190 @@ -126698,6 +127360,8 @@ entities: 4662: - - Pressed - Trigger + - type: Fixtures + fixtures: {} - proto: LockableButtonEngineering entities: - uid: 5991 @@ -126723,6 +127387,8 @@ entities: currentLabel: EMERGENCY VENT - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - uid: 6167 components: - type: MetaData @@ -126745,6 +127411,8 @@ entities: currentLabel: EMERGENCY VENT - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - proto: LockableButtonMaintenance entities: - uid: 7242 @@ -126758,6 +127426,8 @@ entities: 20188: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 8824 components: - type: Transform @@ -126769,6 +127439,8 @@ entities: 8812: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: LockableButtonMedical entities: - uid: 2458 @@ -126785,6 +127457,8 @@ entities: 5752: - - Pressed - Open + - type: Fixtures + fixtures: {} - uid: 2607 components: - type: MetaData @@ -126804,6 +127478,8 @@ entities: currentLabel: Front Door - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - uid: 3989 components: - type: Transform @@ -126817,6 +127493,8 @@ entities: 3988: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 4192 components: - type: Transform @@ -126834,6 +127512,8 @@ entities: 4189: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: LockableButtonSecurity entities: - uid: 1099 @@ -126864,6 +127544,8 @@ entities: 20826: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13487 components: - type: MetaData @@ -126893,6 +127575,8 @@ entities: currentLabel: Entrance Lockdown - type: NameModifier baseName: lockable button + - type: Fixtures + fixtures: {} - proto: LockerAtmosphericsFilled entities: - uid: 5383 @@ -128531,55 +129215,75 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3822 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3823 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4204 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4510 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6160 components: - type: Transform pos: -111.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6161 components: - type: Transform pos: -109.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7555 components: - type: Transform pos: -130.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7556 components: - type: Transform pos: -128.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11241 components: - type: Transform pos: -43.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24671 components: - type: MetaData @@ -128589,6 +129293,8 @@ entities: rot: 3.141592653589793 rad pos: -69.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: MopBucketFull entities: - uid: 15958 @@ -128861,16 +129567,22 @@ entities: - type: Transform pos: -125.5,-41.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14644 components: - type: Transform pos: -97.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22362 components: - type: Transform pos: -34.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: NTDefaultCircuitBoard entities: - uid: 24944 @@ -129900,6 +130612,8 @@ entities: - type: Transform pos: -23.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PirateHandyFlag entities: - uid: 24564 @@ -130505,6 +131219,8 @@ entities: - type: Transform pos: -50.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandClown entities: - uid: 23075 @@ -130512,6 +131228,8 @@ entities: - type: Transform pos: -115.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandEAT entities: - uid: 23058 @@ -130519,6 +131237,8 @@ entities: - type: Transform pos: -51.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandGreyTide entities: - uid: 23070 @@ -130526,6 +131246,8 @@ entities: - type: Transform pos: -24.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandLamarr entities: - uid: 7596 @@ -130533,6 +131255,8 @@ entities: - type: Transform pos: -133.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingGloves entities: - uid: 23069 @@ -130542,6 +131266,8 @@ entities: - type: Transform pos: -27.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandMissingSpacepen entities: - uid: 23071 @@ -130549,6 +131275,8 @@ entities: - type: Transform pos: -41.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 21061 @@ -130557,6 +131285,8 @@ entities: rot: 3.141592653589793 rad pos: -76.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandPunchShit entities: - uid: 23120 @@ -130564,6 +131294,8 @@ entities: - type: Transform pos: -48.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandTools entities: - uid: 23023 @@ -130571,6 +131303,8 @@ entities: - type: Transform pos: -113.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterContrabandWehWatches entities: - uid: 16594 @@ -130578,81 +131312,113 @@ entities: - type: Transform pos: -134.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16595 components: - type: Transform pos: -134.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16602 components: - type: Transform pos: -133.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16603 components: - type: Transform pos: -132.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17090 components: - type: Transform pos: -131.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22414 components: - type: Transform pos: -134.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22415 components: - type: Transform pos: -134.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22416 components: - type: Transform pos: -134.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22417 components: - type: Transform pos: -133.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22418 components: - type: Transform pos: -131.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22419 components: - type: Transform pos: -130.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22420 components: - type: Transform pos: -132.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22422 components: - type: Transform pos: -130.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22423 components: - type: Transform pos: -130.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22424 components: - type: Transform pos: -130.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22425 components: - type: Transform pos: -130.5,29.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegit12Gauge entities: - uid: 26354 @@ -130661,6 +131427,8 @@ entities: rot: -1.5707963267948966 rad pos: -83.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitAnatomyPoster entities: - uid: 12565 @@ -130668,6 +131436,8 @@ entities: - type: Transform pos: -34.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitBlessThisSpess entities: - uid: 25465 @@ -130676,6 +131446,8 @@ entities: rot: 3.141592653589793 rad pos: -63.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitCarpMount entities: - uid: 74 @@ -130683,6 +131455,8 @@ entities: - type: Transform pos: -48.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitDickGumshue entities: - uid: 18364 @@ -130690,6 +131464,8 @@ entities: - type: Transform pos: -96.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitIan entities: - uid: 23057 @@ -130697,6 +131473,8 @@ entities: - type: Transform pos: -47.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitJustAWeekAway entities: - uid: 2468 @@ -130704,6 +131482,8 @@ entities: - type: Transform pos: -20.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNanotrasenLogo entities: - uid: 19620 @@ -130711,16 +131491,22 @@ entities: - type: Transform pos: -95.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23059 components: - type: Transform pos: -63.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23060 components: - type: Transform pos: -59.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitNoERP entities: - uid: 14841 @@ -130729,16 +131515,22 @@ entities: rot: 1.5707963267948966 rad pos: -80.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21550 components: - type: Transform pos: -59.5,-62.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23201 components: - type: Transform pos: -35.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitObey entities: - uid: 10374 @@ -130747,6 +131539,8 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitPeriodicTable entities: - uid: 2486 @@ -130754,6 +131548,8 @@ entities: - type: Transform pos: -41.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitRenault entities: - uid: 23061 @@ -130761,6 +131557,8 @@ entities: - type: Transform pos: -53.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothDelam entities: - uid: 23029 @@ -130768,6 +131566,8 @@ entities: - type: Transform pos: -116.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothEpi entities: - uid: 25639 @@ -130776,6 +131576,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothHardhat entities: - uid: 23062 @@ -130783,6 +131585,8 @@ entities: - type: Transform pos: -117.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothMeth entities: - uid: 4270 @@ -130790,6 +131594,8 @@ entities: - type: Transform pos: -35.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyMothPiping entities: - uid: 16908 @@ -130797,6 +131603,8 @@ entities: - type: Transform pos: -142.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSafetyReport entities: - uid: 23068 @@ -130804,6 +131612,8 @@ entities: - type: Transform pos: -89.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSecWatch entities: - uid: 18598 @@ -130811,11 +131621,15 @@ entities: - type: Transform pos: -91.5,-45.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23065 components: - type: Transform pos: -98.5,-18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitSpaceCops entities: - uid: 23067 @@ -130823,6 +131637,8 @@ entities: - type: Transform pos: -85.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PosterLegitWorkForAFuture entities: - uid: 22504 @@ -130830,6 +131646,8 @@ entities: - type: Transform pos: -93.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: PottedPlant27 entities: - uid: 5611 @@ -138068,103 +138886,143 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20938 components: - type: Transform pos: -36.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23792 components: - type: Transform pos: -111.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23795 components: - type: Transform pos: -122.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23819 components: - type: Transform pos: -67.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23859 components: - type: Transform pos: -67.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23861 components: - type: Transform pos: -55.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24511 components: - type: Transform pos: -65.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24512 components: - type: Transform pos: -57.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24513 components: - type: Transform pos: -48.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24514 components: - type: Transform pos: -22.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24516 components: - type: Transform pos: -34.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24517 components: - type: Transform pos: -5.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24518 components: - type: Transform pos: -9.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24519 components: - type: Transform pos: -61.5,-51.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24520 components: - type: Transform pos: -106.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24521 components: - type: Transform pos: -103.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24522 components: - type: Transform pos: -58.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25466 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25467 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 6280 @@ -138434,6 +139292,8 @@ entities: rot: -1.5707963267948966 rad pos: -66.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShelfWood entities: - uid: 2907 @@ -138441,6 +139301,8 @@ entities: - type: Transform pos: -46.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShellTranquilizer entities: - uid: 11626 @@ -138479,6 +139341,8 @@ entities: - type: Transform pos: -88.5,-19.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ShotGunCabinetOpen entities: - uid: 23750 @@ -138487,6 +139351,8 @@ entities: rot: 3.141592653589793 rad pos: -24.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Shovel entities: - uid: 22014 @@ -139168,12 +140034,16 @@ entities: - type: Transform pos: -119.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25372 components: - type: Transform rot: 1.5707963267948966 rad pos: -118.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 25373 @@ -139182,6 +140052,8 @@ entities: rot: 1.5707963267948966 rad pos: -118.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 5657 @@ -139203,6 +140075,8 @@ entities: currentLabel: Burn Chamber Vent - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 5989 components: - type: MetaData @@ -139220,6 +140094,8 @@ entities: currentLabel: Vent Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 13140 components: - type: Transform @@ -139233,6 +140109,8 @@ entities: 13042: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 13435 components: - type: MetaData @@ -139249,6 +140127,8 @@ entities: 1763: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - uid: 17823 components: - type: MetaData @@ -139269,6 +140149,8 @@ entities: currentLabel: Open Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 20897 components: - type: MetaData @@ -139291,6 +140173,8 @@ entities: 20831: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalButtonDirectional entities: - uid: 1481 @@ -139304,6 +140188,8 @@ entities: 3776: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 1521 components: - type: Transform @@ -139315,6 +140201,8 @@ entities: 3779: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 2591 components: - type: MetaData @@ -139331,6 +140219,8 @@ entities: currentLabel: Space Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 3619 components: - type: Transform @@ -139342,6 +140232,8 @@ entities: 3780: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 3810 components: - type: Transform @@ -139352,6 +140244,8 @@ entities: 3771: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 3811 components: - type: Transform @@ -139362,6 +140256,8 @@ entities: 3772: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 4222 components: - type: Transform @@ -139373,6 +140269,8 @@ entities: 4096: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 6068 components: - type: MetaData @@ -139389,6 +140287,8 @@ entities: currentLabel: Ignite Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 6069 components: - type: MetaData @@ -139405,6 +140305,8 @@ entities: currentLabel: Vent Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 6163 components: - type: Transform @@ -139416,6 +140318,8 @@ entities: 6157: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 6164 components: - type: Transform @@ -139427,6 +140331,8 @@ entities: 6156: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 6168 components: - type: MetaData @@ -139443,6 +140349,8 @@ entities: currentLabel: Vent Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 6169 components: - type: MetaData @@ -139459,6 +140367,8 @@ entities: currentLabel: Ignite Chamber - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 10638 components: - type: Transform @@ -139470,6 +140380,8 @@ entities: 4662: - - Pressed - Trigger + - type: Fixtures + fixtures: {} - uid: 19541 components: - type: MetaData @@ -139487,6 +140399,8 @@ entities: currentLabel: Dock Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 19560 components: - type: MetaData @@ -139504,6 +140418,8 @@ entities: currentLabel: Dock Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 19735 components: - type: MetaData @@ -139521,6 +140437,8 @@ entities: currentLabel: Salvage Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 19741 components: - type: MetaData @@ -139538,6 +140456,8 @@ entities: currentLabel: Disposals Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 21465 components: - type: MetaData @@ -139555,6 +140475,8 @@ entities: currentLabel: Disposals Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 22347 components: - type: MetaData @@ -139571,6 +140493,8 @@ entities: currentLabel: Space Blast Doors - type: NameModifier baseName: signal button + - type: Fixtures + fixtures: {} - uid: 24029 components: - type: Transform @@ -139582,6 +140506,8 @@ entities: 14940: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 25417 components: - type: Transform @@ -139593,6 +140519,8 @@ entities: 12466: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - uid: 25418 components: - type: Transform @@ -139604,6 +140532,8 @@ entities: 12043: - - Pressed - DoorBolt + - type: Fixtures + fixtures: {} - proto: SignalSwitch entities: - uid: 1217 @@ -139629,6 +140559,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 1220 components: - type: Transform @@ -139652,6 +140584,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 2791 components: - type: MetaData @@ -139694,6 +140628,8 @@ entities: currentLabel: Bridge Entrance Blastdoors - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 2792 components: - type: MetaData @@ -139797,6 +140733,8 @@ entities: currentLabel: Bridge Window Blastdoors - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 2965 components: - type: MetaData @@ -139824,6 +140762,8 @@ entities: currentLabel: Line Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 2999 components: - type: MetaData @@ -139872,6 +140812,8 @@ entities: currentLabel: Window Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 4618 components: - type: Transform @@ -139884,6 +140826,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 7079 components: - type: Transform @@ -139897,6 +140841,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 7335 components: - type: MetaData @@ -139921,6 +140867,8 @@ entities: currentLabel: Warehouse Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 8624 components: - type: Transform @@ -139948,6 +140896,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 11613 components: - type: Transform @@ -139974,6 +140924,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 11614 components: - type: Transform @@ -140001,6 +140953,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 17822 components: - type: MetaData @@ -140034,6 +140988,8 @@ entities: currentLabel: Desk Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 22376 components: - type: Transform @@ -140057,6 +141013,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 25663 components: - type: MetaData @@ -140076,6 +141034,8 @@ entities: currentLabel: Janitor Light - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - proto: SignalSwitchDirectional entities: - uid: 280 @@ -140101,6 +141061,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3053 components: - type: Transform @@ -140133,6 +141095,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 3834 components: - type: Transform @@ -140165,6 +141129,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 3974 components: - type: MetaData @@ -140199,6 +141165,8 @@ entities: currentLabel: Paramedic Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 3996 components: - type: Transform @@ -140226,6 +141194,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 8067 components: - type: Transform @@ -140248,6 +141218,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 8073 components: - type: Transform @@ -140271,6 +141243,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 8662 components: - type: MetaData @@ -140299,6 +141273,8 @@ entities: currentLabel: Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 8823 components: - type: Transform @@ -140321,6 +141297,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 12308 components: - type: MetaData @@ -140337,6 +141315,8 @@ entities: currentLabel: Door Bolt - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 16924 components: - type: Transform @@ -140365,6 +141345,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 17488 components: - type: Transform @@ -140387,6 +141369,8 @@ entities: - Open - - Off - Close + - type: Fixtures + fixtures: {} - uid: 19538 components: - type: MetaData @@ -140441,6 +141425,8 @@ entities: currentLabel: Privacy Shutters - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 24320 components: - type: MetaData @@ -140474,6 +141460,8 @@ entities: currentLabel: Emergency Lockdown - type: NameModifier baseName: signal switch + - type: Fixtures + fixtures: {} - uid: 24811 components: - type: Transform @@ -140496,6 +141484,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 25393 components: - type: Transform @@ -140568,6 +141558,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 25397 components: - type: Transform @@ -140594,6 +141586,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 25613 components: - type: Transform @@ -140606,6 +141600,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 25656 components: - type: Transform @@ -140619,6 +141615,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 25659 components: - type: Transform @@ -140631,6 +141629,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 25661 components: - type: Transform @@ -140644,6 +141644,8 @@ entities: - On - - Off - Off + - type: Fixtures + fixtures: {} - uid: 25694 components: - type: Transform @@ -140676,6 +141678,8 @@ entities: - Close lastSignals: Status: True + - type: Fixtures + fixtures: {} - proto: SignalTimer entities: - uid: 4662 @@ -140691,6 +141695,8 @@ entities: - Open - - Timer - Close + - type: Fixtures + fixtures: {} - uid: 16763 components: - type: Transform @@ -140704,6 +141710,8 @@ entities: - Open - - Timer - Close + - type: Fixtures + fixtures: {} - proto: SignAnomaly entities: - uid: 8081 @@ -140711,6 +141719,8 @@ entities: - type: Transform pos: -137.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAnomaly2 entities: - uid: 7372 @@ -140718,6 +141728,8 @@ entities: - type: Transform pos: -131.5,-37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArcade entities: - uid: 16484 @@ -140726,6 +141738,8 @@ entities: rot: 3.141592653589793 rad pos: -22.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignArmory entities: - uid: 15880 @@ -140734,6 +141748,8 @@ entities: rot: 1.5707963267948966 rad pos: -81.5,-24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 25602 @@ -140742,6 +141758,8 @@ entities: rot: 3.141592653589793 rad pos: -117.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBar entities: - uid: 15030 @@ -140749,6 +141767,8 @@ entities: - type: Transform pos: -66.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBath entities: - uid: 16049 @@ -140756,6 +141776,8 @@ entities: - type: Transform pos: -86.5,-38.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBiohazardMed entities: - uid: 2507 @@ -140763,12 +141785,16 @@ entities: - type: Transform pos: -27.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9210 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-57.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 19161 @@ -140776,11 +141802,15 @@ entities: - type: Transform pos: -65.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24510 components: - type: Transform pos: -57.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 5805 @@ -140789,6 +141819,8 @@ entities: rot: 1.5707963267948966 rad pos: -114.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCargo entities: - uid: 16508 @@ -140796,6 +141828,8 @@ entities: - type: Transform pos: -97.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 1305 @@ -140804,6 +141838,8 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 2494 @@ -140811,6 +141847,8 @@ entities: - type: Transform pos: -35.5,-22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCloning entities: - uid: 4199 @@ -140819,6 +141857,8 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryo entities: - uid: 2500 @@ -140826,12 +141866,16 @@ entities: - type: Transform pos: -27.5,-32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19590 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCryogenicsMed entities: - uid: 4207 @@ -140840,6 +141884,8 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalAtmos entities: - uid: 812 @@ -140848,12 +141894,16 @@ entities: rot: -1.5707963267948966 rad pos: -106.5,-8.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24161 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,17.8 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBar entities: - uid: 24507 @@ -140862,6 +141912,8 @@ entities: rot: 3.141592653589793 rad pos: -66.5,-50.4 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 15237 @@ -140869,18 +141921,24 @@ entities: - type: Transform pos: -100.5,-0.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15867 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,-11.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19889 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-10.2 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalChapel entities: - uid: 15862 @@ -140888,12 +141946,16 @@ entities: - type: Transform pos: -62.5,-36.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24506 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-50.6 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalCryo entities: - uid: 15869 @@ -140902,17 +141964,23 @@ entities: rot: 1.5707963267948966 rad pos: -99.5,-11.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19904 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-50.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20531 components: - type: Transform pos: -65.5,-13.8 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 14096 @@ -140921,11 +141989,15 @@ entities: rot: 1.5707963267948966 rad pos: -75.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24508 components: - type: Transform pos: -66.5,-50.6 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 6564 @@ -140934,54 +142006,72 @@ entities: rot: 3.141592653589793 rad pos: -106.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 14748 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-11.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15234 components: - type: Transform rot: -1.5707963267948966 rad pos: -105.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15849 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-13.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19897 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23338 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23361 components: - type: Transform rot: 3.141592653589793 rad pos: -106.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24488 components: - type: Transform rot: -1.5707963267948966 rad pos: -106.5,-8.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25469 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: - uid: 9028 @@ -140990,47 +142080,63 @@ entities: rot: 3.141592653589793 rad pos: -101.5,-21.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15858 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-13.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15868 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,-11.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18780 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-36.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19756 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-11.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19901 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-10.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20803 components: - type: Transform pos: -100.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25470 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-11.7 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalFood entities: - uid: 3646 @@ -141039,23 +142145,31 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-10.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15856 components: - type: Transform pos: -57.5,-13.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19164 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-50.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24503 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-36.4 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHop entities: - uid: 19721 @@ -141064,6 +142178,8 @@ entities: rot: 3.141592653589793 rad pos: -54.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalHydro entities: - uid: 19162 @@ -141072,12 +142188,16 @@ entities: rot: 3.141592653589793 rad pos: -62.5,-50.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24504 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-36.2 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalJanitor entities: - uid: 24493 @@ -141086,6 +142206,8 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalLibrary entities: - uid: 3653 @@ -141094,17 +142216,23 @@ entities: rot: 1.5707963267948966 rad pos: -55.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7554 components: - type: Transform pos: -62.5,-36.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24505 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-50.8 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 6487 @@ -141113,46 +142241,62 @@ entities: rot: 3.141592653589793 rad pos: -101.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11833 components: - type: Transform pos: -27.5,-10.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15743 components: - type: Transform pos: -100.5,-0.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15857 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-13.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15870 components: - type: Transform rot: 1.5707963267948966 rad pos: -99.5,-11.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18942 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22636 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-15.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25471 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-15.3 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSalvage entities: - uid: 4603 @@ -141161,6 +142305,8 @@ entities: rot: -1.5707963267948966 rad pos: -97.5,23.8 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 994 @@ -141168,45 +142314,61 @@ entities: - type: Transform pos: -106.5,-21.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3662 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 12470 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-15.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15236 components: - type: Transform pos: -105.5,-0.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15851 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-13.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15865 components: - type: Transform pos: -101.5,-11.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17092 components: - type: Transform pos: -106.5,-36.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25473 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-15.7 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 8985 @@ -141214,42 +142376,56 @@ entities: - type: Transform pos: -101.5,-21.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15852 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-13.4 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15871 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.5,-11.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 16503 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-36.7 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19966 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.6 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23720 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25472 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSolar entities: - uid: 1028 @@ -141258,57 +142434,77 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13228 components: - type: Transform pos: -16.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17458 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,-26.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26113 components: - type: Transform rot: -1.5707963267948966 rad pos: -107.5,-25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26168 components: - type: Transform pos: -135.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26169 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26170 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26172 components: - type: Transform pos: -16.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26173 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26174 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSupply entities: - uid: 1933 @@ -141317,60 +142513,80 @@ entities: rot: 3.141592653589793 rad pos: -106.5,-36.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4633 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,17.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4635 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,17.8 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9345 components: - type: Transform rot: 3.141592653589793 rad pos: -106.5,-21.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15235 components: - type: Transform rot: 3.141592653589793 rad pos: -105.5,-0.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15866 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,-11.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19890 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-11.3 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19912 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-10.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20570 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-13.2 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25468 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-11.3 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDisposalSpace entities: - uid: 20769 @@ -141378,6 +142594,8 @@ entities: - type: Transform pos: -101.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignElectricalMed entities: - uid: 18084 @@ -141385,21 +142603,29 @@ entities: - type: Transform pos: -129.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19175 components: - type: Transform pos: -132.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19176 components: - type: Transform pos: -124.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19490 components: - type: Transform pos: -139.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngine entities: - uid: 15883 @@ -141408,6 +142634,8 @@ entities: rot: 1.5707963267948966 rad pos: -132.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 19165 @@ -141416,12 +142644,16 @@ entities: rot: 3.141592653589793 rad pos: -113.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19643 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEscapePods entities: - uid: 13227 @@ -141430,29 +142662,39 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-63.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 17539 components: - type: Transform pos: -133.5,-55.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22995 components: - type: Transform rot: -1.5707963267948966 rad pos: -103.5,-60.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23006 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26171 components: - type: Transform rot: -1.5707963267948966 rad pos: -135.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 15900 @@ -141461,11 +142703,15 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24566 components: - type: Transform pos: -34.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignExamroom entities: - uid: 25637 @@ -141473,6 +142719,8 @@ entities: - type: Transform pos: -31.5,-27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFire entities: - uid: 5538 @@ -141481,35 +142729,47 @@ entities: rot: -1.5707963267948966 rad pos: -114.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5662 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5663 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5664 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5665 components: - type: Transform rot: -1.5707963267948966 rad pos: -108.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19492 components: - type: Transform pos: -142.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignFlammableMed entities: - uid: 1519 @@ -141517,35 +142777,47 @@ entities: - type: Transform pos: -92.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8224 components: - type: Transform pos: -90.5,-59.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8290 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8293 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8295 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8298 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGenpop entities: - uid: 9126 @@ -141554,6 +142826,8 @@ entities: rot: 1.5707963267948966 rad pos: -93.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignGravity entities: - uid: 6196 @@ -141561,6 +142835,8 @@ entities: - type: Transform pos: -121.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHead entities: - uid: 15420 @@ -141568,6 +142844,8 @@ entities: - type: Transform pos: -31.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignHydro1 entities: - uid: 348 @@ -141575,6 +142853,8 @@ entities: - type: Transform pos: -56.5,-20.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 15913 @@ -141583,6 +142863,8 @@ entities: rot: 1.5707963267948966 rad pos: -89.5,-31.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignJanitor entities: - uid: 24812 @@ -141590,6 +142872,8 @@ entities: - type: Transform pos: -20.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKiddiePlaque entities: - uid: 6892 @@ -141597,6 +142881,8 @@ entities: - type: Transform pos: -97.5,-23.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignKitchen entities: - uid: 15907 @@ -141605,6 +142891,8 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignLibrary entities: - uid: 3841 @@ -141613,6 +142901,8 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-49.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 2534 @@ -141621,6 +142911,8 @@ entities: rot: -1.5707963267948966 rad pos: -107.5,-30.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 7561 @@ -141629,6 +142921,8 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 2007 @@ -141636,11 +142930,15 @@ entities: - type: Transform pos: -44.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2508 components: - type: Transform pos: -40.5,-34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignNews entities: - uid: 1970 @@ -141648,6 +142946,8 @@ entities: - type: Transform pos: -100.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPlaque entities: - uid: 2815 @@ -141659,6 +142959,8 @@ entities: rot: -1.5707963267948966 rad pos: -63.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21071 components: - type: MetaData @@ -141667,6 +142969,8 @@ entities: - type: Transform pos: -108.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignPsychology entities: - uid: 9239 @@ -141674,6 +142978,8 @@ entities: - type: Transform pos: -22.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRadiationMed entities: - uid: 409 @@ -141681,11 +142987,15 @@ entities: - type: Transform pos: -121.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22228 components: - type: Transform pos: -111.5,34.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedFour entities: - uid: 20951 @@ -141694,6 +143004,8 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedOne entities: - uid: 3778 @@ -141701,6 +143013,8 @@ entities: - type: Transform pos: -69.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedThree entities: - uid: 17548 @@ -141709,6 +143023,8 @@ entities: rot: 3.141592653589793 rad pos: -69.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRedTwo entities: - uid: 16509 @@ -141717,6 +143033,8 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-54.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRestroom entities: - uid: 2199 @@ -141724,11 +143042,15 @@ entities: - type: Transform pos: -38.5,-50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3787 components: - type: Transform pos: -65.5,-58.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRND entities: - uid: 15919 @@ -141737,6 +143059,8 @@ entities: rot: 1.5707963267948966 rad pos: -118.5,-42.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignRobo entities: - uid: 15918 @@ -141745,6 +143069,8 @@ entities: rot: 1.5707963267948966 rad pos: -118.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSalvage entities: - uid: 4672 @@ -141753,6 +143079,8 @@ entities: rot: 3.141592653589793 rad pos: -92.5,26.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 20550 @@ -141761,12 +143089,16 @@ entities: rot: -1.5707963267948966 rad pos: -106.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20551 components: - type: Transform rot: -1.5707963267948966 rad pos: -106.5,-43.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMed entities: - uid: 25361 @@ -141775,60 +143107,80 @@ entities: rot: 1.5707963267948966 rad pos: -112.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25362 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25363 components: - type: Transform rot: 1.5707963267948966 rad pos: -115.5,-92.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25365 components: - type: Transform rot: 1.5707963267948966 rad pos: -125.5,-92.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25366 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-89.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25367 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-82.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25368 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25369 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,-75.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25370 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 25371 components: - type: Transform rot: 1.5707963267948966 rad pos: -128.5,-69.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecureMedRed entities: - uid: 21066 @@ -141836,11 +143188,15 @@ entities: - type: Transform pos: -37.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 21067 components: - type: Transform pos: -39.5,-70.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 15911 @@ -141849,6 +143205,8 @@ entities: rot: 3.141592653589793 rad pos: -93.5,-16.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 16513 @@ -141857,6 +143215,8 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSmoking entities: - uid: 2844 @@ -141864,36 +143224,48 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23436 components: - type: Transform rot: 3.141592653589793 rad pos: -132.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23438 components: - type: Transform rot: 3.141592653589793 rad pos: -116.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23439 components: - type: Transform rot: 3.141592653589793 rad pos: -106.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23440 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23442 components: - type: Transform rot: 3.141592653589793 rad pos: -124.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSpace entities: - uid: 5983 @@ -141901,22 +143273,30 @@ entities: - type: Transform pos: -152.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9426 components: - type: Transform pos: -101.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 19325 components: - type: Transform rot: 3.141592653589793 rad pos: -152.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 23004 components: - type: Transform pos: -12.5,-35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSurgery entities: - uid: 6691 @@ -141925,6 +143305,8 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 17026 @@ -141932,6 +143314,8 @@ entities: - type: Transform pos: -84.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 15898 @@ -141940,12 +143324,16 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15899 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVault entities: - uid: 1172 @@ -141954,12 +143342,16 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,-68.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15909 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignVirology entities: - uid: 4168 @@ -141967,6 +143359,8 @@ entities: - type: Transform pos: -27.5,-48.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Sink entities: - uid: 698 @@ -144332,6 +145726,38 @@ entities: - type: Transform pos: -18.5,-4.5 parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 20082 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 26382 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 + - uid: 26383 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - uid: 26384 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 26385 + components: + - type: Transform + pos: -29.5,14.5 + parent: 2 + - uid: 26386 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 - proto: SpawnPointLawyer entities: - uid: 354 @@ -144893,49 +146319,67 @@ entities: rot: 3.141592653589793 rad pos: -32.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 13225 components: - type: Transform pos: -24.5,0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15674 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 15902 components: - type: Transform pos: -32.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20033 components: - type: Transform pos: -100.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 20222 components: - type: Transform pos: -94.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 22142 components: - type: Transform pos: -70.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 24489 components: - type: Transform rot: 3.141592653589793 rad pos: -98.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 26149 components: - type: Transform rot: 3.141592653589793 rad pos: -108.5,-47.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SteelBench entities: - uid: 14239 @@ -147526,6 +148970,8 @@ entities: allowedDepartments: - Security severity: Syndicate + - type: Fixtures + fixtures: {} - proto: SyndieHandyFlag entities: - uid: 18682 @@ -151922,11 +153368,15 @@ entities: - type: Transform pos: -83.5,-33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 18473 components: - type: Transform pos: -91.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelescreenFrame entities: - uid: 6590 @@ -151934,6 +153384,8 @@ entities: - type: Transform pos: -95.5,-39.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallmountTelevision entities: - uid: 23944 @@ -151941,6 +153393,8 @@ entities: - type: Transform pos: -61.5,-21.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WallReinforced entities: - uid: 8 @@ -167802,11 +169256,15 @@ entities: - type: Transform pos: -126.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5646 components: - type: Transform pos: -118.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningCO2 entities: - uid: 10443 @@ -167814,6 +169272,8 @@ entities: - type: Transform pos: -126.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2 entities: - uid: 5353 @@ -167821,6 +169281,8 @@ entities: - type: Transform pos: -126.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningN2O entities: - uid: 9938 @@ -167828,6 +169290,8 @@ entities: - type: Transform pos: -126.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 9947 @@ -167835,6 +169299,8 @@ entities: - type: Transform pos: -126.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningPlasma entities: - uid: 5386 @@ -167843,24 +169309,32 @@ entities: rot: -1.5707963267948966 rad pos: -114.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5650 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5651 components: - type: Transform rot: 3.141592653589793 rad pos: -118.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5894 components: - type: Transform rot: 3.141592653589793 rad pos: -132.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningTritium entities: - uid: 9914 @@ -167868,6 +169342,8 @@ entities: - type: Transform pos: -126.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 5647 @@ -167875,24 +169351,32 @@ entities: - type: Transform pos: -120.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5648 components: - type: Transform rot: 3.141592653589793 rad pos: -120.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5649 components: - type: Transform rot: 3.141592653589793 rad pos: -135.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5895 components: - type: Transform rot: 3.141592653589793 rad pos: -132.5,-9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9935 components: - type: MetaData @@ -167901,6 +169385,8 @@ entities: - type: Transform pos: -126.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: WaterCooler entities: - uid: 1329 @@ -168424,7 +169910,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -252710.88 + secondsUntilStateChange: -252730.69 state: Opening - type: Airlock autoClose: False From 5100068a78d5a9e9455acb89629239f717c580ce Mon Sep 17 00:00:00 2001 From: Vasilis The Pikachu Date: Sun, 31 Aug 2025 17:50:37 +0200 Subject: [PATCH 191/194] Revert "Admin Log Browser Improvements (#39130)" This reverts commit f67cebf7a4ed451f1911aa5c8bf6f04c198b917f. Per request of @Kowlin and @southbridge-fur Check out https://github.com/space-wizards/space-station-14/issues/39960 for further information --- .../UI/CustomControls/AdminLogLabel.cs | 33 + .../CustomControls/PlayerListControl.xaml.cs | 18 +- .../UI/CustomControls/PlayerListEntry.xaml.cs | 2 + .../UI/Logs/AdminLogsControl.xaml | 10 +- .../UI/Logs/AdminLogsControl.xaml.cs | 89 +- .../Administration/UI/Logs/AdminLogsEui.cs | 11 +- .../UI/Logs/Entries/AdminLogEntry.xaml | 14 - .../UI/Logs/Entries/AdminLogEntry.xaml.cs | 79 - .../UI/Logs/Entries/AdminLogEntryDetails.xaml | 44 - .../Logs/Entries/AdminLogEntryDetails.xaml.cs | 98 - .../UI/Tabs/PlayerTab/PlayerTab.xaml.cs | 2 + .../Options/UI/Tabs/AdminOptionsTab.xaml | 3 - .../Options/UI/Tabs/AdminOptionsTab.xaml.cs | 2 - ...0250723055137_AdminLogsCurtime.Designer.cs | 2125 ----------------- .../20250723055137_AdminLogsCurtime.cs | 29 - .../PostgresServerDbContextModelSnapshot.cs | 7 +- ...0250723055127_AdminLogsCurtime.Designer.cs | 2048 ---------------- .../Sqlite/20250723055127_AdminLogsCurtime.cs | 29 - .../SqliteServerDbContextModelSnapshot.cs | 4 - Content.Server.Database/Model.cs | 5 - .../Logs/AdminLogManager.Cache.cs | 2 +- .../Administration/Logs/AdminLogManager.cs | 3 - Content.Server/Database/ServerDbBase.cs | 2 +- .../Administration/Logs/SharedAdminLog.cs | 1 - Content.Shared/CCVar/CCVars.Interface.cs | 6 - .../en-US/administration/ui/admin-logs.ftl | 15 - .../en-US/escape-menu/ui/options-menu.ftl | 4 - 27 files changed, 77 insertions(+), 4608 deletions(-) create mode 100644 Content.Client/Administration/UI/CustomControls/AdminLogLabel.cs delete mode 100644 Content.Client/Administration/UI/Logs/Entries/AdminLogEntry.xaml delete mode 100644 Content.Client/Administration/UI/Logs/Entries/AdminLogEntry.xaml.cs delete mode 100644 Content.Client/Administration/UI/Logs/Entries/AdminLogEntryDetails.xaml delete mode 100644 Content.Client/Administration/UI/Logs/Entries/AdminLogEntryDetails.xaml.cs delete mode 100644 Content.Server.Database/Migrations/Postgres/20250723055137_AdminLogsCurtime.Designer.cs delete mode 100644 Content.Server.Database/Migrations/Postgres/20250723055137_AdminLogsCurtime.cs delete mode 100644 Content.Server.Database/Migrations/Sqlite/20250723055127_AdminLogsCurtime.Designer.cs delete mode 100644 Content.Server.Database/Migrations/Sqlite/20250723055127_AdminLogsCurtime.cs diff --git a/Content.Client/Administration/UI/CustomControls/AdminLogLabel.cs b/Content.Client/Administration/UI/CustomControls/AdminLogLabel.cs new file mode 100644 index 0000000000..0de38ce234 --- /dev/null +++ b/Content.Client/Administration/UI/CustomControls/AdminLogLabel.cs @@ -0,0 +1,33 @@ +using Content.Shared.Administration.Logs; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; + +namespace Content.Client.Administration.UI.CustomControls; + +public sealed class AdminLogLabel : RichTextLabel +{ + public AdminLogLabel(ref SharedAdminLog log, HSeparator separator) + { + Log = log; + Separator = separator; + + SetMessage($"{log.Date:HH:mm:ss}: {log.Message}"); + OnVisibilityChanged += VisibilityChanged; + } + + public SharedAdminLog Log { get; } + + public HSeparator Separator { get; } + + private void VisibilityChanged(Control control) + { + Separator.Visible = Visible; + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + + OnVisibilityChanged -= VisibilityChanged; + } +} diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs index 8027a00c54..c7fbf6c2dc 100644 --- a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs +++ b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs @@ -1,15 +1,16 @@ using System.Linq; -using System.Text.RegularExpressions; using Content.Client.Administration.Systems; using Content.Client.UserInterface.Controls; using Content.Client.Verbs.UI; using Content.Shared.Administration; using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Input; +using Robust.Shared.Utility; namespace Content.Client.Administration.UI.CustomControls; @@ -95,26 +96,13 @@ public sealed partial class PlayerListControl : BoxContainer private void FilterList() { _sortedPlayerList.Clear(); - - Regex filterRegex; - // There is no neat way to handle invalid regex being submitted other than - // catching and ignoring the exception which gets thrown when it's invalid. - try - { - filterRegex = new Regex(FilterLineEdit.Text, RegexOptions.IgnoreCase); - } - catch (ArgumentException) - { - return; - } - foreach (var info in _playerList) { var displayName = $"{info.CharacterName} ({info.Username})"; if (info.IdentityName != info.CharacterName) displayName += $" [{info.IdentityName}]"; if (!string.IsNullOrEmpty(FilterLineEdit.Text) - && !filterRegex.IsMatch(displayName)) + && !displayName.ToLowerInvariant().Contains(FilterLineEdit.Text.Trim().ToLowerInvariant())) continue; _sortedPlayerList.Add(info); } diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs index f62a6c71e4..cd6a56ea71 100644 --- a/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs +++ b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs @@ -1,8 +1,10 @@ using Content.Client.Stylesheets; using Content.Shared.Administration; using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; +using Robust.Shared.Utility; namespace Content.Client.Administration.UI.CustomControls; diff --git a/Content.Client/Administration/UI/Logs/AdminLogsControl.xaml b/Content.Client/Administration/UI/Logs/AdminLogsControl.xaml index c646e380d4..cd93ffeb0a 100644 --- a/Content.Client/Administration/UI/Logs/AdminLogsControl.xaml +++ b/Content.Client/Administration/UI/Logs/AdminLogsControl.xaml @@ -1,6 +1,5 @@  + xmlns:aui="clr-namespace:Content.Client.Administration.UI.CustomControls"> @@ -53,13 +52,6 @@