diff --git a/Content.Client/Chat/TypingIndicator/TypingIndicatorVisualizerSystem.cs b/Content.Client/Chat/TypingIndicator/TypingIndicatorVisualizerSystem.cs index 1c7a378c95..4b4cd4b6f9 100644 --- a/Content.Client/Chat/TypingIndicator/TypingIndicatorVisualizerSystem.cs +++ b/Content.Client/Chat/TypingIndicator/TypingIndicatorVisualizerSystem.cs @@ -37,8 +37,7 @@ public sealed class TypingIndicatorVisualizerSystem : VisualizerSystem entryId, bool log = true) + public bool TryAddMarkup(Control control, ProtoId entryId) { if (!_prototype.Resolve(entryId, out var entry)) return false; using var file = _resourceManager.ContentFileReadText(entry.Text); - return TryAddMarkup(control, file.ReadToEnd(), log); + return TryAddMarkup(control, file.ReadToEnd()); } - public bool TryAddMarkup(Control control, GuideEntry entry, bool log = true) + public bool TryAddMarkup(Control control, GuideEntry entry) { using var file = _resourceManager.ContentFileReadText(entry.Text); - return TryAddMarkup(control, file.ReadToEnd(), log); + return TryAddMarkup(control, file.ReadToEnd()); } - public bool TryAddMarkup(Control control, string text, bool log = true) + public bool TryAddMarkup(Control control, string text) { try { diff --git a/Content.IntegrationTests/Tests/Body/LungTest.cs b/Content.IntegrationTests/Tests/Body/LungTest.cs index 8ac3a3021f..584eb58595 100644 --- a/Content.IntegrationTests/Tests/Body/LungTest.cs +++ b/Content.IntegrationTests/Tests/Body/LungTest.cs @@ -1,7 +1,7 @@ using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; -using Content.Server.Body.Systems; +using Content.Shared.Body.Systems; using Content.Shared.Body.Components; using Robust.Server.GameObjects; using Robust.Shared; diff --git a/Content.IntegrationTests/Tests/Helpers/TestListenerComponent.cs b/Content.IntegrationTests/Tests/Helpers/TestListenerComponent.cs new file mode 100644 index 0000000000..817558b426 --- /dev/null +++ b/Content.IntegrationTests/Tests/Helpers/TestListenerComponent.cs @@ -0,0 +1,13 @@ +using System.Collections.Generic; +using Robust.Shared.GameObjects; + +namespace Content.IntegrationTests.Tests.Helpers; + +/// +/// Component that is used by to store any information about received events. +/// +[RegisterComponent] +public sealed partial class TestListenerComponent : Component +{ + public Dictionary> Events = new(); +} diff --git a/Content.IntegrationTests/Tests/Helpers/TestListenerSystem.cs b/Content.IntegrationTests/Tests/Helpers/TestListenerSystem.cs new file mode 100644 index 0000000000..2481cef03f --- /dev/null +++ b/Content.IntegrationTests/Tests/Helpers/TestListenerSystem.cs @@ -0,0 +1,45 @@ +#nullable enable +using System.Collections.Generic; +using System.Linq; +using Robust.Shared.GameObjects; +using Robust.Shared.Utility; + +namespace Content.IntegrationTests.Tests.Helpers; + +/// +/// Generic system that listens for and records any received events of a given type. +/// +public abstract class TestListenerSystem : EntitySystem where TEvent : notnull +{ + public override void Initialize() + { + // TODO + // supporting broadcast events requires cleanup on test finish, which will probably require changes to the + // test pair/pool manager and would conflict with #36797 + SubscribeLocalEvent(OnDirectedEvent); + } + + protected virtual void OnDirectedEvent(Entity ent, ref TEvent args) + { + ent.Comp.Events.GetOrNew(args.GetType()).Add(args); + } + + public int Count(EntityUid uid, Func? predicate = null) + { + return GetEvents(uid, predicate).Count(); + } + + public void Clear(EntityUid uid) + { + CompOrNull(uid)?.Events.Remove(typeof(TEvent)); + } + + public IEnumerable GetEvents(EntityUid uid, Func? predicate = null) + { + var events = CompOrNull(uid)?.Events.GetValueOrDefault(typeof(TEvent)); + if (events == null) + return []; + + return events.Cast().Where(e => predicate?.Invoke(e) ?? true); + } +} diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs index fa16730dd5..d04ed4cb3c 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs @@ -5,6 +5,7 @@ using System.Linq; using System.Numerics; using System.Reflection; using Content.Client.Construction; +using Content.IntegrationTests.Tests.Helpers; using Content.Server.Atmos.EntitySystems; using Content.Server.Construction.Components; using Content.Server.Gravity; @@ -22,6 +23,8 @@ using Robust.Shared.Input; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Maths; +using Robust.Shared.Reflection; +using Robust.UnitTesting; using ItemToggleComponent = Content.Shared.Item.ItemToggle.Components.ItemToggleComponent; namespace Content.IntegrationTests.Tests.Interaction; @@ -29,6 +32,8 @@ namespace Content.IntegrationTests.Tests.Interaction; // This partial class defines various methods that are useful for performing & validating interactions public abstract partial class InteractionTest { + private Dictionary _listenerCache = new(); + /// /// Begin constructing an entity. /// @@ -758,6 +763,139 @@ public abstract partial class InteractionTest #endregion + #region EventListener + + /// + /// Asserts that running the given action causes an event to be fired directed at the specified entity (defaults to ). + /// + /// + /// This currently only checks server-side events. + /// + /// The entity at which the events are supposed to be directed + /// How many new events are expected + /// Whether to clear all previously recorded events before invoking the delegate + protected async Task AssertFiresEvent(Func act, EntityUid? uid = null, int count = 1, bool clear = true) + where TEvent : notnull + { + var sys = GetListenerSystem(); + + uid ??= STarget; + if (uid == null) + { + Assert.Fail("No target specified"); + return; + } + + if (clear) + sys.Clear(uid.Value); + else + count += sys.Count(uid.Value); + + await Server.WaitPost(() => SEntMan.EnsureComponent(uid.Value)); + await act(); + AssertEvent(uid, count: count); + } + + /// + /// This is a variant of that passes the delegate to . + /// + /// + /// This currently only checks for server-side events. + /// + /// The entity at which the events are supposed to be directed + /// How many new events are expected + /// Whether to clear all previously recorded events before invoking the delegate + protected async Task AssertPostFiresEvent(Action act, EntityUid? uid = null, int count = 1, bool clear = true) + where TEvent : notnull + { + await AssertFiresEvent(async () => await Server.WaitPost(act), uid, count, clear); + } + + /// + /// This is a variant of that passes the delegate to . + /// + /// + /// This currently only checks for server-side events. + /// + /// The entity at which the events are supposed to be directed + /// How many new events are expected + /// Whether to clear all previously recorded events before invoking the delegate + protected async Task AssertAssertionFiresEvent(Action act, + EntityUid? uid = null, + int count = 1, + bool clear = true) + where TEvent : notnull + { + await AssertFiresEvent(async () => await Server.WaitAssertion(act), uid, count, clear); + } + + /// + /// Asserts that the specified event has been fired some number of times at the given entity (defaults to ). + /// For this to work, this requires that the entity has been given a + /// + /// + /// This currently only checks server-side events. + /// + /// The entity at which the events were directed + /// How many new events are expected + /// A predicate that can be used to filter the recorded events + protected void AssertEvent(EntityUid? uid = null, int count = 1, Func? predicate = null) + where TEvent : notnull + { + Assert.That(GetEvents(uid, predicate).Count, Is.EqualTo(count)); + } + + /// + /// Gets all the events of the specified type that have been fired at the given entity (defaults to ). + /// For this to work, this requires that the entity has been given a + /// + /// + /// This currently only gets for server-side events. + /// + /// The entity at which the events were directed + /// A predicate that can be used to filter the returned events + protected IEnumerable GetEvents(EntityUid? uid = null, Func? predicate = null) + where TEvent : notnull + { + uid ??= STarget; + if (uid == null) + { + Assert.Fail("No target specified"); + return []; + } + + Assert.That(SEntMan.HasComponent(uid), $"Entity must have {nameof(TestListenerComponent)}"); + return GetListenerSystem().GetEvents(uid.Value, predicate); + } + + protected TestListenerSystem GetListenerSystem() + where TEvent : notnull + { + if (_listenerCache.TryGetValue(typeof(TEvent), out var listener)) + return (TestListenerSystem) listener; + + var type = Server.Resolve().GetAllChildren>().Single(); + if (!SEntMan.EntitySysManager.TryGetEntitySystem(type, out var systemObj)) + { + // There has to be a listener system that is manually defined. Event subscriptions are locked once + // finalized, so we can't really easily create new subscriptions on the fly. + // TODO find a better solution + throw new InvalidOperationException($"Event {typeof(TEvent).Name} has no associated listener system!"); + } + + var system = (TestListenerSystem)systemObj; + _listenerCache[typeof(TEvent)] = system; + return system; + } + + /// + /// Clears all recorded events of the given type. + /// + protected void ClearEvents(EntityUid uid) where TEvent : notnull + => GetListenerSystem().Clear(uid); + + #endregion + #region Entity lookups /// diff --git a/Content.IntegrationTests/Tests/Movement/SlippingTest.cs b/Content.IntegrationTests/Tests/Movement/SlippingTest.cs index 7ee895d7c2..92e4d2471e 100644 --- a/Content.IntegrationTests/Tests/Movement/SlippingTest.cs +++ b/Content.IntegrationTests/Tests/Movement/SlippingTest.cs @@ -1,10 +1,8 @@ #nullable enable -using System.Collections.Generic; -using Content.IntegrationTests.Tests.Interaction; +using Content.IntegrationTests.Tests.Helpers; using Content.Shared.Movement.Components; using Content.Shared.Slippery; using Content.Shared.Stunnable; -using Robust.Shared.GameObjects; using Robust.Shared.Input; using Robust.Shared.Maths; @@ -12,44 +10,32 @@ namespace Content.IntegrationTests.Tests.Movement; public sealed class SlippingTest : MovementTest { - public sealed class SlipTestSystem : EntitySystem - { - public HashSet Slipped = new(); - public override void Initialize() - { - SubscribeLocalEvent(OnSlip); - } - - private void OnSlip(EntityUid uid, SlipperyComponent component, ref SlipEvent args) - { - Slipped.Add(args.Slipped); - } - } + public sealed class SlipTestSystem : TestListenerSystem; [Test] public async Task BananaSlipTest() { - var sys = SEntMan.System(); await SpawnTarget("TrashBananaPeel"); var modifier = Comp(Player).SprintSpeedModifier; Assert.That(modifier, Is.EqualTo(1), "Player is not moving at full speed."); - // Player is to the left of the banana peel and has not slipped. + // Player is to the left of the banana peel. Assert.That(Delta(), Is.GreaterThan(0.5f)); - Assert.That(sys.Slipped, Does.Not.Contain(SEntMan.GetEntity(Player))); // Walking over the banana slowly does not trigger a slip. await SetKey(EngineKeyFunctions.Walk, BoundKeyState.Down); - await Move(DirectionFlag.East, 1f); + await AssertFiresEvent(async () => await Move(DirectionFlag.East, 1f), count: 0); + Assert.That(Delta(), Is.LessThan(0.5f)); - Assert.That(sys.Slipped, Does.Not.Contain(SEntMan.GetEntity(Player))); AssertComp(false, Player); // Moving at normal speeds does trigger a slip. await SetKey(EngineKeyFunctions.Walk, BoundKeyState.Up); - await Move(DirectionFlag.West, 1f); - Assert.That(sys.Slipped, Does.Contain(SEntMan.GetEntity(Player))); + await AssertFiresEvent(async () => await Move(DirectionFlag.West, 1f)); + + // And the person that slipped was the player + AssertEvent(predicate: @event => @event.Slipped == SPlayer); AssertComp(true, Player); } } diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs index c545186669..0c6a3a7daa 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Gases.cs @@ -25,8 +25,6 @@ namespace Content.Server.Atmos.EntitySystems /// public float[] GasSpecificHeats => _gasSpecificHeats; - public string?[] GasReagents = new string[Atmospherics.TotalNumberOfGases]; - private void InitializeGases() { _gasReactions = _protoMan.EnumeratePrototypes().ToArray(); @@ -37,7 +35,6 @@ namespace Content.Server.Atmos.EntitySystems for (var i = 0; i < GasPrototypes.Length; i++) { _gasSpecificHeats[i] = GasPrototypes[i].SpecificHeat / HeatScale; - GasReagents[i] = GasPrototypes[i].Reagent; } } diff --git a/Content.Server/Atmos/Portable/SpaceHeaterSystem.cs b/Content.Server/Atmos/Portable/SpaceHeaterSystem.cs index 1c05307c15..0d55ed12bd 100644 --- a/Content.Server/Atmos/Portable/SpaceHeaterSystem.cs +++ b/Content.Server/Atmos/Portable/SpaceHeaterSystem.cs @@ -112,7 +112,9 @@ public sealed class SpaceHeaterSystem : EntitySystem if (!TryComp(uid, out var thermoMachine)) return; - thermoMachine.TargetTemperature = float.Clamp(thermoMachine.TargetTemperature + args.Temperature, thermoMachine.MinTemperature, thermoMachine.MaxTemperature); + thermoMachine.TargetTemperature = float.Clamp(thermoMachine.TargetTemperature + args.Temperature, + spaceHeater.MinTemperature, + spaceHeater.MaxTemperature); UpdateAppearance(uid); DirtyUI(uid, spaceHeater); diff --git a/Content.Server/Body/Components/BrainComponent.cs b/Content.Server/Body/Components/BrainComponent.cs deleted file mode 100644 index 004ff24eaf..0000000000 --- a/Content.Server/Body/Components/BrainComponent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Server.Body.Systems; - -namespace Content.Server.Body.Components -{ - [RegisterComponent, Access(typeof(BrainSystem))] - public sealed partial class BrainComponent : Component - { - } -} diff --git a/Content.Server/Body/Systems/RespiratorSystem.cs b/Content.Server/Body/Systems/RespiratorSystem.cs index eab3e2e56c..63b04adc6a 100644 --- a/Content.Server/Body/Systems/RespiratorSystem.cs +++ b/Content.Server/Body/Systems/RespiratorSystem.cs @@ -3,6 +3,7 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Chat.Systems; using Content.Server.EntityEffects; +using Content.Shared.Body.Systems; using Content.Shared.Alert; using Content.Shared.Atmos; using Content.Shared.Body.Components; diff --git a/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs b/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs index 3913afbd07..ee99418970 100644 --- a/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ReactionMixerSystem.cs @@ -19,7 +19,7 @@ public sealed partial class ReactionMixerSystem : EntitySystem { base.Initialize(); - SubscribeLocalEvent(OnAfterInteract); + SubscribeLocalEvent(OnAfterInteract, before: [typeof(IngestionSystem)]); SubscribeLocalEvent(OnShake); SubscribeLocalEvent(OnDoAfter); } @@ -29,12 +29,13 @@ public sealed partial class ReactionMixerSystem : EntitySystem if (!args.Target.HasValue || !args.CanReach || !entity.Comp.MixOnInteract) return; - if (!MixAttempt(entity, args.Target.Value, out var solution)) + if (!MixAttempt(entity, args.Target.Value, out _)) return; var doAfterArgs = new DoAfterArgs(EntityManager, args.User, entity.Comp.TimeToMix, new ReactionMixDoAfterEvent(), entity, args.Target.Value, entity); _doAfterSystem.TryStartDoAfter(doAfterArgs); + args.Handled = true; } private void OnDoAfter(Entity entity, ref ReactionMixDoAfterEvent args) diff --git a/Content.Server/GameTicking/Commands/SetGamePresetCommand.cs b/Content.Server/GameTicking/Commands/SetGamePresetCommand.cs index 6114a4ca0d..10ec2a5e9b 100644 --- a/Content.Server/GameTicking/Commands/SetGamePresetCommand.cs +++ b/Content.Server/GameTicking/Commands/SetGamePresetCommand.cs @@ -4,7 +4,6 @@ using Content.Server.GameTicking.Presets; using Content.Shared.Administration; using Linguini.Shared.Util; using Robust.Shared.Console; -using Robust.Shared.Prototypes; namespace Content.Server.GameTicking.Commands { @@ -12,7 +11,6 @@ namespace Content.Server.GameTicking.Commands public sealed class SetGamePresetCommand : IConsoleCommand { [Dependency] private readonly IEntityManager _entity = default!; - [Dependency] private readonly IPrototypeManager _prototype = default!; public string Command => "setgamepreset"; public string Description => Loc.GetString("set-game-preset-command-description", ("command", Command)); diff --git a/Content.Server/Ghost/Components/GhostOnMoveComponent.cs b/Content.Server/Ghost/Components/GhostOnMoveComponent.cs deleted file mode 100644 index e3abc97688..0000000000 --- a/Content.Server/Ghost/Components/GhostOnMoveComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Content.Server.Ghost.Components -{ - [RegisterComponent] - public sealed partial class GhostOnMoveComponent : Component - { - [DataField("canReturn")] public bool CanReturn { get; set; } = true; - - [DataField("mustBeDead")] - public bool MustBeDead = false; - } -} diff --git a/Content.Server/Holopad/HolopadSystem.cs b/Content.Server/Holopad/HolopadSystem.cs index 0cba4824db..5a4f4d93ce 100644 --- a/Content.Server/Holopad/HolopadSystem.cs +++ b/Content.Server/Holopad/HolopadSystem.cs @@ -9,7 +9,6 @@ using Content.Shared.Holopad; using Content.Shared.IdentityManagement; using Content.Shared.Labels.Components; using Content.Shared.Mobs; -using Content.Shared.Mobs.Systems; using Content.Shared.Power; using Content.Shared.Silicons.StationAi; using Content.Shared.Speech; @@ -40,7 +39,6 @@ public sealed class HolopadSystem : SharedHolopadSystem [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly PvsOverrideSystem _pvs = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; private float _updateTimer = 1.0f; private const float UpdateTime = 1.0f; diff --git a/Content.Server/Lube/LubedSystem.cs b/Content.Server/Lube/LubedSystem.cs index 3c536dcceb..01a2fa8dde 100644 --- a/Content.Server/Lube/LubedSystem.cs +++ b/Content.Server/Lube/LubedSystem.cs @@ -1,9 +1,11 @@ +using Content.Shared.Hands; +using Content.Shared.Hands.EntitySystems; using Content.Shared.IdentityManagement; +using Content.Shared.Item; using Content.Shared.Lube; using Content.Shared.NameModifier.EntitySystems; using Content.Shared.Popups; using Content.Shared.Throwing; -using Robust.Shared.Containers; using Robust.Shared.Random; namespace Content.Server.Lube; @@ -21,7 +23,7 @@ public sealed class LubedSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(OnHandPickUp); + SubscribeLocalEvent(OnHandPickUp); SubscribeLocalEvent(OnRefreshNameModifiers); } @@ -30,21 +32,38 @@ public sealed class LubedSystem : EntitySystem _nameMod.RefreshNameModifiers(uid); } - private void OnHandPickUp(EntityUid uid, LubedComponent component, ContainerGettingInsertedAttemptEvent args) + /// + /// Note to whoever makes this predicted—there is a mispredict here that + /// would be nice to keep! If this is in shared, the client will predict + /// this and not run the pickup animation in + /// which would (probably) make this effect look less funny. You will + /// probably want to either tweak + /// to be able to cancel but still run the animation or something—we do want + /// the event to run before the animation for stuff like + /// . + /// + private void OnHandPickUp(Entity ent, ref BeforeGettingEquippedHandEvent args) { - if (component.SlipsLeft <= 0) + if (args.Cancelled) + return; + + if (ent.Comp.SlipsLeft <= 0) { - RemComp(uid); - _nameMod.RefreshNameModifiers(uid); + RemComp(ent); + _nameMod.RefreshNameModifiers(ent.Owner); return; } - component.SlipsLeft--; - args.Cancel(); - var user = args.Container.Owner; - _transform.SetCoordinates(uid, Transform(user).Coordinates); - _transform.AttachToGridOrMap(uid); - _throwing.TryThrow(uid, _random.NextVector2(), baseThrowSpeed: component.SlipStrength); - _popup.PopupEntity(Loc.GetString("lube-slip", ("target", Identity.Entity(uid, EntityManager))), user, user, PopupType.MediumCaution); + + ent.Comp.SlipsLeft--; + args.Cancelled = true; + + _transform.SetCoordinates(ent, Transform(args.User).Coordinates); + _transform.AttachToGridOrMap(ent); + _throwing.TryThrow(ent, _random.NextVector2(), ent.Comp.SlipStrength); + _popup.PopupEntity(Loc.GetString("lube-slip", ("target", Identity.Entity(ent, EntityManager))), + args.User, + args.User, + PopupType.MediumCaution); } private void OnRefreshNameModifiers(Entity entity, ref RefreshNameModifiersEvent args) diff --git a/Content.Server/NPC/Components/NPCComponent.cs b/Content.Server/NPC/Components/NPCComponent.cs index b1d5bfcf5f..3b396f034e 100644 --- a/Content.Server/NPC/Components/NPCComponent.cs +++ b/Content.Server/NPC/Components/NPCComponent.cs @@ -9,4 +9,5 @@ public abstract partial class NPCComponent : SharedNPCComponent /// [DataField("blackboard", customTypeSerializer: typeof(NPCBlackboardSerializer))] public NPCBlackboard Blackboard = new(); + // TODO FULL GAME SAVE Serialize this } diff --git a/Content.Server/NPC/HTN/HTNComponent.cs b/Content.Server/NPC/HTN/HTNComponent.cs index 43b8a70785..d9b392ab14 100644 --- a/Content.Server/NPC/HTN/HTNComponent.cs +++ b/Content.Server/NPC/HTN/HTNComponent.cs @@ -24,6 +24,7 @@ public sealed partial class HTNComponent : NPCComponent /// [ViewVariables] public HTNPlan? Plan; + // TODO FULL GAME SAVE serialize this? /// /// How long to wait after having planned to try planning again. diff --git a/Content.Server/NPC/HTN/HTNSystem.cs b/Content.Server/NPC/HTN/HTNSystem.cs index 4d9e321dd9..7bfe432998 100644 --- a/Content.Server/NPC/HTN/HTNSystem.cs +++ b/Content.Server/NPC/HTN/HTNSystem.cs @@ -33,6 +33,7 @@ public sealed class HTNSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(_npc.OnMobStateChange); SubscribeLocalEvent(_npc.OnNPCMapInit); + SubscribeLocalEvent(_npc.OnNPCStartup); SubscribeLocalEvent(_npc.OnPlayerNPCAttach); SubscribeLocalEvent(_npc.OnPlayerNPCDetach); SubscribeLocalEvent(OnHTNShutdown); diff --git a/Content.Server/NPC/HTN/Preconditions/HasStatusEffectPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/HasStatusEffectPrecondition.cs new file mode 100644 index 0000000000..d11a99e2b5 --- /dev/null +++ b/Content.Server/NPC/HTN/Preconditions/HasStatusEffectPrecondition.cs @@ -0,0 +1,28 @@ +using Content.Shared.StatusEffectNew; +using Robust.Shared.Prototypes; + +namespace Content.Server.NPC.HTN.Preconditions; + +/// +/// Returns true if entity have specified status effect +/// +public sealed partial class HasStatusEffectPrecondition : HTNPrecondition +{ + private StatusEffectsSystem _statusEffects = default!; + + [DataField(required: true)] + public EntProtoId StatusEffect; + + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _statusEffects = sysManager.GetEntitySystem(); + } + + public override bool IsMet(NPCBlackboard blackboard) + { + var owner = blackboard.GetValue(NPCBlackboard.Owner); + + return _statusEffects.HasStatusEffect(owner, StatusEffect); + } +} diff --git a/Content.Server/NPC/Systems/NPCSystem.cs b/Content.Server/NPC/Systems/NPCSystem.cs index 27b2a1691d..7aea766930 100644 --- a/Content.Server/NPC/Systems/NPCSystem.cs +++ b/Content.Server/NPC/Systems/NPCSystem.cs @@ -63,9 +63,13 @@ namespace Content.Server.NPC.Systems WakeNPC(uid, component); } - public void OnNPCMapInit(EntityUid uid, HTNComponent component, MapInitEvent args) + public void OnNPCStartup(EntityUid uid, HTNComponent component, ComponentStartup args) { component.Blackboard.SetValue(NPCBlackboard.Owner, uid); + } + + public void OnNPCMapInit(EntityUid uid, HTNComponent component, MapInitEvent args) + { WakeNPC(uid, component); } diff --git a/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs b/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs index 09e42966c7..c1757b1c2d 100644 --- a/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs +++ b/Content.Server/Stunnable/Systems/StunOnCollideSystem.cs @@ -27,7 +27,6 @@ internal sealed class StunOnCollideSystem : EntitySystem if (ent.Comp.Refresh) { _stunSystem.TryUpdateStunDuration(target, ent.Comp.StunAmount); - _movementMod.TryUpdateMovementSpeedModDuration( target, MovementModStatusSystem.TaserSlowdown, diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs index 7e275c78ce..70d9c8ae93 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs @@ -1,6 +1,5 @@ using Content.Server.Administration.Logs; using Content.Server.DeviceNetwork.Systems; -using Content.Shared.ActionBlocker; using Content.Shared.Database; using Content.Shared.DeviceNetwork; using Content.Shared.DeviceNetwork.Events; @@ -17,7 +16,6 @@ namespace Content.Server.SurveillanceCamera; public sealed class SurveillanceCameraSystem : SharedSurveillanceCameraSystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; [Dependency] private readonly ViewSubscriberSystem _viewSubscriberSystem = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; [Dependency] private readonly UserInterfaceSystem _userInterface = default!; diff --git a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs index 08eac657c0..c256872cc7 100644 --- a/Content.Shared/ActionBlocker/ActionBlockerSystem.cs +++ b/Content.Shared/ActionBlocker/ActionBlockerSystem.cs @@ -167,15 +167,21 @@ namespace Content.Shared.ActionBlocker return !ev.Cancelled; } - public bool CanPickup(EntityUid user, EntityUid item) + /// + /// Whether a user can pickup the given item. + /// + /// The mob trying to pick up the item. + /// The item being picked up. + /// Whether or not to show a popup to the player telling them why the attempt failed. + public bool CanPickup(EntityUid user, EntityUid item, bool showPopup = false) { - var userEv = new PickupAttemptEvent(user, item); + var userEv = new PickupAttemptEvent(user, item, showPopup); RaiseLocalEvent(user, userEv); if (userEv.Cancelled) return false; - var itemEv = new GettingPickedUpAttemptEvent(user, item); + var itemEv = new GettingPickedUpAttemptEvent(user, item, showPopup); RaiseLocalEvent(item, itemEv); return !itemEv.Cancelled; diff --git a/Content.Shared/Armor/SharedArmorSystem.cs b/Content.Shared/Armor/SharedArmorSystem.cs index 1ff1bbc073..972289460f 100644 --- a/Content.Shared/Armor/SharedArmorSystem.cs +++ b/Content.Shared/Armor/SharedArmorSystem.cs @@ -1,4 +1,5 @@ -using Content.Shared.Damage; +using Content.Shared.Clothing.Components; +using Content.Shared.Damage; using Content.Shared.Examine; using Content.Shared.Inventory; using Content.Shared.Silicons.Borgs; @@ -32,6 +33,9 @@ public abstract class SharedArmorSystem : EntitySystem /// The event, contains the running count of armor percentage as a coefficient private void OnCoefficientQuery(Entity ent, ref InventoryRelayedEvent args) { + if (TryComp(ent, out var mask) && mask.IsToggled) + return; + foreach (var armorCoefficient in ent.Comp.Modifiers.Coefficients) { args.Args.DamageModifiers.Coefficients[armorCoefficient.Key] = args.Args.DamageModifiers.Coefficients.TryGetValue(armorCoefficient.Key, out var coefficient) ? coefficient * armorCoefficient.Value : armorCoefficient.Value; @@ -40,12 +44,18 @@ public abstract class SharedArmorSystem : EntitySystem private void OnDamageModify(EntityUid uid, ArmorComponent component, InventoryRelayedEvent args) { + if (TryComp(uid, out var mask) && mask.IsToggled) + return; + args.Args.Damage = DamageSpecifier.ApplyModifierSet(args.Args.Damage, component.Modifiers); } private void OnBorgDamageModify(EntityUid uid, ArmorComponent component, ref BorgModuleRelayedEvent args) { + if (TryComp(uid, out var mask) && mask.IsToggled) + return; + args.Args.Damage = DamageSpecifier.ApplyModifierSet(args.Args.Damage, component.Modifiers); } diff --git a/Content.Shared/Atmos/EntitySystems/SharedAtmosphereSystem.cs b/Content.Shared/Atmos/EntitySystems/SharedAtmosphereSystem.cs index 4698939734..4a177e6263 100644 --- a/Content.Shared/Atmos/EntitySystems/SharedAtmosphereSystem.cs +++ b/Content.Shared/Atmos/EntitySystems/SharedAtmosphereSystem.cs @@ -13,6 +13,8 @@ namespace Content.Shared.Atmos.EntitySystems private EntityQuery _internalsQuery; + public string?[] GasReagents = new string[Atmospherics.TotalNumberOfGases]; + protected readonly GasPrototype[] GasPrototypes = new GasPrototype[Atmospherics.TotalNumberOfGases]; public override void Initialize() @@ -26,6 +28,7 @@ namespace Content.Shared.Atmos.EntitySystems for (var i = 0; i < Atmospherics.TotalNumberOfGases; i++) { GasPrototypes[i] = _prototypeManager.Index(i.ToString()); + GasReagents[i] = GasPrototypes[i].Reagent; } } diff --git a/Content.Shared/Bed/Sleep/SleepingSystem.cs b/Content.Shared/Bed/Sleep/SleepingSystem.cs index eca6a8befa..27e11bc878 100644 --- a/Content.Shared/Bed/Sleep/SleepingSystem.cs +++ b/Content.Shared/Bed/Sleep/SleepingSystem.cs @@ -59,6 +59,8 @@ public sealed partial class SleepingSystem : EntitySystem SubscribeLocalEvent(OnZombified); SubscribeLocalEvent(OnMobStateChanged); SubscribeLocalEvent(OnCompInit); + SubscribeLocalEvent(OnComponentRemoved); + SubscribeLocalEvent(OnRejuvenate); SubscribeLocalEvent(OnSpeakAttempt); SubscribeLocalEvent(OnSeeAttempt); SubscribeLocalEvent(OnPointAttempt); @@ -69,7 +71,6 @@ public sealed partial class SleepingSystem : EntitySystem SubscribeLocalEvent(OnInteractHand); SubscribeLocalEvent(OnStunEndAttempt); SubscribeLocalEvent(OnStandUpAttempt); - SubscribeLocalEvent(OnRejuvenate); SubscribeLocalEvent(OnStatusEffectApplied); SubscribeLocalEvent(OnUnbuckleAttempt); @@ -102,6 +103,12 @@ public sealed partial class SleepingSystem : EntitySystem TrySleeping((ent, ent.Comp)); } + private void OnRejuvenate(Entity ent, ref RejuvenateEvent args) + { + // WAKE UP!!! + RemComp(ent); + } + /// /// when sleeping component is added or removed, we do some stuff with other components. /// @@ -143,6 +150,16 @@ public sealed partial class SleepingSystem : EntitySystem _actionsSystem.AddAction(ent, ref ent.Comp.WakeAction, WakeActionId, ent); } + private void OnComponentRemoved(Entity ent, ref ComponentRemove args) + { + _actionsSystem.RemoveAction(ent.Owner, ent.Comp.WakeAction); + + var ev = new SleepStateChangedEvent(false); + RaiseLocalEvent(ent, ref ev); + + _blindableSystem.UpdateIsBlind(ent.Owner); + } + private void OnSpeakAttempt(Entity ent, ref SpeakAttemptEvent args) { // TODO reduce duplication of this behavior with MobStateSystem somehow @@ -187,11 +204,6 @@ public sealed partial class SleepingSystem : EntitySystem args.Cancelled = true; } - private void OnRejuvenate(Entity ent, ref RejuvenateEvent args) - { - TryWaking((ent.Owner, ent.Comp), true); - } - private void OnExamined(Entity ent, ref ExaminedEvent args) { if (args.IsInDetailsRange) @@ -275,17 +287,6 @@ public sealed partial class SleepingSystem : EntitySystem TrySleeping(args.Target); } - private void Wake(Entity ent) - { - RemComp(ent); - _actionsSystem.RemoveAction(ent.Owner, ent.Comp.WakeAction); - - var ev = new SleepStateChangedEvent(false); - RaiseLocalEvent(ent, ref ev); - - _blindableSystem.UpdateIsBlind(ent.Owner); - } - /// /// Try sleeping. Only mobs can sleep. /// @@ -345,8 +346,7 @@ public sealed partial class SleepingSystem : EntitySystem _popupSystem.PopupClient(Loc.GetString("wake-other-success", ("target", Identity.Entity(ent, EntityManager))), ent, user); } - Wake((ent, ent.Comp)); - return true; + return RemComp(ent); } /// diff --git a/Content.Shared/Body/Components/BrainComponent.cs b/Content.Shared/Body/Components/BrainComponent.cs new file mode 100644 index 0000000000..be3c3ecbe5 --- /dev/null +++ b/Content.Shared/Body/Components/BrainComponent.cs @@ -0,0 +1,6 @@ +using Content.Shared.Body.Systems; + +namespace Content.Shared.Body.Components; + +[RegisterComponent, Access(typeof(BrainSystem))] +public sealed partial class BrainComponent : Component; diff --git a/Content.Server/Body/Components/LungComponent.cs b/Content.Shared/Body/Components/LungComponent.cs similarity index 84% rename from Content.Server/Body/Components/LungComponent.cs rename to Content.Shared/Body/Components/LungComponent.cs index 4fb769d670..dd31de7722 100644 --- a/Content.Server/Body/Components/LungComponent.cs +++ b/Content.Shared/Body/Components/LungComponent.cs @@ -1,12 +1,13 @@ -using Content.Server.Body.Systems; +using Content.Shared.Body.Systems; using Content.Shared.Alert; using Content.Shared.Atmos; using Content.Shared.Chemistry.Components; +using Robust.Shared.GameStates; using Robust.Shared.Prototypes; -namespace Content.Server.Body.Components; +namespace Content.Shared.Body.Components; -[RegisterComponent, Access(typeof(LungSystem))] +[RegisterComponent, NetworkedComponent, Access(typeof(LungSystem))] public sealed partial class LungComponent : Component { [DataField] diff --git a/Content.Server/Body/Systems/BrainSystem.cs b/Content.Shared/Body/Systems/BrainSystem.cs similarity index 92% rename from Content.Server/Body/Systems/BrainSystem.cs rename to Content.Shared/Body/Systems/BrainSystem.cs index e916849a81..55abcbb868 100644 --- a/Content.Server/Body/Systems/BrainSystem.cs +++ b/Content.Shared/Body/Systems/BrainSystem.cs @@ -1,12 +1,12 @@ -using Content.Server.Body.Components; -using Content.Server.Ghost.Components; +using Content.Shared.Body.Components; using Content.Shared.Body.Events; +using Content.Shared.Ghost; using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Mobs.Components; using Content.Shared.Pointing; -namespace Content.Server.Body.Systems; +namespace Content.Shared.Body.Systems; public sealed class BrainSystem : EntitySystem { @@ -43,4 +43,3 @@ public sealed class BrainSystem : EntitySystem args.Cancel(); } } - diff --git a/Content.Server/Body/Systems/LungSystem.cs b/Content.Shared/Body/Systems/LungSystem.cs similarity index 86% rename from Content.Server/Body/Systems/LungSystem.cs rename to Content.Shared/Body/Systems/LungSystem.cs index fdc071c5f1..5f4c1ee4ef 100644 --- a/Content.Server/Body/Systems/LungSystem.cs +++ b/Content.Shared/Body/Systems/LungSystem.cs @@ -1,19 +1,18 @@ -using Content.Server.Atmos.EntitySystems; -using Content.Server.Body.Components; +using Content.Shared.Atmos.Components; +using Content.Shared.Atmos.EntitySystems; +using Content.Shared.Body.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Atmos; using Content.Shared.Chemistry.Components; using Content.Shared.Clothing; using Content.Shared.Inventory.Events; -using BreathToolComponent = Content.Shared.Atmos.Components.BreathToolComponent; -using InternalsComponent = Content.Shared.Body.Components.InternalsComponent; -namespace Content.Server.Body.Systems; +namespace Content.Shared.Body.Systems; public sealed class LungSystem : EntitySystem { - [Dependency] private readonly AtmosphereSystem _atmos = default!; - [Dependency] private readonly InternalsSystem _internals = default!; + [Dependency] private readonly SharedAtmosphereSystem _atmos = default!; + [Dependency] private readonly SharedInternalsSystem _internals = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutionContainerSystem = default!; public static string LungSolutionName = "Lung"; diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index 88e6ca44dc..718d2a0524 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -573,7 +573,7 @@ namespace Content.Shared.Containers.ItemSlots item = slot.Item; // This handles user logic - if (user != null && item != null && !_actionBlockerSystem.CanPickup(user.Value, item.Value)) + if (user != null && item != null && !_actionBlockerSystem.CanPickup(user.Value, item.Value, showPopup: true)) return false; Eject(uid, slot, item!.Value, user, excludeUserAudio); diff --git a/Content.Shared/Eye/Blinding/Systems/EyeProtectionSystem.cs b/Content.Shared/Eye/Blinding/Systems/EyeProtectionSystem.cs index 0fc01f1b4e..0b4353eeda 100644 --- a/Content.Shared/Eye/Blinding/Systems/EyeProtectionSystem.cs +++ b/Content.Shared/Eye/Blinding/Systems/EyeProtectionSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Inventory; using Content.Shared.Eye.Blinding.Components; using Content.Shared.Tools.Components; using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.Clothing.Components; namespace Content.Shared.Eye.Blinding.Systems { @@ -29,6 +30,9 @@ namespace Content.Shared.Eye.Blinding.Systems private void OnGetProtection(EntityUid uid, EyeProtectionComponent component, GetEyeProtectionEvent args) { + if (TryComp(uid, out var mask) && mask.IsToggled) + return; + args.Protection += component.ProtectionTime; } diff --git a/Content.Shared/Flash/SharedFlashSystem.cs b/Content.Shared/Flash/SharedFlashSystem.cs index 7f69e86042..02513aa91b 100644 --- a/Content.Shared/Flash/SharedFlashSystem.cs +++ b/Content.Shared/Flash/SharedFlashSystem.cs @@ -22,6 +22,7 @@ using Robust.Shared.Timing; using System.Linq; using Content.Shared.Movement.Systems; using Content.Shared.Random.Helpers; +using Content.Shared.Clothing.Components; namespace Content.Shared.Flash; @@ -258,6 +259,9 @@ public abstract class SharedFlashSystem : EntitySystem private void OnFlashImmunityFlashAttempt(Entity ent, ref FlashAttemptEvent args) { + if (TryComp(ent, out var mask) && mask.IsToggled) + return; + if (ent.Comp.Enabled) args.Cancelled = true; } diff --git a/Content.Shared/Ghost/GhostOnMoveComponent.cs b/Content.Shared/Ghost/GhostOnMoveComponent.cs new file mode 100644 index 0000000000..44cb3d0168 --- /dev/null +++ b/Content.Shared/Ghost/GhostOnMoveComponent.cs @@ -0,0 +1,13 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Ghost; + +[RegisterComponent, NetworkedComponent] +public sealed partial class GhostOnMoveComponent : Component +{ + [DataField] + public bool CanReturn = true; + + [DataField] + public bool MustBeDead; +} diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs index 0e8d7a7556..cd6085535a 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs @@ -181,7 +181,7 @@ public abstract partial class SharedHandsSystem : EntitySystem if (!CanDropHeld(uid, handName, checkActionBlocker)) return false; - if (!CanPickupToHand(uid, entity.Value, handsComp.ActiveHandId, checkActionBlocker, handsComp)) + if (!CanPickupToHand(uid, entity.Value, handsComp.ActiveHandId, checkActionBlocker: checkActionBlocker, handsComp: handsComp)) return false; DoDrop(uid, handName, false, log: false); diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs index ea13004313..c19de9629a 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs @@ -1,4 +1,3 @@ -using System.Diagnostics; using Content.Shared.Database; using Content.Shared.Hands.Components; using Content.Shared.Item; @@ -84,7 +83,10 @@ public abstract partial class SharedHandsSystem if (!Resolve(entity, ref item, false)) return false; - if (!CanPickupToHand(uid, entity, handId, checkActionBlocker, handsComp, item)) + if (!CanPickupToHand(uid, entity, handId, checkActionBlocker: checkActionBlocker, showPopup: true, handsComp: handsComp, item: item)) + return false; + + if (!BeforeDoPickup((uid, handsComp), entity)) return false; if (animate) @@ -151,7 +153,11 @@ public abstract partial class SharedHandsSystem return false; } - public bool CanPickupAnyHand(EntityUid uid, EntityUid entity, bool checkActionBlocker = true, HandsComponent? handsComp = null, ItemComponent? item = null) + /// + /// Checks whether a given item will fit into the user's first free hand. + /// Unless otherwise specified, this will also check the general CanPickup action blocker. + /// + public bool CanPickupAnyHand(EntityUid uid, EntityUid entity, bool checkActionBlocker = true, bool showPopup = false, HandsComponent? handsComp = null, ItemComponent? item = null) { if (!Resolve(uid, ref handsComp, false)) return false; @@ -159,13 +165,14 @@ public abstract partial class SharedHandsSystem if (!TryGetEmptyHand((uid, handsComp), out var hand)) return false; - return CanPickupToHand(uid, entity, hand, checkActionBlocker, handsComp, item); + return CanPickupToHand(uid, entity, hand, checkActionBlocker, showPopup, handsComp, item); } /// - /// Checks whether a given item will fit into a specific user's hand. Unless otherwise specified, this will also check the general CanPickup action blocker. + /// Checks whether a given item will fit into a specific user's hand. + /// Unless otherwise specified, this will also check the general CanPickup action blocker. /// - public bool CanPickupToHand(EntityUid uid, EntityUid entity, string handId, bool checkActionBlocker = true, HandsComponent? handsComp = null, ItemComponent? item = null) + public bool CanPickupToHand(EntityUid uid, EntityUid entity, string handId, bool checkActionBlocker = true, bool showPopup = false, HandsComponent? handsComp = null, ItemComponent? item = null) { if (!Resolve(uid, ref handsComp, false)) return false; @@ -176,13 +183,17 @@ public abstract partial class SharedHandsSystem if (handContainer.ContainedEntities.FirstOrNull() != null) return false; + // Huh, seems kinda weird that this system passes item comp around + // everywhere but it's never actually used besides being resolved. + // I wouldn't be surprised if there's some API simplifications that + // could be made with respect to that. if (!Resolve(entity, ref item, false)) return false; if (TryComp(entity, out PhysicsComponent? physics) && physics.BodyType == BodyType.Static) return false; - if (checkActionBlocker && !_actionBlocker.CanPickup(uid, entity)) + if (checkActionBlocker && !_actionBlocker.CanPickup(uid, entity, showPopup)) return false; if (!CheckWhitelists((uid, handsComp), handId, entity)) @@ -232,6 +243,28 @@ public abstract partial class SharedHandsSystem } } + /// + /// Small helper function meant as a last step before + /// is called. Used to run a cancelable before pickup event that can have + /// side effects, unlike the side effect free . + /// + private bool BeforeDoPickup(Entity user, EntityUid item) + { + if (!Resolve(user, ref user.Comp)) + return false; + + var userEv = new BeforeEquippingHandEvent(item); + RaiseLocalEvent(user, ref userEv); + + if (userEv.Cancelled) + return false; + + var itemEv = new BeforeGettingEquippedHandEvent(user); + RaiseLocalEvent(item, ref itemEv); + + return !itemEv.Cancelled; + } + /// /// Puts an entity into the player's hand, assumes that the insertion is allowed. In general, you should not be calling this function directly. /// diff --git a/Content.Shared/Hands/HandEvents.cs b/Content.Shared/Hands/HandEvents.cs index 0499c05f42..3d3cb9a322 100644 --- a/Content.Shared/Hands/HandEvents.cs +++ b/Content.Shared/Hands/HandEvents.cs @@ -1,5 +1,6 @@ using System.Numerics; using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; using JetBrains.Annotations; using Robust.Shared.Map; using Robust.Shared.Serialization; @@ -156,6 +157,32 @@ namespace Content.Shared.Hands } } + /// + /// Raised against an item being picked up before it is actually inserted + /// into the pick-up-ers hand container. This can be handled with side + /// effects, and may be canceled preventing the pickup in a way that + /// and similar don't see. + /// + /// The user picking up the item. + /// + /// If true, the item will not be equipped into the user's hand. + /// + [ByRefEvent] + public record struct BeforeGettingEquippedHandEvent(EntityUid User, bool Cancelled = false); + + /// + /// Raised against a mob picking up and item before it is actually inserted + /// into the pick-up-ers hand container. This can be handled with side + /// effects, and may be canceled preventing the pickup in a way that + /// and similar don't see. + /// + /// The item being picked up. + /// + /// If true, the item will not be equipped into the user's hand. + /// + [ByRefEvent] + public record struct BeforeEquippingHandEvent(EntityUid Item, bool Cancelled = false); + /// /// Raised when putting an entity into a hand slot /// diff --git a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs index 1b7f425ea8..da1887a08e 100644 --- a/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs +++ b/Content.Shared/Humanoid/HumanoidCharacterAppearance.cs @@ -100,6 +100,7 @@ public sealed partial class HumanoidCharacterAppearance : ICharacterAppearance, { SkinColorationStrategyInput.Unary => skinColoration.FromUnary(speciesPrototype.DefaultHumanSkinTone), SkinColorationStrategyInput.Color => skinColoration.ClosestSkinColor(speciesPrototype.DefaultSkinTone), + _ => skinColoration.ClosestSkinColor(speciesPrototype.DefaultSkinTone), }; return new( @@ -109,11 +110,11 @@ public sealed partial class HumanoidCharacterAppearance : ICharacterAppearance, Color.Black, Color.Black, skinColor, - new () + new() ); } - private static IReadOnlyList RealisticEyeColors = new List + private static IReadOnlyList _realisticEyeColors = new List { Color.Brown, Color.Gray, @@ -145,7 +146,7 @@ public sealed partial class HumanoidCharacterAppearance : ICharacterAppearance, // TODO: Add random markings - var newEyeColor = random.Pick(RealisticEyeColors); + var newEyeColor = random.Pick(_realisticEyeColors); var protoMan = IoCManager.Resolve(); var skinType = protoMan.Index(species).SkinColoration; @@ -155,9 +156,10 @@ public sealed partial class HumanoidCharacterAppearance : ICharacterAppearance, { SkinColorationStrategyInput.Unary => strategy.FromUnary(random.NextFloat(0f, 100f)), SkinColorationStrategyInput.Color => strategy.ClosestSkinColor(new Color(random.NextFloat(1), random.NextFloat(1), random.NextFloat(1), 1)), + _ => strategy.ClosestSkinColor(new Color(random.NextFloat(1), random.NextFloat(1), random.NextFloat(1), 1)), }; - return new HumanoidCharacterAppearance(newHairStyle, newHairColor, newFacialHairStyle, newHairColor, newEyeColor, newSkinColor, new ()); + return new HumanoidCharacterAppearance(newHairStyle, newHairColor, newFacialHairStyle, newHairColor, newEyeColor, newSkinColor, new()); float RandomizeColor(float channel) { diff --git a/Content.Shared/Item/MultiHandedItemSystem.cs b/Content.Shared/Item/MultiHandedItemSystem.cs index db64610eae..9d30d57a91 100644 --- a/Content.Shared/Item/MultiHandedItemSystem.cs +++ b/Content.Shared/Item/MultiHandedItemSystem.cs @@ -37,12 +37,17 @@ public sealed class MultiHandedItemSystem : EntitySystem private void OnAttemptPickup(Entity ent, ref GettingPickedUpAttemptEvent args) { - if (_hands.CountFreeHands(args.User) >= ent.Comp.HandsNeeded) + if (args.Cancelled || _hands.CountFreeHands(args.User) >= ent.Comp.HandsNeeded) return; args.Cancel(); - _popup.PopupPredictedCursor(Loc.GetString("multi-handed-item-pick-up-fail", - ("number", ent.Comp.HandsNeeded - 1), ("item", ent.Owner)), args.User); + + if (args.ShowPopup) + _popup.PopupPredictedCursor( + Loc.GetString("multi-handed-item-pick-up-fail", + ("number", ent.Comp.HandsNeeded - 1), + ("item", ent.Owner)), + args.User); } private void OnVirtualItemDeleted(Entity ent, ref VirtualItemDeletedEvent args) diff --git a/Content.Shared/Item/PickupAttemptEvent.cs b/Content.Shared/Item/PickupAttemptEvent.cs index eb0b4c8dcc..c8382fa08f 100644 --- a/Content.Shared/Item/PickupAttemptEvent.cs +++ b/Content.Shared/Item/PickupAttemptEvent.cs @@ -1,30 +1,47 @@ namespace Content.Shared.Item; /// -/// Raised on a *mob* when it tries to pickup something +/// Raised on a *mob* when it tries to pickup something. +/// IMPORTANT: Attempt event subscriptions should not be doing any state changes like throwing items, opening UIs, playing sounds etc! /// public sealed class PickupAttemptEvent : BasePickupAttemptEvent { - public PickupAttemptEvent(EntityUid user, EntityUid item) : base(user, item) { } + public PickupAttemptEvent(EntityUid user, EntityUid item, bool showPopup) : base(user, item, showPopup) { } } /// -/// Raised directed at entity being picked up when someone tries to pick it up +/// Raised directed at entity being picked up when someone tries to pick it up. +/// IMPORTANT: Attempt event subscriptions should not be doing any state changes like throwing items, opening UIs, playing sounds etc! /// public sealed class GettingPickedUpAttemptEvent : BasePickupAttemptEvent { - public GettingPickedUpAttemptEvent(EntityUid user, EntityUid item) : base(user, item) { } + public GettingPickedUpAttemptEvent(EntityUid user, EntityUid item, bool showPopup) : base(user, item, showPopup) { } } [Virtual] public class BasePickupAttemptEvent : CancellableEntityEventArgs { + /// + /// The mob that is picking up the item. + /// public readonly EntityUid User; + /// + /// The item being picked up. + /// + public readonly EntityUid Item; - public BasePickupAttemptEvent(EntityUid user, EntityUid item) + /// + /// Whether or not to show a popup message to the player telling them why the attempt was cancelled. + /// This should be true when this event is raised during interactions, and false when it is raised + /// for disabling verbs or similar that do not do the actual pickup. + /// + public bool ShowPopup; + + public BasePickupAttemptEvent(EntityUid user, EntityUid item, bool showPopup) { User = user; Item = item; + ShowPopup = showPopup; } } diff --git a/Content.Shared/ParcelWrap/Systems/ParcelWrappingSystem.cs b/Content.Shared/ParcelWrap/Systems/ParcelWrappingSystem.cs index b19f4b845c..7ea6daeed8 100644 --- a/Content.Shared/ParcelWrap/Systems/ParcelWrappingSystem.cs +++ b/Content.Shared/ParcelWrap/Systems/ParcelWrappingSystem.cs @@ -51,7 +51,6 @@ public sealed partial class ParcelWrappingSystem : EntitySystem wrapper.Owner != target && // Wrapper should never be empty, but may as well make sure. !_charges.IsEmpty(wrapper.Owner) && - _whitelist.IsWhitelistPass(wrapper.Comp.Whitelist, target) && - _whitelist.IsBlacklistFail(wrapper.Comp.Blacklist, target); + _whitelist.CheckBoth(target, wrapper.Comp.Blacklist, wrapper.Comp.Whitelist); } } diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index 73e7e92cca..9881ad50ce 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -212,6 +212,7 @@ namespace Content.Shared.Preferences return new() { Species = species, + Appearance = HumanoidCharacterAppearance.DefaultWithSpecies(species), }; } diff --git a/Content.Shared/Storage/Components/MagnetPickupComponent.cs b/Content.Shared/Storage/Components/MagnetPickupComponent.cs index 90b7e83d63..72a9c81077 100644 --- a/Content.Shared/Storage/Components/MagnetPickupComponent.cs +++ b/Content.Shared/Storage/Components/MagnetPickupComponent.cs @@ -1,15 +1,19 @@ using Content.Shared.Inventory; +using Robust.Shared.GameStates; namespace Content.Shared.Storage.Components; /// /// Applies an ongoing pickup area around the attached entity. /// -[RegisterComponent, AutoGenerateComponentPause] +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState] +[AutoGenerateComponentPause] public sealed partial class MagnetPickupComponent : Component { [ViewVariables(VVAccess.ReadWrite), DataField("nextScan")] [AutoPausedField] + [AutoNetworkedField] public TimeSpan NextScan = TimeSpan.Zero; /// diff --git a/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs b/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs index 9a0b48e65b..27a15c87a6 100644 --- a/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs +++ b/Content.Shared/Storage/EntitySystems/MagnetPickupSystem.cs @@ -47,6 +47,7 @@ public sealed class MagnetPickupSystem : EntitySystem continue; comp.NextScan += ScanDelay; + Dirty(uid, comp); if (!_inventory.TryGetContainingSlot((uid, xform, meta), out var slotDef)) continue; diff --git a/Content.Shared/Strip/SharedStrippableSystem.cs b/Content.Shared/Strip/SharedStrippableSystem.cs index 49be180503..aca0e42945 100644 --- a/Content.Shared/Strip/SharedStrippableSystem.cs +++ b/Content.Shared/Strip/SharedStrippableSystem.cs @@ -379,7 +379,7 @@ public abstract class SharedStrippableSystem : EntitySystem return false; } - if (!_handsSystem.CanPickupToHand(target, activeItem.Value, handName, checkActionBlocker: false, target.Comp)) + if (!_handsSystem.CanPickupToHand(target, activeItem.Value, handName, checkActionBlocker: false, handsComp: target.Comp)) { _popupSystem.PopupCursor(Loc.GetString("strippable-component-cannot-put-message", ("owner", Identity.Entity(target, EntityManager)))); return false; diff --git a/Content.Shared/Traits/Assorted/PermanentBlindnessSystem.cs b/Content.Shared/Traits/Assorted/PermanentBlindnessSystem.cs index a99a12d0fd..e060de7dd9 100644 --- a/Content.Shared/Traits/Assorted/PermanentBlindnessSystem.cs +++ b/Content.Shared/Traits/Assorted/PermanentBlindnessSystem.cs @@ -2,7 +2,6 @@ using Content.Shared.Eye.Blinding.Components; using Content.Shared.Eye.Blinding.Systems; using Content.Shared.IdentityManagement; -using Robust.Shared.Network; namespace Content.Shared.Traits.Assorted; @@ -38,18 +37,23 @@ public sealed class PermanentBlindnessSystem : EntitySystem { _blinding.SetMinDamage((blindness.Owner, blindable), 0); } + + // Heal all eye damage when the component is removed. + // Otherwise you would still be blind, but not *permanently* blind, meaning you have to heal the eye damage with oculine. + // This is needed for changelings that transform from a blind player to a non-blind one. + _blinding.AdjustEyeDamage((blindness.Owner, blindable), -blindable.EyeDamage); } private void OnMapInit(Entity blindness, ref MapInitEvent args) { - if(!TryComp(blindness.Owner, out var blindable)) + if (!TryComp(blindness.Owner, out var blindable)) return; if (blindness.Comp.Blindness != 0) _blinding.SetMinDamage((blindness.Owner, blindable), blindness.Comp.Blindness); else { - var maxMagnitudeInt = (int) BlurryVisionComponent.MaxMagnitude; + var maxMagnitudeInt = (int)BlurryVisionComponent.MaxMagnitude; _blinding.SetMinDamage((blindness.Owner, blindable), maxMagnitudeInt); } } diff --git a/Content.Shared/Trigger/Components/TimerTriggerComponent.cs b/Content.Shared/Trigger/Components/TimerTriggerComponent.cs index 9cc58d3cda..f413ab5d4f 100644 --- a/Content.Shared/Trigger/Components/TimerTriggerComponent.cs +++ b/Content.Shared/Trigger/Components/TimerTriggerComponent.cs @@ -75,6 +75,7 @@ public sealed partial class TimerTriggerComponent : Component /// /// The entity that activated this trigger. + /// TODO: use WeakEntityReference once the engine PR is merged! /// [DataField, AutoNetworkedField] public EntityUid? User; diff --git a/Content.Shared/Trigger/Systems/TriggerSystem.Timer.cs b/Content.Shared/Trigger/Systems/TriggerSystem.Timer.cs index 58ac43e571..179b04af93 100644 --- a/Content.Shared/Trigger/Systems/TriggerSystem.Timer.cs +++ b/Content.Shared/Trigger/Systems/TriggerSystem.Timer.cs @@ -168,7 +168,8 @@ public sealed partial class TriggerSystem if (timer.NextTrigger <= curTime) { - Trigger(uid, timer.User, timer.KeyOut); + var user = TerminatingOrDeleted(timer.User) ? null : timer.User; + Trigger(uid, user, timer.KeyOut); // Remove after triggering to prevent it from starting the timer again RemComp(uid); if (TryComp(uid, out var appearance)) diff --git a/Content.Shared/Trigger/Systems/TriggerSystem.cs b/Content.Shared/Trigger/Systems/TriggerSystem.cs index ca60901a79..25f8d51e11 100644 --- a/Content.Shared/Trigger/Systems/TriggerSystem.cs +++ b/Content.Shared/Trigger/Systems/TriggerSystem.cs @@ -107,6 +107,7 @@ public sealed partial class TriggerSystem : EntitySystem ent.Comp.NextTrigger = curTime + ent.Comp.Delay; var delay = ent.Comp.InitialBeepDelay ?? ent.Comp.BeepInterval; ent.Comp.NextBeep = curTime + delay; + ent.Comp.User = user; Dirty(ent); var ev = new ActiveTimerTriggerEvent(user); diff --git a/Content.Shared/Zombies/PendingZombieComponent.cs b/Content.Shared/Zombies/PendingZombieComponent.cs index b199edeb00..310f731e07 100644 --- a/Content.Shared/Zombies/PendingZombieComponent.cs +++ b/Content.Shared/Zombies/PendingZombieComponent.cs @@ -17,7 +17,7 @@ public sealed partial class PendingZombieComponent : Component { DamageDict = new () { - { "Poison", 0.4 }, + { "Poison", 0.3 }, } }; @@ -34,7 +34,7 @@ public sealed partial class PendingZombieComponent : Component /// The amount of time left before the infected begins to take damage. /// [DataField("gracePeriod"), ViewVariables(VVAccess.ReadWrite)] - public TimeSpan GracePeriod = TimeSpan.Zero; + public TimeSpan GracePeriod = TimeSpan.FromMinutes(2); /// /// The minimum amount of time initial infected have before they start taking infection damage. diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 3ac6c8e461..b2ebdecbfd 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -1447,5 +1447,19 @@ Entries: id: 175 time: '2025-09-25T21:43:53.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/40246 +- author: Kowlin + changes: + - message: Adjusted meatspike admin log severities. + type: Tweak + id: 176 + time: '2025-10-03T11:31:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40604 +- author: Kowlin + changes: + - message: Stun prods are now high severity when crafted. + type: Tweak + id: 177 + time: '2025-10-05T07:40:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40709 Name: Admin Order: 2 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c30974ca1f..917d2c1f78 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,413 +1,15 @@ Entries: -- author: EmoGarbage404 +- author: CoconutThunder changes: - - message: You can now patch holes in the floors of the evac shuttle and ATS. + - message: Fixed lubed items being thrown when looking at the pickup verb. type: Fix - id: 8501 - time: '2025-05-17T01:54:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36989 -- author: Lanedon - changes: - - message: Multiple head gear now hides the hair ! + - message: Fixed multihanded items showing a popup when looking at the pickup verb. type: Fix - id: 8502 - time: '2025-05-17T05:05:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36818 -- author: ArtisticRoomba - changes: - - message: Metal foam grenades have been added to station engineer lockers. - type: Add - - message: Metal foam grenades have been tweaked to cover more area over a longer - period of time. - type: Tweak - - message: Metal foam grenades now have a 5 second timer. - type: Tweak - - message: Aluminum foam walls now take one hit to destroy. - type: Tweak - id: 8503 - time: '2025-05-17T05:21:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37476 -- author: EmoGarbage404 - changes: - - message: Fixed tetherguns not having a beam when dragging. + - message: Fixed a bug with lubed handcuffs. type: Fix - id: 8504 - time: '2025-05-17T05:22:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37510 -- author: aada - changes: - - message: Id cards now have the same max length as character names. - type: Fix - id: 8505 - time: '2025-05-17T05:27:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35407 -- author: ArtisticRoomba - changes: - - message: Radiation collector power output has been buffed. Remember engineers, - the third level on the PA is safe for long term use! - type: Tweak - id: 8506 - time: '2025-05-17T07:45:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37475 -- author: Ilya246 - changes: - - message: Shuttles can now deal (weak) collision damage. - type: Add - id: 8507 - time: '2025-05-17T17:11:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37422 -- author: VlaDOS1408 - changes: - - message: Fax UI Menu has been reworked and now behaves better on resizing - type: Tweak - id: 8508 - time: '2025-05-17T17:20:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33825 -- author: YotaXP - changes: - - message: Favorites selected in the construction menu will now persist between - rounds. - type: Tweak - id: 8509 - time: '2025-05-17T17:37:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35867 -- author: perryprog - changes: - - message: You can now link cutter machines to material silos. - type: Tweak - id: 8510 - time: '2025-05-18T01:51:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37554 -- author: Spangs04 - changes: - - message: Resprited Telecomms - type: Tweak - id: 8511 - time: '2025-05-18T02:10:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35811 -- author: EmoGarbage404 - changes: - - message: Added the salvage job board! This board allows salvagers to access and - complete a variety of jobs in order to rank up, earn spesos, and unlock new - cargo orders. Work hard and you too may become a Supreme Salvager. - type: Add - id: 8512 - time: '2025-05-18T04:02:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37549 -- author: EmoGarbage404 - changes: - - message: Lathes can no longer connect to research servers on separate grids - type: Tweak - id: 8513 - time: '2025-05-18T04:04:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36821 -- author: 0leshe - changes: - - message: Changed max and minimum amount of jigger transfer amount - type: Tweak - id: 8514 - time: '2025-05-18T04:14:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35962 -- author: ArtisticRoomba - changes: - - message: Air grenades have been added! These can fill up a spaced room of ~30 - tiles with fresh air. They can be found in Atmospheric Technician's lockers. - Use them wisely! - type: Add - id: 8515 - time: '2025-05-18T04:32:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37531 -- author: EmoGarbage404 - changes: - - message: Various salvage equipment can now be unlocked through the job board and - purchased through cargo. - type: Add - - message: Space debris and the mining asteroid no longer generate salvage equipment - type: Tweak - id: 8516 - time: '2025-05-18T06:40:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37561 -- author: mrjajkes - changes: - - message: Add Blatantly Nuclear as a Nuke Song. - type: Add - id: 8517 - time: '2025-05-18T07:30:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/35927 -- author: metalgearsloth - changes: - - message: Shuttles now are treated as rooved for daylight. - type: Tweak - id: 8518 - time: '2025-05-18T07:47:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36112 -- author: ScarKy0 - changes: - - message: Deliveries can now very rarely spawn as bomb-type! They grant A LOT of - spesos... at a price. - type: Add - id: 8519 - time: '2025-05-18T08:57:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37069 -- author: ScarKy0 - changes: - - message: Aloxadone has been tweaked. The recipe has been altered to be simplier - to make and the healing values have been increased. - type: Tweak - id: 8523 - time: '2025-05-18T09:16:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37239 -- author: Simyon - changes: - - message: The Syndicate and Wizard Communications Console now no longer show who - the message was sent by. - type: Tweak - id: 8524 - time: '2025-05-18T09:18:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37567 -- author: SuperGDPWYL - changes: - - message: A Lone Operative detonating the nuke on-station will now end the round. - type: Add - - message: The endscreen will now properly show how successful Lone Operatives were. - type: Fix - id: 8525 - time: '2025-05-18T11:34:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36498 -- author: metalgearsloth - changes: - - message: Fixes being able to grab items through walls. - type: Fix - id: 8526 - time: '2025-05-18T14:38:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37570 -- author: qwerltaz - changes: - - message: Water vapor is now dangerous to slime life-forms. - type: Add - id: 8527 - time: '2025-05-18T22:55:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32751 -- author: slarticodefast - changes: - - message: Added a new keybind for swapping hands in the other direction (if you - got more than two). Defaults to Shift+X. Useful for cycling through borg modules. - type: Add - id: 8528 - time: '2025-05-19T01:17:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37588 -- author: keronshb - changes: - - message: Force Wall timers changed so it despawns faster than it can be cast. - type: Tweak - - message: Force Wall users can now interact while inside of the wall, but also - can be attacked while inside of the wall. - type: Tweak - id: 8529 - time: '2025-05-19T01:30:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37525 -- author: Samuka - changes: - - message: Holy water now evaporates. - type: Fix - id: 8530 - time: '2025-05-19T16:14:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37611 -- author: aada - changes: - - message: Pepper makes you cough. - type: Add - id: 8531 - time: '2025-05-19T18:23:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36358 -- author: Entvari - changes: - - message: Hyper Capacity Powercells are now available as Tier 3 Industrial Research. - type: Add - - message: The Tier 3 Industrial Research 'Portable Fission' has been renamed to - Optimized Microgalvanism to better reflect this. - type: Tweak - id: 8532 - time: '2025-05-19T22:35:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37619 -- author: RedBookcase - changes: - - message: The Salvage section of the guidebook has been updated. - type: Fix - id: 8533 - time: '2025-05-19T22:39:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37593 -- author: SpeltIncorrectyl - changes: - - message: Kammerer now has a tighter spread to compensate for its lower rate of - fire. - type: Tweak - id: 8534 - time: '2025-05-19T22:45:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37616 -- author: Pronana - changes: - - message: Galoshes now slow on puddles again - type: Fix - id: 8535 - time: '2025-05-20T02:47:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37628 -- author: slarticodefast - changes: - - message: Added a reduced motion version of the seeing rainbows overlay. - type: Add - id: 8536 - time: '2025-05-20T12:36:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37584 -- author: B-Kirill - changes: - - message: Added new fun meteors variations (Cosmic cow, Honksteroid, Space potato) - that drop unique loot upon destruction. Urist McMeteor now shatters into meat - when explodes. - type: Add - id: 8537 - time: '2025-05-20T13:04:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37327 -- author: Kittygyat - changes: - - message: Added a new, faster way for slimepeople to access their own special inventory, - with LMB. - type: Add - id: 8538 - time: '2025-05-20T16:55:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37592 -- author: FrostWinters - changes: - - message: Histamines no longer cause radiation. - type: Tweak - - message: Epinephrine treats Histamines above OD threshold. - type: Tweak - id: 8544 - time: '2025-05-21T01:12:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37460 -- author: Minty642 - changes: - - message: Added fungal soil, maintenance version of hydroponics. - type: Add - id: 8545 - time: '2025-05-21T04:59:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36245 -- author: metalgearsloth - changes: - - message: Picking up items with area pickups (e.g. trash bags) no longer lags the - game. - type: Fix - id: 8546 - time: '2025-05-21T06:16:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37638 -- author: Errant - changes: - - message: High-energy shuttle impacts now deal much less damage. - type: Tweak - id: 8547 - time: '2025-05-21T10:37:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37578 -- author: metalgearsloth - changes: - - message: Shuttle impact force is now proportional to direction of impact. - type: Tweak - id: 8548 - time: '2025-05-21T13:32:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37667 -- author: muburu - changes: - - message: Singularity beacons and powersinks now require two free hands to hold. - type: Tweak - id: 8549 - time: '2025-05-21T17:11:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37683 -- author: ElectroJr - changes: - - message: Microwaving the nuke disk will now slightly randomize the nuke countdown - timer. - type: Add - id: 8550 - time: '2025-05-21T18:06:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/36114 -- author: AsnDen - changes: - - message: Cyborgs now can scream. 9 new screaming sound were added. - type: Tweak - id: 8551 - time: '2025-05-21T19:49:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32329 -- author: ScarKy0 - changes: - - message: The "Help another traitor" objective now requires you help them complete - all of their objectives. - type: Tweak - - message: The "Help another traitor" objective now updates it's progress according - to the progress of who you're supposed to help, allowing for partial completion. - type: Tweak - id: 8552 - time: '2025-05-21T20:45:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37679 -- author: PJB3005 - changes: - - message: Significantly reduced video memory usage of the parallax system. - type: Tweak - id: 8553 - time: '2025-05-22T01:22:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37180 -- author: ArtisticRoomba - changes: - - message: Tesla coils can now hold a max capacity of 5 MJ, and receive 5 MJ of - energy when struck by lightning. - type: Tweak - - message: Tesla coils can now only output a maximum of 350 kW to the grid. This - was done to make power flow smoother (it was triggering epilepsy in extreme - circumstances). - type: Tweak - id: 8554 - time: '2025-05-22T01:39:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37626 -- author: Wolfkey-SomeoneElseTookMyUsername - changes: - - message: You can now construct disposal signalers, which trigger a signal every - time an item passes through them. - type: Add - id: 8555 - time: '2025-05-22T02:18:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37535 -- author: ScarKy0 - changes: - - message: The "Escape alive and unrestrained" objective now counts as partially - complete if you show up handcuffed. Being dead still has it count as a total - fail! - type: Tweak - id: 8556 - time: '2025-05-22T03:25:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37680 -- author: EmoGarbage404 - changes: - - message: Added cargo orders for gold and silver ingots. - type: Add - - message: Reduced prices of cardboard and paper material crate. - type: Tweak - id: 8557 - time: '2025-05-22T08:42:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37713 -- author: ArtisticRoomba - changes: - - message: The volume of large gas canisters have been increased to 1500L to encourage - their usage in resolving pressure problems in spaced rooms. The gas that starts - inside of the tanks and the price of them has increased to compensate. - type: Tweak - id: 8558 - time: '2025-05-22T18:12:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37564 -- author: Hitlinemoss - changes: - - message: Liquid soap is now slippery. - type: Fix - id: 8559 - time: '2025-05-23T21:57:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/37747 + id: 8561 + time: '2025-05-25T05:10:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38705 - author: CoconutThunder changes: - message: The Chief Medical Officer should now appear with the correct precedence @@ -3963,3 +3565,382 @@ id: 9011 time: '2025-09-27T17:01:14.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/39914 +- author: SignalSender + changes: + - message: reworked salv instrument spawns to include more instruments + type: Tweak + id: 9012 + time: '2025-09-27T20:51:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40572 +- author: SurrealShibe + changes: + - message: Vulpkanin now audibly gasp. + type: Fix + id: 9014 + time: '2025-09-28T03:25:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40579 +- author: keronshb + changes: + - message: Tasers can now be used by Pacifists. + type: Tweak + id: 9015 + time: '2025-09-28T03:43:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40588 +- author: beck-thompson + changes: + - message: Labelers can no longer add markup tags to items + type: Fix + id: 9016 + time: '2025-09-28T18:33:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40600 +- author: SirWarock + changes: + - message: Fixed Shotgun Ammo Count not properly updating when reloading! + type: Fix + id: 9017 + time: '2025-09-29T10:28:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40568 +- author: BoskiYourk, spanky_spanky + changes: + - message: Microwaves can now be picked up when unwrenched, and optionally, used + as a weapon. + type: Tweak + id: 9018 + time: '2025-09-30T21:55:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40618 +- author: leahcat + changes: + - message: moved desoxyephedrine from ambrosia plants to glasstle. + type: Tweak + id: 9019 + time: '2025-10-01T04:05:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40638 +- author: SignalSender + changes: + - message: Musicians now have a Stage Name + type: Tweak + id: 9020 + time: '2025-10-01T11:46:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40640 +- author: Velcroboy + changes: + - message: Shutters, blast doors, and lights can now be linked using the "Link Defaults" + button. + type: Tweak + id: 9021 + time: '2025-10-01T20:22:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37690 +- author: YoungThugSS14 + changes: + - message: The Prisoner Eva Suit now has the same stats as an emergency eva suit. + type: Tweak + id: 9022 + time: '2025-10-01T20:23:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36696 +- author: K-Dynamic + changes: + - message: Puddles now spill over at 50u instead of 20u. + type: Add + id: 9023 + time: '2025-10-01T20:28:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38044 +- author: Mixelz + changes: + - message: Circuit Totes, a new type of box to compactly carry conspicous chunks + of Circuits! + type: Add + - message: Head Lockers now compact all circuit boards & stamps into boxes for convenience. + type: Tweak + - message: The Surplus Circuit Crate is now a Tote! + type: Tweak + id: 9024 + time: '2025-10-01T23:22:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39868 +- author: sudobeans + changes: + - message: utility knife, which can be made in the autolathe. + type: Add + id: 9025 + time: '2025-10-02T09:02:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39567 +- author: kosticia + changes: + - message: Anomalies with inconsistent particles no longer shuffle right before + collision with particle. + type: Fix + id: 9026 + time: '2025-10-02T20:11:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40624 +- author: archee1 + changes: + - message: Material doors now have destruction sounds and will drop a portion of + their construction materials when destroyed. + type: Add + - message: Material doors now have reduced health, resistances, construction time, + and construction costs + type: Tweak + id: 9027 + time: '2025-10-02T22:47:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36597 +- author: PJB3005 + changes: + - message: You can stuff the nuke disk in plushies now. + type: Tweak + id: 9028 + time: '2025-10-03T09:53:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40674 +- author: Crude Oil + changes: + - message: Returned PDA lights to original brightness + type: Fix + id: 9029 + time: '2025-10-03T20:33:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40687 +- author: NoreUhh + changes: + - message: The Syndicate Cyborg Martyr Module can now be used multiple times. + type: Tweak + id: 9030 + time: '2025-10-03T23:35:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40224 +- author: K-Dynamic + changes: + - message: Adds smart equip function to pocket 1, pocket 2, and suit storage slots. + Default binds are Shift+F and Shift+G for first and second pocket, Shift+H for + suit storage. + type: Add + id: 9031 + time: '2025-10-04T01:44:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37975 +- author: AwareFoxy + changes: + - message: Added Pride-O-Mat to marathon! + type: Add + id: 9032 + time: '2025-10-04T16:50:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40696 +- author: Moomoobeef + changes: + - message: Evac directional signs now glow in the dark! + type: Tweak + id: 9033 + time: '2025-10-04T20:27:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/38545 +- author: NoreUhh + changes: + - message: The Ian suit makes you bark now. Woof! + type: Tweak + id: 9034 + time: '2025-10-05T08:06:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40694 +- author: Princess-Cheeseballs + changes: + - message: Incendiary rounds now deal a mix of pierce damage and heat damage instead + of primarily heat damage. + type: Tweak + id: 9035 + time: '2025-10-05T08:38:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39204 +- author: Centronias + changes: + - message: Stirring is once again prioritized over drinking. No longer will your + bartender be very tempted to taste test your drink as they stir it. + type: Fix + id: 9036 + time: '2025-10-05T22:12:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40704 +- author: jessicamaybe + changes: + - message: Skeletons are now playable instruments! + type: Add + id: 9037 + time: '2025-10-07T00:59:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40009 +- author: Huaqas, Davyei + changes: + - message: 3 new Holy Books have been added to the Chaplain's loadout. + type: Add + id: 9038 + time: '2025-10-07T07:39:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39181 +- author: Huaqas + changes: + - message: The Tanakh and Satanic bibles have been removed. + type: Remove + id: 9039 + time: '2025-10-07T09:14:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39698 +- author: jessicamaybe + changes: + - message: Gorillas can now pull objects. + type: Tweak + id: 9040 + time: '2025-10-07T09:31:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40700 +- author: SurrealShibe + changes: + - message: Added the nutri-batard to mime survival boxes in place of the nutri-brick. + type: Add + id: 9041 + time: '2025-10-07T10:18:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40601 +- author: Lordbrandon12 + changes: + - message: Fixed issue allowing space heater temperature to be set above the allowed + limit. + type: Fix + id: 9042 + time: '2025-10-07T12:53:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40453 +- author: IProduceWidgets + changes: + - message: Vox that take excessive amounts of fire damage will now burn into fried + chicken. + type: Tweak + id: 9043 + time: '2025-10-07T14:12:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40115 +- author: BoskiYourk, spanky_spanky + changes: + - message: The Head of Security now has an energy magnum, a self-charging multi-mode + laser revolver, in their locker instead of the energy shotgun. + type: Add + - message: The Warden now has the energy shotgun in their locker round-start. + type: Tweak + id: 9044 + time: '2025-10-07T16:05:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40615 +- author: FungiFellow + changes: + - message: Cancer Mice now have unique ghost role entries. + type: Tweak + id: 9045 + time: '2025-10-07T16:33:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40102 +- author: FungiFellow + changes: + - message: Biosuits can now fit Gastanks in Suit Storage, the Security Biosuit can + fit both Gastanks and Weapons + type: Add + - message: Security Biosuits Cost has been increased 800->1600 + type: Tweak + id: 9046 + time: '2025-10-07T18:22:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39888 +- author: Hitlinemoss + changes: + - message: MRE wrappers are no longer twice as nutritious as the actual food within. + type: Fix + id: 9047 + time: '2025-10-07T19:36:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40761 +- author: TrixxedHeart + changes: + - message: 'Added new markings for Vox: 3 new beak types, 2 beak markings, 1 overlay + 6 head, and 3 chest markings.' + type: Add + - message: Fixed sprite layering issue where a Vox's back leg would appear on top + of their front leg in side sprites. + type: Fix + id: 9048 + time: '2025-10-07T23:14:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40569 +- author: Hitlinemoss + changes: + - message: Bartenders with a significant amount of playtime can now select a golden + shaker in the loadout menu. + type: Add + id: 9049 + time: '2025-10-07T23:37:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40762 +- author: SlamBamActionman + changes: + - message: The Energy Shotgun no longer has a self-recharge or wide fire mode, but + charges faster in rechargers. + type: Tweak + id: 9050 + time: '2025-10-08T02:51:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40757 +- author: archee1 + changes: + - message: Space Cobras no longer attack Space Adders automatically. + type: Fix + id: 9051 + time: '2025-10-08T11:30:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37424 +- author: aada + changes: + - message: Buckets are now destructible. + type: Tweak + id: 9052 + time: '2025-10-08T13:58:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40772 +- author: UpAndLeaves + changes: + - message: Zombie infections now take approximately three minutes longer to bring + a fully healed person to critical condition. + type: Tweak + id: 9053 + time: '2025-10-08T14:11:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37445 +- author: YoungThugSS14 + changes: + - message: The temperature gun bolts now count as energy projectiles for the sake + of reflection. + type: Tweak + - message: The temperature gun's cold projectile can no longer pass through windows. + type: Fix + - message: The temperature gun now has color-appropriate muzzle flashes. + type: Fix + id: 9054 + time: '2025-10-08T15:10:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37581 +- author: K-Dynamic + changes: + - message: Energy shotgun lethal projectiles can now hit holo mobs. + type: Fix + id: 9055 + time: '2025-10-08T15:23:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/37920 +- author: Hitlinemoss + changes: + - message: Folders and clipboards are now available in the Trinkets loadout tab. + type: Add + id: 9056 + time: '2025-10-08T15:49:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/39920 +- author: SlamBamActionman + changes: + - message: Disablers, temperature guns and tasers can now hit holo mobs. + type: Fix + id: 9057 + time: '2025-10-08T21:59:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40782 +- author: Centronias + changes: + - message: You can now attach paper labels to wrapped parcels. + type: Add + id: 9058 + time: '2025-10-08T22:27:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40783 +- author: ToastEnjoyer + changes: + - message: On fland, the wardens enforcer has been removed. + type: Remove + id: 9059 + time: '2025-10-08T23:45:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40786 +- author: Princess-Cheeseballs + changes: + - message: Dying while asleep shouldn't permanently blind you anymore. + type: Fix + id: 9061 + time: '2025-10-09T13:46:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40366 +- author: kontakt + changes: + - message: Bulldog magazines are now only accessible through emagged fabricators. + type: Tweak + id: 9062 + time: '2025-10-09T14:00:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40790 diff --git a/Resources/Changelog/Maps.yml b/Resources/Changelog/Maps.yml index eba4933919..6d59319598 100644 --- a/Resources/Changelog/Maps.yml +++ b/Resources/Changelog/Maps.yml @@ -731,4 +731,37 @@ id: 88 time: '2025-09-25T21:36:16.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/40546 +- author: Absotively + changes: + - message: Updated Elkridge's burn chambers for safer delta pressure handling + type: Tweak + id: 89 + time: '2025-09-30T03:45:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40590 +- author: ToastEnjoyer + changes: + - message: On Marathon, added various improvements to engineering, parts of maints, + and some service improvements. + type: Tweak + - message: On Marathon, the security front has been fixed so that power is there + roundstart. + type: Fix + id: 90 + time: '2025-10-07T02:21:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40725 +- author: Vortebo + changes: + - message: On Relic, some small changes to address unintended gameplay issues and + further increase historical accuracy. + type: Tweak + id: 91 + time: '2025-10-08T16:59:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40537 +- author: ToastEnjoyer + changes: + - message: On box, the wardens enforcer has been removed from their office. + type: Remove + id: 92 + time: '2025-10-08T20:41:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/40785 Order: 1 diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index f3ea41018f..ca08fb2939 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0leshe, 0tito, 0x6273, 12rabbits, 1337dakota, 13spacemen, 154942, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 27alaing, 2DSiggy, 3nderall, 4310v343k, 4dplanner, 5tickman, 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, Andrew-Fall, AndrewEyeke, AndrewFenriz, 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, BadaBoomie, 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, breeplayx3, 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, CawsForConcern, 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, CraftyRenter, 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, ddeegan, 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, DieselMohawkTheSequel, 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, F1restar4, 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, GR1231, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, Hayden, he1acdvv, Hebi, Helix-ctrl, helm4142, Henry, HerCoyote23, Hi-Im-Shot, HighTechPuddle, Hitlinemoss, hiucko, hivehum, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, hoshizora-sayo, Hreno, Hrosts, htmlsystem, Huaqas, 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, Kyoth25f, 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, lilazero, liltenhead, linkbro1, linkuyx, Litraxx, little-meow-meow, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, ljm862, lmsnoise, localcc, lokachop, lolman360, Lomcastar, Lordbrandon12, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luegamer, luizwritescode, Lukasz825700516, luminight, lunarcomets, Lusatia, Luxeator, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M1tht1c, M3739, M4rchy-S, M87S, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, magnuscrowe, maland1, malchanceux, MaloTV, ManelNavola, manelnavola, Mangohydra, marboww, Markek1, MarkerWicker, 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, OnsenCapy, OnyxTheBrave, opl-, Orange-Winds, OrangeMoronage9622, OrbitSystem07, 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, Pixel8-dev, 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, quasr-9, 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, rhailrake, 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, signalsender, SignalWalker, siigiil, silicon14wastaken, Simyon264, sirdragooon, Sirionaut, sirwarock, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skybailey-dev, skye, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, Smugman, snebl, snicket, sniperchance, Snowni, snowsignal, SolidSyn, 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, Steffo99, stellar-novas, stewie523, stomf, Stop-Signs, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, supergdpwyl, superjj18, Supernorn, SurrealShibe, SweetAplle, 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, travis-g-reid, 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, vgskye, viceemargo, VigersRay, violet754, Visne, vitopigno, vitusveit, vlad, vlados1408, VMSolidus, vmzd, VoidMeticulous, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, Vortebo, vulppine, wachte1, 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, 27alaing, 2DSiggy, 3nderall, 4310v343k, 4dplanner, 5tickman, 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, Andrew-Fall, AndrewEyeke, AndrewFenriz, 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, AwareFoxy, Awlod, azzyisnothere, AzzyIsNotHere, B-Kirill, B3CKDOOR, baa14453, BackeTako, BadaBoomie, 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, breeplayx3, 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, CawsForConcern, 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, CraftyRenter, 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, ddeegan, 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, DieselMohawkTheSequel, 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, F1restar4, 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, GR1231, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GrownSamoyedDog, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, Hayden, he1acdvv, Hebi, Helix-ctrl, helm4142, Henry, HerCoyote23, Hi-Im-Shot, HighTechPuddle, Hitlinemoss, hiucko, hivehum, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, hoshizora-sayo, Hreno, Hrosts, htmlsystem, Huaqas, 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, Kyoth25f, kyupolaris, kzhanik, LaCumbiaDelCoronavirus, lajolico, Lamrr, lanedon, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leah, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, lilazero, liltenhead, linkbro1, linkuyx, Litraxx, little-meow-meow, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, ljm862, lmsnoise, localcc, lokachop, lolman360, Lomcastar, Lordbrandon12, LordCarve, LordEclipse, lucas, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luegamer, luizwritescode, Lukasz825700516, luminight, lunarcomets, Lusatia, Luxeator, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M1tht1c, M3739, M4rchy-S, M87S, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, magnuscrowe, maland1, malchanceux, MaloTV, manelnavola, ManelNavola, Mangohydra, marboww, Markek1, MarkerWicker, 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, NoreUhh, 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, OnsenCapy, OnyxTheBrave, opl-, Orange-Winds, OrangeMoronage9622, OrbitSystem07, 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, Pixel8-dev, 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, quasr-9, 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, rhailrake, 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, signalsender, SignalWalker, siigiil, silicon14wastaken, Simyon264, sirdragooon, Sirionaut, sirwarock, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skybailey-dev, skye, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, slimmslamm, Slyfox333, Smugman, snebl, snicket, sniperchance, Snowni, snowsignal, SolidSyn, 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, Steffo99, stellar-novas, stewie523, stomf, Stop-Signs, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, supergdpwyl, superjj18, Supernorn, SurrealShibe, SweetAplle, 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, travis-g-reid, 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, vgskye, viceemargo, VigersRay, violet754, Visne, vitopigno, vitusveit, vlad, vlados1408, VMSolidus, vmzd, VoidMeticulous, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, Vortebo, vulppine, wachte1, 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 diff --git a/Resources/Locale/en-US/discord/round-notifications.ftl b/Resources/Locale/en-US/discord/round-notifications.ftl index a9a3d5fb50..ce5045452b 100644 --- a/Resources/Locale/en-US/discord/round-notifications.ftl +++ b/Resources/Locale/en-US/discord/round-notifications.ftl @@ -1,5 +1,5 @@ discord-round-notifications-new = A new round is starting! discord-round-notifications-started = Round #{$id} on map "{$map}" started. discord-round-notifications-end = Round #{$id} has ended. It lasted for {$hours} hours, {$minutes} minutes, and {$seconds} seconds. -discord-round-notifications-end-ping = <@&{$roleId}>, the server will reboot shortly! +discord-round-notifications-end-ping = <@&{$roleId}>, a new round will start soon! discord-round-notifications-unknown-map = Unknown diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index a578adf82b..6c4ca0c4f4 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -32,6 +32,9 @@ ghost-role-information-silicon-rules = You are a [color={role-type-silicon-color ghost-role-information-mouse-name = Mouse ghost-role-information-mouse-description = A hungry and mischievous mouse. +ghost-role-information-cancer-mouse-name = Cancer Mouse +ghost-role-information-cancer-mouse-description = An irradiated mouse, spread your affliction and seek food. + ghost-role-information-mothroach-name = Mothroach ghost-role-information-mothroach-description = A cute but mischievous mothroach. diff --git a/Resources/Locale/en-US/markings/vox.ftl b/Resources/Locale/en-US/markings/vox.ftl index 3cb14df2aa..83f073e444 100644 --- a/Resources/Locale/en-US/markings/vox.ftl +++ b/Resources/Locale/en-US/markings/vox.ftl @@ -1,14 +1,62 @@ +marking-TattooVoxNightlingHead-tattoo_nightling_head = Vox Head Tattoo (Nightling) +marking-TattooVoxNightlingHead = Vox Head Tattoo (Nightling) + +marking-TattooVoxArrowHead-tattoo_arrow_head = Vox Head Tattoo (Arrow) +marking-TattooVoxArrowHead = Vox Head Tattoo (Arrow) + +marking-VoxTattooEyeliner-eyeliner = Eyeliner +marking-VoxTattooEyeliner = Eyeliner + +marking-VoxVisage-visage = Visage (Full) +marking-VoxVisage = Visage (Full) + +marking-VoxVisageL-visage_l = Visage (Left) +marking-VoxVisageL = Visage (Left) + +marking-VoxVisageR-visage_r = Visage (Right) +marking-VoxVisageR = Visage (Right) + +marking-VoxCheek-cheekblush = Cheeks +marking-VoxCheek = Cheeks + +marking-VoxBeak-beak = Beak (Pointed) +marking-VoxBeak = Beak (Pointed) + +marking-VoxBeakSquareCere-beak_squarecere = Beak (Square Cere) +marking-VoxBeakSquareCere = Beak (Square Cere) + +marking-VoxBeakHooked-beak_hooked = Beak (Hooked) +marking-VoxBeakHooked = Beak (Hooked) + +marking-VoxBeakShaved-beak_shaved = Beak (Shaved) +marking-VoxBeakShaved = Beak (Shaved) + +marking-VoxBeakCoverTip-beakcover_tip = Beak Tip +marking-VoxBeakCoverTip = Beak Tip + +marking-VoxBeakCoverStripe-beakcover_stripe = Beak Stripe +marking-VoxBeakCoverStripe = Beak Stripe + marking-TattooVoxHeartLeftArm-heart_l_arm = Vox Left Arm Tattoo (Heart) marking-TattooVoxHeartLeftArm = Vox Left Arm Tattoo (Heart) marking-TattooVoxHeartRightArm-heart_r_arm = Vox Right Arm Tattoo (Heart) marking-TattooVoxHeartRightArm = Vox Right Arm Tattoo (Heart) -marking-TattooVoxHiveChest-hive_s = Vox Chest Tattoo (hive) -marking-TattooVoxHiveChest = Vox Chest Tattoo (hive) +marking-TattooVoxHiveChest-hive_s = Vox Chest Tattoo (Hive) +marking-TattooVoxHiveChest = Vox Chest Tattoo (Hive) -marking-TattooVoxNightlingChest-nightling_s = Vox Chest Tattoo (nightling) -marking-TattooVoxNightlingChest = Vox Chest Tattoo (nightling) +marking-TattooVoxNightlingChest-nightling_s = Vox Chest Tattoo (Nightling) +marking-TattooVoxNightlingChest = Vox Chest Tattoo (Nightling) + +marking-TattooVoxNightbelt-nightbelt = Vox Stomach Tattoo (Nightling) +marking-TattooVoxNightbelt = Vox Stomach Tattoo (Nightling) + +marking-TattooVoxChestV-night_v = Vox Chest Tattoo (V Shape) +marking-TattooVoxChestV = Vox Chest Tattoo (V Shape) + +marking-TattooVoxUnderbelly-underbelly = Underbelly +marking-TattooVoxUnderbelly = Underbelly marking-VoxScarEyeRight-vox_scar_eye_right = Right Eye Scar marking-VoxScarEyeRight = Eye Scar (Right) diff --git a/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl b/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl index f800aa2c8d..83e2e0c1ac 100644 --- a/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl +++ b/Resources/Locale/en-US/objectives/conditions/steal-target-groups.ftl @@ -11,7 +11,7 @@ steal-target-groups-captain-id-card = captain ID card steal-target-groups-jetpack-captain-filled = captain's jetpack steal-target-groups-weapon-antique-laser = antique laser pistol steal-target-groups-nuke-disk = nuclear authentication disk -steal-target-groups-weapon-energy-shot-gun = energy shotgun +steal-target-groups-weapon-energy-magnum = energy magnum # Thief Collection steal-target-groups-figurines = figurine diff --git a/Resources/Locale/en-US/preferences/loadout-groups.ftl b/Resources/Locale/en-US/preferences/loadout-groups.ftl index 077462e73b..452b726ee2 100644 --- a/Resources/Locale/en-US/preferences/loadout-groups.ftl +++ b/Resources/Locale/en-US/preferences/loadout-groups.ftl @@ -43,6 +43,7 @@ loadout-group-passenger-neck = Passenger neck loadout-group-bartender-head = Bartender head loadout-group-bartender-jumpsuit = Bartender jumpsuit loadout-group-bartender-outerclothing = Bartender outer clothing +loadout-group-bartender-shaker = Bartender shaker loadout-group-chef-head = Chef head loadout-group-chef-mask = Chef mask diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 8eecfad339..65104c7918 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -91,7 +91,7 @@ uplink-pistol-magazine-name = Pistol Magazine (.35 auto) uplink-pistol-magazine-desc = Pistol magazine with 10 cartridges. Compatible with the Viper. uplink-pistol-magazine-c20r-name = SMG magazine (.35 auto) -uplink-pistol-magazine-c20r-desc = Rifle magazine with 30 cartridges. Compatible with C-20r. +uplink-pistol-magazine-c20r-desc = SMG magazine with 30 cartridges. Compatible with C-20r. uplink-magazine-bulldog-pellet-name = Drum magazine (.50 pellet) uplink-magazine-bulldog-pellet-desc = Shotgun magazine with 8 shells filled with buckshot. Compatible with the Bulldog. diff --git a/Resources/Maps/Shuttles/arrivals_relic.yml b/Resources/Maps/Shuttles/arrivals_relic.yml index 4d586843fe..e169432419 100644 --- a/Resources/Maps/Shuttles/arrivals_relic.yml +++ b/Resources/Maps/Shuttles/arrivals_relic.yml @@ -66,7 +66,10 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle - dampingModifier: 0.25 + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ArrivalsShuttleTimer - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier diff --git a/Resources/Maps/Shuttles/cargo_relic.yml b/Resources/Maps/Shuttles/cargo_relic.yml index 7b3e935ea0..b85f71b0c5 100644 --- a/Resources/Maps/Shuttles/cargo_relic.yml +++ b/Resources/Maps/Shuttles/cargo_relic.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 264.0.0 + engineVersion: 267.1.0 forkId: "" forkVersion: "" - time: 08/06/2025 14:30:26 - entityCount: 176 + time: 09/27/2025 19:19:05 + entityCount: 180 maps: [] grids: - 1 @@ -93,34 +93,12 @@ entities: uniqueMixes: - volume: 2500 immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} - volume: 2500 temperature: 293.15 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.824879 + Nitrogen: 82.10312 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -155,6 +133,21 @@ entities: - type: Transform pos: 6.5,1.5 parent: 1 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanDirectional + entities: + - uid: 177 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 - proto: CableApcExtension entities: - uid: 111 @@ -464,6 +457,9 @@ entities: entities: - uid: 9 components: + - type: MetaData + desc: Used to pilot the prison shuttle. + name: prison shuttle console - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-1.5 @@ -726,13 +722,6 @@ entities: 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 @@ -747,41 +736,57 @@ entities: - type: Transform pos: 5.5,-4.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 53 components: - type: Transform pos: 9.5,-4.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 54 components: - type: Transform pos: 12.5,1.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 55 components: - type: Transform pos: 12.5,-4.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 56 components: - type: Transform pos: 14.5,-0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 57 components: - type: Transform pos: 14.5,-1.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 58 components: - type: Transform pos: 14.5,-2.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 89 components: - type: Transform pos: 5.5,1.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - proto: SMESBasic entities: - uid: 100 @@ -806,6 +811,13 @@ entities: - type: Transform pos: 3.5,0.5 parent: 1 +- proto: Syringe + entities: + - uid: 6 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 - proto: Table entities: - uid: 76 @@ -1027,12 +1039,16 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 74 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-2.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - proto: WindoorSecureSecurityLocked entities: - uid: 11 @@ -1040,16 +1056,37 @@ entities: - type: Transform pos: 1.5,-2.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 75 components: - type: Transform pos: 1.5,-0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 90 components: - type: Transform pos: 1.5,-1.5 parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 179 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 - proto: WindowDirectional entities: - uid: 36 @@ -1057,89 +1094,121 @@ entities: - type: Transform pos: 5.5,-3.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 50 components: - type: Transform pos: 3.5,-0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 61 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 62 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-1.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 63 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-2.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 64 components: - type: Transform pos: 12.5,-3.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 65 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 66 components: - type: Transform pos: 9.5,-3.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 67 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-3.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 68 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-1.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 69 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 70 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 71 components: - type: Transform pos: 2.5,-0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 87 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 170 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 171 components: - type: Transform pos: 4.5,-0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 ... diff --git a/Resources/Maps/Shuttles/emergency_relic.yml b/Resources/Maps/Shuttles/emergency_relic.yml index b5c48b5786..6329599cbb 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: 264.0.0 + engineVersion: 267.1.0 forkId: "" forkVersion: "" - time: 07/25/2025 18:00:45 - entityCount: 176 + time: 09/27/2025 19:18:41 + entityCount: 180 maps: [] grids: - 1 @@ -66,7 +66,7 @@ entities: 0,-1: 0: 61166 1,-1: - 0: 65262 + 0: 65278 1,0: 0: 14 2,0: @@ -83,18 +83,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.824879 + Nitrogen: 82.10312 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -114,31 +104,20 @@ entities: parent: 1 - type: Physics bodyType: Static -- proto: AirlockFreezerLocked +- proto: AirlockEngineeringLocked entities: - uid: 10 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - type: AccessReader - access: - - - Atmospherics - - - Captain - - - CentralCommand - - - Chemistry - - - ChiefEngineer - - - ChiefMedicalOfficer - - - Command - - - Cryogenics - - - Engineering - - - Medical - - type: Door - secondsUntilStateChange: -613.913 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True +- proto: AirlockMedicalLocked + entities: + - uid: 85 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 - proto: AirlockShuttle entities: - uid: 59 @@ -160,6 +139,21 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 1 + - type: Fixtures + fixtures: {} +- proto: AtmosDeviceFanDirectional + entities: + - uid: 91 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 - proto: CableApcExtension entities: - uid: 110 @@ -325,7 +319,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-2.5 + pos: 5.5,-3.5 parent: 1 - uid: 52 components: @@ -630,11 +624,6 @@ entities: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 85 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 1 - proto: LockerWallMedicalFilled entities: - uid: 8 @@ -643,6 +632,8 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 1 + - type: Fixtures + fixtures: {} - proto: MedkitBruteFilled entities: - uid: 6 @@ -753,13 +744,6 @@ 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 @@ -788,16 +772,15 @@ entities: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 91 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 92 components: - type: Transform pos: 4.5,-3.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - proto: ShuttleWindow entities: - uid: 32 @@ -805,41 +788,57 @@ entities: - type: Transform pos: 5.5,-4.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 53 components: - type: Transform pos: 9.5,-4.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 54 components: - type: Transform pos: 12.5,1.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 55 components: - type: Transform pos: 12.5,-4.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 56 components: - type: Transform pos: 14.5,-0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 57 components: - type: Transform pos: 14.5,-1.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 58 components: - type: Transform pos: 14.5,-2.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 89 components: - type: Transform pos: 5.5,1.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - proto: SMESBasic entities: - uid: 100 @@ -876,6 +875,13 @@ entities: - type: Transform pos: 3.5,0.5 parent: 1 +- proto: Syringe + entities: + - uid: 175 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 - proto: Table entities: - uid: 76 @@ -1079,12 +1085,16 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 74 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-2.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - proto: WindowDirectional entities: - uid: 36 @@ -1092,68 +1102,116 @@ entities: - type: Transform pos: 5.5,-3.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 61 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 62 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-1.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 63 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-2.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 64 components: - type: Transform pos: 12.5,-3.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 65 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 66 components: - type: Transform pos: 9.5,-3.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 67 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-3.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 68 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-1.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 69 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 70 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 - uid: 87 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,0.5 parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - type: DeltaPressure + gridUid: 1 ... diff --git a/Resources/Maps/Shuttles/trading_outpost.yml b/Resources/Maps/Shuttles/trading_outpost.yml index 37a01b7c42..42b906eaa1 100644 --- a/Resources/Maps/Shuttles/trading_outpost.yml +++ b/Resources/Maps/Shuttles/trading_outpost.yml @@ -7011,7 +7011,7 @@ entities: - uid: 955 components: - type: Transform - pos: 5.5,-4.5 + pos: 7.5,-4.5 parent: 2 - type: WarpPoint location: Automated Trade Station diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 1eaa100643..7fbf46f2bf 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 266.0.0 + engineVersion: 267.2.0 forkId: "" forkVersion: "" - time: 09/06/2025 03:51:25 - entityCount: 28793 + time: 10/08/2025 20:15:18 + entityCount: 28790 maps: - 780 grids: @@ -10936,8 +10936,8 @@ entities: id: docking46345 localAnchorB: -0.5,-1 localAnchorA: -66.5,22 - damping: 42.40102 - stiffness: 380.5907 + damping: 42.401035 + stiffness: 380.59082 - type: OccluderTree - type: Shuttle dampingModifier: 0.25 @@ -23112,18 +23112,6 @@ 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 @@ -182974,15 +182962,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponShotgunEnforcer - entities: - - uid: 9086 - components: - - type: Transform - pos: -7.4221897,34.38881 - parent: 8364 - - type: BallisticAmmoProvider - proto: ShellShotgunSlug - proto: WeaponShotgunKammerer entities: - uid: 26308 diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 2551bd58ff..bcb5673b42 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 267.1.0 + engineVersion: 267.2.0 forkId: "" forkVersion: "" - time: 09/24/2025 21:56:25 - entityCount: 36083 + time: 10/08/2025 23:22:51 + entityCount: 36080 maps: - 1 grids: @@ -30897,11 +30897,6 @@ entities: - type: Transform pos: 16.61324,11.471256 parent: 13329 - - uid: 10642 - components: - - type: Transform - pos: 31.342075,13.304442 - parent: 13329 - uid: 18486 components: - type: Transform @@ -31282,11 +31277,6 @@ entities: - type: Transform pos: 16.446573,11.429589 parent: 13329 - - uid: 9340 - components: - - type: Transform - pos: 31.685825,13.288817 - parent: 13329 - proto: BoxLightMixed entities: - uid: 1644 @@ -227061,13 +227051,6 @@ entities: - type: Transform pos: 19.469765,12.608503 parent: 13329 -- proto: WeaponShotgunEnforcer - entities: - - uid: 9339 - components: - - type: Transform - pos: 31.498325,13.851317 - parent: 13329 - proto: WeaponShotgunHandmade entities: - uid: 5418 diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 42df78c970..82a4d668c3 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -4,8 +4,8 @@ meta: engineVersion: 267.2.0 forkId: "" forkVersion: "" - time: 10/04/2025 14:51:31 - entityCount: 23828 + time: 10/07/2025 01:59:23 + entityCount: 23873 maps: - 5350 grids: @@ -213,11 +213,11 @@ entities: version: 7 -1,-2: ind: -1,-2 - tiles: HwAAAAACAH4AAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAAARAAAAAAAAXQAAAAAAABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAMAXQAAAAAAABEAAAAAAABdAAAAAAAAEQAAAAAAAF0AAAAAAgARAAAAAAAAXQAAAAADABEAAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAHwAAAAACAH4AAAAAAABdAAAAAAEAEQAAAAAAAF0AAAAAAQARAAAAAAAAXQAAAAADABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAwARAAAAAAAAXQAAAAAAABEAAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQB+AAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAMAcAAAAAAAAH4AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAAAAHAAAAAAAQB+AAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAgBwAAAAAAEAfgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAEAcAAAAAABAHAAAAAAAwBwAAAAAAMAcAAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAACAHAAAAAAAgBwAAAAAAIAcAAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAMAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAA== + tiles: HwAAAAACAH4AAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAAARAAAAAAAAXQAAAAAAABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAAB+AAAAAAAAfgAAAAAAAE0AAAAAAABdAAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAMAXQAAAAAAABEAAAAAAABdAAAAAAAAEQAAAAAAAF0AAAAAAgARAAAAAAAAXQAAAAADABEAAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAgAfAAAAAAMAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAACAF0AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAEAHwAAAAACAH4AAAAAAABdAAAAAAEAEQAAAAAAAF0AAAAAAQARAAAAAAAAXQAAAAADABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAMAXQAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAADABEAAAAAAABdAAAAAAMAEQAAAAAAAF0AAAAAAwARAAAAAAAAXQAAAAAAABEAAAAAAABdAAAAAAIAfgAAAAAAAF0AAAAAAQBdAAAAAAIAXQAAAAABAF0AAAAAAQBsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAMAXQAAAAADAF0AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAQBdAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAAAXQAAAAACAF0AAAAAAQB+AAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAMAcAAAAAAAAH4AAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAfgAAAAAAAHAAAAAAAQBwAAAAAAAAcAAAAAAAAHAAAAAAAQB+AAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAAAAH4AAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAgBwAAAAAAEAfgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAEAcAAAAAABAHAAAAAAAwBwAAAAAAMAcAAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAACAHAAAAAAAgBwAAAAAAIAcAAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAwBdAAAAAAIAXQAAAAACAF0AAAAAAgB+AAAAAAAAfgAAAAAAAHAAAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAMAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAA== version: 7 -2,-2: ind: -2,-2 - tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAB6AAAAAAAAegAAAAACAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAQBwAAAAAAEAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAABwAAAAAAEAcAAAAAABAHAAAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAIAcAAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAEADAAAAAABAHAAAAAAAwBwAAAAAAAAcAAAAAABAH4AAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAEAcAAAAAABAAwAAAAAAQBwAAAAAAAAcAAAAAADAHAAAAAAAgB+AAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAEAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAQBwAAAAAAEAfgAAAAAAAHAAAAAAAABwAAAAAAIAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAQBwAAAAAAAADAAAAAABAHAAAAAAAQBwAAAAAAAAcAAAAAADAH4AAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAMAcAAAAAADAAwAAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAgBwAAAAAAIAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAIAcAAAAAACAHAAAAAAAwBwAAAAAAMAfgAAAAAAAHAAAAAAAgBwAAAAAAAAcAAAAAACAA== + tiles: fgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB6AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAegAAAAAAAH4AAAAAAAB6AAAAAAAAegAAAAACAHoAAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAB8AAAAAAwB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAGwAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAGwAAAAAAABsAAAAAAAAbAAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAbQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAABtAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAQBwAAAAAAEAfgAAAAAAAB8AAAAAAAAfAAAAAAMAHwAAAAABAH4AAAAAAABwAAAAAAEAcAAAAAABAHAAAAAAAQB+AAAAAAAAfgAAAAAAAG0AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAIAcAAAAAAAAB8AAAAAAQAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAAAcAAAAAADAHAAAAAAAABwAAAAAAEADAAAAAABAHAAAAAAAwBwAAAAAAAAcAAAAAABAH4AAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAQB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAHAAAAAAAABwAAAAAAEAcAAAAAABAAwAAAAAAQBwAAAAAAAAcAAAAAADAHAAAAAAAgB+AAAAAAAAcAAAAAACAHAAAAAAAgBwAAAAAAEAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABwAAAAAAMAcAAAAAAAAHAAAAAAAgBwAAAAAAIAcAAAAAADAHAAAAAAAQBwAAAAAAEAfgAAAAAAAHAAAAAAAABwAAAAAAIAcAAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAcAAAAAABAHAAAAAAAQBwAAAAAAAADAAAAAABAHAAAAAAAQBwAAAAAAAAcAAAAAADAH4AAAAAAABwAAAAAAMAcAAAAAABAHAAAAAAAAB+AAAAAAAALgAAAAAAAC4AAAAAAAAuAAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAMAcAAAAAADAAwAAAAAAABwAAAAAAIAcAAAAAABAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAgBwAAAAAAIAfgAAAAAAAC4AAAAAAAAuAAAAAAAALgAAAAAAAH4AAAAAAABwAAAAAAAAcAAAAAABAHAAAAAAAQB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAHAAAAAAAwBwAAAAAAAAcAAAAAACAB8AAAAAAgAfAAAAAAMAHwAAAAAAAB8AAAAAAgAfAAAAAAIAcAAAAAACAHAAAAAAAwBwAAAAAAMAfgAAAAAAAHAAAAAAAgBwAAAAAAAAcAAAAAACAA== version: 7 -3,-2: ind: -3,-2 @@ -245,7 +245,7 @@ entities: version: 7 -1,-3: ind: -1,-3 - tiles: XQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAIAXQAAAAADAB8AAAAAAwB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAHwAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAADAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAQBdAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAfgAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAAAHwAAAAADAH4AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAH4AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAADAB8AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAQBdAAAAAAEAfgAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAMAfgAAAAAAAF0AAAAAAgBdAAAAAAMAXQAAAAADAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgAfAAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAACAH4AAAAAAABdAAAAAAIAXQAAAAACAF0AAAAAAwBdAAAAAAMAHwAAAAACAH4AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAACAF0AAAAAAgBdAAAAAAAAfgAAAAAAAA== + tiles: XQAAAAABAH4AAAAAAABdAAAAAAIAXQAAAAAAAF0AAAAAAQBdAAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAAAfgAAAAAAAGwAAAAAAABsAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAfgAAAAAAAF0AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAfAAAAAAIAHwAAAAABAB8AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAgBdAAAAAAIAXQAAAAADAB8AAAAAAwB+AAAAAAAAHwAAAAABAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAwB+AAAAAAAAXQAAAAADAF0AAAAAAABdAAAAAAMAHwAAAAABAH4AAAAAAABdAAAAAAAAXQAAAAADAF0AAAAAAQBdAAAAAAIAHwAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAIAXQAAAAABAF0AAAAAAwBdAAAAAAIAXQAAAAADAH4AAAAAAAAfAAAAAAMAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAABdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAgB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAAAXQAAAAABAF0AAAAAAgBdAAAAAAIAHwAAAAAAAB8AAAAAAgAfAAAAAAIAHwAAAAACAB8AAAAAAgAfAAAAAAEAHwAAAAACAB8AAAAAAQAfAAAAAAAAHwAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAAAAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAwBdAAAAAAEAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAADAF0AAAAAAQBdAAAAAAAAXQAAAAACAF0AAAAAAQB+AAAAAAAAfgAAAAAAAF0AAAAAAgBdAAAAAAAAXQAAAAABAF0AAAAAAQBdAAAAAAEAXQAAAAABAF0AAAAAAABdAAAAAAMAXQAAAAACAF0AAAAAAABdAAAAAAEAXQAAAAAAAF0AAAAAAgBdAAAAAAEAfgAAAAAAAH4AAAAAAABdAAAAAAEAXQAAAAADAF0AAAAAAgAfAAAAAAIAHwAAAAADAB8AAAAAAQBdAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAIAXQAAAAABAF0AAAAAAQBdAAAAAAIAfgAAAAAAAE8AAAAAAAB+AAAAAAAAHwAAAAAAAF0AAAAAAwAfAAAAAAEAfgAAAAAAAH4AAAAAAAB+AAAAAAAAHwAAAAACAH4AAAAAAAB+AAAAAAAAfgAAAAAAAB8AAAAAAQBdAAAAAAAAHwAAAAADAH4AAAAAAABPAAAAAAAAfgAAAAAAAH4AAAAAAABdAAAAAAEAfgAAAAAAAH4AAAAAAAAfAAAAAAMAHwAAAAABAB8AAAAAAQAfAAAAAAAAHwAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAATwAAAAAAAH4AAAAAAAAfAAAAAAAAXQAAAAAAAB8AAAAAAQB+AAAAAAAAHwAAAAABAB8AAAAAAwAfAAAAAAEAHwAAAAADAB8AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAfgAAAAAAAE8AAAAAAAB+AAAAAAAAXQAAAAADAF0AAAAAAAAfAAAAAAIAfgAAAAAAAB8AAAAAAQAfAAAAAAIAHwAAAAADAB8AAAAAAAAfAAAAAAMAfgAAAAAAAF0AAAAAAABdAAAAAAAAXQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAF0AAAAAAgAfAAAAAAAAHwAAAAADAH4AAAAAAAAfAAAAAAAAHwAAAAACAB8AAAAAAQAfAAAAAAEAHwAAAAACAH4AAAAAAABdAAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAMAHwAAAAACAH4AAAAAAABdAAAAAAIAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAXQAAAAAAAF0AAAAAAABdAAAAAAAAfgAAAAAAAA== version: 7 -2,-3: ind: -2,-3 @@ -321,7 +321,7 @@ entities: version: 7 -5,3: ind: -5,3 - tiles: AAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAA== version: 7 -6,2: ind: -6,2 @@ -1105,11 +1105,6 @@ entities: 2601: -13,-19 2629: -29,-16 2674: -12,-9 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNe - decals: - 2048: -2,-33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe @@ -1142,11 +1137,6 @@ entities: 2630: -31,-16 2673: -16,-9 3119: -23,-15 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerNw - decals: - 2049: -4,-33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw @@ -1177,11 +1167,6 @@ entities: 2599: -13,-23 2638: -29,-24 2676: -12,-13 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSe - decals: - 2050: -2,-36 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe @@ -1212,11 +1197,6 @@ entities: 2600: -19,-23 2637: -31,-24 2675: -16,-13 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteCornerSw - decals: - 2051: -4,-36 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw @@ -1399,12 +1379,6 @@ entities: decals: 2339: 12,21 2340: 12,22 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineE - decals: - 2054: -2,-35 - 2055: -2,-34 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1413,8 +1387,6 @@ entities: 1633: 7,-28 1634: 7,-27 1635: 7,-26 - 2058: -4,-35 - 2059: -4,-34 2441: -40,18 2912: -26,-40 2918: -26,-44 @@ -1464,16 +1436,10 @@ entities: id: BrickTileWhiteLineN decals: 2337: 13,20 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 2056: -3,-33 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 2062: -3,-34 2228: 8,-24 2230: 7,-24 2233: 10,-23 @@ -1535,16 +1501,10 @@ entities: id: BrickTileWhiteLineS decals: 2338: 13,23 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineS - decals: - 2057: -3,-36 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 2063: -3,-35 2229: 8,-25 2438: -43,17 2440: -42,17 @@ -1611,12 +1571,6 @@ entities: decals: 2342: 14,21 2343: 14,22 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineW - decals: - 2052: -4,-35 - 2053: -4,-34 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -1627,8 +1581,6 @@ entities: 1639: 5,-26 1640: 5,-25 1643: 9,-26 - 2060: -2,-35 - 2061: -2,-34 2971: 3,-41 - node: color: '#FFFFFFFF' @@ -2477,8 +2429,6 @@ entities: 481: -38,10 636: -1,-34 1003: -19,0 - 2046: -3,-37 - 2047: -3,-32 - node: color: '#EFB34196' id: FullTileOverlayGreyscale @@ -3998,8 +3948,6 @@ entities: 602: -4,-28 603: -4,-29 604: -4,-30 - 605: -4,-31 - 617: -3,-31 618: -2,-31 619: -1,-31 620: 0,-31 @@ -7646,6 +7594,17 @@ entities: - type: Transform pos: -0.39634466,12.638008 parent: 30 +- proto: ActionToggleInternals + entities: + - uid: 9163 + mapInit: true + paused: true + components: + - type: Transform + parent: 23311 + - type: Action + originalIconColor: '#FFFFFFFF' + container: 23311 - proto: AirAlarm entities: - uid: 682 @@ -7926,6 +7885,9 @@ entities: rot: 3.141592653589793 rad pos: 8.5,-35.5 parent: 30 + - type: AccessReader + accessListsOriginal: + - - Atmospherics - type: DeviceList devices: - 14529 @@ -9671,7 +9633,6 @@ entities: - type: DeviceList devices: - 22831 - - 22830 - 11282 - type: Fixtures fixtures: {} @@ -9980,6 +9941,8 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-30.5 parent: 30 + - type: AccessReader + accessListsOriginal: [] - uid: 10017 components: - type: Transform @@ -9998,6 +9961,8 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-30.5 parent: 30 + - type: AccessReader + accessListsOriginal: [] - proto: AirlockAtmosphericsLocked entities: - uid: 8604 @@ -10337,6 +10302,11 @@ entities: - type: Transform pos: -11.5,-46.5 parent: 30 + - uid: 8245 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 30 - uid: 9463 components: - type: MetaData @@ -10404,6 +10374,11 @@ entities: - type: Transform pos: -37.5,25.5 parent: 30 + - uid: 1720 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 30 - uid: 3198 components: - type: Transform @@ -11182,6 +11157,11 @@ entities: - type: Transform pos: -36.5,29.5 parent: 30 + - uid: 1567 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 30 - uid: 1603 components: - type: Transform @@ -11803,7 +11783,7 @@ entities: pos: 34.5,45.5 parent: 30 - type: Door - secondsUntilStateChange: -25686.977 + secondsUntilStateChange: -47726.9 state: Opening - type: DeviceLinkSource lastSignals: @@ -12027,11 +12007,6 @@ entities: - type: Transform pos: -13.5,-17.5 parent: 30 - - uid: 8071 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 30 - proto: AirlockMedicalLocked entities: - uid: 6780 @@ -12270,21 +12245,6 @@ entities: - type: Transform pos: -18.5,-3.5 parent: 30 - - uid: 9163 - components: - - type: Transform - pos: -0.5,-33.5 - parent: 30 - - uid: 9283 - components: - - type: Transform - pos: -2.5,-31.5 - parent: 30 - - uid: 9287 - components: - - type: Transform - pos: -2.5,-36.5 - parent: 30 - uid: 10190 components: - type: Transform @@ -13480,6 +13440,14 @@ entities: parent: 30 - type: Fixtures fixtures: {} + - uid: 9911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,41.5 + parent: 30 + - type: Fixtures + fixtures: {} - uid: 9934 components: - type: Transform @@ -13694,6 +13662,14 @@ entities: parent: 30 - type: Fixtures fixtures: {} + - uid: 23866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,47.5 + parent: 30 + - type: Fixtures + fixtures: {} - proto: APCElectronics entities: - uid: 15969 @@ -17330,16 +17306,16 @@ entities: - type: Transform pos: 17.5,-11.5 parent: 30 + - uid: 11252 + components: + - type: Transform + pos: 28.5,13.5 + parent: 30 - uid: 11628 components: - type: Transform pos: 23.5,0.5 parent: 30 - - uid: 12777 - components: - - type: Transform - pos: 25.5,13.5 - parent: 30 - uid: 15246 components: - type: Transform @@ -17493,10 +17469,11 @@ entities: parent: 30 - proto: BedsheetRD entities: - - uid: 12731 + - uid: 23833 components: - type: Transform - pos: 25.5,13.5 + rot: -1.5707963267948966 rad + pos: 28.5,13.5 parent: 30 - proto: BedsheetSpawner entities: @@ -18237,11 +18214,6 @@ entities: - type: Transform pos: -7.4440956,34.21304 parent: 30 - - uid: 11253 - components: - - type: Transform - pos: -3.4874916,-33.356754 - parent: 30 - uid: 11795 components: - type: Transform @@ -30568,12 +30540,12 @@ entities: - uid: 16832 components: - type: Transform - pos: -52.5,45.5 + pos: -53.5,45.5 parent: 30 - uid: 16833 components: - type: Transform - pos: -52.5,44.5 + pos: -53.5,44.5 parent: 30 - uid: 16834 components: @@ -34845,6 +34817,46 @@ entities: - type: Transform pos: -10.5,-66.5 parent: 30 + - uid: 23849 + components: + - type: Transform + pos: -30.5,41.5 + parent: 30 + - uid: 23862 + components: + - type: Transform + pos: -48.5,48.5 + parent: 30 + - uid: 23863 + components: + - type: Transform + pos: -49.5,48.5 + parent: 30 + - uid: 23864 + components: + - type: Transform + pos: -50.5,48.5 + parent: 30 + - uid: 23865 + components: + - type: Transform + pos: -51.5,48.5 + parent: 30 + - uid: 23867 + components: + - type: Transform + pos: -53.5,46.5 + parent: 30 + - uid: 23869 + components: + - type: Transform + pos: -52.5,47.5 + parent: 30 + - uid: 23870 + components: + - type: Transform + pos: -53.5,47.5 + parent: 30 - proto: CableApcStack entities: - uid: 1637 @@ -43683,6 +43695,16 @@ entities: - type: Transform pos: -35.5,-2.5 parent: 30 + - uid: 7870 + components: + - type: Transform + pos: -31.5,44.5 + parent: 30 + - uid: 7881 + components: + - type: Transform + pos: -31.5,43.5 + parent: 30 - uid: 7917 components: - type: Transform @@ -44168,6 +44190,11 @@ entities: - type: Transform pos: -0.5,-39.5 parent: 30 + - uid: 11253 + components: + - type: Transform + pos: -30.5,43.5 + parent: 30 - uid: 11257 components: - type: Transform @@ -47088,6 +47115,21 @@ entities: - type: Transform pos: -24.5,-38.5 parent: 30 + - uid: 23847 + components: + - type: Transform + pos: -30.5,42.5 + parent: 30 + - uid: 23848 + components: + - type: Transform + pos: -30.5,41.5 + parent: 30 + - uid: 23868 + components: + - type: Transform + pos: -52.5,47.5 + parent: 30 - proto: CableMVStack entities: - uid: 1638 @@ -53130,6 +53172,28 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,18.5 parent: 30 + - uid: 23858 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 30 + - uid: 23859 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 30 + - uid: 23860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-7.5 + parent: 30 + - uid: 23861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-7.5 + parent: 30 - proto: ChairGreyscale entities: - uid: 904 @@ -53368,12 +53432,6 @@ entities: - type: Transform pos: 13.5,22.5 parent: 30 - - uid: 8245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 30 - uid: 9060 components: - type: Transform @@ -53391,6 +53449,12 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-27.5 parent: 30 + - uid: 9287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.4336228,-32.41538 + parent: 30 - uid: 9407 components: - type: Transform @@ -54075,6 +54139,13 @@ entities: - type: Transform pos: -5.5,-7.5 parent: 30 +- proto: ChemistryBottleMannitol + entities: + - uid: 23852 + components: + - type: Transform + pos: -21.209566,-52.691216 + parent: 30 - proto: ChemistryHotplate entities: - uid: 9180 @@ -55016,19 +55087,6 @@ entities: - type: Transform pos: -15.5,-46.5 parent: 30 - - uid: 11246 - components: - - type: Transform - pos: -1.5,-35.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - Oxygen: 3.4430928 - Nitrogen: 12.952587 - uid: 13346 components: - type: Transform @@ -55187,11 +55245,6 @@ entities: parent: 30 - proto: ClothingEyesGlasses entities: - - uid: 7149 - components: - - type: Transform - pos: -42.51494,-20.530993 - parent: 30 - uid: 8827 components: - type: Transform @@ -55212,39 +55265,13 @@ entities: - type: Transform pos: -23.555922,-31.355957 parent: 30 -- proto: ClothingEyesGlassesGar - entities: - - uid: 7039 - components: - - type: Transform - pos: -41.593063,-21.421618 - parent: 30 - proto: ClothingEyesGlassesGarGiga entities: - - uid: 6805 - components: - - type: Transform - pos: -42.51494,-19.421618 - parent: 30 - uid: 15114 components: - type: Transform pos: 36.506203,30.427496 parent: 30 -- proto: ClothingEyesGlassesGarOrange - entities: - - uid: 7870 - components: - - type: Transform - pos: -40.60869,-21.421618 - parent: 30 -- proto: ClothingEyesGlassesJensen - entities: - - uid: 6989 - components: - - type: Transform - pos: -42.530563,-21.468493 - parent: 30 - proto: ClothingEyesGlassesMeson entities: - uid: 9370 @@ -55257,6 +55284,11 @@ entities: - type: Transform pos: 5.538602,-23.326946 parent: 30 + - uid: 11245 + components: + - type: Transform + pos: -3.4961228,-33.868504 + parent: 30 - uid: 22447 components: - type: Transform @@ -55355,11 +55387,33 @@ entities: - type: Transform pos: -29.37888,29.583 parent: 30 + - uid: 8024 + components: + - type: Transform + pos: -3.4648728,-33.493504 + parent: 30 + - uid: 11426 + components: + - type: Transform + pos: -3.4492478,-33.35288 + parent: 30 - uid: 19401 components: - type: Transform pos: -24.731133,-50.435394 parent: 30 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 9158 + components: + - type: Transform + pos: -8.883268,-35.423473 + parent: 30 + - uid: 9165 + components: + - type: Transform + pos: 9.388684,-26.52471 + parent: 30 - proto: ClothingHandsGlovesFingerless entities: - uid: 15281 @@ -55583,13 +55637,6 @@ entities: - type: Transform pos: -25.477394,-32.340332 parent: 30 -- proto: ClothingHeadHatVioletwizard - entities: - - uid: 19694 - components: - - type: Transform - pos: -21.586058,-27.491894 - parent: 30 - proto: ClothingHeadHatWelding entities: - uid: 1632 @@ -55602,6 +55649,11 @@ entities: - type: Transform pos: -15.49031,-24.471869 parent: 30 + - uid: 11246 + components: + - type: Transform + pos: -3.5195498,-35.314 + parent: 30 - uid: 21731 components: - type: Transform @@ -55765,13 +55817,6 @@ entities: - type: Transform pos: 9.401276,-13.386019 parent: 30 -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 11425 - components: - - type: Transform - pos: -1.4874127,-32.38826 - parent: 30 - proto: ClothingNeckScarfStripedZebra entities: - uid: 664 @@ -56004,20 +56049,6 @@ entities: - type: Transform pos: -9.241632,-47.33087 parent: 30 -- proto: ClothingOuterWinterSec - entities: - - uid: 11426 - components: - - type: Transform - pos: -1.5342877,-32.48201 - parent: 30 -- proto: ClothingOuterWizardViolet - entities: - - uid: 19693 - components: - - type: Transform - pos: -21.523558,-28.023144 - parent: 30 - proto: ClothingShoesBootsJack entities: - uid: 15998 @@ -56083,11 +56114,6 @@ entities: parent: 30 - proto: ClothingShoesWizard entities: - - uid: 19695 - components: - - type: Transform - pos: -21.507933,-28.679394 - parent: 30 - uid: 21672 components: - type: Transform @@ -56120,6 +56146,11 @@ entities: - type: Transform pos: 24.447042,42.46136 parent: 30 + - uid: 23850 + components: + - type: Transform + pos: -21.761425,-52.779373 + parent: 30 - proto: ClothingUniformColorRainbow entities: - uid: 19764 @@ -56920,6 +56951,12 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-45.5 parent: 30 + - uid: 11425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-32.5 + parent: 30 - uid: 20886 components: - type: Transform @@ -57104,12 +57141,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-1.5 parent: 30 - - uid: 9166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 30 - proto: ComputerTechnologyDiskTerminal entities: - uid: 17885 @@ -64670,6 +64701,11 @@ entities: - type: Transform pos: -34.5,-19.5 parent: 30 + - uid: 11254 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 30 - uid: 19437 components: - type: Transform @@ -65026,10 +65062,10 @@ entities: tags: [] - proto: DrinkTeacup entities: - - uid: 9911 + - uid: 8071 components: - type: Transform - pos: -9.146156,-20.479715 + pos: -9.167248,-20.54054 parent: 30 - uid: 10006 components: @@ -67116,6 +67152,21 @@ entities: parent: 30 - proto: Firelock entities: + - uid: 1721 + components: + - type: Transform + pos: -47.5,38.5 + parent: 30 + - uid: 9156 + components: + - type: Transform + pos: -48.5,45.5 + parent: 30 + - uid: 11247 + components: + - type: Transform + pos: -46.5,45.5 + parent: 30 - uid: 22863 components: - type: Transform @@ -67733,6 +67784,12 @@ entities: - type: DeviceNetwork deviceLists: - 21888 + - uid: 3702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 30 - uid: 4241 components: - type: Transform @@ -68288,8 +68345,11 @@ entities: - uid: 11282 components: - type: Transform + anchored: False pos: -2.5,-36.5 parent: 30 + - type: Physics + bodyType: Dynamic - type: DeviceNetwork deviceLists: - 22839 @@ -68757,6 +68817,12 @@ entities: - type: DeviceNetwork deviceLists: - 682 + - uid: 23845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 30 - proto: Fireplace entities: - uid: 4984 @@ -94617,6 +94683,14 @@ entities: - 2333 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 4951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5029 components: - type: Transform @@ -95773,17 +95847,6 @@ entities: - 22840 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 30 - - type: DeviceNetwork - deviceLists: - - 22839 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 22842 components: - type: Transform @@ -97707,6 +97770,11 @@ entities: - type: Transform pos: -12.5,-13.5 parent: 30 + - uid: 7149 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 30 - uid: 7215 components: - type: Transform @@ -98262,16 +98330,6 @@ entities: - type: Transform pos: -53.5,35.5 parent: 30 - - uid: 9165 - components: - - type: Transform - pos: -3.5,-31.5 - parent: 30 - - uid: 9167 - components: - - type: Transform - pos: -1.5,-31.5 - parent: 30 - uid: 9185 components: - type: Transform @@ -102842,6 +102900,60 @@ entities: - type: Transform pos: -36.5,62.5 parent: 30 + - uid: 23834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,63.5 + parent: 30 + - uid: 23835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,63.5 + parent: 30 + - uid: 23836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,63.5 + parent: 30 + - uid: 23837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,63.5 + parent: 30 + - uid: 23839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,63.5 + parent: 30 + - uid: 23840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,63.5 + parent: 30 + - uid: 23841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,63.5 + parent: 30 + - uid: 23842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,63.5 + parent: 30 + - uid: 23843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,63.5 + parent: 30 - proto: GrilleBroken entities: - uid: 695 @@ -103348,6 +103460,12 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-71.5 parent: 30 + - uid: 23838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,63.5 + parent: 30 - proto: GrilleSpawner entities: - uid: 10007 @@ -104474,11 +104592,6 @@ entities: gridUid: 30 - proto: InflatableWallStack entities: - - uid: 9248 - components: - - type: Transform - pos: 9.443903,-26.334238 - parent: 30 - uid: 21276 components: - type: Transform @@ -104640,6 +104753,14 @@ entities: parent: 30 - type: Fixtures fixtures: {} + - uid: 20454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-31.5 + parent: 30 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 7346 @@ -106461,6 +106582,13 @@ entities: - type: Transform pos: -57.51036,-43.24328 parent: 30 +- proto: LargeBeaker + entities: + - uid: 23853 + components: + - type: Transform + pos: -22.407312,13.26424 + parent: 30 - proto: LauncherCreamPie entities: - uid: 16145 @@ -107284,19 +107412,6 @@ entities: moles: Oxygen: 3.4430928 Nitrogen: 12.952587 - - uid: 11245 - components: - - type: Transform - pos: -1.5,-34.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - Oxygen: 3.4430928 - Nitrogen: 12.952587 - proto: LockerSecurityFilled entities: - uid: 1072 @@ -107724,6 +107839,16 @@ entities: parent: 30 - proto: Matchbox entities: + - uid: 6766 + components: + - type: Transform + pos: -42.446564,-20.600746 + parent: 30 + - uid: 6768 + components: + - type: Transform + pos: -42.634064,-20.350746 + parent: 30 - uid: 17496 components: - type: Transform @@ -108297,8 +108422,16 @@ entities: - uid: 23311 components: - type: Transform - pos: 4.278227,-46.40056 + pos: 4.3357787,-46.395798 parent: 30 + - type: GasTank + toggleActionEntity: 9163 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 9163 - proto: NitrousOxideCanister entities: - uid: 7289 @@ -108504,11 +108637,6 @@ entities: - type: Transform pos: -9.625428,-38.389084 parent: 30 - - uid: 9061 - components: - - type: Transform - pos: 4.148211,-46.341225 - parent: 30 - uid: 9659 components: - type: Transform @@ -109024,16 +109152,6 @@ entities: parent: 30 - proto: PartRodMetal1 entities: - - uid: 7881 - components: - - type: Transform - pos: -41.20244,-21.437243 - parent: 30 - - uid: 8024 - components: - - type: Transform - pos: -41.20244,-21.437243 - parent: 30 - uid: 19677 components: - type: Transform @@ -109129,11 +109247,6 @@ entities: - type: Transform pos: -31.123026,-0.3196025 parent: 30 - - uid: 11254 - components: - - type: Transform - pos: -3.3156166,-32.950504 - parent: 30 - uid: 11632 components: - type: Transform @@ -109422,6 +109535,24 @@ entities: parent: 30 - type: DeltaPressure gridUid: 30 +- proto: PlasmaWindowDirectional + entities: + - uid: 7039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,40.5 + parent: 30 + - type: DeltaPressure + gridUid: 30 + - uid: 19695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,41.5 + parent: 30 + - type: DeltaPressure + gridUid: 30 - proto: PlasticFlapsAirtightClear entities: - uid: 11228 @@ -109493,6 +109624,13 @@ entities: - type: Transform pos: -84.53038,-45.378 parent: 30 +- proto: PlushieHampter + entities: + - uid: 23854 + components: + - type: Transform + pos: 16.566488,-14.522018 + parent: 30 - proto: PlushieLizard entities: - uid: 15217 @@ -109545,6 +109683,13 @@ entities: - type: Transform pos: 40.559143,-53.538166 parent: 30 +- proto: PlushieVox + entities: + - uid: 23851 + components: + - type: Transform + pos: -21.51841,-52.3398 + parent: 30 - proto: PortableFlasher entities: - uid: 2719 @@ -109574,11 +109719,6 @@ entities: - type: Transform pos: 23.5,4.5 parent: 30 - - uid: 19442 - components: - - type: Transform - pos: -23.5,-28.5 - parent: 30 - uid: 19476 components: - type: Transform @@ -109604,6 +109744,11 @@ entities: - type: Transform pos: -59.5,36.5 parent: 30 + - uid: 19694 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 30 - proto: PortableGeneratorPacman entities: - uid: 10534 @@ -110347,13 +110492,6 @@ entities: - type: Transform pos: -17.5,36.5 parent: 30 -- proto: PottedPlant2 - entities: - - uid: 8371 - components: - - type: Transform - pos: 3.5092015,-30.805378 - parent: 30 - proto: PottedPlant21 entities: - uid: 1566 @@ -110571,14 +110709,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 1722 - components: - - type: Transform - pos: -30.5,42.5 - parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 2124 components: - type: Transform @@ -110645,14 +110775,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 9162 - components: - - type: Transform - pos: -1.5,-30.5 - parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 11068 components: - type: Transform @@ -110884,6 +111006,11 @@ entities: parent: 30 - type: Physics canCollide: False + - uid: 1722 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 30 - uid: 2004 components: - type: Transform @@ -111050,6 +111177,22 @@ entities: rot: 3.141592653589793 rad pos: 42.5,43.5 parent: 30 + - uid: 23871 + components: + - type: Transform + pos: -51.5,45.5 + parent: 30 + - uid: 23872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,46.5 + parent: 30 + - uid: 23873 + components: + - type: Transform + pos: -56.5,41.5 + parent: 30 - proto: Poweredlight entities: - uid: 98 @@ -114822,11 +114965,6 @@ entities: - type: Transform pos: -9.5,-41.5 parent: 30 - - uid: 11255 - components: - - type: Transform - pos: -3.5,-35.5 - parent: 30 - uid: 11421 components: - type: Transform @@ -116085,11 +116223,6 @@ entities: - type: Transform pos: 7.5,29.5 parent: 30 - - uid: 3702 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 30 - uid: 3704 components: - type: Transform @@ -118788,20 +118921,6 @@ entities: parent: 30 - type: DeltaPressure gridUid: 30 - - uid: 9156 - components: - - type: Transform - pos: -1.5,-31.5 - parent: 30 - - type: DeltaPressure - gridUid: 30 - - uid: 9158 - components: - - type: Transform - pos: -3.5,-31.5 - parent: 30 - - type: DeltaPressure - gridUid: 30 - uid: 9234 components: - type: Transform @@ -119222,6 +119341,13 @@ entities: parent: 30 - type: DeltaPressure gridUid: 30 + - uid: 11256 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 30 + - type: DeltaPressure + gridUid: 30 - uid: 11270 components: - type: Transform @@ -121653,11 +121779,6 @@ entities: - type: Transform pos: -4.5072117,-10.071463 parent: 30 - - uid: 7217 - components: - - type: Transform - pos: -42.32744,-20.937243 - parent: 30 - uid: 18172 components: - type: Transform @@ -121693,6 +121814,23 @@ entities: - type: Transform pos: -76.5,-51.5 parent: 30 +- proto: ShardGlass + entities: + - uid: 6989 + components: + - type: Transform + pos: -40.321564,-21.272621 + parent: 30 + - uid: 9166 + components: + - type: Transform + pos: -40.80594,-21.319496 + parent: 30 + - uid: 11250 + components: + - type: Transform + pos: -40.634064,-21.538246 + parent: 30 - proto: SheetGlass entities: - uid: 5635 @@ -121743,7 +121881,7 @@ entities: - uid: 22523 components: - type: Transform - pos: 3.361289,-46.49021 + pos: 3.1795287,-46.489548 parent: 30 - proto: SheetPlasma entities: @@ -121908,6 +122046,11 @@ entities: - type: Transform pos: -38.50112,-3.4785028 parent: 30 + - uid: 6805 + components: + - type: Transform + pos: -40.446564,-18.397621 + parent: 30 - uid: 9678 components: - type: Transform @@ -122015,6 +122158,13 @@ entities: - type: Transform pos: -15.342251,-37.568897 parent: 30 +- proto: Shiv + entities: + - uid: 6767 + components: + - type: Transform + pos: -41.290314,-21.444496 + parent: 30 - proto: Shovel entities: - uid: 12092 @@ -125369,6 +125519,13 @@ entities: - type: Transform pos: 3.5163379,42.700695 parent: 30 +- proto: SmallLight + entities: + - uid: 10040 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 30 - proto: SmartFridge entities: - uid: 315 @@ -125509,7 +125666,7 @@ entities: - uid: 16235 components: - type: Transform - pos: 48.50878,41.513634 + pos: 48.418343,41.43319 parent: 30 - proto: SodaDispenser entities: @@ -126898,10 +127055,27 @@ entities: parent: 30 - proto: SpawnMobBandito entities: - - uid: 12828 + - uid: 23832 components: - type: Transform - pos: 26.5,13.5 + pos: 29.5,15.5 + parent: 30 +- proto: SpawnMobButterfly + entities: + - uid: 23855 + components: + - type: Transform + pos: -11.5,23.5 + parent: 30 + - uid: 23856 + components: + - type: Transform + pos: -6.5,23.5 + parent: 30 + - uid: 23857 + components: + - type: Transform + pos: -8.5,23.5 parent: 30 - proto: SpawnMobCat entities: @@ -127025,10 +127199,10 @@ entities: parent: 30 - proto: SpawnMobWalter entities: - - uid: 6768 + - uid: 11255 components: - type: Transform - pos: -8.5,-9.5 + pos: -5.5,-12.5 parent: 30 - proto: SpawnPointAtmos entities: @@ -127128,15 +127302,15 @@ entities: parent: 30 - proto: SpawnPointChemist entities: - - uid: 6766 + - uid: 23844 components: - type: Transform - pos: -7.5,-9.5 + pos: -8.5,-6.5 parent: 30 - - uid: 6767 + - uid: 23846 components: - type: Transform - pos: -6.5,-9.5 + pos: -6.5,-6.5 parent: 30 - proto: SpawnPointChiefEngineer entities: @@ -127666,7 +127840,7 @@ entities: - uid: 9326 components: - type: Transform - pos: 9.666185,-26.444672 + pos: 9.748059,-26.43096 parent: 30 - uid: 23318 components: @@ -127727,6 +127901,14 @@ entities: - type: Transform pos: -16.5,-16.5 parent: 30 +- proto: StationAiFixerComputer + entities: + - uid: 1733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,13.5 + parent: 30 - proto: StationAiUploadComputer entities: - uid: 22212 @@ -131024,6 +131206,11 @@ entities: - type: Transform pos: -18.5,-18.5 parent: 30 + - uid: 9167 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 30 - uid: 9168 components: - type: Transform @@ -131099,21 +131286,6 @@ entities: - type: Transform pos: -8.5,-47.5 parent: 30 - - uid: 11247 - components: - - type: Transform - pos: -1.5,-32.5 - parent: 30 - - uid: 11249 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 30 - - uid: 11250 - components: - - type: Transform - pos: -3.5,-33.5 - parent: 30 - uid: 11336 components: - type: Transform @@ -132052,6 +132224,12 @@ entities: - type: Transform pos: -10.5,-8.5 parent: 30 + - uid: 4950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 30 - uid: 5353 components: - type: Transform @@ -132207,6 +132385,17 @@ entities: - type: Transform pos: 3.5,-46.5 parent: 30 + - uid: 9061 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 30 + - uid: 9248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 30 - uid: 9658 components: - type: Transform @@ -132277,6 +132466,11 @@ entities: - type: Transform pos: 4.5,-27.5 parent: 30 + - uid: 11249 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 30 - uid: 11821 components: - type: Transform @@ -132302,6 +132496,12 @@ entities: - type: Transform pos: -7.5,-35.5 parent: 30 + - uid: 22830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 30 - proto: TableReinforcedGlass entities: - uid: 2113 @@ -133435,6 +133635,11 @@ entities: - type: Transform pos: -32.56638,31.48925 parent: 30 + - uid: 12731 + components: + - type: Transform + pos: -3.4804978,-34.337254 + parent: 30 - uid: 19180 components: - type: Transform @@ -133477,11 +133682,6 @@ entities: - type: Transform pos: -11.488707,-33.250866 parent: 30 - - uid: 11256 - components: - - type: Transform - pos: -3.5175757,-35.433304 - parent: 30 - uid: 15271 components: - type: Transform @@ -133506,6 +133706,11 @@ entities: - type: Transform pos: -24.487177,31.504875 parent: 30 + - uid: 7217 + components: + - type: Transform + pos: -3.4961228,-34.82291 + parent: 30 - uid: 11271 components: - type: Transform @@ -134341,6 +134546,11 @@ entities: - type: Transform pos: -21.5,-46.5 parent: 30 + - uid: 23831 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 30 - proto: VendingMachineEngivend entities: - uid: 9291 @@ -140369,6 +140579,12 @@ entities: - type: Transform pos: 30.5,17.5 parent: 30 + - uid: 12777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,28.5 + parent: 30 - uid: 12781 components: - type: Transform @@ -140399,6 +140615,12 @@ entities: - type: Transform pos: -39.5,-35.5 parent: 30 + - uid: 12828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,38.5 + parent: 30 - uid: 12846 components: - type: Transform @@ -142234,6 +142456,30 @@ entities: - type: Transform pos: 12.5,40.5 parent: 30 + - uid: 19442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,40.5 + parent: 30 + - uid: 19683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,40.5 + parent: 30 + - uid: 19684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,40.5 + parent: 30 + - uid: 19693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,40.5 + parent: 30 - uid: 19784 components: - type: Transform @@ -145061,11 +145307,6 @@ entities: - type: Transform pos: -58.5,32.5 parent: 30 - - uid: 1567 - components: - - type: Transform - pos: -23.5,28.5 - parent: 30 - uid: 1579 components: - type: Transform @@ -145131,21 +145372,6 @@ entities: - type: Transform pos: -27.5,38.5 parent: 30 - - uid: 1720 - components: - - type: Transform - pos: -25.5,38.5 - parent: 30 - - uid: 1721 - components: - - type: Transform - pos: -25.5,40.5 - parent: 30 - - uid: 1733 - components: - - type: Transform - pos: -26.5,40.5 - parent: 30 - uid: 1816 components: - type: Transform @@ -145271,16 +145497,6 @@ entities: - type: Transform pos: 1.5,-5.5 parent: 30 - - uid: 4950 - components: - - type: Transform - pos: -27.5,40.5 - parent: 30 - - uid: 4951 - components: - - type: Transform - pos: -28.5,40.5 - parent: 30 - uid: 4980 components: - type: Transform @@ -148656,16 +148872,6 @@ entities: - type: Transform pos: -20.5,-26.5 parent: 30 - - uid: 19683 - components: - - type: Transform - pos: -22.5,-27.5 - parent: 30 - - uid: 19684 - components: - - type: Transform - pos: -22.5,-28.5 - parent: 30 - uid: 19814 components: - type: Transform @@ -149347,6 +149553,11 @@ entities: - type: Transform pos: -28.5,48.5 parent: 30 + - uid: 8371 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 30 - uid: 11611 components: - type: Transform @@ -149367,11 +149578,6 @@ entities: - type: Transform pos: 7.5,32.5 parent: 30 - - uid: 20454 - components: - - type: Transform - pos: -0.5,-30.5 - parent: 30 - uid: 20455 components: - type: Transform @@ -149404,6 +149610,11 @@ entities: - type: Transform pos: -50.5,69.5 parent: 30 + - uid: 9283 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 30 - uid: 14476 components: - type: Transform @@ -149516,13 +149727,6 @@ entities: parent: 30 - type: Physics canCollide: False - - uid: 11252 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 30 - - type: Physics - canCollide: False - uid: 20998 components: - type: Transform @@ -150094,6 +150298,20 @@ entities: gridUid: 30 - proto: WindoorSecureEngineeringLocked entities: + - uid: 6455 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 30 + - type: DeltaPressure + gridUid: 30 + - uid: 9162 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 30 + - type: DeltaPressure + gridUid: 30 - uid: 21294 components: - type: Transform diff --git a/Resources/Maps/relic.yml b/Resources/Maps/relic.yml index 250c80a59a..d35ce8904a 100644 --- a/Resources/Maps/relic.yml +++ b/Resources/Maps/relic.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Map - engineVersion: 264.0.0 + engineVersion: 267.1.0 forkId: "" forkVersion: "" - time: 08/24/2025 21:13:10 - entityCount: 11566 + time: 09/27/2025 20:04:57 + entityCount: 11501 maps: - 1 grids: @@ -27,6 +27,8 @@ tilemap: 18: FloorHullReinforced 1: FloorHydro 64: FloorKitchen + 21: FloorShowroom + 22: FloorShuttleBlue 98: FloorSteel 13: FloorSteelCheckerDark 12: FloorSteelCheckerLight @@ -60,93 +62,93 @@ entities: - type: MetaData name: oldstation - type: Transform - pos: -2.6405587,0.6332514 + pos: -3,0 parent: 1 - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: YgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwAKAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAwAKAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAABAAIAAAAAAgACAAAAAAEAAgAAAAADAAIAAAAAAwACAAAAAAIABwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAAAAAIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAAACAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAMAAwAAAAACAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAAAAgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAABAAMAAAAAAwADAAAAAAAAAwAAAAADAAIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAAcAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAQADAAAAAAIAAwAAAAACAAMAAAAAAQADAAAAAAEAAwAAAAABAAMAAAAAAQACAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwADAAAAAAAAAgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAMAAAAAAAADAAAAAAMAAwAAAAACAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAAAAA== + tiles: YgAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAwAKAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQAKAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAFQAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEABwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAACAAMAAAAAAwADAAAAAAIAAwAAAAABABUAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAIAAwAAAAADAAMAAAAAAwADAAAAAAMAAwAAAAADAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAQAVAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAAAFQAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAIAAwAAAAAAABUAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAAADAAAAAAAAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAABAAMAAAAAAwAVAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAgADAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAIAAwAAAAACAAMAAAAAAgADAAAAAAIAFQAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAMAAwAAAAAAAA== version: 7 0,-1: ind: 0,-1 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAADAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAADAA== version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAABiAAAAAAIACgAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAAgAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAACAAIAAAAAAAACAAAAAAMAAgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAAIAAAAAAgACAAAAAAIAAgAAAAADAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAwACAAAAAAIAAgAAAAADAAIAAAAAAAACAAAAAAIAAgAAAAACAAIAAAAAAAACAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAABAAIAAAAAAgACAAAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAAAAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAIAAgAAAAACAAIAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAACAAAAAAEAAgAAAAACAAIAAAAAAAACAAAAAAAAAgAAAAABAAIAAAAAAQACAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAAgAAAAADAAIAAAAAAwACAAAAAAIAAgAAAAACAAIAAAAAAwACAAAAAAAAAgAAAAABAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAABiAAAAAAIACgAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAQAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAA== version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAA== version: 7 1,-1: ind: 1,-1 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAA== version: 7 1,0: ind: 1,0 - tiles: YgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAgALAAAAAAAACwAAAAABAAsAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAAAwAAAAABAAMAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAAMAAAAAAQADAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAAMAAAAAAwADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAIABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAQADAAAAAAAAAwAAAAAAAAMAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAAAAwAAAAADAAMAAAAAAQADAAAAAAEAAwAAAAAAAAMAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAAwAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAAAAwAAAAACAAMAAAAAAAADAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAADAA== + tiles: YgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgALAAAAAAAACwAAAAACAAsAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAAwAAAAADAAMAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAABwAAAAAAAAMAAAAAAAADAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAACAAMAAAAAAwADAAAAAAMABwAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAgADAAAAAAIAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAADAAMAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAAwAAAAAAAAMAAAAAAgADAAAAAAIAAwAAAAADAAMAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAMAAAAAAwADAAAAAAAAAwAAAAADAAMAAAAAAwADAAAAAAIAAwAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQADAAAAAAMAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAADAAMAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAAwAAAAACAAMAAAAAAwADAAAAAAMAAwAAAAABAAMAAAAAAQADAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAA== version: 7 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAACAAIAAAAAAwACAAAAAAMAAgAAAAADAAIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAgAAAAABAAIAAAAAAwACAAAAAAEAAgAAAAAAAAIAAAAAAQACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,1: ind: 0,1 - tiles: AgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAMAAAAAAwADAAAAAAEAAwAAAAABAAMAAAAAAgADAAAAAAAAAwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAACAAIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABlAAAAAAIAYgAAAAADAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAGIAAAAAAwBlAAAAAAEAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAZQAAAAACAGUAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGUAAAAAAwBiAAAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGUAAAAAAwBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAAAABABiAAAAAAMAZQAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGUAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGUAAAAAAABiAAAAAAAAYgAAAAAAAGUAAAAAAABlAAAAAAAAYgAAAAABAA== + tiles: YgAAAAACAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAAABwAAAAAAAAMAAAAAAwADAAAAAAAAAwAAAAAAAAMAAAAAAQADAAAAAAEAAwAAAAADAAMAAAAAAgADAAAAAAAAAwAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABlAAAAAAIAYgAAAAAAAGIAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAGIAAAAAAgBlAAAAAAIAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAZQAAAAACAGUAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAYgAAAAADAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGUAAAAAAQBiAAAAAAIAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAADAGUAAAAAAABiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAAAAAgBiAAAAAAMAZQAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAABAAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAABAAcAAAAAAAAHAAAAAAAAEAAAAAABAGUAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGUAAAAABABiAAAAAAAAYgAAAAABAGUAAAAAAgBlAAAAAAIAYgAAAAACAA== version: 7 1,1: ind: 1,1 - tiles: AwAAAAAAAAMAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAADAAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAABIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAAAZQAAAAACAA== + tiles: AwAAAAADAAMAAAAAAAADAAAAAAMAAwAAAAABAAMAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAEADAAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAABIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAZQAAAAAAAA== version: 7 2,0: ind: 2,0 - tiles: BwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQALAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAACwAAAAACAGIAAAAAAQBiAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAACwAAAAACAAsAAAAAAgALAAAAAAIACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwALAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAACwAAAAAAAGIAAAAAAgBiAAAAAAEACwAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAACwAAAAADAAsAAAAAAgALAAAAAAMACwAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== version: 7 2,1: ind: 2,1 - tiles: YgAAAAACAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgALAAAAAAMACwAAAAABAAsAAAAAAwALAAAAAAAACwAAAAAAAAsAAAAAAQALAAAAAAEACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAAsAAAAAAgALAAAAAAIACwAAAAACAAsAAAAAAQAHAAAAAAAACwAAAAACAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAAcAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAA== + tiles: YgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAAALAAAAAAMACwAAAAABAAsAAAAAAgALAAAAAAEACwAAAAADAAsAAAAAAQALAAAAAAMACwAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAsAAAAAAQALAAAAAAEACwAAAAACAAsAAAAAAwAHAAAAAAAACwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAAcAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAA== version: 7 0,2: ind: 0,2 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAA== version: 7 1,2: ind: 1,2 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAA== version: 7 2,2: ind: 2,2 - tiles: YgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQAKAAAAAAAAYgAAAAADAAoAAAAAAABiAAAAAAEACgAAAAAAAA== + tiles: YgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAKAAAAAAAAYgAAAAAAAAoAAAAAAABiAAAAAAEACgAAAAAAAA== version: 7 3,1: ind: 3,1 - tiles: CwAAAAABAAsAAAAAAwALAAAAAAMACwAAAAACAAsAAAAAAgALAAAAAAEACwAAAAAAAAsAAAAAAQAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAAsAAAAAAQALAAAAAAMACwAAAAADAAsAAAAAAAALAAAAAAEACwAAAAACAAsAAAAAAAAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAACAAIAAAAAAgACAAAAAAAAAgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAwACAAAAAAMAAgAAAAACAAIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAMAAgAAAAAAAAIAAAAAAwACAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAAsAAAAAAwALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQALAAAAAAMACwAAAAADAAsAAAAAAgAHAAAAAAAABwAAAAAAAAIAAAAAAQACAAAAAAMAAgAAAAAAAAIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAABAAsAAAAAAAALAAAAAAEABwAAAAAAAAcAAAAAAAACAAAAAAIAAgAAAAADAAIAAAAAAQACAAAAAAEAAgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgALAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAwAHAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAAAAAIAAAAAAAACAAAAAAEAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAADAAIAAAAAAgACAAAAAAMAAgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAgACAAAAAAIAAgAAAAADAAIAAAAAAwACAAAAAAAAAgAAAAAAAAIAAAAAAgACAAAAAAAAAgAAAAACAAIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEAAgAAAAADAAIAAAAAAQACAAAAAAMAAgAAAAABAAIAAAAAAgACAAAAAAAAAgAAAAADAAIAAAAAAgACAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAIAAAAAAQACAAAAAAIAAgAAAAACAAIAAAAAAgACAAAAAAEAAgAAAAAAAAIAAAAAAwACAAAAAAAAAgAAAAADAA== + tiles: CwAAAAABAAsAAAAAAQALAAAAAAIACwAAAAADAAsAAAAAAQALAAAAAAIACwAAAAACAAsAAAAAAgALAAAAAAIACwAAAAABAAsAAAAAAQALAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIABwAAAAAAAAsAAAAAAgALAAAAAAEACwAAAAABAAsAAAAAAAALAAAAAAEACwAAAAABAAsAAAAAAgAHAAAAAAAAYgAAAAABAGIAAAAAAQALAAAAAAIACwAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEACwAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAAYgAAAAABAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAAsAAAAAAQALAAAAAAEACwAAAAACAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwALAAAAAAEACwAAAAADAAsAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAAsAAAAAAgALAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAAALAAAAAAEACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAA== version: 7 3,2: ind: 3,2 - tiles: BwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAAIAAAAAAQACAAAAAAAAAgAAAAACAAIAAAAAAAACAAAAAAIAAgAAAAABAAIAAAAAAgACAAAAAAMAAgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwACAAAAAAIAAgAAAAADAAIAAAAAAQACAAAAAAEAAgAAAAAAAAIAAAAAAgACAAAAAAEAAgAAAAADAAIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAEAAgAAAAACAAIAAAAAAQACAAAAAAMAAgAAAAAAAAIAAAAAAQACAAAAAAEAAgAAAAABAAIAAAAAAwACAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAMACwAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAEACwAAAAAAAAsAAAAAAgALAAAAAAEACwAAAAACAAsAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQAHAAAAAAAACwAAAAACAAsAAAAAAQALAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAAcAAAAAAAAIAAAAAAAAYgAAAAACAAoAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAA== + tiles: BwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMACwAAAAABAGIAAAAAAwBiAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAAACwAAAAADAAsAAAAAAwALAAAAAAMACwAAAAABAAsAAAAAAwBiAAAAAAEAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAwAHAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEABwAAAAAAAAsAAAAAAQALAAAAAAAACwAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAAcAAAAAAAAIAAAAAAAAYgAAAAACAAoAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAABwAAAAAAAA== version: 7 2,-1: ind: 2,-1 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAIABwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAEABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAsAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAEABwAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAQAHAAAAAAAABAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAABAAcAAAAAAAAEAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAgAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAACAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAAsAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAABAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgAHAAAAAAAACwAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEABwAAAAAAAAsAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIABwAAAAAAAA== version: 7 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAEACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgALAAAAAAEAYgAAAAABAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAAALAAAAAAMAYgAAAAACAA== version: 7 3,-1: ind: 3,-1 - tiles: YgAAAAAAAAsAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACwAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwALAAAAAAMABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAgAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAABAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAMAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAA== + tiles: YgAAAAAAAAsAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACwAAAAADAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgALAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAwAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAEAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAQAHAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAADAA== version: 7 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAALAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACwAAAAADAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAsAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAALAAAAAAMACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAgALAAAAAAMACwAAAAADAAsAAAAAAQALAAAAAAIACwAAAAADAAsAAAAAAQALAAAAAAAACwAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAALAAAAAAIACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACwAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAsAAAAAAQAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAALAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAAALAAAAAAAACwAAAAADAAsAAAAAAQALAAAAAAIACwAAAAADAAsAAAAAAQALAAAAAAEACwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 3,0: ind: 3,0 - tiles: YgAAAAACAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgALAAAAAAIACwAAAAADAAsAAAAAAgALAAAAAAEACwAAAAACAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAsAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAACAAsAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAAACwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAAsAAAAAAwALAAAAAAAAYgAAAAADAGIAAAAAAAADAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAAATAAAAAAAAEwAAAAAAABMAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAEwAAAAAAABMAAAAAAAATAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAABMAAAAAAAATAAAAAAAAEwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAAALAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAgAHAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABwAAAAAAAA== + tiles: YgAAAAAAAGIAAAAAAQBiAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwALAAAAAAIACwAAAAAAAAsAAAAAAAALAAAAAAMACwAAAAABAGIAAAAAAQBiAAAAAAAABwAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAHAAAAAAAAYgAAAAADAAsAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAAAAAsAAAAAAABiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEACwAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAAAAAsAAAAAAwALAAAAAAAAYgAAAAACAGIAAAAAAgADAAAAAAIABwAAAAAAAAcAAAAAAAADAAAAAAMAAwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAAwAAAAADAAMAAAAAAgADAAAAAAEAAwAAAAACAAMAAAAAAQBiAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAgATAAAAAAAAEwAAAAAAABMAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAIAEwAAAAAAABMAAAAAAAATAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAADABMAAAAAAAATAAAAAAAAEwAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAACAGIAAAAAAgALAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAAALAAAAAAEACwAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAADAAcAAAAAAABiAAAAAAMACwAAAAAAAAsAAAAAAwALAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAgALAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAAALAAAAAAMACwAAAAABAAsAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAACwAAAAABAAsAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAA== version: 7 -1,-2: ind: -1,-2 @@ -154,27 +156,27 @@ entities: version: 7 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAA== version: 7 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAA== version: 7 0,3: ind: 0,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 1,3: ind: 1,3 - tiles: BwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAEABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAsAAAAAAgAHAAAAAAAACwAAAAADAAcAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAAsAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAAsAAAAAAQALAAAAAAEABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAEABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAALAAAAAAIACwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAACwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAADAAcAAAAAAAAHAAAAAAAACwAAAAACAAsAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAAABwAAAAAAAAsAAAAAAwAHAAAAAAAABwAAAAAAAAsAAAAAAgALAAAAAAIABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAIABwAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAAAAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAMACwAAAAADAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAAALAAAAAAEACwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAsAAAAAAQAHAAAAAAAACwAAAAADAAcAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAAsAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAAsAAAAAAAALAAAAAAAABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAALAAAAAAEABwAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAACwAAAAACAAcAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAACAAsAAAAAAgAHAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAAsAAAAAAwALAAAAAAMABwAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAALAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAAYgAAAAADAAcAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAEACwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAwAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAgALAAAAAAIACwAAAAABAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,0: ind: 4,0 - tiles: CwAAAAABAAsAAAAAAQALAAAAAAMABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CwAAAAACAAsAAAAAAgALAAAAAAIABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,-1: ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAIAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACwAAAAABAAsAAAAAAQAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwALAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwAIAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAIABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAwAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACwAAAAACAAsAAAAAAQAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQALAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 4,1: ind: 4,1 @@ -186,7 +188,7 @@ entities: version: 7 3,3: ind: 3,3 - tiles: YgAAAAABAAoAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAAoAAAAAAAAKAAAAAAAACgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAAoAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAYgAAAAAAAGIAAAAAAAAKAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAALAAAAAAIACwAAAAACAAsAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAA== + tiles: YgAAAAABAAoAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAAoAAAAAAAAKAAAAAAAACgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAAoAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAADAAcAAAAAAAAIAAAAAAAAYgAAAAADAGIAAAAAAwAKAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAALAAAAAAMACwAAAAAAAAsAAAAAAwALAAAAAAEACwAAAAAAAAsAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAFgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMABwAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAA== version: 7 4,3: ind: 4,3 @@ -202,7 +204,7 @@ entities: version: 7 2,3: ind: 2,3 - tiles: YgAAAAAAAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAKAAAAAAAAYgAAAAAAAAoAAAAAAABiAAAAAAAACgAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAALAAAAAAEACwAAAAAAAAsAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIACgAAAAAAAGIAAAAAAwBiAAAAAAAACwAAAAACAAsAAAAAAQALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAoAAAAAAABiAAAAAAIAYgAAAAACAAsAAAAAAwALAAAAAAEACwAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAEACwAAAAADAAsAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAADAAsAAAAAAQALAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAgALAAAAAAIACwAAAAABAAsAAAAAAAALAAAAAAMACwAAAAABAAcAAAAAAAALAAAAAAIACwAAAAADAAsAAAAAAQALAAAAAAEACwAAAAADAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQAKAAAAAAAAYgAAAAABAAoAAAAAAABiAAAAAAIACgAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAEACgAAAAAAAGIAAAAAAABiAAAAAAIACwAAAAADAAsAAAAAAAALAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAAoAAAAAAABiAAAAAAMAYgAAAAAAAAsAAAAAAwALAAAAAAAACwAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAADAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAALAAAAAAAACwAAAAABAAsAAAAAAgAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAACAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAsAAAAAAgALAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAsAAAAAAAALAAAAAAMACwAAAAACAAsAAAAAAwALAAAAAAEACwAAAAAAAAcAAAAAAAALAAAAAAMACwAAAAAAAAsAAAAAAwALAAAAAAMACwAAAAABAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 -1,2: ind: -1,2 @@ -210,7 +212,7 @@ entities: version: 7 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAGIAAAAAAQAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAIAAAAAAAAYgAAAAABAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 - type: Broadphase - type: Physics @@ -274,22 +276,7 @@ entities: decals: 331: 62,12 332: 61,12 - 333: 62,13 - 334: 62,14 - 335: 61,13 336: 62,18 - 337: 57,18 - 340: 59,18 - 341: 59,17 - 342: 58,18 - 343: 56,16 - 344: 57,16 - 345: 58,16 - 346: 58,15 - 347: 58,14 - 348: 58,13 - 349: 58,12 - 350: 57,15 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -409,7 +396,7 @@ entities: 0,-4: 0: 30704 0,-5: - 1: 61440 + 1: 61455 0,-3: 0: 63351 -1,-3: @@ -424,7 +411,7 @@ entities: 1,-2: 0: 12287 1,-5: - 1: 61440 + 1: 61455 2,-4: 0: 61680 2,-3: @@ -432,7 +419,7 @@ entities: 2,-2: 0: 1911 2,-5: - 1: 61440 + 1: 61455 3,-4: 0: 45296 3,-3: @@ -440,7 +427,7 @@ entities: 3,-2: 0: 4095 3,-5: - 1: 61440 + 1: 61455 4,-4: 0: 61680 4,-3: @@ -483,7 +470,7 @@ entities: -1,-5: 1: 48031 4,-5: - 1: 61440 + 1: 61455 5,-4: 0: 55792 5,-3: @@ -495,7 +482,7 @@ entities: 0: 4561 3: 49152 5,-5: - 1: 61440 + 1: 61727 5,0: 0: 52497 3: 12 @@ -510,7 +497,7 @@ entities: 0: 8958 4: 32768 6,-5: - 1: 61440 + 1: 61455 6,0: 0: 65282 4: 8 @@ -525,7 +512,7 @@ entities: 0: 19541 4: 4096 7,-5: - 1: 61440 + 1: 61455 7,0: 4: 1 0: 65356 @@ -904,7 +891,7 @@ entities: 16,9: 1: 1 8,-5: - 1: 61440 + 1: 61455 9,-4: 0: 57584 9,-3: @@ -912,7 +899,7 @@ entities: 9,-2: 0: 61182 9,-5: - 1: 12288 + 1: 13383 10,-4: 0: 61680 10,-3: @@ -963,10 +950,6 @@ entities: 14,-6: 1: 20480 0: 8192 - 15,-8: - 1: 3840 - 16,-8: - 1: 3840 13,1: 0: 65535 13,2: @@ -998,7 +981,7 @@ entities: 0: 760 4,15: 0: 1 - 1: 14 + 1: 3598 4,13: 1: 8738 0: 34952 @@ -1007,26 +990,26 @@ entities: 5,14: 0: 62 5,15: - 1: 15 + 1: 3855 5,13: 0: 43690 6,12: 0: 43904 6,15: - 1: 15 + 1: 3855 6,13: 0: 43690 6,14: 0: 46 1: 32768 7,15: - 1: 15 + 1: 3855 7,13: 0: 36044 8,13: 0: 12151 8,15: - 1: 15 + 1: 3855 16,-1: 0: 26112 1: 4 @@ -1063,19 +1046,19 @@ entities: 1: 15 0: 3840 12,15: - 1: 57359 + 1: 58127 11,15: - 1: 15 + 1: 3855 12,16: 1: 43554 13,13: 1: 65518 13,14: 1: 15 - 0: 1792 + 0: 18176 13,15: - 1: 28679 - 0: 8 + 1: 28675 + 0: 1100 14,13: 1: 12561 0: 2252 @@ -1121,7 +1104,7 @@ entities: 0: 3840 1: 14 9,15: - 1: 15 + 1: 3855 9,13: 0: 546 1: 34956 @@ -1131,99 +1114,33 @@ entities: 1: 15 0: 3328 10,15: - 1: 15 + 1: 3855 -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 + 0: 17472 17,-6: - 1: 4369 + 1: 4368 uniqueMixes: - volume: 2500 temperature: 293.15 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.824879 + Nitrogen: 82.10312 - volume: 2500 immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} + - volume: 2500 + temperature: 293.15 + moles: {} - volume: 2500 temperature: 293.15 moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 6666.982 - 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 + Nitrogen: 6666.982 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -1234,7 +1151,7 @@ entities: - type: MetaData name: Prison Station - type: Transform - pos: 150.92255,68.575584 + pos: 100,68 parent: 1 - type: MapGrid chunks: @@ -1248,19 +1165,19 @@ entities: version: 7 0,-2: ind: 0,-2 - tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGIAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABiAAAAAAMAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAYgAAAAAAAGIAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAgBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAABiAAAAAAAAYgAAAAACAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAYgAAAAADAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABiAAAAAAEAYgAAAAACAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAIACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAABAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAYgAAAAACAGIAAAAAAgAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAwBiAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAABiAAAAAAIAYgAAAAADAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAYgAAAAABAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAGIAAAAAAgBiAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 0,-3: ind: 0,-3 - tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAwAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEACAAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAA== + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAAAAGIAAAAAAQAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAEABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEACAAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAgAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAA== version: 7 0,-4: ind: 0,-4 - tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAA== + tiles: CAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAgAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAABAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAwAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAA== version: 7 0,-5: ind: 0,-5 - tiles: CAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwAHAAAAAAAABwAAAAAAAA== + tiles: CAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAAAHAAAAAAAABwAAAAAAAA== version: 7 0,-6: ind: 0,-6 @@ -1268,23 +1185,23 @@ entities: version: 7 1,-3: ind: 1,-3 - tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAAcAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAAcAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAMABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwAHAAAAAAAAYgAAAAACAA== + tiles: BwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAAcAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgAHAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAAABwAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEABwAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAACAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQAHAAAAAAAAYgAAAAABAA== version: 7 1,-4: ind: 1,-4 - tiles: YgAAAAACAGIAAAAAAwAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAIABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAQAHAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAEABwAAAAAAAGIAAAAAAwBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAEABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAMABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAQAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAEABwAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAAcAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAgAHAAAAAAAAAAAAAAAAAA== + tiles: YgAAAAABAGIAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQAHAAAAAAAABwAAAAAAAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgAHAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAMABwAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAADAAcAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAMABwAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAAcAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAAAHAAAAAAAAAAAAAAAAAA== version: 7 1,-2: ind: 1,-2 - tiles: YgAAAAADAGIAAAAAAQBiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAMAEQAAAAADABEAAAAAAgARAAAAAAMAEQAAAAABAGIAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgAHAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAABiAAAAAAMAYgAAAAADABEAAAAAAQADAAAAAAEAAwAAAAAAABEAAAAAAgBiAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEABwAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAAEQAAAAABABEAAAAAAQARAAAAAAMAAwAAAAABAAMAAAAAAQARAAAAAAEAEQAAAAABABEAAAAAAwBiAAAAAAEAYgAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAIABwAAAAAAABEAAAAAAgADAAAAAAEAAwAAAAAAAAMAAAAAAwADAAAAAAIAAwAAAAABAAMAAAAAAwARAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAARAAAAAAMAAwAAAAADAAMAAAAAAAADAAAAAAEAAwAAAAAAAAMAAAAAAQADAAAAAAMAEQAAAAABAGIAAAAAAwBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAEQAAAAADABEAAAAAAQARAAAAAAIAAwAAAAAAAAMAAAAAAwARAAAAAAMAEQAAAAAAABEAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAIAEQAAAAABAAMAAAAAAQADAAAAAAMAEQAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAACABEAAAAAAQARAAAAAAAAEQAAAAABABEAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAA== + tiles: YgAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAMAYgAAAAADAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAgBiAAAAAAEAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAIABwAAAAAAAGIAAAAAAQBiAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAABAAcAAAAAAABiAAAAAAMAYgAAAAADABUAAAAAAAADAAAAAAEAAwAAAAADABUAAAAAAABiAAAAAAIAYgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAAAHAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAwAAAAACAAMAAAAAAwAVAAAAAAAAFQAAAAAAABUAAAAAAABiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAMABwAAAAAAABUAAAAAAAADAAAAAAMAAwAAAAAAAAMAAAAAAAADAAAAAAEAAwAAAAADAAMAAAAAAgAVAAAAAAAAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAVAAAAAAAAAwAAAAABAAMAAAAAAAADAAAAAAEAAwAAAAACAAMAAAAAAAADAAAAAAMAFQAAAAAAAGIAAAAAAgBiAAAAAAMABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAAwAAAAAAAAMAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAFQAAAAAAAAMAAAAAAAADAAAAAAIAFQAAAAAAAGIAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAA== version: 7 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 2,-2: ind: 2,-2 - tiles: BwAAAAAAAAcAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAACAGIAAAAAAgBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMAYgAAAAACAGIAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAMAYgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: BwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAQAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAMAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAACAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAABAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 1,-1: ind: 1,-1 @@ -1292,15 +1209,15 @@ entities: version: 7 2,-4: ind: 2,-4 - tiles: YgAAAAACAGIAAAAAAQBiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAADAGIAAAAAAgBiAAAAAAAAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAgBiAAAAAAMAYgAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: YgAAAAACAGIAAAAAAgBiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAABAGIAAAAAAwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAEAYgAAAAADAGIAAAAAAQBiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAEAYgAAAAAAAGIAAAAAAgBiAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAABAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 1,-5: ind: 1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgBiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAGIAAAAAAQAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAADAGIAAAAAAgBiAAAAAAIAYgAAAAABAGIAAAAAAABiAAAAAAMAYgAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAABiAAAAAAMABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAAAYgAAAAABAAcAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAADAGIAAAAAAwBiAAAAAAAAYgAAAAAAAGIAAAAAAgBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAIAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAACAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAACAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAGIAAAAAAwBiAAAAAAAAYgAAAAABAGIAAAAAAQBiAAAAAAMAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAAAAGIAAAAAAgAHAAAAAAAABwAAAAAAAAcAAAAAAABiAAAAAAAAYgAAAAACAGIAAAAAAABiAAAAAAEAYgAAAAACAGIAAAAAAgBiAAAAAAMAYgAAAAADAGIAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAQBiAAAAAAEAYgAAAAABAGIAAAAAAQBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAEAYgAAAAACAGIAAAAAAwBiAAAAAAEABwAAAAAAAGIAAAAAAgBiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAEAYgAAAAACAGIAAAAAAABiAAAAAAIAYgAAAAADAGIAAAAAAwBiAAAAAAIAYgAAAAADAGIAAAAAAQBiAAAAAAMAYgAAAAADAAcAAAAAAABiAAAAAAMAYgAAAAABAGIAAAAAAwBiAAAAAAEAYgAAAAABAGIAAAAAAgBiAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAMAYgAAAAACAGIAAAAAAwBiAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAYgAAAAABAGIAAAAAAwBiAAAAAAAAYgAAAAADAGIAAAAAAwBiAAAAAAMAYgAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQBiAAAAAAIAYgAAAAADAA== version: 7 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAABiAAAAAAAAYgAAAAADAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAADAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAAGIAAAAAAQBiAAAAAAIABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAIAYgAAAAACAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAABAGIAAAAAAgAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAgBiAAAAAAMAYgAAAAABAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAAAYgAAAAAAAGIAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAGIAAAAAAgBiAAAAAAMABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGIAAAAAAQBiAAAAAAAAYgAAAAABAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABiAAAAAAIAYgAAAAABAGIAAAAAAQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADAGIAAAAAAABiAAAAAAEABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 - type: Broadphase - type: Physics @@ -1309,6 +1226,8 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} + - type: BecomesStation + id: Relic - type: OccluderTree - type: SpreaderGrid - type: Shuttle @@ -1613,79 +1532,23 @@ entities: uniqueMixes: - volume: 2500 immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + moles: {} - volume: 2500 temperature: 293.15 moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 21.824879 + Nitrogen: 82.10312 - volume: 2500 temperature: 293.15 moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 6666.982 + - volume: 2500 + temperature: 293.15 + moles: {} - 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 + Nitrogen: 6666.982 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -1715,6 +1578,8 @@ entities: - 3322 - 3315 - 3242 + - type: Fixtures + fixtures: {} - uid: 1602 components: - type: Transform @@ -1729,6 +1594,8 @@ entities: - 1752 - 2790 - 2757 + - type: Fixtures + fixtures: {} - uid: 2968 components: - type: Transform @@ -1743,6 +1610,8 @@ entities: - 3980 - 2978 - 2979 + - type: Fixtures + fixtures: {} - uid: 3162 components: - type: Transform @@ -1763,6 +1632,8 @@ entities: - 11451 - 11454 - 11450 + - type: Fixtures + fixtures: {} - uid: 5210 components: - type: Transform @@ -1780,6 +1651,8 @@ entities: - 2828 - 2071 - 8530 + - type: Fixtures + fixtures: {} - uid: 5864 components: - type: Transform @@ -1801,6 +1674,8 @@ entities: - 2936 - 11482 - 11500 + - type: Fixtures + fixtures: {} - uid: 6165 components: - type: Transform @@ -1832,6 +1707,8 @@ entities: - 3433 - 3492 - 3510 + - type: Fixtures + fixtures: {} - uid: 6523 components: - type: Transform @@ -1843,6 +1720,8 @@ entities: - 8244 - 4181 - 2464 + - type: Fixtures + fixtures: {} - uid: 6524 components: - type: Transform @@ -1858,6 +1737,8 @@ entities: - 4154 - 1477 - 7733 + - type: Fixtures + fixtures: {} - uid: 6526 components: - type: Transform @@ -1870,6 +1751,8 @@ entities: - 4051 - 8221 - 2073 + - type: Fixtures + fixtures: {} - uid: 6527 components: - type: Transform @@ -1895,6 +1778,8 @@ entities: - 3800 - 8549 - 8559 + - type: Fixtures + fixtures: {} - uid: 6529 components: - type: Transform @@ -1922,6 +1807,8 @@ entities: - 4190 - 4191 - 4192 + - type: Fixtures + fixtures: {} - uid: 6530 components: - type: Transform @@ -1935,6 +1822,8 @@ entities: - 4190 - 4191 - 2972 + - type: Fixtures + fixtures: {} - uid: 6531 components: - type: Transform @@ -1956,6 +1845,8 @@ entities: - 2955 - 2965 - 2969 + - type: Fixtures + fixtures: {} - uid: 6532 components: - type: Transform @@ -1972,6 +1863,8 @@ entities: - 3680 - 2970 - 2969 + - type: Fixtures + fixtures: {} - uid: 6533 components: - type: Transform @@ -1992,6 +1885,8 @@ entities: - 3659 - 3649 - 3671 + - type: Fixtures + fixtures: {} - uid: 6534 components: - type: Transform @@ -2007,6 +1902,8 @@ entities: - 4195 - 3843 - 3844 + - type: Fixtures + fixtures: {} - uid: 6535 components: - type: Transform @@ -2026,6 +1923,8 @@ entities: - 3889 - 3890 - 3872 + - type: Fixtures + fixtures: {} - uid: 6536 components: - type: Transform @@ -2039,6 +1938,8 @@ entities: - 3874 - 3873 - 3875 + - type: Fixtures + fixtures: {} - uid: 6537 components: - type: Transform @@ -2057,6 +1958,8 @@ entities: - 4197 - 2957 - 2956 + - type: Fixtures + fixtures: {} - uid: 6538 components: - type: Transform @@ -2070,6 +1973,8 @@ entities: - 4197 - 4198 - 4200 + - type: Fixtures + fixtures: {} - uid: 6539 components: - type: Transform @@ -2086,6 +1991,8 @@ entities: - 3611 - 3609 - 3349 + - type: Fixtures + fixtures: {} - uid: 6542 components: - type: Transform @@ -2103,6 +2010,8 @@ entities: - 8225 - 2947 - 6540 + - type: Fixtures + fixtures: {} - uid: 6543 components: - type: Transform @@ -2117,6 +2026,8 @@ entities: - 4207 - 3518 - 3349 + - type: Fixtures + fixtures: {} - uid: 6545 components: - type: Transform @@ -2131,6 +2042,8 @@ entities: - 4208 - 3456 - 3455 + - type: Fixtures + fixtures: {} - uid: 6546 components: - type: Transform @@ -2142,6 +2055,8 @@ entities: - 4209 - 4207 - 3489 + - type: Fixtures + fixtures: {} - uid: 6547 components: - type: Transform @@ -2149,15 +2064,16 @@ entities: parent: 2 - type: DeviceList devices: - - 8237 - - 2923 - - 4210 - - 8233 - - 4207 - - 3206 - - 3316 - - 3419 - 3418 + - 3419 + - 3316 + - 3206 + - 4207 + - 8233 + - 4210 + - 2923 + - type: Fixtures + fixtures: {} - uid: 6554 components: - type: Transform @@ -2171,6 +2087,8 @@ entities: - 396 - 3979 - 3978 + - type: Fixtures + fixtures: {} - uid: 6555 components: - type: Transform @@ -2187,6 +2105,8 @@ entities: - 8534 - 4272 - 4222 + - type: Fixtures + fixtures: {} - uid: 6556 components: - type: Transform @@ -2201,6 +2121,8 @@ entities: - 1309 - 4221 - 8534 + - type: Fixtures + fixtures: {} - uid: 6558 components: - type: Transform @@ -2216,6 +2138,8 @@ entities: - 2071 - 4225 - 2867 + - type: Fixtures + fixtures: {} - uid: 6559 components: - type: Transform @@ -2241,6 +2165,8 @@ entities: - 2790 - 4225 - 8534 + - type: Fixtures + fixtures: {} - uid: 6563 components: - type: Transform @@ -2257,6 +2183,8 @@ entities: - 2628 - 4216 - 2944 + - type: Fixtures + fixtures: {} - uid: 6564 components: - type: Transform @@ -2281,6 +2209,8 @@ entities: - 4214 - 4212 - 1462 + - type: Fixtures + fixtures: {} - uid: 6572 components: - type: Transform @@ -2301,6 +2231,8 @@ entities: - 2964 - 2963 - 2962 + - type: Fixtures + fixtures: {} - uid: 6614 components: - type: Transform @@ -2313,6 +2245,8 @@ entities: - 8539 - 6659 - 6671 + - type: Fixtures + fixtures: {} - uid: 7434 components: - type: Transform @@ -2339,12 +2273,16 @@ entities: - 8545 - 8546 - 11449 + - type: Fixtures + fixtures: {} - uid: 8220 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,47.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8222 components: - type: Transform @@ -2368,6 +2306,8 @@ entities: - 2954 - 2953 - 2952 + - type: Fixtures + fixtures: {} - uid: 8228 components: - type: Transform @@ -2380,6 +2320,8 @@ entities: - 4199 - 4200 - 3610 + - type: Fixtures + fixtures: {} - uid: 8231 components: - type: Transform @@ -2396,6 +2338,8 @@ entities: - 3379 - 2931 - 8225 + - type: Fixtures + fixtures: {} - uid: 8236 components: - type: Transform @@ -2403,13 +2347,14 @@ entities: parent: 2 - type: DeviceList devices: - - 2922 - - 8237 - - 8233 - - 4210 - - 4211 - - 3200 - 11438 + - 3200 + - 4211 + - 4210 + - 8233 + - 2922 + - type: Fixtures + fixtures: {} - uid: 8240 components: - type: Transform @@ -2423,6 +2368,8 @@ entities: - 3495 - 3497 - 3496 + - type: Fixtures + fixtures: {} - uid: 8241 components: - type: Transform @@ -2442,6 +2389,8 @@ entities: - 2928 - 2929 - 2931 + - type: Fixtures + fixtures: {} - uid: 8509 components: - type: Transform @@ -2465,6 +2414,8 @@ entities: - 8534 - 2071 - 4272 + - type: Fixtures + fixtures: {} - uid: 8532 components: - type: Transform @@ -2491,6 +2442,8 @@ entities: - 2071 - 6688 - 4191 + - type: Fixtures + fixtures: {} - uid: 8538 components: - type: Transform @@ -2508,6 +2461,8 @@ entities: - 6654 - 6650 - 6651 + - type: Fixtures + fixtures: {} - uid: 8540 components: - type: Transform @@ -2518,6 +2473,8 @@ entities: - 6675 - 6688 - 2790 + - type: Fixtures + fixtures: {} - uid: 8542 components: - type: Transform @@ -2533,6 +2490,8 @@ entities: - 8543 - 6644 - 6643 + - type: Fixtures + fixtures: {} - uid: 8544 components: - type: Transform @@ -2545,6 +2504,8 @@ entities: - 4211 - 4191 - 2916 + - type: Fixtures + fixtures: {} - uid: 10232 components: - type: Transform @@ -2565,6 +2526,8 @@ entities: - 10056 - 10029 - 10031 + - type: Fixtures + fixtures: {} - uid: 10233 components: - type: Transform @@ -2604,6 +2567,8 @@ entities: - 10015 - 10012 - 9926 + - type: Fixtures + fixtures: {} - uid: 10234 components: - type: Transform @@ -2622,6 +2587,8 @@ entities: - 10178 - 10177 - 10182 + - type: Fixtures + fixtures: {} - uid: 10235 components: - type: Transform @@ -2639,6 +2606,8 @@ entities: - 10200 - 10199 - 10197 + - type: Fixtures + fixtures: {} - uid: 10236 components: - type: Transform @@ -2658,6 +2627,8 @@ entities: - 10130 - 10131 - 10134 + - type: Fixtures + fixtures: {} - uid: 10237 components: - type: Transform @@ -2671,6 +2642,8 @@ entities: - 10220 - 10221 - 9808 + - type: Fixtures + fixtures: {} - uid: 10238 components: - type: Transform @@ -2686,6 +2659,8 @@ entities: - 10222 - 9809 - 9807 + - type: Fixtures + fixtures: {} - uid: 10239 components: - type: Transform @@ -2718,6 +2693,8 @@ entities: - 9853 - 9854 - 9872 + - type: Fixtures + fixtures: {} - uid: 10240 components: - type: Transform @@ -2734,6 +2711,8 @@ entities: - 9837 - 9836 - 9834 + - type: Fixtures + fixtures: {} - uid: 10241 components: - type: Transform @@ -2752,6 +2731,8 @@ entities: - 9880 - 9881 - 9879 + - type: Fixtures + fixtures: {} - uid: 11566 components: - type: Transform @@ -2760,6 +2741,8 @@ entities: - type: DeviceList devices: - 7749 + - type: Fixtures + fixtures: {} - proto: AirCanister entities: - uid: 53 @@ -2790,7 +2773,7 @@ entities: pos: 36.5,-6.5 parent: 2 - type: Door - secondsUntilStateChange: -12907.095 + secondsUntilStateChange: -21848.14 state: Opening - type: DeviceLinkSource lastSignals: @@ -2802,6 +2785,11 @@ entities: parent: 2 - proto: AirlockChapelLocked entities: + - uid: 270 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 - uid: 7158 components: - type: Transform @@ -2976,6 +2964,8 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,27.5 parent: 2 + - type: AccessReader + accessListsOriginal: [] - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -3110,18 +3100,6 @@ entities: - InputB - type: DeviceLinkSink invokeCounter: 1 - - uid: 3266 - components: - - type: Transform - pos: 57.5,-20.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 3235: - - - DoorStatus - - InputA - - - DockStatus - - InputB - proto: AirlockExternalGlassShuttleEscape entities: - uid: 674 @@ -3136,6 +3114,20 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,24.5 parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 3266 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3235: + - - DoorStatus + - InputA + - - DockStatus + - InputB - proto: AirlockExternalLocked entities: - uid: 2795 @@ -4111,209 +4103,281 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4235 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4916 components: - type: Transform pos: 43.5,52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4917 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,57.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4918 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4919 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4920 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4921 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4925 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4927 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4928 components: - type: Transform pos: 44.5,21.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4932 components: - type: Transform pos: 9.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4933 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,39.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4934 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,31.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4936 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4937 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4942 components: - type: Transform rot: -3.141592653589793 rad pos: 59.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4943 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4944 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4945 components: - type: Transform pos: 35.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4948 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-10.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4949 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4950 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4951 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4952 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4953 components: - type: Transform pos: -2.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4955 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,9.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4956 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4957 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,14.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5005 components: - type: Transform pos: 25.5,-13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6164 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6660 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7012 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7571 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8274 components: - type: Transform pos: 50.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8290 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,24.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: APCHighCapacity entities: - uid: 9462 @@ -4321,78 +4385,104 @@ entities: - type: Transform pos: 15.5,-39.5 parent: 3564 + - type: Fixtures + fixtures: {} - uid: 9463 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-39.5 parent: 3564 + - type: Fixtures + fixtures: {} - uid: 9464 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-31.5 parent: 3564 + - type: Fixtures + fixtures: {} - uid: 9465 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-31.5 parent: 3564 + - type: Fixtures + fixtures: {} - uid: 9466 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-30.5 parent: 3564 + - type: Fixtures + fixtures: {} - uid: 9467 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-20.5 parent: 3564 + - type: Fixtures + fixtures: {} - uid: 9468 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-59.5 parent: 3564 + - type: Fixtures + fixtures: {} - uid: 9469 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-60.5 parent: 3564 + - type: Fixtures + fixtures: {} - uid: 9470 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-64.5 parent: 3564 + - type: Fixtures + fixtures: {} - uid: 9471 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-60.5 parent: 3564 + - type: Fixtures + fixtures: {} - uid: 9472 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-70.5 parent: 3564 + - type: Fixtures + fixtures: {} - uid: 9473 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-68.5 parent: 3564 + - type: Fixtures + fixtures: {} - uid: 9651 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-46.5 parent: 3564 + - type: Fixtures + fixtures: {} - proto: ArrivalsShuttleTimer entities: - uid: 6152 @@ -4400,11 +4490,15 @@ entities: - type: Transform pos: 62.5,53.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6153 components: - type: Transform pos: 62.5,44.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ArtistCircuitBoard entities: - uid: 3812 @@ -4495,12 +4589,6 @@ entities: - type: Transform pos: 57.5,-4.5 parent: 2 - - uid: 8306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,12.5 - parent: 2 - uid: 8309 components: - type: Transform @@ -4921,12 +5009,12 @@ entities: - uid: 1275 components: - type: Transform - pos: 31.945509,-11.86088 + pos: 31.5,-12.5 parent: 1 - uid: 1277 components: - type: Transform - pos: 37.848846,32.127415 + pos: 37.5,31.5 parent: 1 - proto: BaseGasCondenser entities: @@ -5372,7 +5460,7 @@ entities: parent: 2 - proto: BlastDoor entities: - - uid: 207 + - uid: 122 components: - type: Transform pos: -8.5,12.5 @@ -5834,13 +5922,6 @@ entities: - type: Transform 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 @@ -18954,13 +19035,6 @@ entities: - type: Transform pos: 59.49891,26.586502 parent: 2 -- proto: CaptainSabre - entities: - - uid: 7174 - components: - - type: Transform - pos: 59.5,23.5 - parent: 2 - proto: CarbonDioxideCanister entities: - uid: 138 @@ -18988,450 +19062,6 @@ entities: - type: Transform pos: 43.5,-7.5 parent: 2 -- proto: Carpet - entities: - - uid: 2037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,12.5 - parent: 2 - - uid: 2040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,13.5 - parent: 2 - - uid: 2041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,14.5 - parent: 2 - - uid: 5599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,13.5 - parent: 2 - - uid: 5621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,14.5 - parent: 2 - - uid: 5623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,12.5 - parent: 2 -- proto: CarpetBlack - entities: - - uid: 7309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,13.5 - parent: 2 - - uid: 7310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,13.5 - parent: 2 - - uid: 7311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,13.5 - parent: 2 - - uid: 7312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,13.5 - parent: 2 - - uid: 7313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 - parent: 2 - - uid: 7314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,11.5 - parent: 2 - - uid: 7315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,11.5 - parent: 2 - - uid: 7316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,11.5 - parent: 2 - - uid: 7317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,15.5 - parent: 2 - - uid: 7318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,15.5 - parent: 2 - - uid: 7319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,15.5 - parent: 2 - - uid: 7586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,15.5 - parent: 2 -- proto: CarpetBlue - entities: - - uid: 2408 - components: - - type: Transform - pos: 57.5,24.5 - parent: 2 - - uid: 2409 - components: - - type: Transform - pos: 58.5,24.5 - parent: 2 - - uid: 2410 - components: - - type: Transform - pos: 59.5,23.5 - parent: 2 - - uid: 2411 - components: - - type: Transform - pos: 59.5,22.5 - parent: 2 - - uid: 2414 - components: - - type: Transform - pos: 56.5,22.5 - parent: 2 - - uid: 2415 - components: - - type: Transform - pos: 56.5,23.5 - parent: 2 - - uid: 2416 - components: - - type: Transform - pos: 57.5,23.5 - parent: 2 - - uid: 2417 - components: - - type: Transform - pos: 58.5,23.5 - parent: 2 - - uid: 2418 - components: - - type: Transform - pos: 58.5,22.5 - parent: 2 - - uid: 2419 - components: - - type: Transform - pos: 57.5,22.5 - parent: 2 - - uid: 2420 - components: - - type: Transform - pos: 57.5,21.5 - parent: 2 - - uid: 2421 - components: - - type: Transform - pos: 58.5,21.5 - parent: 2 -- proto: CarpetChapel - entities: - - uid: 268 - components: - - type: Transform - pos: -2.5,9.5 - parent: 2 - - uid: 270 - components: - - type: Transform - pos: -0.5,9.5 - parent: 2 - - uid: 271 - components: - - type: Transform - pos: -0.5,11.5 - parent: 2 - - uid: 323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,14.5 - parent: 2 - - uid: 324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,15.5 - parent: 2 - - uid: 325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 2 - - uid: 327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 2 - - uid: 328 - components: - - type: Transform - pos: -4.5,9.5 - parent: 2 - - uid: 329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,9.5 - parent: 2 - - uid: 330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,12.5 - parent: 2 - - uid: 331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,10.5 - parent: 2 - - uid: 332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,15.5 - parent: 2 - - uid: 333 - components: - - type: Transform - pos: -6.5,14.5 - parent: 2 - - uid: 334 - components: - - type: Transform - pos: -6.5,9.5 - parent: 2 - - uid: 335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 2 - - uid: 336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,15.5 - parent: 2 - - uid: 383 - components: - - type: Transform - pos: -0.5,13.5 - parent: 2 - - uid: 527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 2 - - uid: 528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 2 - - uid: 529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,12.5 - parent: 2 - - uid: 530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 2 - - uid: 531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 - parent: 2 - - uid: 561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,14.5 - parent: 2 - - uid: 1366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,14.5 - parent: 2 - - uid: 1367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,15.5 - parent: 2 - - uid: 1368 - components: - - type: Transform - pos: -4.5,14.5 - parent: 2 - - uid: 1756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,10.5 - parent: 2 - - uid: 3150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,14.5 - parent: 2 - - uid: 4853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,9.5 - parent: 2 - - uid: 6987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,11.5 - parent: 2 - - uid: 7147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,13.5 - parent: 2 - - uid: 7305 - components: - - type: Transform - pos: -2.5,13.5 - parent: 2 - - uid: 7306 - components: - - type: Transform - pos: -2.5,11.5 - parent: 2 - - uid: 7307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,12.5 - parent: 2 - - uid: 7308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,14.5 - parent: 2 - - uid: 7323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 2 - - uid: 7324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,10.5 - parent: 2 - - uid: 7583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,9.5 - parent: 2 - - uid: 7584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,11.5 - parent: 2 - - uid: 7585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,13.5 - parent: 2 -- proto: CarpetSBlue - entities: - - uid: 2031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,12.5 - parent: 2 - - uid: 2032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,12.5 - parent: 2 - - uid: 2033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,13.5 - parent: 2 - - uid: 2034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,13.5 - parent: 2 - - uid: 2035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,14.5 - parent: 2 - - uid: 2036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,14.5 - parent: 2 - proto: Catwalk entities: - uid: 847 @@ -20269,13 +19899,175 @@ entities: - 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: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 2 + - uid: 267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 2 + - uid: 330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - uid: 331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 2 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 2 + - uid: 333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - uid: 334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 2 + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 2 + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 2 + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 2 + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + - uid: 343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 2 + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - uid: 345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 2 + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 + - uid: 347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,33.5 + parent: 2 + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,30.5 + parent: 2 + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,31.5 + parent: 2 + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,32.5 + parent: 2 + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,33.5 + parent: 2 + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,33.5 + parent: 2 + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,33.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 58.5,29.5 + parent: 2 - uid: 446 components: - type: Transform @@ -20288,6 +20080,27 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,13.5 parent: 2 + - uid: 527 + components: + - type: Transform + pos: 60.5,29.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: 59.5,29.5 + parent: 2 + - uid: 529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,33.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: 61.5,29.5 + parent: 2 - uid: 618 components: - type: Transform @@ -20588,134 +20401,6 @@ entities: rot: -1.5707963267948966 rad 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 - rot: -1.5707963267948966 rad - pos: -0.5,15.5 - parent: 2 - - uid: 337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,14.5 - parent: 2 - - uid: 338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,13.5 - parent: 2 - - uid: 339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,11.5 - parent: 2 - - uid: 340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 2 - - uid: 341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,9.5 - parent: 2 - - uid: 342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,11.5 - parent: 2 - - uid: 343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 2 - - uid: 344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 2 - - uid: 345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,15.5 - parent: 2 - - uid: 346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,14.5 - parent: 2 - - uid: 347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,13.5 - parent: 2 - - uid: 348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,15.5 - parent: 2 - - uid: 349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,15.5 - parent: 2 - - uid: 350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,14.5 - parent: 2 - - uid: 351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 2 - - uid: 352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 2 - - uid: 353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,9.5 - parent: 2 - - uid: 354 - components: - - type: Transform - 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 @@ -21096,6 +20781,8 @@ entities: - type: Transform pos: 59.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClosetWallFireFilledRandom entities: - uid: 2436 @@ -21103,6 +20790,8 @@ entities: - type: Transform pos: 60.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: ClothingBackpack entities: - uid: 7551 @@ -22005,6 +21694,13 @@ entities: - type: Transform pos: 30.5,16.5 parent: 2 +- proto: ClothingMaskWeldingGas + entities: + - uid: 7147 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 - proto: ClothingNeckClownmedal entities: - uid: 2262 @@ -22600,76 +22296,6 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 -- proto: ComfyChair - entities: - - uid: 2432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,33.5 - parent: 2 - - uid: 2439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,32.5 - parent: 2 - - uid: 2440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,31.5 - parent: 2 - - uid: 2441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,30.5 - parent: 2 - - uid: 2442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,33.5 - parent: 2 - - uid: 2443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,33.5 - parent: 2 - - uid: 2444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,33.5 - parent: 2 - - uid: 2445 - components: - - type: Transform - pos: 58.5,29.5 - parent: 2 - - uid: 2446 - components: - - type: Transform - pos: 59.5,29.5 - parent: 2 - - uid: 2447 - components: - - type: Transform - pos: 60.5,29.5 - parent: 2 - - uid: 2450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,33.5 - parent: 2 - - uid: 2981 - components: - - type: Transform - pos: 61.5,29.5 - parent: 2 - proto: ComputerAlert entities: - uid: 1459 @@ -22910,18 +22536,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - uid: 2798 components: - type: Transform @@ -23179,14 +22795,6 @@ entities: - type: Transform pos: 7.5,16.5 parent: 2 -- proto: CurtainsBlack - entities: - - uid: 7154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,17.5 - parent: 2 - proto: DefaultStationBeaconAI entities: - uid: 7619 @@ -23419,12 +23027,16 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,13.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6330 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,11.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: DefibrillatorCompact entities: - uid: 2051 @@ -24256,6 +23868,8 @@ entities: - 2918 - 2916 - 2922 + - type: Fixtures + fixtures: {} - uid: 35 components: - type: Transform @@ -24265,6 +23879,8 @@ entities: devices: - 2921 - 3246 + - type: Fixtures + fixtures: {} - uid: 433 components: - type: Transform @@ -24273,6 +23889,8 @@ entities: - type: DeviceList devices: - 396 + - type: Fixtures + fixtures: {} - uid: 1968 components: - type: Transform @@ -24283,6 +23901,8 @@ entities: - 6540 - 2949 - 2950 + - type: Fixtures + fixtures: {} - uid: 2009 components: - type: Transform @@ -24291,6 +23911,8 @@ entities: - type: DeviceList devices: - 2944 + - type: Fixtures + fixtures: {} - uid: 2770 components: - type: Transform @@ -24302,6 +23924,8 @@ entities: - 2406 - 1741 - 1735 + - type: Fixtures + fixtures: {} - uid: 2967 components: - type: Transform @@ -24310,6 +23934,8 @@ entities: - type: DeviceList devices: - 2972 + - type: Fixtures + fixtures: {} - uid: 2982 components: - type: Transform @@ -24325,6 +23951,8 @@ entities: - 6541 - 2927 - 2926 + - type: Fixtures + fixtures: {} - uid: 5865 components: - type: Transform @@ -24334,11 +23962,15 @@ entities: devices: - 2935 - 2936 + - type: Fixtures + fixtures: {} - uid: 6170 components: - type: Transform pos: 59.5,38.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6528 components: - type: Transform @@ -24349,6 +23981,8 @@ entities: devices: - 2970 - 2969 + - type: Fixtures + fixtures: {} - uid: 6565 components: - type: Transform @@ -24366,6 +24000,8 @@ entities: - 2936 - 2935 - 3246 + - type: Fixtures + fixtures: {} - uid: 6567 components: - type: Transform @@ -24378,6 +24014,8 @@ entities: - 2951 - 2954 - 2955 + - type: Fixtures + fixtures: {} - uid: 6568 components: - type: Transform @@ -24393,6 +24031,8 @@ entities: - 2954 - 2953 - 2952 + - type: Fixtures + fixtures: {} - uid: 6569 components: - type: Transform @@ -24407,6 +24047,8 @@ entities: - 2964 - 2963 - 2962 + - type: Fixtures + fixtures: {} - uid: 6570 components: - type: Transform @@ -24422,6 +24064,8 @@ entities: - 2970 - 2972 - 2974 + - type: Fixtures + fixtures: {} - uid: 6573 components: - type: Transform @@ -24431,6 +24075,8 @@ entities: - type: DeviceList devices: - 2912 + - type: Fixtures + fixtures: {} - uid: 6578 components: - type: Transform @@ -24440,6 +24086,8 @@ entities: devices: - 396 - 8475 + - type: Fixtures + fixtures: {} - uid: 6582 components: - type: Transform @@ -24448,8 +24096,9 @@ entities: parent: 2 - type: DeviceList devices: - - 8237 - 2923 + - type: Fixtures + fixtures: {} - uid: 6584 components: - type: Transform @@ -24466,12 +24115,16 @@ entities: - 6541 - 2927 - 2926 + - type: Fixtures + fixtures: {} - uid: 6585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,45.5 + rot: -1.5707963267948966 rad + pos: 62.5,50.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6586 components: - type: Transform @@ -24482,6 +24135,8 @@ entities: devices: - 2926 - 2927 + - type: Fixtures + fixtures: {} - uid: 6587 components: - type: Transform @@ -24492,6 +24147,8 @@ entities: devices: - 6541 - 2947 + - type: Fixtures + fixtures: {} - uid: 6588 components: - type: Transform @@ -24502,6 +24159,8 @@ entities: - 8225 - 2947 - 6540 + - type: Fixtures + fixtures: {} - uid: 6591 components: - type: Transform @@ -24512,6 +24171,8 @@ entities: devices: - 2951 - 2949 + - type: Fixtures + fixtures: {} - uid: 6592 components: - type: Transform @@ -24522,6 +24183,8 @@ entities: devices: - 2956 - 2957 + - type: Fixtures + fixtures: {} - uid: 6593 components: - type: Transform @@ -24531,6 +24194,8 @@ entities: - type: DeviceList devices: - 2958 + - type: Fixtures + fixtures: {} - uid: 6594 components: - type: Transform @@ -24543,6 +24208,8 @@ entities: - 2957 - 2975 - 2976 + - type: Fixtures + fixtures: {} - uid: 6595 components: - type: Transform @@ -24554,6 +24221,8 @@ entities: - 2961 - 2975 - 2976 + - type: Fixtures + fixtures: {} - uid: 6642 components: - type: Transform @@ -24564,6 +24233,8 @@ entities: devices: - 8539 - 8543 + - type: Fixtures + fixtures: {} - uid: 7781 components: - type: Transform @@ -24572,6 +24243,8 @@ entities: - type: DeviceList devices: - 2934 + - type: Fixtures + fixtures: {} - uid: 8218 components: - type: Transform @@ -24583,6 +24256,8 @@ entities: - 2955 - 2965 - 2969 + - type: Fixtures + fixtures: {} - uid: 8219 components: - type: Transform @@ -24594,6 +24269,8 @@ entities: - 2974 - 2978 - 8549 + - type: Fixtures + fixtures: {} - uid: 8223 components: - type: Transform @@ -24603,6 +24280,8 @@ entities: - type: DeviceList devices: - 8221 + - type: Fixtures + fixtures: {} - uid: 8230 components: - type: Transform @@ -24613,6 +24292,8 @@ entities: devices: - 2931 - 8225 + - type: Fixtures + fixtures: {} - uid: 8232 components: - type: Transform @@ -24628,6 +24309,8 @@ entities: - 2918 - 2919 - 2925 + - type: Fixtures + fixtures: {} - uid: 8235 components: - type: Transform @@ -24636,7 +24319,8 @@ entities: - type: DeviceList devices: - 2922 - - 8237 + - type: Fixtures + fixtures: {} - uid: 8238 components: - type: Transform @@ -24645,6 +24329,8 @@ entities: - type: DeviceList devices: - 2924 + - type: Fixtures + fixtures: {} - uid: 8242 components: - type: Transform @@ -24656,6 +24342,8 @@ entities: - 2928 - 2929 - 2931 + - type: Fixtures + fixtures: {} - uid: 8247 components: - type: Transform @@ -24665,6 +24353,8 @@ entities: devices: - 8248 - 8246 + - type: Fixtures + fixtures: {} - uid: 8249 components: - type: Transform @@ -24673,6 +24363,8 @@ entities: - type: DeviceList devices: - 8245 + - type: Fixtures + fixtures: {} - uid: 8307 components: - type: Transform @@ -24681,6 +24373,8 @@ entities: - type: DeviceList devices: - 2901 + - type: Fixtures + fixtures: {} - uid: 8356 components: - type: Transform @@ -24690,6 +24384,8 @@ entities: - type: DeviceList devices: - 8539 + - type: Fixtures + fixtures: {} - uid: 8528 components: - type: Transform @@ -24706,6 +24402,8 @@ entities: - 1831 - 8477 - 2912 + - type: Fixtures + fixtures: {} - uid: 8529 components: - type: Transform @@ -24714,6 +24412,8 @@ entities: - type: DeviceList devices: - 2904 + - type: Fixtures + fixtures: {} - uid: 8531 components: - type: Transform @@ -24729,6 +24429,8 @@ entities: - 1741 - 1735 - 8475 + - type: Fixtures + fixtures: {} - uid: 8533 components: - type: Transform @@ -24744,6 +24446,8 @@ entities: - 7657 - 1831 - 8477 + - type: Fixtures + fixtures: {} - uid: 8541 components: - type: Transform @@ -24753,6 +24457,8 @@ entities: - type: DeviceList devices: - 8543 + - type: Fixtures + fixtures: {} - uid: 10242 components: - type: Transform @@ -24762,6 +24468,8 @@ entities: devices: - 9647 - 9646 + - type: Fixtures + fixtures: {} - uid: 10243 components: - type: Transform @@ -24772,6 +24480,8 @@ entities: devices: - 9645 - 9646 + - type: Fixtures + fixtures: {} - uid: 10244 components: - type: Transform @@ -24781,6 +24491,8 @@ entities: devices: - 9648 - 9649 + - type: Fixtures + fixtures: {} - uid: 10245 components: - type: Transform @@ -24792,6 +24504,8 @@ entities: - 9643 - 9644 - 9648 + - type: Fixtures + fixtures: {} - uid: 10246 components: - type: Transform @@ -24809,6 +24523,8 @@ entities: - 9649 - 9647 - 9650 + - type: Fixtures + fixtures: {} - uid: 10247 components: - type: Transform @@ -24827,6 +24543,8 @@ entities: - 9637 - 9640 - 9641 + - type: Fixtures + fixtures: {} - uid: 10248 components: - type: Transform @@ -24835,6 +24553,8 @@ entities: - type: DeviceList devices: - 9635 + - type: Fixtures + fixtures: {} - uid: 10249 components: - type: Transform @@ -24844,6 +24564,8 @@ entities: devices: - 9634 - 9633 + - type: Fixtures + fixtures: {} - uid: 10250 components: - type: Transform @@ -24854,6 +24576,8 @@ entities: devices: - 9631 - 9632 + - type: Fixtures + fixtures: {} - uid: 10251 components: - type: Transform @@ -24866,6 +24590,8 @@ entities: - 9638 - 9637 - 9639 + - type: Fixtures + fixtures: {} - proto: FireExtinguisher entities: - uid: 1071 @@ -25718,18 +25444,6 @@ entities: - 8231 - 6588 - 6542 - - uid: 8237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8235 - - 8236 - - 6582 - - 6547 - uid: 8245 components: - type: Transform @@ -44296,7 +44010,7 @@ entities: - uid: 134 components: - type: Transform - pos: 68.5,-23.5 + pos: 6.5,-19.5 parent: 2 - uid: 153 components: @@ -44973,11 +44687,31 @@ entities: - type: Transform pos: -0.5,36.5 parent: 2 + - uid: 2033 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 - uid: 2038 components: - type: Transform pos: 5.5,30.5 parent: 2 + - uid: 2040 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 - uid: 2059 components: - type: Transform @@ -45084,6 +44818,11 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,46.5 parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 2 - uid: 2345 components: - type: Transform @@ -45124,6 +44863,126 @@ entities: - type: Transform pos: 64.5,28.5 parent: 2 + - uid: 2392 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 47.5,62.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 19.5,62.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 20.5,62.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: 21.5,62.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: 22.5,62.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 26.5,62.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: 28.5,62.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 35.5,62.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 36.5,62.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 37.5,62.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 38.5,62.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 39.5,62.5 + parent: 2 - uid: 2462 components: - type: Transform @@ -45174,6 +45033,26 @@ entities: - type: Transform pos: 68.5,-18.5 parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 40.5,62.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: 33.5,62.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: 32.5,62.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: 46.5,62.5 + parent: 2 - uid: 3260 components: - type: Transform @@ -45240,6 +45119,16 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-45.5 parent: 3564 + - uid: 3753 + components: + - type: Transform + pos: 45.5,62.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: 42.5,62.5 + parent: 2 - uid: 3923 components: - type: Transform @@ -45393,51 +45282,36 @@ entities: - type: Transform pos: 68.5,-17.5 parent: 2 - - uid: 7390 + - uid: 7267 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 2 + - uid: 7285 components: - type: Transform pos: 68.5,-24.5 parent: 2 - - uid: 7391 + - uid: 7287 components: - type: Transform pos: 68.5,-25.5 parent: 2 - - uid: 7392 + - uid: 7288 components: - type: Transform pos: 68.5,-26.5 parent: 2 - - uid: 7393 + - uid: 7289 components: - type: Transform pos: 68.5,-27.5 parent: 2 - - uid: 7394 - components: - - type: Transform - pos: 64.5,-19.5 - parent: 2 - - uid: 7406 + - uid: 7305 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 @@ -45449,41 +45323,16 @@ entities: 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: - type: Transform @@ -47375,46 +47224,11 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,37.5 parent: 2 - - uid: 8214 - components: - - type: Transform - pos: 60.5,-29.5 - parent: 2 - - uid: 8215 - components: - - type: Transform - pos: 64.5,-20.5 - parent: 2 - - uid: 8216 - components: - - type: Transform - pos: 65.5,-20.5 - parent: 2 - - uid: 8217 - components: - - type: Transform - pos: 65.5,-21.5 - parent: 2 - - uid: 8297 - components: - - type: Transform - pos: 65.5,-22.5 - parent: 2 - - uid: 8298 - components: - - type: Transform - pos: 65.5,-23.5 - parent: 2 - uid: 8301 components: - type: Transform pos: 24.5,-1.5 parent: 2 - - uid: 8308 - components: - - type: Transform - pos: 65.5,-24.5 - parent: 2 - uid: 8310 components: - type: Transform @@ -47427,11 +47241,6 @@ entities: 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 @@ -48678,16 +48487,6 @@ entities: - 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 @@ -49531,173 +49330,6 @@ entities: - type: Transform pos: 36.5,54.5 parent: 2 -- proto: HolopadAiMain - entities: - - uid: 7792 - components: - - type: Transform - 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: 7545 - components: - - type: Transform - pos: 57.5,22.5 - parent: 2 - - type: Label - currentLabel: Command - Secure Storage -- proto: HolopadCommandHop - entities: - - uid: 2392 - components: - - type: Transform - pos: 45.5,27.5 - parent: 2 -- proto: HolopadEngineeringAME - entities: - - uid: 7786 - components: - - type: Transform - pos: 45.5,36.5 - parent: 2 -- proto: HolopadEngineeringAtmosMain - entities: - - uid: 7782 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 2 -- proto: HolopadEngineeringAtmosTeg - entities: - - uid: 1562 - components: - - type: Transform - pos: 20.5,33.5 - parent: 2 -- proto: HolopadEngineeringMain - entities: - - uid: 5342 - components: - - type: Transform - pos: 33.5,31.5 - parent: 2 -- proto: HolopadEngineeringStorage - entities: - - uid: 4742 - components: - - type: Transform - pos: 20.5,41.5 - parent: 2 -- proto: HolopadEngineeringTelecoms - entities: - - uid: 1505 - components: - - type: Transform - pos: -4.5,6.5 - parent: 2 -- proto: HolopadGeneralArrivals - entities: - - uid: 7783 - components: - - type: Transform - pos: 60.5,48.5 - parent: 2 -- proto: HolopadGeneralCryosleep - entities: - - uid: 5211 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 2 -- proto: HolopadGeneralEvac - entities: - - 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: 3753 - components: - - type: Transform - pos: 51.5,40.5 - parent: 2 -- proto: HolopadMedicalChemistry - entities: - - uid: 5862 - components: - - type: Transform - pos: 32.5,10.5 - parent: 2 -- proto: HolopadMedicalMedbay - entities: - - uid: 2191 - components: - - type: Transform - pos: 17.5,11.5 - parent: 2 -- proto: HolopadMedicalMorgue - entities: - - uid: 2047 - components: - - type: Transform - pos: 3.5,14.5 - parent: 2 -- proto: HolopadScienceFront - entities: - - uid: 1539 - components: - - type: Transform - pos: 51.5,5.5 - parent: 2 -- proto: HolopadSecurityCourtroom - entities: - - uid: 5345 - components: - - type: Transform - pos: 58.5,15.5 - parent: 2 - - type: Label - currentLabel: Security - Assembly Room -- proto: HolopadSecurityFront - entities: - - uid: 1535 - components: - - type: Transform - pos: 38.5,0.5 - parent: 2 -- proto: HolopadServiceChapel - entities: - - uid: 6177 - components: - - type: Transform - pos: -1.5,12.5 - parent: 2 - proto: HydroponicsToolMiniHoe entities: - uid: 10556 @@ -49826,17 +49458,23 @@ entities: - type: Transform pos: 57.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4183 components: - type: Transform pos: 44.5,52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7474 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomCommon entities: - uid: 36 @@ -49844,57 +49482,77 @@ entities: - type: Transform pos: 26.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4185 components: - type: Transform pos: 46.5,52.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4930 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7492 components: - type: Transform pos: 35.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7501 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7504 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-0.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7554 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7577 components: - type: Transform pos: 56.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7581 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8537 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,28.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomEngineering entities: - uid: 846 @@ -49902,52 +49560,70 @@ entities: - type: Transform pos: 29.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3008 components: - type: Transform pos: 15.5,40.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 3072 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,20.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5122 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6553 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6557 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,25.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6598 components: - type: Transform pos: 31.5,36.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7482 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,33.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8563 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomMedical entities: - uid: 1913 @@ -49956,12 +49632,16 @@ entities: rot: 3.141592653589793 rad pos: 24.5,12.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7443 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: IntercomSecurity entities: - uid: 4184 @@ -49969,6 +49649,8 @@ entities: - type: Transform pos: 45.5,52.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: JetpackBlueFilled entities: - uid: 8636 @@ -50075,9 +49757,9 @@ entities: - type: Transform pos: 23.5,-16.5 parent: 3564 -- proto: LockerCaptainFilledNoLaser +- proto: LockerCaptainFilledHardsuit entities: - - uid: 6176 + - uid: 561 components: - type: Transform pos: 59.5,24.5 @@ -50091,10 +49773,10 @@ entities: parent: 2 - proto: LockerChiefEngineerFilledHardsuit entities: - - uid: 8325 + - uid: 2036 components: - type: Transform - pos: 18.5,42.5 + pos: 17.5,41.5 parent: 2 - proto: LockerChiefMedicalOfficerFilledHardsuit entities: @@ -50284,6 +49966,11 @@ entities: parent: 2 - proto: LockerSteel entities: + - uid: 135 + components: + - type: Transform + pos: 58.5,45.5 + parent: 2 - uid: 935 components: - type: Transform @@ -50294,6 +49981,11 @@ entities: - type: Transform pos: 58.5,47.5 parent: 2 + - uid: 1367 + components: + - type: Transform + pos: 58.5,44.5 + parent: 2 - uid: 2618 components: - type: Transform @@ -50389,13 +50081,6 @@ entities: - type: Transform pos: 33.5,-30.5 parent: 3564 -- proto: LockerWardenFilled - entities: - - uid: 1353 - components: - - type: Transform - pos: 33.5,0.5 - parent: 2 - proto: LockerWardenFilledHardsuit entities: - uid: 10431 @@ -50410,6 +50095,50 @@ entities: - type: Transform pos: 23.5,42.5 parent: 2 +- proto: LogicGateAnd + entities: + - uid: 1839 + components: + - type: Transform + pos: 57.5,-3.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1829: + - - Output + - Open + - - Output + - AutoClose + - uid: 1879 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1848: + - - Output + - Open + - - Output + - AutoClose + - uid: 3235 + components: + - type: Transform + pos: 57.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3232: + - - Output + - Open + - - Output + - AutoClose - proto: LogicGateOr entities: - uid: 6692 @@ -50424,52 +50153,6 @@ entities: 2984: - - Output - DoorBolt -- proto: LogicGateXor - entities: - - uid: 1839 - components: - - type: Transform - anchored: True - pos: 57.5,-3.5 - parent: 2 - - type: Physics - canCollide: False - bodyType: Static - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 1829: - - - Output - - DoorBolt - - uid: 1879 - components: - - type: Transform - anchored: True - pos: 57.5,-13.5 - parent: 2 - - type: Physics - canCollide: False - bodyType: Static - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 1848: - - - Output - - DoorBolt - - uid: 3235 - components: - - type: Transform - pos: 57.5,-19.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 3232: - - - Output - - DoorBolt - proto: LootSpawnerArmory entities: - uid: 10455 @@ -50491,6 +50174,13 @@ entities: - type: Transform pos: 36.5,-59.5 parent: 3564 +- proto: Machete + entities: + - uid: 6987 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 - proto: MachineAnomalyVessel entities: - uid: 2379 @@ -50531,6 +50221,18 @@ entities: - type: Transform pos: 31.5,8.5 parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 4742 + components: + - type: Transform + pos: 54.5,59.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: 54.5,62.5 + parent: 2 - proto: MagazinePistolSubMachineGun entities: - uid: 1914 @@ -50922,18 +50624,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + Oxygen: 1.7459903 + Nitrogen: 6.568249 - uid: 1318 components: - type: Transform @@ -51317,6 +51009,38 @@ entities: parent: 2 - proto: Paper entities: + - uid: 271 + components: + - type: MetaData + desc: A piece of important paper. + name: Important Information (please do not ignore) + - type: Transform + pos: 34.5,0.5 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >- + Need guns? Check out the prison station! Just a hop, skip and a jump to the east, easily reachable via your very own prison shuttle! Just use the prison shuttle console, located next to the security wardrobe. + + + Do [italic]not[/italic] say CentComm never did anything for you. + - uid: 7174 + components: + - type: MetaData + desc: A piece of important paper. + name: Important Information (please do not ignore) + - type: Transform + pos: 25.5,-21.5 + parent: 3564 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: Unfortunately, we cannot locate our backstock of brigmedic IDs. The brigmedic locker opens with your medical ID. We recommend keeping both it and the provided security ID easily available. Good luck! - uid: 10429 components: - type: Transform @@ -51483,6 +51207,8 @@ entities: - type: Transform pos: 7.3686285,34.76087 parent: 2 + - type: Paper + content: bingle - uid: 11517 components: - type: MetaData @@ -52171,30 +51897,40 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6839 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,27.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7168 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,29.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7182 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7195 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: PlayerStationAi entities: - uid: 4561 @@ -52537,7 +52273,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,11.5 + pos: 34.5,12.5 parent: 2 - uid: 218 components: @@ -54107,33 +53843,6 @@ entities: - type: Transform pos: 61.5,23.5 parent: 2 -- proto: PrefilledSyringe - entities: - - uid: 7191 - components: - - type: Transform - pos: 63.5,29.5 - parent: 2 - - uid: 7326 - components: - - type: Transform - pos: 32.5,16.5 - parent: 2 - - uid: 7448 - components: - - type: Transform - pos: 15.5,13.5 - parent: 2 - - uid: 7451 - components: - - 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 @@ -54212,8 +53921,30 @@ entities: - type: Transform pos: 55.5,29.5 parent: 2 +- proto: PuddleBlood + entities: + - uid: 5862 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 6176 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 - proto: PuddleBloodSmall entities: + - uid: 5621 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 - uid: 6348 components: - type: Transform @@ -54414,6 +54145,38 @@ entities: - type: Transform pos: 28.5,-6.5 parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-20.5 + parent: 2 + - uid: 325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-0.5 + parent: 2 + - uid: 327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,23.5 + parent: 2 + - uid: 328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,58.5 + parent: 2 + - uid: 329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-45.5 + parent: 3564 - proto: RandomEngineerCorpseSpawner entities: - uid: 7286 @@ -54428,11 +54191,6 @@ entities: - 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 @@ -54539,211 +54297,295 @@ entities: - type: Transform pos: 23.5,-6.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 150 components: - type: Transform pos: 24.5,-5.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 165 components: - type: Transform pos: 24.5,-6.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 176 components: - type: Transform pos: 22.5,-3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 186 components: - type: Transform pos: 23.5,-3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 551 components: - type: Transform pos: 24.5,-0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 553 components: - type: Transform pos: 26.5,-0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 554 components: - type: Transform pos: 28.5,-1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 626 components: - type: Transform pos: 24.5,-1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 629 components: - type: Transform pos: 27.5,-1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 675 components: - type: Transform pos: 24.5,0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 699 components: - type: Transform pos: 23.5,-1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 710 components: - type: Transform pos: 22.5,-1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 726 components: - type: Transform pos: 26.5,-1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 761 components: - type: Transform pos: 26.5,0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 766 components: - type: Transform pos: 24.5,-3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 903 components: - type: Transform pos: 22.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 913 components: - type: Transform pos: 19.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 914 components: - type: Transform pos: 25.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 963 components: - type: Transform pos: 24.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1465 components: - type: Transform pos: 20.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1731 components: - type: Transform pos: 22.5,-6.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2899 components: - type: Transform pos: 24.5,-4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4014 components: - type: Transform pos: 27.5,-11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4057 components: - type: Transform pos: 29.5,-11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4058 components: - type: Transform pos: 28.5,-11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4664 components: - type: Transform pos: 18.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4665 components: - type: Transform pos: 23.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4682 components: - type: Transform pos: 17.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9661 components: - type: Transform pos: 14.5,-57.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9662 components: - type: Transform pos: 14.5,-58.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9663 components: - type: Transform pos: 14.5,-59.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9664 components: - type: Transform pos: 13.5,-59.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9665 components: - type: Transform pos: 12.5,-59.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9666 components: - type: Transform pos: 12.5,-58.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9667 components: - type: Transform pos: 12.5,-57.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9668 components: - type: Transform pos: 11.5,-59.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9676 components: - type: Transform pos: 15.5,-62.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9677 components: - type: Transform pos: 16.5,-62.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9678 components: - type: Transform pos: 17.5,-62.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9679 components: - type: Transform pos: 14.5,-63.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9680 components: - type: Transform pos: 14.5,-62.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - proto: ReinforcedWindow entities: - uid: 9 @@ -54751,1265 +54593,1747 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10 components: - type: Transform pos: -0.5,-0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11 components: - type: Transform pos: 2.5,1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 12 components: - type: Transform pos: 0.5,1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 13 components: - type: Transform pos: 1.5,1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 14 components: - type: Transform pos: 0.5,-4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 15 components: - type: Transform pos: 1.5,-4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 16 components: - type: Transform pos: 2.5,-4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 126 components: - type: Transform pos: 20.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 127 components: - type: Transform pos: 18.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 128 components: - type: Transform pos: 16.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 129 components: - type: Transform pos: 17.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 130 components: - type: Transform pos: 15.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 144 components: - type: Transform pos: 17.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 145 components: - type: Transform pos: 16.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 191 components: - type: Transform pos: 19.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 196 components: - type: Transform pos: 18.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 198 components: - type: Transform pos: 7.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 199 components: - type: Transform pos: 41.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 200 components: - type: Transform pos: 42.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 201 components: - type: Transform pos: 40.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 202 components: - type: Transform pos: 11.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 228 components: - type: Transform pos: 15.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 232 components: - type: Transform pos: 43.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 237 components: - type: Transform pos: 12.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 238 components: - type: Transform pos: 10.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 261 components: - type: Transform pos: 39.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 273 components: - type: Transform pos: -7.5,10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 274 components: - type: Transform pos: -7.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 279 components: - type: Transform pos: -7.5,9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 280 components: - type: Transform pos: -7.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 281 components: - type: Transform pos: -7.5,14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 282 components: - type: Transform pos: -7.5,15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 312 components: - type: Transform pos: 13.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 360 components: - type: Transform pos: 9.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 371 components: - type: Transform pos: 6.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 372 components: - type: Transform pos: 5.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 373 components: - type: Transform pos: 4.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 405 components: - type: Transform pos: 0.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 406 components: - type: Transform pos: 1.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 407 components: - type: Transform pos: -0.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 408 components: - type: Transform pos: -0.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 409 components: - type: Transform pos: -0.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 411 components: - type: Transform pos: -0.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 412 components: - type: Transform pos: -0.5,-8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 413 components: - type: Transform pos: -0.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 414 components: - type: Transform pos: 0.5,-6.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 415 components: - type: Transform pos: 1.5,-6.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 416 components: - type: Transform pos: 2.5,-6.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 468 components: - type: Transform pos: 2.5,36.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 562 components: - type: Transform pos: 51.5,18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 568 components: - type: Transform pos: 7.5,33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 647 components: - type: Transform pos: 21.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 713 components: - type: Transform pos: 8.5,33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 714 components: - type: Transform pos: 12.5,40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 736 components: - type: Transform pos: -0.5,-11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 740 components: - type: Transform pos: 8.5,35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 870 components: - type: Transform pos: 46.5,42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 882 components: - type: Transform pos: 45.5,42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 967 components: - type: Transform pos: 47.5,42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1083 components: - type: Transform pos: 21.5,14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1088 components: - type: Transform pos: 21.5,15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1118 components: - type: Transform pos: 33.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1119 components: - type: Transform pos: 33.5,-11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1120 components: - type: Transform pos: 43.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1121 components: - type: Transform pos: 44.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1122 components: - type: Transform pos: 45.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1123 components: - type: Transform pos: 46.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1124 components: - type: Transform pos: 47.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1125 components: - type: Transform pos: 48.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1126 components: - type: Transform pos: 50.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1127 components: - type: Transform pos: 50.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1128 components: - type: Transform pos: 50.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1149 components: - type: Transform pos: 37.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1150 components: - type: Transform pos: 36.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1151 components: - type: Transform pos: 34.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1152 components: - type: Transform pos: 35.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1153 components: - type: Transform pos: 33.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1154 components: - type: Transform pos: 31.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1155 components: - type: Transform pos: 30.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1156 components: - type: Transform pos: 29.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1157 components: - type: Transform pos: 28.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1158 components: - type: Transform pos: 27.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1159 components: - type: Transform pos: 25.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1160 components: - type: Transform pos: 24.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1161 components: - type: Transform pos: 23.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1162 components: - type: Transform pos: 22.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1163 components: - type: Transform pos: 21.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1251 components: - type: Transform pos: 51.5,2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1252 components: - type: Transform pos: 52.5,2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1253 components: - type: Transform pos: 53.5,2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1255 components: - type: Transform pos: 54.5,2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1271 components: - type: Transform pos: 31.5,7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1272 components: - type: Transform pos: 33.5,7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1295 components: - type: Transform pos: 7.5,35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1296 components: - type: Transform pos: 3.5,36.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1387 components: - type: Transform pos: 41.5,-1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1412 components: - type: Transform pos: 41.5,0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1814 components: - type: Transform pos: 64.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1818 components: - type: Transform pos: 62.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1819 components: - type: Transform pos: 56.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1824 components: - type: Transform pos: 59.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1825 components: - type: Transform pos: 60.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1826 components: - type: Transform pos: 66.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1827 components: - type: Transform pos: 58.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1830 components: - type: Transform pos: 58.5,-4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1837 components: - type: Transform pos: 56.5,-3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1844 components: - type: Transform pos: 56.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1849 components: - type: Transform pos: 58.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1850 components: - type: Transform pos: 55.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1855 components: - type: Transform pos: 65.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1856 components: - type: Transform pos: 61.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1857 components: - type: Transform pos: 58.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1861 components: - type: Transform pos: 58.5,-3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1862 components: - type: Transform pos: 56.5,-4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1873 components: - type: Transform pos: 56.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1876 components: - type: Transform pos: 58.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1877 components: - type: Transform pos: 56.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1878 components: - type: Transform pos: 58.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1880 components: - type: Transform pos: 56.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1882 components: - type: Transform pos: 58.5,-16.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1901 components: - type: Transform pos: 13.5,40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1933 components: - type: Transform pos: 51.5,38.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1970 components: - type: Transform pos: 52.5,38.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1976 components: - type: Transform pos: 50.5,38.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2069 components: - type: Transform pos: 49.5,38.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2083 components: - type: Transform pos: 63.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2100 components: - type: Transform pos: 49.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2106 components: - type: Transform pos: 51.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2127 components: - type: Transform pos: 53.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2130 components: - type: Transform pos: 44.5,26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2139 components: - type: Transform pos: 9.5,17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2140 components: - type: Transform pos: 10.5,17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2142 components: - type: Transform pos: 8.5,17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2143 components: - type: Transform pos: 7.5,17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2146 components: - type: Transform pos: 6.5,39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2147 components: - type: Transform pos: 7.5,39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2148 components: - type: Transform pos: 8.5,39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2149 components: - type: Transform pos: 0.5,31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2150 components: - type: Transform pos: 5.5,30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2151 components: - type: Transform pos: 54.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2152 components: - type: Transform pos: 4.5,30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2153 components: - type: Transform pos: 3.5,30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2174 components: - type: Transform pos: 52.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2175 components: - type: Transform pos: 51.5,-15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2353 components: - type: Transform pos: 64.5,34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2354 components: - type: Transform pos: 64.5,33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2355 components: - type: Transform pos: 64.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2356 components: - type: Transform pos: 64.5,31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2357 components: - type: Transform pos: 64.5,30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2358 components: - type: Transform pos: 64.5,29.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2359 components: - type: Transform pos: 64.5,28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2463 components: - type: Transform pos: 64.5,35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2590 components: - type: Transform pos: 62.5,58.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2595 components: - type: Transform pos: 60.5,63.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2596 components: - type: Transform pos: 59.5,63.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2597 components: - type: Transform pos: 57.5,63.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2598 components: - type: Transform pos: 56.5,63.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2756 components: - type: Transform pos: -0.5,36.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3245 components: - type: Transform pos: 58.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3247 components: - type: Transform pos: 58.5,-19.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3248 components: - type: Transform pos: 58.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3249 components: - type: Transform pos: 56.5,-18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3250 components: - type: Transform pos: 56.5,-19.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3259 components: - type: Transform pos: 56.5,-20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3567 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-39.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 3568 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-40.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 3569 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-42.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 3570 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-43.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 3571 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-44.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 3572 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-45.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 4494 components: - type: Transform pos: 55.5,61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4685 components: - type: Transform pos: 25.5,25.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4686 components: - type: Transform pos: 25.5,24.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4697 components: - type: Transform pos: 25.5,23.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6011 components: - type: Transform pos: 54.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6012 components: - type: Transform pos: 55.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6013 components: - type: Transform pos: 56.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6015 components: - type: Transform pos: 58.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6025 components: - type: Transform pos: 53.5,-17.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6345 components: - type: Transform pos: 46.5,34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7192 components: - type: Transform pos: 25.5,22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7702 components: - type: Transform pos: 47.5,26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8318 components: - type: Transform pos: 46.5,26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8320 components: - type: Transform pos: 45.5,26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8393 components: - type: Transform pos: 47.5,34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8394 components: - type: Transform pos: 44.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 9452 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-46.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9453 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-46.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9712 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-60.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9734 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-18.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9735 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-24.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9736 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-24.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9737 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-25.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9738 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-24.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9739 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-24.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9740 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-29.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9741 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-32.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9742 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-33.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9743 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-27.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9744 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-30.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9745 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-26.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9746 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-25.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9747 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-30.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9748 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-29.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9749 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-28.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9750 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-33.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9751 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-34.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9752 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-36.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9753 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-37.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9754 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-36.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9755 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-37.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9758 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-40.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9759 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-41.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9760 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-44.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9761 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-45.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9762 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-44.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9763 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-45.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9764 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-48.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9765 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-49.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9766 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-48.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9767 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-49.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9768 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-52.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9769 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-53.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9770 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-52.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9771 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-53.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9772 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-56.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9773 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-56.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9774 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-56.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9775 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-56.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9776 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-62.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9777 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-62.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9778 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-62.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9779 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-62.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9780 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-63.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9781 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-64.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9782 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-65.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9783 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-67.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9784 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-68.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 9785 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-69.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 11559 components: - type: Transform pos: 23.5,26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: RemoteSignaller entities: - uid: 421 @@ -56188,16 +56512,22 @@ entities: - type: Transform pos: 61.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4998 components: - type: Transform pos: 45.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7409 components: - type: Transform pos: 49.5,-12.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Screwdriver entities: - uid: 6566 @@ -56225,6 +56555,13 @@ entities: - type: Transform pos: 27.5,26.5 parent: 2 +- proto: SecurityIDCard + entities: + - uid: 7154 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 3564 - proto: SecurityTechFab entities: - uid: 10398 @@ -56542,16 +56879,22 @@ entities: - type: Transform pos: 40.5,49.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2424 components: - type: Transform pos: 61.5,35.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7236 components: - type: Transform pos: 55.5,59.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignAiUpload entities: - uid: 4663 @@ -56559,6 +56902,8 @@ entities: - type: Transform pos: 28.5,51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignalButton entities: - uid: 473 @@ -56581,6 +56926,8 @@ entities: 1254: - - Pressed - Toggle + - type: Fixtures + fixtures: {} - proto: SignalSwitchDirectional entities: - uid: 694 @@ -56625,6 +56972,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 1473 components: - type: Transform @@ -56658,6 +57007,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 2505 components: - type: Transform @@ -56681,6 +57032,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 2602 components: - type: Transform @@ -56704,6 +57057,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 2621 components: - type: Transform @@ -56732,6 +57087,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 2633 components: - type: Transform @@ -56750,6 +57107,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 2983 components: - type: Transform @@ -56763,6 +57122,8 @@ entities: - Off - - Off - On + - type: Fixtures + fixtures: {} - uid: 3006 components: - type: Transform @@ -56785,6 +57146,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 3033 components: - type: Transform @@ -56798,6 +57161,8 @@ entities: - Off - - Off - On + - type: Fixtures + fixtures: {} - uid: 3710 components: - type: Transform @@ -56811,6 +57176,8 @@ entities: - Off - - Off - On + - type: Fixtures + fixtures: {} - uid: 4510 components: - type: Transform @@ -56824,6 +57191,8 @@ entities: - Off - - Off - On + - type: Fixtures + fixtures: {} - uid: 4652 components: - type: Transform @@ -56857,6 +57226,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 4683 components: - type: Transform @@ -56870,6 +57241,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 5852 components: - type: Transform @@ -56883,6 +57256,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 5861 components: - type: Transform @@ -56896,6 +57271,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 5943 components: - type: Transform @@ -56913,6 +57290,8 @@ entities: - Off - - Off - On + - type: Fixtures + fixtures: {} - uid: 6579 components: - type: Transform @@ -56926,6 +57305,8 @@ entities: - Off - - Off - On + - type: Fixtures + fixtures: {} - uid: 6694 components: - type: Transform @@ -56954,6 +57335,8 @@ entities: - Off - - Off - On + - type: Fixtures + fixtures: {} - uid: 6731 components: - type: Transform @@ -57001,6 +57384,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 7005 components: - type: Transform @@ -57037,6 +57422,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7330 components: - type: Transform @@ -57065,6 +57452,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 7430 components: - type: Transform @@ -57102,6 +57491,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7435 components: - type: Transform @@ -57124,6 +57515,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7459 components: - type: Transform @@ -57150,6 +57543,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7461 components: - type: Transform @@ -57182,6 +57577,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7462 components: - type: Transform @@ -57204,6 +57601,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7467 components: - type: Transform @@ -57256,6 +57655,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7471 components: - type: Transform @@ -57278,6 +57679,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7473 components: - type: Transform @@ -57310,6 +57713,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7475 components: - type: Transform @@ -57327,6 +57732,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7477 components: - type: Transform @@ -57339,6 +57746,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 7480 components: - type: Transform @@ -57391,6 +57800,8 @@ entities: - On lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7481 components: - type: Transform @@ -57418,6 +57829,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7484 components: - type: Transform @@ -57440,6 +57853,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7488 components: - type: Transform @@ -57467,6 +57882,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7490 components: - type: Transform @@ -57493,6 +57910,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7491 components: - type: Transform @@ -57510,6 +57929,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7499 components: - type: Transform @@ -57531,6 +57952,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7502 components: - type: Transform @@ -57553,6 +57976,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7503 components: - type: Transform @@ -57585,6 +58010,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7507 components: - type: Transform @@ -57601,6 +58028,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7508 components: - type: Transform @@ -57617,6 +58046,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7509 components: - type: Transform @@ -57644,6 +58075,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7556 components: - type: Transform @@ -57661,6 +58094,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7557 components: - type: Transform @@ -57682,6 +58117,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7558 components: - type: Transform @@ -57703,6 +58140,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7562 components: - type: Transform @@ -57734,6 +58173,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7569 components: - type: Transform @@ -57760,6 +58201,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7570 components: - type: Transform @@ -57782,6 +58225,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7575 components: - type: Transform @@ -57824,6 +58269,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7576 components: - type: Transform @@ -57850,6 +58297,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7580 components: - type: Transform @@ -57876,6 +58325,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7590 components: - type: Transform @@ -57908,6 +58359,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7594 components: - type: Transform @@ -57935,6 +58388,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7596 components: - type: Transform @@ -57952,6 +58407,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 7600 components: - type: Transform @@ -57989,6 +58446,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7601 components: - type: Transform @@ -58006,6 +58465,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 7623 components: - type: Transform @@ -58037,6 +58498,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7626 components: - type: Transform @@ -58059,6 +58522,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7627 components: - type: Transform @@ -58131,6 +58596,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 7762 components: - type: Transform @@ -58154,6 +58621,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 7828 components: - type: Transform @@ -58181,6 +58650,8 @@ entities: - Off lastSignals: Status: True + - type: Fixtures + fixtures: {} - uid: 8324 components: - type: Transform @@ -58203,6 +58674,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 8339 components: - type: Transform @@ -58231,6 +58704,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 8343 components: - type: Transform @@ -58264,6 +58739,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 8593 components: - type: Transform @@ -58292,6 +58769,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 8598 components: - type: Transform @@ -58315,6 +58794,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10708 components: - type: Transform @@ -58328,6 +58809,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10747 components: - type: Transform @@ -58381,6 +58864,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10765 components: - type: Transform @@ -58409,6 +58894,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10766 components: - type: Transform @@ -58421,6 +58908,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10767 components: - type: Transform @@ -58434,6 +58923,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10768 components: - type: Transform @@ -58447,6 +58938,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10769 components: - type: Transform @@ -58460,6 +58953,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10770 components: - type: Transform @@ -58473,6 +58968,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10771 components: - type: Transform @@ -58486,6 +58983,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10772 components: - type: Transform @@ -58499,6 +58998,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10773 components: - type: Transform @@ -58512,6 +59013,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10774 components: - type: Transform @@ -58525,6 +59028,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10775 components: - type: Transform @@ -58538,6 +59043,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10776 components: - type: Transform @@ -58551,6 +59058,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10777 components: - type: Transform @@ -58564,6 +59073,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10778 components: - type: Transform @@ -58577,6 +59088,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10779 components: - type: Transform @@ -58590,6 +59103,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10780 components: - type: Transform @@ -58608,6 +59123,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10781 components: - type: Transform @@ -58626,6 +59143,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10782 components: - type: Transform @@ -58653,6 +59172,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10783 components: - type: Transform @@ -58671,6 +59192,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10784 components: - type: Transform @@ -58684,6 +59207,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10785 components: - type: Transform @@ -58702,6 +59227,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10786 components: - type: Transform @@ -58715,6 +59242,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - uid: 10788 components: - type: Transform @@ -58728,6 +59257,8 @@ entities: - Toggle - - Off - Toggle + - type: Fixtures + fixtures: {} - proto: SignAtmos entities: - uid: 3301 @@ -58735,6 +59266,8 @@ entities: - type: Transform pos: 31.5,1.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignBridge entities: - uid: 11400 @@ -58742,6 +59275,8 @@ entities: - type: Transform pos: 17.5,59.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCans entities: - uid: 2013 @@ -58749,12 +59284,16 @@ entities: - type: Transform pos: 36.5,-5.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2530 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,36.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignCansScience entities: - uid: 4939 @@ -58762,6 +59301,8 @@ entities: - type: Transform pos: 49.5,10.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChapel entities: - uid: 696 @@ -58769,6 +59310,8 @@ entities: - type: Transform pos: 4.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignChem entities: - uid: 607 @@ -58777,6 +59320,8 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalBridge entities: - uid: 4848 @@ -58785,18 +59330,24 @@ entities: rot: 3.141592653589793 rad pos: 35.5,8.75 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8278 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,17.75 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8281 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,6.75 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalDorms entities: - uid: 1075 @@ -58805,11 +59356,15 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,6.25 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11404 components: - type: Transform pos: 36.5,17.25 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEng entities: - uid: 5174 @@ -58818,32 +59373,58 @@ entities: rot: 3.141592653589793 rad pos: 35.5,8.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8285 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalEvac entities: + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-15.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-15.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 970 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,6.75 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4849 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,17.75 parent: 2 + - type: Fixtures + fixtures: {} - uid: 8280 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,7.75 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalMed entities: - uid: 11401 @@ -58851,12 +59432,16 @@ entities: - type: Transform pos: 36.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11405 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,8.25 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSci entities: - uid: 381 @@ -58865,17 +59450,23 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,6.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1801 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11403 components: - type: Transform pos: 40.5,17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignDirectionalSec entities: - uid: 1376 @@ -58884,11 +59475,15 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,6.25 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11402 components: - type: Transform pos: 40.5,17.25 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEngineering entities: - uid: 8279 @@ -58897,6 +59492,8 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignEVA entities: - uid: 8468 @@ -58904,6 +59501,8 @@ entities: - type: Transform pos: 54.5,37.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignInterrogation entities: - uid: 10323 @@ -58911,6 +59510,8 @@ entities: - type: Transform pos: 19.5,-31.5 parent: 3564 + - type: Fixtures + fixtures: {} - proto: SignMaterials entities: - uid: 1773 @@ -58919,12 +59520,16 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,30.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 5763 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,32.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMedical entities: - uid: 1481 @@ -58932,11 +59537,15 @@ entities: - type: Transform pos: 21.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 1482 components: - type: Transform pos: 14.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignMorgue entities: - uid: 427 @@ -58945,6 +59554,8 @@ entities: rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignScience entities: - uid: 4066 @@ -58952,11 +59563,15 @@ entities: - type: Transform pos: 47.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 7163 components: - type: Transform pos: 57.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurearea entities: - uid: 2772 @@ -58965,24 +59580,32 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,61.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2773 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,58.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 2774 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,56.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6525 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,51.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignSecurity entities: - uid: 11406 @@ -58991,6 +59614,8 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,4.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignServer entities: - uid: 3129 @@ -58998,6 +59623,8 @@ entities: - type: Transform pos: 3.5,5.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignShipDock entities: - uid: 2058 @@ -59006,12 +59633,16 @@ entities: rot: 1.5707963267948966 rad pos: 59.5,3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 6590 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-17.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignTelecomms entities: - uid: 2480 @@ -59019,6 +59650,8 @@ entities: - type: Transform pos: 3.5,7.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: SignToolStorage entities: - uid: 1436 @@ -59027,14 +59660,24 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,18.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 4852 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,22.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Sink entities: + - uid: 1505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,11.5 + parent: 2 - uid: 10557 components: - type: Transform @@ -59104,7 +59747,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 34.523518,48.651146 + pos: 56.550304,22.555624 parent: 2 - type: SmokeOnTrigger solution: @@ -59125,7 +59768,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 34.36329,48.41327 + pos: 56.456554,22.493124 parent: 2 - type: SmokeOnTrigger solution: @@ -59146,7 +59789,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 34.316414,48.522644 + pos: 56.59718,22.289999 parent: 2 - type: SmokeOnTrigger solution: @@ -59167,7 +59810,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 34.523518,48.32302 + pos: 56.40968,22.633749 parent: 2 - type: SmokeOnTrigger solution: @@ -59188,7 +59831,7 @@ entities: desc: A relaxing grenade that releases a large, long-lasting cloud of fun when used. name: party grenade - type: Transform - pos: 34.733295,48.78693 + pos: 56.28468,22.399374 parent: 2 - type: SmokeOnTrigger solution: @@ -60269,6 +60912,27 @@ entities: - type: Transform pos: 36.5,1.5 parent: 2 +- proto: SpawnPointGhostDerelictEngineeringCyborg + entities: + - uid: 139 + components: + - type: Transform + pos: 17.5,55.5 + parent: 2 +- proto: SpawnPointGhostDerelictJanitorCyborg + entities: + - uid: 1368 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 +- proto: SpawnPointGhostDerelictSyndicateAssaultCyborg + entities: + - uid: 5211 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 3564 - proto: SpawnPointHeadOfPersonnel entities: - uid: 2532 @@ -60534,11 +61198,15 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,2.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 11523 components: - type: Transform pos: 50.5,27.5 parent: 2 + - type: Fixtures + fixtures: {} - proto: Stool entities: - uid: 1925 @@ -60653,6 +61321,13 @@ entities: - type: Transform pos: 24.5,42.5 parent: 2 +- proto: SuitStorageSec + entities: + - uid: 1366 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 - proto: SurveillanceCameraCommand entities: - uid: 7457 @@ -61240,6 +61915,33 @@ entities: parent: 2 - type: SurveillanceCamera id: Chapel +- proto: Syringe + entities: + - uid: 7191 + components: + - type: Transform + pos: 63.5,29.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 10621 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 3564 - proto: Table entities: - uid: 31 @@ -61282,6 +61984,11 @@ entities: - type: Transform pos: 10.5,-8.5 parent: 2 + - uid: 531 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 - uid: 548 components: - type: Transform @@ -62194,14 +62901,6 @@ entities: - type: Transform pos: 26.5,-59.5 parent: 3564 -- proto: TableFancyBlack - entities: - - uid: 11351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 2 - proto: TableGlass entities: - uid: 793 @@ -62245,6 +62944,8 @@ entities: - type: PointLight color: '#FF3300FF' - type: ExplodeOnTrigger + keysIn: + - trigger - type: Explosive canCreateVacuum: False totalIntensity: 30 @@ -63970,11 +64671,6 @@ entities: - 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 @@ -64692,11 +65388,6 @@ 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 @@ -64707,11 +65398,6 @@ 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 @@ -66842,18 +67528,6 @@ entities: 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 @@ -68098,6 +68772,12 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-22.5 parent: 2 + - uid: 7233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-23.5 + parent: 2 - uid: 7237 components: - type: Transform @@ -68188,59 +68868,53 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-12.5 parent: 2 - - uid: 7339 + - uid: 7306 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,-18.5 + pos: 67.5,-24.5 parent: 2 - - uid: 7388 + - uid: 7307 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-25.5 parent: 2 - - uid: 7397 + - uid: 7308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-26.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-27.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-28.5 + parent: 2 + - uid: 7311 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-28.5 parent: 2 - - uid: 7399 + - uid: 7312 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-28.5 parent: 2 - - uid: 7401 + - uid: 7339 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 + pos: 67.5,-18.5 parent: 2 - proto: WallSolid entities: @@ -72271,11 +72945,15 @@ entities: - type: Transform pos: 26.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9672 components: - type: Transform pos: 13.5,-59.5 parent: 3564 + - type: Fixtures + fixtures: {} - proto: WarningO2 entities: - uid: 326 @@ -72283,11 +72961,15 @@ entities: - type: Transform pos: 24.5,-1.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9671 components: - type: Transform pos: 11.5,-59.5 parent: 3564 + - type: Fixtures + fixtures: {} - proto: WarningWaste entities: - uid: 3111 @@ -72295,11 +72977,15 @@ entities: - type: Transform pos: 24.5,-3.5 parent: 2 + - type: Fixtures + fixtures: {} - uid: 9687 components: - type: Transform pos: 16.5,-62.5 parent: 3564 + - type: Fixtures + fixtures: {} - proto: WaterTankFull entities: - uid: 1474 @@ -72386,66 +73072,131 @@ entities: - type: Transform pos: 33.5,55.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - uid: 1920 components: - type: Transform pos: 31.5,55.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - uid: 2188 components: - type: Transform pos: 34.5,50.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - uid: 2607 components: - type: Transform pos: 27.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - uid: 2762 components: - type: Transform pos: 21.5,57.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - uid: 2764 components: - type: Transform pos: 20.5,57.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - uid: 2766 components: - type: Transform pos: 19.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - uid: 2767 components: - type: Transform pos: 23.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - uid: 7555 components: - type: Transform pos: 25.5,57.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - uid: 7622 components: - type: Transform pos: 37.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - uid: 7628 components: - type: Transform pos: 42.5,47.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - uid: 7629 components: - type: Transform pos: 50.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - uid: 7630 components: - type: Transform pos: 49.5,50.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6658 + - 4557 + - 6155 - proto: WeaponEnergyTurretAIControlPanel entities: - uid: 4557 @@ -72454,18 +73205,70 @@ entities: rot: 3.141592653589793 rad pos: 29.5,49.5 parent: 2 + - type: DeviceList + devices: + - 2764 + - 2762 + - 2766 + - 2767 + - 7555 + - 2607 + - 1920 + - 1540 + - 2188 + - 7622 + - 7628 + - 7630 + - 7629 - uid: 6155 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,56.5 parent: 2 + - type: DeviceList + devices: + - 2764 + - 2762 + - 2766 + - 2767 + - 7555 + - 2607 + - 1920 + - 1540 + - 2188 + - 7622 + - 7628 + - 7630 + - 7629 - 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 + - 1920 + - 1540 + - 2188 + - 7622 + - 7628 + - 7630 + - 7629 +- proto: WeldedSteelApronBase + entities: + - uid: 6177 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 - proto: Welder entities: - uid: 7549 @@ -72528,428 +73331,566 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 44 components: - type: Transform pos: 19.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 57 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 59 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,23.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 80 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 84 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 123 components: - type: Transform pos: 50.5,35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 147 components: - type: Transform pos: 43.5,18.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 167 components: - type: Transform pos: 5.5,-4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 257 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 266 components: - type: Transform pos: 44.5,14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 467 components: - type: Transform pos: 18.5,8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 493 components: - type: Transform pos: 27.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 505 components: - type: Transform pos: 28.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 513 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 697 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,5.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 792 components: - type: Transform pos: 38.5,4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 956 components: - type: Transform pos: 32.5,7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1167 components: - type: Transform pos: 17.5,8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1291 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1294 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1370 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1396 components: - type: Transform pos: 61.5,42.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1692 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,23.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1807 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1922 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,24.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1945 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2045 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2046 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2132 components: - type: Transform pos: 37.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2380 components: - type: Transform pos: 50.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2959 components: - type: Transform pos: 58.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2960 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2966 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,16.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3171 components: - type: Transform pos: 37.5,28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3234 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,16.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3313 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,25.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3760 components: - type: Transform pos: 51.5,27.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3984 components: - type: Transform pos: 61.5,40.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4417 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,48.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5848 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6338 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6655 components: - type: Transform pos: 43.5,35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7157 components: - type: Transform pos: 5.5,8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7247 components: - type: Transform pos: 4.5,1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7249 components: - type: Transform pos: 5.5,1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7387 components: - type: Transform pos: 18.5,-4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7414 components: - type: Transform pos: 43.5,22.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8367 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,34.5 parent: 2 + - type: DeltaPressure + gridUid: 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 + - type: DeltaPressure + gridUid: 2 - uid: 10346 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-26.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10347 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-27.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10348 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-38.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10349 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-38.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10350 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-34.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10351 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-34.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10352 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-38.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10353 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-38.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10354 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-42.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10355 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-42.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10356 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-46.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10357 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-46.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10358 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-46.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10359 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-46.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10360 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-50.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10361 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-50.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10362 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-50.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10363 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-50.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10364 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-54.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10365 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-54.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10366 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-54.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10367 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-54.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10375 components: - type: Transform pos: 28.5,-62.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10427 components: - type: Transform pos: 37.5,53.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecure entities: - uid: 107 @@ -72957,11 +73898,15 @@ entities: - type: Transform pos: 13.5,4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 141 components: - type: Transform pos: 9.5,4.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureArmoryLocked entities: - uid: 10373 @@ -72970,24 +73915,32 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-59.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10374 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-58.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10376 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-61.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10377 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-66.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - proto: WindoorSecureChapelLocked entities: - uid: 356 @@ -72996,11 +73949,15 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 440 components: - type: Transform pos: -3.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureChemistryLocked entities: - uid: 547 @@ -73009,22 +73966,30 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1327 components: - type: Transform pos: 32.5,12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2222 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2484 components: - type: Transform pos: 31.5,12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureCommandLocked entities: - uid: 125 @@ -73032,6 +73997,8 @@ entities: - type: Transform pos: 57.5,26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - type: AccessReader access: - - Captain @@ -73040,6 +74007,8 @@ entities: - type: Transform pos: 57.5,27.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - type: AccessReader access: - - Captain @@ -73049,22 +74018,42 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,50.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 703 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,50.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 2034 + components: + - type: Transform + pos: 17.5,42.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 2037 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2399 components: - type: Transform pos: 59.5,26.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - type: DeviceLinkSource lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -239673.5 + secondsUntilStateChange: -248614.53 state: Opening - type: Airlock autoClose: False @@ -73074,18 +74063,24 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 4601 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,50.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11363 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,54.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureEngineeringLocked entities: - uid: 136 @@ -73094,40 +74089,54 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 321 components: - type: Transform pos: 60.5,60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1365 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,20.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1617 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,21.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2645 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8396 components: - type: Transform pos: 33.5,36.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8476 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureMedicalLocked entities: - uid: 609 @@ -73135,6 +74144,8 @@ entities: - type: Transform pos: 25.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - type: AccessReader access: - - Bar @@ -73147,24 +74158,32 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1089 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,16.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6975 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6997 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindoorSecureSecurityLawyerLocked entities: - uid: 1231 @@ -73173,12 +74192,16 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 10329 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-32.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -73192,6 +74215,8 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-32.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -73204,21 +74229,29 @@ entities: - type: Transform pos: 22.5,-62.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10369 components: - type: Transform pos: 23.5,-62.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10370 components: - type: Transform pos: 22.5,-56.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10371 components: - type: Transform pos: 23.5,-56.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - proto: WindoorSecureSecurityLocked entities: - uid: 1053 @@ -73227,12 +74260,16 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1097 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -73245,12 +74282,16 @@ entities: - type: Transform pos: 40.5,3.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1441 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -73258,12 +74299,28 @@ entities: 1097: - - DoorStatus - DoorBolt + - uid: 5342 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 3564 + - type: DeltaPressure + gridUid: 3564 + - uid: 5345 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 3564 + - type: DeltaPressure + gridUid: 3564 - uid: 10372 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-28.5 parent: 3564 + - type: DeltaPressure + gridUid: 3564 - proto: WindowDirectional entities: - uid: 471 @@ -73271,311 +74328,491 @@ entities: - type: Transform pos: 30.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 472 components: - type: Transform pos: 26.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 474 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 507 components: - type: Transform pos: 27.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 512 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 537 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 555 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 556 components: - type: Transform pos: 26.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 566 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,16.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 646 components: - type: Transform pos: 15.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 654 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 712 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 717 components: - type: Transform pos: 14.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 733 components: - type: Transform pos: 13.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 734 components: - type: Transform pos: 12.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 743 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 747 components: - type: Transform pos: 29.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 748 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 749 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1077 components: - type: Transform pos: 33.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1078 components: - type: Transform pos: 34.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1100 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1102 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1165 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1166 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1282 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1283 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1285 components: - type: Transform pos: 24.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1307 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1339 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1348 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1349 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 1353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,16.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 1535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,42.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 1539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,32.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 1562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,32.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 1756 + components: + - type: Transform + pos: 54.5,32.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2002 components: - type: Transform pos: 53.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2027 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2028 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2029 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 2031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,42.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 2032 + components: + - type: Transform + pos: 60.5,42.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 2035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,41.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2344 components: - type: Transform pos: 52.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2374 components: - type: Transform pos: 51.5,35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2375 components: - type: Transform pos: 52.5,35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2377 components: - type: Transform pos: 49.5,35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2393 components: - type: Transform pos: 51.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2394 components: - type: Transform pos: 49.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3043 components: - type: Transform pos: 53.5,35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 + - uid: 5599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,42.5 + parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6014 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6382 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6415 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6419 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6420 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6421 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6423 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 6438 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7298 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7299 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8365 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 8366 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: WindowReinforcedDirectional entities: - uid: 20 @@ -73584,368 +74821,440 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 26 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-12.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 309 components: - type: Transform pos: -6.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 310 components: - type: Transform pos: -5.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 311 components: - type: Transform pos: -4.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 313 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 314 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 315 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 316 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 417 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-7.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 418 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 419 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 581 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 601 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 688 components: - type: Transform pos: 57.5,60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 892 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1101 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,1.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1197 components: - type: Transform pos: -8.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1322 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,2.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1329 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1360 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-0.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1886 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-8.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1915 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-6.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1936 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,39.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 1937 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,38.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2229 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-5.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2337 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2376 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2557 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2600 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,62.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2601 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,61.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2629 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2631 components: - type: Transform pos: 59.5,60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2679 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2682 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2683 components: - type: Transform pos: 58.5,60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2701 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,60.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 2769 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,57.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3292 components: - type: Transform 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 + - type: DeltaPressure + gridUid: 2 - uid: 3811 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 3813 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 5343 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,34.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7116 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,35.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 7119 components: - type: Transform pos: 42.5,35.5 parent: 2 - - uid: 7285 - components: - - type: Transform - pos: 54.5,32.5 - parent: 2 - - uid: 7288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,32.5 - parent: 2 - - uid: 7289 - components: - - type: Transform - 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 + - type: DeltaPressure + gridUid: 2 - uid: 11201 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,33.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11202 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,32.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11203 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,31.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11204 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,30.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11205 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,29.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11206 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,28.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11357 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,15.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11358 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,14.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11359 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,13.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11360 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,11.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11361 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,10.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - uid: 11362 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,9.5 parent: 2 + - type: DeltaPressure + gridUid: 2 - proto: Wirecutter entities: - uid: 7520 diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_security.yml b/Resources/Prototypes/Catalog/Cargo/cargo_security.yml index 9ff3488a43..9b5c0ddad6 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_security.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_security.yml @@ -54,7 +54,7 @@ sprite: Clothing/Head/Hoods/Bio/security.rsi state: icon product: CrateSecurityBiosuit - cost: 800 + cost: 1600 category: cargoproduct-category-name-security group: market diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/emergency.yml b/Resources/Prototypes/Catalog/Fills/Boxes/emergency.yml index 972eb5074b..29f561c1b8 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/emergency.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/emergency.yml @@ -183,6 +183,7 @@ - id: DrinkWaterBottleFull - type: Tag tags: + - BoxCardboard - BoxHug - type: entity @@ -212,7 +213,7 @@ - id: EmergencyOxygenTankFilled - id: EmergencyMedipen - id: Flare - - id: FoodSnackNutribrick + - id: FoodBreadNutriBatard - id: DrinkWaterBottleFull - type: entity @@ -226,7 +227,7 @@ - id: EmergencyNitrogenTankFilled - id: EmergencyMedipen - id: Flare - - id: FoodSnackNutribrick + - id: FoodBreadNutriBatard - id: DrinkWaterBottleFull - type: Sprite layers: @@ -246,7 +247,7 @@ - id: EmergencyOxygenTankFilled - id: EmergencyMedipen - id: Flare - - id: FoodSnackNutribrick + - id: FoodBreadCottonNutriBatard - id: DrinkWaterBottleFull - type: entity diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml index 8ff7580d6c..bb13336a45 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml @@ -408,7 +408,7 @@ - type: Storage grid: - 0,0,5,3 - whitelist: + whitelist: # TODO cardboard boxes shouldn't have whitelisting tags: - Candle - type: StorageFill diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml b/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml index 59d18e32e3..9093aeffae 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/medical.yml @@ -102,7 +102,7 @@ layers: - state: box_medical # Corvax-Resprite - state: bodybags - - type: Storage + - type: Storage # TODO cardboard boxes shouldn't have whitelisting whitelist: tags: - BodyBag diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 1972e168f5..415109a845 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -315,7 +315,7 @@ id: LockerFillHeadOfSecurityNoHardsuit table: !type:AllSelector children: - - id: WeaponEnergyShotgun + - id: WeaponEnergyMagnum - id: BookSpaceLaw - id: BoxEncryptionKeySecurity - id: CigarGoldCase @@ -331,7 +331,6 @@ - id: RubberStampHos - id: BoxHoSCircuitboards - id: WeaponDisabler - - id: WeaponTaser - id: WantedListCartridge - id: DrinkHosFlask # Corvax-Start diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index 5ae5553622..4c48404414 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -28,7 +28,6 @@ children: - id: FlashlightSeclite - id: WeaponDisabler - - id: WeaponTaser - id: ClothingBeltSecurityFilled - id: Flash - id: ClothingEyesGlassesSecurity @@ -49,6 +48,7 @@ amount: 2 - id: NetworkConfigurator - id: Binoculars + - id: WeaponEnergyShotgun - type: entityTable id: FillLockerWardenHarduit @@ -75,7 +75,6 @@ - id: FlashlightSeclite prob: 0.8 - id: WeaponDisabler - - id: WeaponTaser - id: ClothingUniformJumpsuitSecGrey prob: 0.3 - id: ClothingHeadHelmetBasic @@ -111,7 +110,6 @@ table: !type:AllSelector children: - id: ClothingEyesGlassesSecurity - - id: WeaponTaser - id: WeaponDisabler - id: TrackingImplanter amount: 2 diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index 5273fa1453..d114136a04 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -1,529 +1,4 @@ -# Belts that need/have visualizers - -- type: entity - parent: ClothingBeltStorageBase - id: ClothingBeltUtility - name: utility belt - description: Can hold various things. - components: - - type: Sprite - sprite: Clothing/Belt/utility.rsi - - type: Clothing - sprite: Clothing/Belt/utility.rsi - - type: Storage - maxItemSize: Normal - # Don't add more than absolutely needed to this whitelist! - # Utility belts shouldn't just be free extra storage. - # This is only intended for basic engineering equipment. - whitelist: - tags: - - Powerdrill - - Wirecutter - - Crowbar - - Screwdriver - - Flashlight - - Wrench - - GeigerCounter - - Flare - - CableCoil - - CigPack - - Radio - - HolofanProjector - - Multitool - - AppraisalTool - - JawsOfLife - - GPS - - WeldingMask - - RemoteSignaller - - UtilityKnife - components: - - StationMap - - SprayPainter - - SprayPainterAmmo - - NetworkConfigurator - - RCD - - RCDAmmo - - Welder - - PowerCell - - Geiger - - TrayScanner - - GasAnalyzer - - HandLabeler - - type: ItemMapper - mapLayers: - drill: - whitelist: - tags: - - Powerdrill - cutters_red: - whitelist: - tags: - - Wirecutter - crowbar: - whitelist: - tags: - - Crowbar - crowbar_red: - whitelist: - tags: - - CrowbarRed - jaws: - whitelist: - tags: - - JawsOfLife - screwdriver_nuke: - whitelist: - tags: - - Screwdriver - wrench: - whitelist: - tags: - - Wrench - multitool: - whitelist: - tags: - - Multitool - sprite: Clothing/Belt/belt_overlay.rsi - - type: Appearance - - type: Tag - tags: - - UtilityBelt - - WhitelistChameleon - -- type: entity - parent: ClothingBeltStorageBase - id: ClothingBeltChiefEngineer - name: chief engineer's toolbelt - description: Holds tools, looks snazzy. - components: - - type: Sprite - sprite: Clothing/Belt/ce.rsi - - type: Clothing - sprite: Clothing/Belt/ce.rsi - - type: Storage - grid: - - 0,0,9,1 - # TODO: Fill this out more. - whitelist: - tags: - - Wirecutter - - Crowbar - - Screwdriver - - Flashlight - - Wrench - - GeigerCounter - - Flare - - CableCoil - - Powerdrill - - JawsOfLife - - CigPack - - Radio - - HolofanProjector - - Multitool - - AppraisalTool - - UtilityKnife - components: - - StationMap - - SprayPainter - - SprayPainterAmmo - - NetworkConfigurator - - RCD - - RCDAmmo - - Welder - - Flash - - Handcuff - - PowerCell - - Geiger - - TrayScanner - - GasAnalyzer - - type: ItemMapper - mapLayers: - drill: - whitelist: - tags: - - Powerdrill - cutters_red: - whitelist: - tags: - - Wirecutter - crowbar: - whitelist: - tags: - - Crowbar - crowbar_red: - whitelist: - tags: - - CrowbarRed - jaws: - whitelist: - tags: - - JawsOfLife - screwdriver_nuke: - whitelist: - tags: - - Screwdriver - multitool: - whitelist: - tags: - - Multitool - wrench: - whitelist: - tags: - - Wrench - sprite: Clothing/Belt/belt_overlay.rsi - - type: Appearance - - type: StealTarget - stealGroup: ChiefEngineerToolBelt - -- type: entity - parent: ClothingBeltStorageBase - id: ClothingBeltAssault - name: assault belt - description: A tactical assault belt. - components: - - type: Sprite - sprite: Clothing/Belt/assault.rsi - - type: Clothing - sprite: Clothing/Belt/assault.rsi - - type: Storage - whitelist: - tags: - - CigPack - - Taser - components: - - Stunbaton - - FlashOnTrigger - - SmokeOnTrigger - - Flash - - Handcuff - - BallisticAmmoProvider - - Ammo - - type: ItemMapper - mapLayers: - flashbang: - whitelist: - components: - - FlashOnTrigger - stunbaton: - whitelist: - components: - - Stunbaton - tear_gas_grenade: - whitelist: - components: - - SmokeOnTrigger - sprite: Clothing/Belt/belt_overlay.rsi - - type: Appearance - -- type: entity - parent: ClothingBeltStorageBase - id: ClothingBeltJanitor - name: janibelt - description: A belt used to hold most janitorial supplies. - components: - - type: Sprite - sprite: Clothing/Belt/janitor.rsi - - type: Clothing - sprite: Clothing/Belt/janitor.rsi - - type: Storage - whitelist: - tags: - - Wrench - - Bottle - - Spray - - Soap - - Flashlight - - CigPack - - TrashBag - - WetFloorSign - - HolosignProjector - - Plunger - - GoldenPlunger - - WireBrush - components: - - LightReplacer - - SmokeOnTrigger - maxItemSize: Large - - type: ItemMapper - mapLayers: - bottle: - whitelist: - tags: - - Bottle - bottle_spray: - whitelist: - tags: - - Spray - wrench: - whitelist: - tags: - - Wrench - sprite: Clothing/Belt/belt_overlay.rsi - - type: Appearance - -- type: entity - parent: ClothingBeltStorageBase - id: ClothingBeltMedical - name: medical belt - description: Can hold various medical equipment. - components: - - type: Sprite - sprite: Clothing/Belt/medical.rsi - - type: Clothing - sprite: Clothing/Belt/medical.rsi - - type: Storage - whitelist: - tags: - - Wrench - - Bottle - - Spray - - Brutepack - - Bloodpack - - Gauze - - Ointment - - CigPack - - PillCanister - - Radio - - DiscreteHealthAnalyzer - - SurgeryTool - - Dropper - components: - - Hypospray - - Injector - - Pill - - HandLabeler - - type: ItemMapper - mapLayers: - bottle: - whitelist: - tags: - - Bottle - hypo: - whitelist: - components: - - Hypospray - pill: - whitelist: - components: - - Pill - tags: - - PillCanister - bottle_spray: - whitelist: - tags: - - Spray - # spray_med: - # whitelist: - # tags: - # - SprayMedical - # wrench_medical: - # whitelist: - # tags: - # - WrenchMedical - wrench: - whitelist: - tags: - - Wrench - sprite: Clothing/Belt/belt_overlay.rsi - - type: Appearance - -- type: entity - parent: ClothingBeltMedical - id: ClothingBeltMedicalEMT - name: EMT belt - description: Perfect for holding various equipment for medical emergencies. - components: - - type: Sprite - sprite: Clothing/Belt/emt.rsi - - type: Clothing - sprite: Clothing/Belt/emt.rsi - -- type: entity - parent: ClothingBeltStorageBase - id: ClothingBeltPlant - name: botanical belt - description: A belt used to hold most hydroponics supplies. Suprisingly, not green. - components: - - type: Sprite - sprite: Clothing/Belt/plant.rsi - - type: Clothing - sprite: Clothing/Belt/plant.rsi - - type: Storage - whitelist: - tags: - # - PlantAnalyzer - - PlantSampleTaker - - BotanyShovel - - BotanyHoe - - BotanyHatchet - - PlantSampleTaker - - PlantBGone - - Bottle - - Syringe - - CigPack - - Dropper - components: - - Seed - - Smokable - - HandLabeler - - type: ItemMapper - mapLayers: - hatchet: - whitelist: - tags: - - BotanyHatchet - # hydro: - # whitelist: - # tags: - # - PlantAnalyzer # Dunno what to put here, should be aight. - hoe: - whitelist: - tags: - - BotanyHoe - secateurs: # We don't have secateurs and this looks similar enough. - whitelist: - tags: - - BotanyShovel - plantbgone: - whitelist: - tags: - - PlantBGone - bottle: - whitelist: - tags: - - Bottle - sprite: Clothing/Belt/belt_overlay.rsi - - type: Appearance - -- type: entity - parent: ClothingBeltStorageBase - id: ClothingBeltChef - name: chef belt - description: A belt used to hold kitchen knives and condiments for quick access. - components: - - type: Sprite - sprite: Clothing/Belt/chef.rsi - - type: Clothing - sprite: Clothing/Belt/chef.rsi - - type: Storage - whitelist: - tags: - - KitchenKnife - - Cleaver - - RollingPin - - Coldsauce - - Enzyme - - Hotsauce - - Ketchup - - BBQsauce - - SaltShaker - - PepperShaker - - CigPack - - Packet - - Skewer - - MonkeyCube - - Mayo - components: - - Mousetrap - - Smokable - - Utensil - - type: ItemMapper - mapLayers: - kitchenknife: - whitelist: - tags: - - KitchenKnife - cleaver: - whitelist: - tags: - - Cleaver - rollingpin: - whitelist: - tags: - - RollingPin - coldsauce: - whitelist: - tags: - - Coldsauce - enzyme: - whitelist: - tags: - - Enzyme - hotsauce: - whitelist: - tags: - - Hotsauce - ketchup: - whitelist: - tags: - - Ketchup - bbqsauce: - whitelist: - tags: - - BBQsauce - saltshaker: - whitelist: - tags: - - SaltShaker - peppershaker: - whitelist: - tags: - - PepperShaker - sprite: Clothing/Belt/belt_overlay.rsi - - type: Appearance - -- type: entity - parent: [ClothingBeltStorageBase, ContentsExplosionResistanceBase, BaseSecurityContraband] - id: ClothingBeltSecurity - name: security belt - description: Can hold security gear like handcuffs and flashes. - components: - - type: Sprite - sprite: Clothing/Belt/security.rsi - - type: Clothing - sprite: Clothing/Belt/security.rsi - - type: ExplosionResistance - damageCoefficient: 0.9 - - type: Storage - whitelist: - tags: - - CigPack - - Taser - - SecBeltEquip - - Radio - - Sidearm - - MagazinePistol - - MagazineMagnum - - CombatKnife - - Truncheon - - HandGrenade - components: - - Stunbaton - - FlashOnTrigger - - SmokeOnTrigger - - Flash - - Handcuff - - BallisticAmmoProvider - - CartridgeAmmo - - DoorRemote - - Whistle - - BalloonPopper - - type: ItemMapper - mapLayers: - flashbang: - whitelist: - components: - - FlashOnTrigger - stunbaton: - whitelist: - components: - - Stunbaton - tear_gas_grenade: - whitelist: - components: - - SmokeOnTrigger - sprite: Clothing/Belt/belt_overlay.rsi - - type: Appearance +## Belts that need/have visualizers - type: entity parent: [ClothingBeltBase, ClothingSlotBase, BaseCommandContraband] @@ -557,7 +32,36 @@ - CaptainSabre - type: Appearance -# Belts without visualizers +- type: entity + parent: ClothingBeltStorageBase + id: ClothingBeltQuiver + name: quiver + description: Can hold up to 15 arrows, and fits snug around your waist. + components: + - type: Sprite + sprite: Clothing/Belt/quiver.rsi + layers: + - state: icon + - map: [ "enum.StorageContainerVisualLayers.Fill" ] + visible: false + - type: Clothing + - type: Storage + grid: + - 0,0,7,3 + maxItemSize: Small + whitelist: + tags: + - Arrow + - Plunger + - type: Appearance + - type: StorageContainerVisuals + maxFillLevels: 3 + fillBaseName: fill- + - type: Construction + graph: Quiver + node: Quiver + +## Belts without visualizers - type: entity parent: [ClothingBeltAmmoProviderBase, BaseSecurityBartenderContraband] @@ -578,19 +82,24 @@ capacity: 14 - type: entity - parent: ClothingBeltBase - id: ClothingBeltChampion - name: championship belt - description: Proves to the world that you are the strongest! + parent: [ ClothingBeltStorageBase, BaseMagicalContraband ] + id: ClothingBeltWand + name: wand belt + description: A belt designed to hold various rods of power. A veritable fanny pack of exotic magic. components: - type: Sprite - sprite: Clothing/Belt/champion.rsi + sprite: Clothing/Belt/wand.rsi - type: Clothing - sprite: Clothing/Belt/champion.rsi - quickEquip: true - - type: Tag - tags: - - Kangaroo + sprite: Clothing/Belt/wand.rsi + - type: Storage + grid: + - 0,0,15,1 + whitelist: + tags: + - WizardWand + - WhitelistChameleon + +## Holsters - type: entity parent: ClothingBeltStorageBase @@ -616,20 +125,22 @@ sprite: Clothing/Belt/syndieholster.rsi - type: Clothing sprite: Clothing/Belt/syndieholster.rsi - - type: Item - size: Ginormous - type: Storage maxItemSize: Huge grid: - 0,0,3,3 whitelist: components: - - Gun - - BallisticAmmoProvider - - CartridgeAmmo + - Gun + - BallisticAmmoProvider + - CartridgeAmmo - type: StaticPrice price: 500 +## Webbing + +# Weirdly the only webbing with a storage whitelist and item mapper. +# Might be worth making less common (armory only?) and removing the whitelist to eliminate the inconsistency. - type: entity parent: ClothingBeltSecurity id: ClothingBeltSecurityWebbing @@ -688,50 +199,3 @@ sprite: Clothing/Belt/militarywebbingmed.rsi - type: Clothing sprite: Clothing/Belt/militarywebbingmed.rsi - - type: Item - size: Huge - - type: ExplosionResistance - damageCoefficient: 0.1 - -- type: entity - parent: ClothingBeltBase - id: ClothingBeltSuspendersRed - name: red suspenders - description: For holding your pants up. - components: - - type: Tag - tags: - - MimeBelt - - type: Sprite - sprite: Clothing/Belt/suspenders_red.rsi - state: icon - - type: Clothing - sprite: Clothing/Belt/suspenders_red.rsi - quickEquip: true - -- type: entity - parent: ClothingBeltSuspendersRed - id: ClothingBeltSuspendersBlack - name: black suspenders - components: - - type: Sprite - sprite: Clothing/Belt/suspenders_black.rsi - - type: Clothing - sprite: Clothing/Belt/suspenders_black.rsi - -- type: entity - parent: [ ClothingBeltStorageBase, BaseMagicalContraband ] - id: ClothingBeltWand - name: wand belt - description: A belt designed to hold various rods of power. A veritable fanny pack of exotic magic. - components: - - type: Sprite - sprite: Clothing/Belt/wand.rsi - - type: Clothing - sprite: Clothing/Belt/wand.rsi - - type: Storage - grid: - - 0,0,15,1 - whitelist: - tags: - - WizardWand diff --git a/Resources/Prototypes/Entities/Clothing/Belt/job.yml b/Resources/Prototypes/Entities/Clothing/Belt/job.yml new file mode 100644 index 0000000000..9f170017f5 --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Belt/job.yml @@ -0,0 +1,422 @@ +# Belts meant to be used by a specific job to hold their tools + +- type: entity + abstract: true + parent: ClothingBeltStorageBase + id: BaseClothingBeltEngineering + components: + - type: Storage + # Don't add more than absolutely needed to this whitelist! + # Utility belts shouldn't just be free extra storage. + # This is only intended for basic engineering equipment. + whitelist: + tags: + - Powerdrill + - Wirecutter + - Crowbar + - Screwdriver + - Flashlight + - Wrench + - GeigerCounter + - Flare + - CableCoil + - CigPack + - Radio + - HolofanProjector + - Multitool + - AppraisalTool + - JawsOfLife + - GPS + - WeldingMask + - RemoteSignaller + - UtilityKnife + components: + - StationMap + - SprayPainter + - SprayPainterAmmo + - NetworkConfigurator + - RCD + - RCDAmmo + - Welder + - PowerCell + - Geiger + - TrayScanner + - GasAnalyzer + - HandLabeler + - type: ItemMapper + sprite: &BeltOverlay Clothing/Belt/belt_overlay.rsi + mapLayers: + drill: + whitelist: + tags: + - Powerdrill + cutters_red: + whitelist: + tags: + - Wirecutter + crowbar: + whitelist: + tags: + - Crowbar + crowbar_red: + whitelist: + tags: + - CrowbarRed + jaws: + whitelist: + tags: + - JawsOfLife + screwdriver_nuke: + whitelist: + tags: + - Screwdriver + wrench: + whitelist: + tags: + - Wrench + multitool: + whitelist: + tags: + - Multitool + - type: Appearance + +- type: entity + parent: BaseClothingBeltEngineering + id: ClothingBeltUtility + name: utility belt + description: Can hold various things. + components: + - type: Sprite + sprite: Clothing/Belt/utility.rsi + - type: Clothing + sprite: Clothing/Belt/utility.rsi + - type: Tag + tags: + - UtilityBelt + - WhitelistChameleon + +- type: entity + parent: BaseClothingBeltEngineering + id: ClothingBeltChiefEngineer + name: chief engineer's toolbelt + description: Holds tools, looks snazzy. + components: + - type: Sprite + sprite: Clothing/Belt/ce.rsi + - type: Clothing + sprite: Clothing/Belt/ce.rsi + - type: Storage + grid: + - 0,0,9,1 + - type: StealTarget + stealGroup: ChiefEngineerToolBelt + +- type: entity + parent: ClothingBeltStorageBase + id: ClothingBeltJanitor + name: janibelt + description: A belt used to hold most janitorial supplies. + components: + - type: Sprite + sprite: Clothing/Belt/janitor.rsi + - type: Clothing + sprite: Clothing/Belt/janitor.rsi + - type: Storage + maxItemSize: Large + whitelist: + tags: + - Wrench + - Bottle + - Spray + - Soap + - Flashlight + - CigPack + - TrashBag + - WetFloorSign + - HolosignProjector + - Plunger + - GoldenPlunger + - WireBrush + components: + - LightReplacer + - SmokeOnTrigger + - type: ItemMapper + sprite: *BeltOverlay + mapLayers: + bottle: + whitelist: + tags: + - Bottle + bottle_spray: + whitelist: + tags: + - Spray + wrench: + whitelist: + tags: + - Wrench + - type: Appearance + +- type: entity + parent: ClothingBeltStorageBase + id: ClothingBeltMedical + name: medical belt + description: Can hold various medical equipment. + components: + - type: Sprite + sprite: Clothing/Belt/medical.rsi + - type: Clothing + sprite: Clothing/Belt/medical.rsi + - type: Storage + whitelist: + tags: + - Wrench + - Bottle + - Spray + - Brutepack + - Bloodpack + - Gauze + - Ointment + - CigPack + - PillCanister + - Radio + - DiscreteHealthAnalyzer + - SurgeryTool + - Dropper + components: + - Hypospray + - Injector + - Pill + - HandLabeler + - type: ItemMapper + sprite: *BeltOverlay + mapLayers: + bottle: + whitelist: + tags: + - Bottle + hypo: + whitelist: + components: + - Hypospray + pill: + whitelist: + components: + - Pill + tags: + - PillCanister + bottle_spray: + whitelist: + tags: + - Spray + # spray_med: + # whitelist: + # tags: + # - SprayMedical + # wrench_medical: + # whitelist: + # tags: + # - WrenchMedical + wrench: + whitelist: + tags: + - Wrench + - type: Appearance + +- type: entity + parent: ClothingBeltMedical + id: ClothingBeltMedicalEMT + name: EMT belt + description: Perfect for holding various equipment for medical emergencies. + components: + - type: Sprite + sprite: Clothing/Belt/emt.rsi + - type: Clothing + sprite: Clothing/Belt/emt.rsi + +- type: entity + parent: ClothingBeltStorageBase + id: ClothingBeltPlant + name: botanical belt + description: A belt used to hold most hydroponics supplies. Suprisingly, not green. + components: + - type: Sprite + sprite: Clothing/Belt/plant.rsi + - type: Clothing + sprite: Clothing/Belt/plant.rsi + - type: Storage + whitelist: + tags: + # - PlantAnalyzer + - PlantSampleTaker + - BotanyShovel + - BotanyHoe + - BotanyHatchet + - PlantSampleTaker + - PlantBGone + - Bottle + - Syringe + - CigPack + - Dropper + components: + - Seed + - Smokable + - HandLabeler + - type: ItemMapper + sprite: *BeltOverlay + mapLayers: + hatchet: + whitelist: + tags: + - BotanyHatchet + # hydro: + # whitelist: + # tags: + # - PlantAnalyzer # Dunno what to put here, should be aight. + hoe: + whitelist: + tags: + - BotanyHoe + secateurs: # We don't have secateurs and this looks similar enough. + whitelist: + tags: + - BotanyShovel + plantbgone: + whitelist: + tags: + - PlantBGone + bottle: + whitelist: + tags: + - Bottle + - type: Appearance + +- type: entity + parent: ClothingBeltStorageBase + id: ClothingBeltChef + name: chef belt + description: A belt used to hold kitchen knives and condiments for quick access. + components: + - type: Sprite + sprite: Clothing/Belt/chef.rsi + - type: Clothing + sprite: Clothing/Belt/chef.rsi + - type: Storage + whitelist: + tags: + - KitchenKnife + - Cleaver + - RollingPin + - Coldsauce + - Enzyme + - Hotsauce + - Ketchup + - BBQsauce + - SaltShaker + - PepperShaker + - CigPack + - Packet + - Skewer + - MonkeyCube + - Mayo + components: + - Mousetrap + - Smokable + - Utensil + - type: ItemMapper + sprite: *BeltOverlay + mapLayers: + kitchenknife: + whitelist: + tags: + - KitchenKnife + cleaver: + whitelist: + tags: + - Cleaver + rollingpin: + whitelist: + tags: + - RollingPin + coldsauce: + whitelist: + tags: + - Coldsauce + enzyme: + whitelist: + tags: + - Enzyme + hotsauce: + whitelist: + tags: + - Hotsauce + ketchup: + whitelist: + tags: + - Ketchup + bbqsauce: + whitelist: + tags: + - BBQsauce + saltshaker: + whitelist: + tags: + - SaltShaker + peppershaker: + whitelist: + tags: + - PepperShaker + - type: Appearance + +- type: entity + parent: [ClothingBeltStorageBase, ContentsExplosionResistanceBase, BaseSecurityContraband] + id: ClothingBeltSecurity + name: security belt + description: Can hold security gear like handcuffs and flashes. + components: + - type: Sprite + sprite: Clothing/Belt/security.rsi + - type: Clothing + sprite: Clothing/Belt/security.rsi + - type: ExplosionResistance + damageCoefficient: 0.9 + - type: Storage + whitelist: + tags: + - CigPack + - Taser + - SecBeltEquip + - Radio + - Sidearm + - MagazinePistol + - MagazineMagnum + - CombatKnife + - Truncheon + - HandGrenade + components: + - Stunbaton + - FlashOnTrigger + - SmokeOnTrigger + - Flash + - Handcuff + - BallisticAmmoProvider + - CartridgeAmmo + - DoorRemote + - Whistle + - BalloonPopper + - type: ItemMapper + sprite: *BeltOverlay + mapLayers: + flashbang: + whitelist: + components: + - FlashOnTrigger + stunbaton: + whitelist: + components: + - Stunbaton + tear_gas_grenade: + whitelist: + components: + - SmokeOnTrigger + - type: Appearance diff --git a/Resources/Prototypes/Entities/Clothing/Belt/quiver.yml b/Resources/Prototypes/Entities/Clothing/Belt/quiver.yml deleted file mode 100644 index bb4e395c4f..0000000000 --- a/Resources/Prototypes/Entities/Clothing/Belt/quiver.yml +++ /dev/null @@ -1,28 +0,0 @@ -- type: entity - parent: ClothingBeltStorageBase - id: ClothingBeltQuiver - name: quiver - description: Can hold up to 15 arrows, and fits snug around your waist. - components: - - type: Sprite - sprite: Clothing/Belt/quiver.rsi - layers: - - state: icon - - map: [ "enum.StorageContainerVisualLayers.Fill" ] - visible: false - - type: Clothing - - type: Storage - grid: - - 0,0,7,3 - maxItemSize: Small - whitelist: - tags: - - Arrow - - Plunger - - type: Appearance - - type: StorageContainerVisuals - maxFillLevels: 3 - fillBaseName: fill- - - type: Construction - graph: Quiver - node: Quiver diff --git a/Resources/Prototypes/Entities/Clothing/Belt/simple.yml b/Resources/Prototypes/Entities/Clothing/Belt/simple.yml new file mode 100644 index 0000000000..c1c9861f9f --- /dev/null +++ b/Resources/Prototypes/Entities/Clothing/Belt/simple.yml @@ -0,0 +1,44 @@ +# For cosmetic belts parenting off ClothingBeltBase + +- type: entity + parent: ClothingBeltBase + id: ClothingBeltChampion + name: championship belt + description: Proves to the world that you are the strongest! + components: + - type: Sprite + sprite: Clothing/Belt/champion.rsi + - type: Clothing + sprite: Clothing/Belt/champion.rsi + quickEquip: true + - type: Tag + tags: + - Kangaroo # Kangaroo wearable. Dare to challenge the champ? + - WhitelistChameleon + +- type: entity + parent: ClothingBeltBase + id: ClothingBeltSuspendersRed + name: red suspenders + description: For holding your pants up. + components: + - type: Sprite + sprite: Clothing/Belt/suspenders_red.rsi + state: icon + - type: Clothing + sprite: Clothing/Belt/suspenders_red.rsi + quickEquip: true + - type: Tag + tags: + - MimeBelt + - WhitelistChameleon + +- type: entity + parent: ClothingBeltSuspendersRed + id: ClothingBeltSuspendersBlack + name: black suspenders + components: + - type: Sprite + sprite: Clothing/Belt/suspenders_black.rsi + - type: Clothing + sprite: Clothing/Belt/suspenders_black.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml index 4da176e2ed..eb5827e013 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/bio.yml @@ -1,5 +1,5 @@ - type: entity - parent: ClothingOuterBaseLarge + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothingGasTanks] id: ClothingOuterBioGeneral name: bio suit suffix: Generic @@ -64,7 +64,7 @@ sprite: Clothing/OuterClothing/Bio/scientist.rsi - type: entity - parent: [ClothingOuterBioGeneral, BaseSecurityContraband] + parent: [ClothingOuterBaseLarge, AllowSuitStorageClothing, BaseSecurityContraband] id: ClothingOuterBioSecurity name: bio suit suffix: Security @@ -82,7 +82,11 @@ Piercing: 0.8 - type: ZombificationResistance zombificationResistanceCoefficient: 0.4 - + - type: GroupExamine + - type: ClothingSpeedModifier + walkModifier: 0.95 + sprintModifier: 0.95 + - type: entity parent: ClothingOuterBioGeneral id: ClothingOuterBioVirology diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index 93a209c6be..068ed1a511 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -288,6 +288,8 @@ tags: - CorgiWearable - WhitelistChameleon + - type: AddAccentClothing + accent: BarkAccent - type: entity parent: ClothingOuterBase diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/instruments.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/instruments.yml index 93e7e58e88..6131844472 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/instruments.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/instruments.yml @@ -119,10 +119,6 @@ weight: 0.1 children: - id: DawInstrumentMachineCircuitboard - - !type:GroupSelector - weight: 0.05 - children: - - id: SuperSynthesizerInstrument - type: entityTable id: SalvageInstrumentTable @@ -140,8 +136,6 @@ tableId: WoodwindInstrumentTable - !type:NestedSelector tableId: SpecialInstrumentTable - - id: SuperSynthesizerInstrument - weight: 0.3 - type: entity id: RandomInstruments diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_parts.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_parts.yml index 0643c5cbd4..ccf1a687b8 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_parts.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_parts.yml @@ -13,6 +13,52 @@ !type:SimpleColoring color: "#937e3d" +- type: marking + # The cere is the base of the top part of the beak, the cere on this beak, is a square. + id: VoxBeakSquareCere + bodyPart: Snout + markingCategory: Snout + forcedColoring: true + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: beak_squarecere + coloring: + default: + type: + !type:SimpleColoring + color: "#937e3d" + +- type: marking + id: VoxBeakShaved + bodyPart: Snout + markingCategory: Snout + forcedColoring: true + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: beak_shaved + coloring: + default: + type: + !type:SimpleColoring + color: "#937e3d" + +- type: marking + id: VoxBeakHooked + bodyPart: Snout + markingCategory: Snout + forcedColoring: true + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_parts.rsi + state: beak_hooked + coloring: + default: + type: + !type:SimpleColoring + color: "#937e3d" + - type: marking id: VoxLArmScales bodyPart: LArm diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml index cf350da60d..75d2503528 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml @@ -54,6 +54,50 @@ - sprite: Mobs/Customization/vox_tattoos.rsi state: nightling_s +- type: marking + id: TattooVoxNightbelt + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: nightbelt + +- type: marking + id: TattooVoxChestV + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: chest_v_1 + - sprite: Mobs/Customization/vox_tattoos.rsi + state: chest_v_2 + +- type: marking + id: TattooVoxUnderbelly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: underbelly + - type: marking id: TattooVoxTailRing # TODO // Looks off on some tails (i.e docked/amputated), if conditionals for markings ever get implemented this needs to be updated to account for those. @@ -130,4 +174,126 @@ forcedColoring: true sprites: - sprite: Mobs/Customization/vox_tattoos.rsi - state: eyeshadow_large \ No newline at end of file + state: eyeshadow_large + +- type: marking + id: VoxTattooEyeliner + bodyPart: Eyes + markingCategory: Overlay + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: eyeliner + +- type: marking + id: VoxBeakCoverStripe + bodyPart: Snout + markingCategory: SnoutCover + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: beakcover_stripe + +- type: marking + id: VoxBeakCoverTip + bodyPart: Snout + markingCategory: SnoutCover + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: beakcover_tip + +- type: marking + id: TattooVoxArrowHead + bodyPart: Head + markingCategory: Head + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: tattoo_arrow_head + +- type: marking + id: TattooVoxNightlingHead + bodyPart: Head + markingCategory: Head + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: tattoo_nightling_head + +- type: marking + id: VoxVisage + bodyPart: Head + markingCategory: Head + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: visage + +- type: marking + id: VoxVisageL + bodyPart: Head + markingCategory: Head + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: visage_l + +- type: marking + id: VoxVisageR + bodyPart: Head + markingCategory: Head + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: visage_r + +- type: marking + id: VoxCheek + bodyPart: Head + markingCategory: Head + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: cheekblush + diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index e6b761d515..c812140812 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1215,6 +1215,8 @@ true NavSmash: !type:Bool true + - type: Puller + needsHands: false - type: Prying pryPowered: true force: true @@ -1978,6 +1980,12 @@ parent: MobMouse id: MobMouseCancer components: + - type: GhostRole + name: ghost-role-information-cancer-mouse-name + description: ghost-role-information-cancer-mouse-description + rules: ghost-role-information-freeagent-rules + mindRoles: + - MindRoleGhostRoleFreeAgent - type: Sprite color: LightGreen - type: PointLight diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index 58c4e9c22b..ba8ee70b1a 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -393,6 +393,7 @@ - type: NpcFactionMember factions: - Xeno + - SimpleHostile - type: MeleeWeapon angle: 0 animation: WeaponArcBite diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index cb0cfdb693..08bdbe8ebb 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -76,7 +76,7 @@ components: - type: Spectral - type: Tag - tags: + tags: # BAD: Intentional removal of inherited tag - AllowGhostShownByEvent - type: entity diff --git a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml index 229c2da027..5dc127878f 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml @@ -109,6 +109,24 @@ 32: sprite: Mobs/Species/Human/displacement.rsi state: jumpsuit-female + - type: Instrument + program: 13 # Xylophone. Woodblock is 115 (another good option) + - type: ActivatableUI + blockSpectators: true # otherwise they can play client-side music + inHandsOnly: false + singleUser: true + requiresComplex: true + verbOnly: true + verbText: verb-instrument-openui + key: enum.InstrumentUiKey.Key + - type: UserInterface + interfaces: + enum.InstrumentUiKey.Key: + type: InstrumentBoundUserInterface + enum.HumanoidMarkingModifierKey.Key: + type: HumanoidMarkingModifierBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index b49d0fb409..44687ac544 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -30,6 +30,44 @@ - type: Damageable damageContainer: Biological damageModifierSet: Vox + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 400 + behaviors: + - !type:GibBehavior { } + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 1500 + behaviors: + - !type:SpawnEntitiesBehavior + spawnInContainer: true + spawn: + FoodMeatChickenFriedVox: + min: 3 + max: 5 + - !type:BurnBodyBehavior { } + - !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: PassiveDamage # Augment normal health regen to be able to tank some Poison damage # This allows Vox to take their mask off temporarily to eat something without needing a trip to medbay afterwards. diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_base.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_base.yml index c4e8b020e7..14e4b741c5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_base.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_base.yml @@ -91,7 +91,7 @@ # map: ["enum.OpenableVisuals.Layer"] ## Bases for visuals -# TODO standardize state names for fill levels and openable visuals +# New drinks should mirror these state names to reduce clutter when creating new prototypes # Basic visualizer for an openable entity. Requires DrinkBaseOpenable - type: entity @@ -103,13 +103,14 @@ visuals: enum.OpenableVisuals.Opened: enum.OpenableVisuals.Layer: - True: {state: "icon_open"} - False: {state: "icon"} + True: {state: "icon_open"} # lid off + False: {state: "icon"} # lid on - type: Sprite layers: - state: icon map: ["enum.OpenableVisuals.Layer"] - type: ExaminableSolution + solution: *sol examinableWhileClosed: false # If you can't see the fill levels on the sprite, we can assume it's opaque heldOnly: true # If it's opaque, you probably can't see through the open lid from a distance @@ -121,11 +122,12 @@ - type: Appearance - type: Sprite layers: - - state: icon_empty + - state: icon - state: fill-1 map: ["enum.SolutionContainerLayers.Fill"] visible: false - type: SolutionContainerVisuals + solutionName: *sol maxFillLevels: 5 fillBaseName: fill- inHandsMaxFillLevels: 3 @@ -139,7 +141,7 @@ components: - type: Sprite layers: - - state: icon_empty + - state: icon map: [ "enum.SolutionContainerLayers.Base" ] - state: fill-1 map: [ "enum.SolutionContainerLayers.Fill" ] @@ -169,8 +171,8 @@ visuals: enum.OpenableVisuals.Opened: enum.OpenableVisuals.Layer: - True: {state: "icon_open"} - False: {state: "icon_empty"} + True: {state: "icon_open"} # lid off + False: {state: "icon_empty"} # lid on - type: Sprite layers: - state: icon_empty diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_base_materials.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_base_materials.yml index 7db03edbf5..43df992b2a 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_base_materials.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_base_materials.yml @@ -117,6 +117,34 @@ materialComposition: Plastic: 25 +# Strong plastic +- type: entity + abstract: true + parent: DrinkBaseMaterialPlastic + id: DrinkBaseMaterialStrongPlastic + components: + - type: Destructible + thresholds: + - trigger: # Overkill threshold + !type:DamageTrigger + damage: 200 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 20 # can take a few more hits than basic plastic + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalCrunch # TODO a plastic break collection + - !type:SpillBehavior { } + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: PhysicalComposition + materialComposition: + Plastic: 100 + # Fragile cardboard - type: entity abstract: true diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles_glass.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles_glass.yml index ec6bdf8002..3aa1e1d547 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles_glass.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles_glass.yml @@ -106,7 +106,7 @@ - type: Sprite sprite: Objects/Consumable/Drinks/alco-bottle.rsi layers: - - state: icon_blue # todo add "icon_empty" state + - state: icon_empty map: ["enum.OpenableVisuals.Layer"] - state: fill-6 map: ["enum.SolutionContainerLayers.Fill"] @@ -260,7 +260,7 @@ - type: Sprite sprite: Objects/Consumable/Drinks/alco-bottle.rsi layers: - - state: icon_green # todo icon_empty + - state: icon_empty map: ["enum.OpenableVisuals.Layer"] - state: fill-6 map: ["enum.SolutionContainerLayers.Fill"] diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml index 3102ffc522..bb3eb76c29 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -9,7 +9,7 @@ solutions: drink: maxVol: 30 - grindable: + grindable: &grindable reagents: # 5u -> 1/2 steel sheet (10u) - ReagentId: Aluminium # Fun fact: soda can makeup is approx. 75% aluminium and 25% tin/iron. Quantity: 4 @@ -51,12 +51,7 @@ reagents: - ReagentId: Cola Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Tag tags: - Cola @@ -76,12 +71,7 @@ solutions: drink: maxVol: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Tag tags: - Cola @@ -101,12 +91,7 @@ reagents: - ReagentId: IcedTea Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/ice_tea_can.rsi - type: Item @@ -125,12 +110,7 @@ reagents: - ReagentId: LemonLime Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/lemon-lime.rsi - type: Item @@ -149,12 +129,7 @@ reagents: - ReagentId: LemonLimeCranberry Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/lemon-lime-cranberry.rsi - type: Item @@ -206,12 +181,7 @@ reagents: - ReagentId: GrapeSoda Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/purple_can.rsi - type: Item @@ -230,12 +200,7 @@ reagents: - ReagentId: RootBeer Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/rootbeer.rsi - type: Item @@ -258,12 +223,7 @@ reagents: - ReagentId: SodaWater Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/sodawater.rsi - type: Item @@ -282,12 +242,7 @@ reagents: - ReagentId: SpaceMountainWind Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/space_mountain_wind.rsi - type: Item @@ -306,12 +261,7 @@ reagents: - ReagentId: SpaceUp Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/space-up.rsi - type: Item @@ -330,12 +280,7 @@ reagents: - ReagentId: SolDry Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/sol_dry.rsi - type: Item @@ -354,12 +299,7 @@ reagents: - ReagentId: Starkist Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/starkist.rsi - type: Item @@ -378,12 +318,7 @@ reagents: - ReagentId: TonicWater Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/tonic.rsi - type: Item @@ -402,12 +337,7 @@ reagents: - ReagentId: FourteenLoko Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/fourteen_loko.rsi - type: Item @@ -426,12 +356,7 @@ reagents: - ReagentId: ChangelingSting Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/changelingsting.rsi - type: Item @@ -450,12 +375,7 @@ reagents: - ReagentId: DrGibb Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/dr_gibb.rsi - type: Item @@ -478,12 +398,7 @@ Quantity: 20 - ReagentId: Ice Quantity: 5 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/robustnukie.rsi - type: Item @@ -502,12 +417,7 @@ reagents: - ReagentId: EnergyDrink Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/energy_drink.rsi - type: Item @@ -526,12 +436,7 @@ reagents: - ReagentId: ShamblersJuice Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/shamblersjuice.rsi - type: Item @@ -550,12 +455,7 @@ reagents: - ReagentId: PwrGame Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/pwrgame.rsi - type: Item @@ -574,12 +474,7 @@ reagents: - ReagentId: Beer Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/beer_can.rsi - type: Item @@ -602,12 +497,7 @@ reagents: - ReagentId: Wine Quantity: 30 - grindable: - reagents: - - ReagentId: Aluminium - Quantity: 4 - - ReagentId: Iron - Quantity: 1 + grindable: *grindable - type: Sprite sprite: Objects/Consumable/Drinks/wine_can.rsi - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml index e1fe78c433..7b1320ba49 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml @@ -22,22 +22,16 @@ # A mug is a type of cup.[2] - type: entity abstract: true - parent: [ DrinkBaseMaterialPorcelain, DrinkBaseCup ] # todo Should use DrinkVisualsFill, but inheritors have no in-hand and state names are wrong + parent: [ DrinkBaseMaterialPorcelain, DrinkBaseCup, DrinkVisualsFill ] id: DrinkBaseMug name: mug description: A mug. components: - type: Sprite sprite: Objects/Consumable/Drinks/mug.rsi - layers: - - state: icon-0 - - state: icon-3 - map: ["enum.SolutionContainerLayers.Fill"] - visible: false - - type: Appearance - type: SolutionContainerVisuals maxFillLevels: 3 - fillBaseName: icon- + inHandsFillBaseName: null ## Misc Cups @@ -53,18 +47,13 @@ price: 125 - type: entity - parent: DrinkBaseMug + parent: DrinkBaseMug # a teacup is basically a mug id: DrinkTeacupEmpty name: teacup description: A plain white porcelain teacup. components: - type: Sprite sprite: Objects/Consumable/Drinks/teacup.rsi - layers: - - state: icon-0 - - state: icon-4 - map: ["enum.SolutionContainerLayers.Fill"] - visible: false - type: SolutionContainerVisuals maxFillLevels: 4 @@ -76,20 +65,11 @@ components: - type: Sprite sprite: Objects/Consumable/Drinks/glass_coupe_shape.rsi - layers: - - state: icon # todo add "icon_empty" state to match DrinkVisualsFillOverlay - map: [ "enum.SolutionContainerLayers.Base" ] - - state: fill1 - map: [ "enum.SolutionContainerLayers.Fill" ] - visible: false - - state: icon-front - map: [ "enum.SolutionContainerLayers.Overlay" ] - type: SolutionContainerVisuals - fillBaseName: fill # todo rename to "fill-" to match DrinkVisualsFillOverlay inHandsMaxFillLevels: 1 - type: entity - parent: [DrinkBaseMaterialCardboard, DrinkBaseCup] # TODO should use DrinkVisualsFill but state names are wrong and no inhand + parent: [DrinkBaseMaterialCardboard, DrinkBaseCup, DrinkBaseEmptyTrash, DrinkVisualsFill] id: DrinkWaterCup name: water cup description: A paper water cup. @@ -102,22 +82,14 @@ size: Tiny - type: Sprite sprite: Objects/Consumable/Drinks/water_cup.rsi - layers: - - state: icon-0 - - state: icon-1 - map: ["enum.SolutionContainerLayers.Fill"] - visible: false - type: SolutionContainerVisuals maxFillLevels: 1 - fillBaseName: icon- + inHandsFillBaseName: null - type: Tag tags: - Trash - DrinkCup - WhitelistChameleon - - type: Appearance - - type: TrashOnSolutionEmpty - solution: drink - type: Clothing slots: - HEAD @@ -240,16 +212,13 @@ - ReagentId: HotCocoa Quantity: 20 - type: Icon - sprite: Objects/Consumable/Drinks/hot_coco.rsi - state: icon-vend + sprite: Objects/Consumable/Drinks/mug.rsi + state: icon-vend-brown - type: Sprite - sprite: Objects/Consumable/Drinks/hot_coco.rsi layers: - - state: icon-0 - - map: ["enum.SolutionContainerLayers.Fill"] - state: icon-4 - - type: SolutionContainerVisuals - maxFillLevels: 4 + - state: icon + - state: fill-3 + map: ["enum.SolutionContainerLayers.Fill"] - type: TrashOnSolutionEmpty solution: drink @@ -267,16 +236,13 @@ - ReagentId: Coffee Quantity: 20 - type: Icon - sprite: Objects/Consumable/Drinks/hot_coffee.rsi - state: icon-vend + sprite: Objects/Consumable/Drinks/mug.rsi + state: icon-vend-brown - type: Sprite - sprite: Objects/Consumable/Drinks/hot_coffee.rsi layers: - - state: icon-0 - - map: ["enum.SolutionContainerLayers.Fill"] - state: icon-4 - - type: SolutionContainerVisuals - maxFillLevels: 4 + - state: icon + - state: fill-3 + map: ["enum.SolutionContainerLayers.Fill"] - type: TrashOnSolutionEmpty solution: drink @@ -293,16 +259,17 @@ reagents: - ReagentId: CafeLatte Quantity: 20 + - type: Icon + sprite: Objects/Consumable/Drinks/cafe_latte.rsi + state: icon-vend - type: Sprite sprite: Objects/Consumable/Drinks/cafe_latte.rsi layers: - - state: icon_empty - - state: fill-1 - map: ["enum.SolutionContainerLayers.Fill"] - - type: Appearance + - state: icon + - state: fill-1 + map: ["enum.SolutionContainerLayers.Fill"] - type: SolutionContainerVisuals maxFillLevels: 1 - fillBaseName: fill- changeColor: false - type: TrashOnSolutionEmpty solution: drink diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml index 1197356553..f7c984171d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_fun.yml @@ -8,9 +8,9 @@ collection: packetOpenSounds - type: Sprite layers: - - state: icon + - state: icon_empty map: ["enum.OpenableVisuals.Layer"] - - state: fill6 + - state: fill-6 map: [ "enum.SolutionContainerLayers.Fill" ] # already has liquid, so no visible: false - state: icon-front map: [ "enum.SolutionContainerLayers.Overlay" ] @@ -20,13 +20,6 @@ maxVol: 30 - type: SolutionContainerVisuals maxFillLevels: 6 - fillBaseName: fill # TODO rename to "fill-" - - type: GenericVisualizer - visuals: - enum.OpenableVisuals.Opened: - enum.OpenableVisuals.Layer: - True: {state: "icon_open"} - False: {state: "icon"} - type: TrashOnSolutionEmpty solution: drink @@ -97,8 +90,6 @@ components: - type: Sprite sprite: Objects/Consumable/Drinks/jar_what.rsi - - type: ExaminableSolution - solution: drink - type: FitsInDispenser solution: drink - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_metamorphic.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_metamorphic.yml index d4fe5da5b6..10a2b76657 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_metamorphic.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_metamorphic.yml @@ -4,35 +4,23 @@ # Transformable container - normal glass - type: entity - parent: [DrinkBaseMaterialGlass, DrinkBaseCup] # todo parent to DrinkVisualsFillOverlay after in-hands are added + parent: [DrinkBaseMaterialGlass, DrinkBaseCup, DrinkVisualsFillOverlay] id: DrinkGlass name: metamorphic glass description: A metamorphic glass that automagically turns into a glass appropriate for the drink within. There's a sanded off patent number on the bottom. components: - type: Sprite sprite: Objects/Consumable/Drinks/glass_clear.rsi - layers: - - state: icon # TODO add "icon_empty" state to match "DrinkVisualsFillOverlay" - map: [ "enum.SolutionContainerLayers.Base" ] - - state: fill1 - map: [ "enum.SolutionContainerLayers.Fill" ] - visible: false - - state: icon-front - map: [ "enum.SolutionContainerLayers.Overlay" ] - - type: Appearance - type: SolutionContainerManager solutions: drink: maxVol: 30 - type: SolutionContainerVisuals maxFillLevels: 9 - fillBaseName: fill # todo rename to "fill-", add in-hands, then add parent "DrinkVisualsFillOverlay" metamorphic: true metamorphicDefaultSprite: sprite: Objects/Consumable/Drinks/glass_clear.rsi state: icon - inHandsMaxFillLevels: 3 - inHandsFillBaseName: -fill- - type: Tag tags: - DrinkCup # Do these tags @@ -47,14 +35,6 @@ components: - type: Sprite sprite: Objects/Consumable/Drinks/jar.rsi - layers: - - state: icon - map: [ "enum.SolutionContainerLayers.Base" ] - - state: fill1 - map: [ "enum.SolutionContainerLayers.Fill" ] - visible: false - - state: icon-front - map: [ "enum.SolutionContainerLayers.Overlay" ] - type: SolutionContainerManager solutions: drink: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml index adc99f46ad..931620b665 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_special.yml @@ -12,17 +12,8 @@ size: Tiny - type: Sprite sprite: Objects/Consumable/Drinks/shotglass.rsi - layers: - - state: icon # TODO add "icon_empty" state to match "DrinkVisualsFillOverlay" - map: [ "enum.SolutionContainerLayers.Base" ] - - state: fill1 - map: [ "enum.SolutionContainerLayers.Fill" ] - visible: false - - state: icon-front - map: [ "enum.SolutionContainerLayers.Overlay" ] - type: SolutionContainerVisuals maxFillLevels: 2 - fillBaseName: fill # TODO rename to "fill-" to match "DrinkVisualsFillOverlay" inHandsMaxFillLevels: 1 - type: FitsInDispenser solution: drink @@ -146,6 +137,21 @@ reactionTypes: - Shake +- type: entity + parent: DrinkShaker + id: DrinkShakerGold + name: golden shaker + description: A gold-plated shaker given as a token of appreciation for years of service. It doesn't make the drinks taste any different. + components: + - type: Sprite + sprite: Objects/Consumable/Drinks/shaker_gold.rsi + - type: Item + sprite: Objects/Consumable/Drinks/shaker_gold.rsi + - type: PhysicalComposition + materialComposition: + Gold: 10 # Gold plated, not solid gold + Steel: 40 + - type: entity parent: [DrinkBaseMaterialMetal, DrinkBase] id: DrinkJigger @@ -184,11 +190,6 @@ maxVol: 60 - type: Sprite sprite: Objects/Consumable/Drinks/pitcher.rsi - layers: - - state: icon # TODO add "icon_empty" state to match "DrinkVisualsFill" - - state: fill-1 - map: ["enum.SolutionContainerLayers.Fill"] - visible: false - type: SolutionContainerVisuals maxFillLevels: 6 inHandsMaxFillLevels: 2 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml index bce7ace58a..d9475c9ebe 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml @@ -731,7 +731,7 @@ name: crostini parent: FoodBreadSliceBase id: FoodBreadBaguetteSlice - description: Bon ap-petite! + description: Bon ap-pétite! components: - type: Sprite state: crostini @@ -753,7 +753,7 @@ parent: FoodBreadBaguetteSlice id: FoodBreadBaguetteCottonSlice name: cotton crostini - description: Bon az-zetite! + description: Bon az-zétite! components: - type: Sprite state: crostini-cotton @@ -1001,3 +1001,57 @@ damage: groups: Brute: 1 + +- type: entity + parent: FoodBreadBase + id: FoodBreadNutriBatard + name: nutri-bâtard + description: bon 'pétite! + components: + - type: Sprite + sprite: Objects/Consumable/Food/Baked/bread.rsi + state: batard + - type: Item + size: Small + storedOffset: -1,0 + heldPrefix: batard + - type: Tag + tags: + - ReptilianFood + - type: FlavorProfile + flavors: + - nutribrick + - peppery + - salty + - bread + +- type: entity + parent: FoodBreadNutriBatard + id: FoodBreadCottonNutriBatard + name: cotton nutri-bâtard + description: bon 'pétite! + components: + - type: Edible + requiresSpecialDigestion: true + - type: Sprite + sprite: Objects/Consumable/Food/Baked/bread.rsi + state: batard-cotton + - type: FlavorProfile + flavors: + - peppery + - salty + - bread + - type: Tag + tags: + - ClothMade + - type: Item + size: Small + storedOffset: -1,0 + heldPrefix: batard-cotton + - type: SolutionContainerManager + solutions: + food: + maxVol: 26 + reagents: + - ReagentId: Fiber + Quantity: 20 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index 5717a12462..0e8f0ce56d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -533,6 +533,7 @@ tags: - Trash - HappyHonk + - BoxCardboard - type: StorageFill contents: - id: ToyMouse @@ -704,7 +705,8 @@ - type: Tag tags: - Trash - - CluwneHappyHonk + - CluwneHappyHonk # BAD: Intentional removal of parent tag + - BoxCardboard - type: Sprite sprite: Objects/Storage/Happyhonk/cluwne.rsi state: box @@ -882,7 +884,7 @@ grid: - 0,0,1,1 maxItemSize: Normal - whitelist: + whitelist: # TODO BoxCardboard shouldn't have whitelisted storage tags: - ClothMade - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index 642a068069..1d7380bb9d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml @@ -1242,6 +1242,23 @@ - state: plain-cooked-inhand-right color: "#F7E3A3" +- type: entity + parent: FoodMeatChickenFried + id: FoodMeatChickenFriedVox + name: mystery fried chicken + description: “Eleven secret herbs and… oh no. That’s not chicken." + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Nutriment + Quantity: 2 + - ReagentId: Protein + Quantity: 5 + - ReagentId: Ammonia + Quantity: 3 + - type: entity parent: FoodMeatBase id: FoodMeatDuckCooked diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index e53e99e9db..27cc06023c 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -864,10 +864,10 @@ - type: SolutionContainerManager solutions: food: - maxVol: 45 + maxVol: 25 reagents: - ReagentId: Fiber - Quantity: 40 + Quantity: 20 - type: Tag tags: - ClothMade diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/rolling_paper.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/rolling_paper.yml index 44edce5e07..d28fd027e5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/rolling_paper.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/rolling_paper.yml @@ -27,7 +27,7 @@ id: PackPaperRollingFilters description: A pack of filters and thin pieces of paper used to make fine smokeables. components: - - type: Storage + - type: Storage # Redundant whitelist: tags: - RollingPaper diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/guardian_activators.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/guardian_activators.yml index fc688f52c8..f10b1d518d 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/guardian_activators.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/guardian_activators.yml @@ -105,4 +105,5 @@ - state: holo - type: Tag tags: - - BoxHug + - BoxCardboard + - BoxHug diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instrument_keyed.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instrument_keyed.yml index 46af54f86f..cda539e4fb 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instrument_keyed.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instrument_keyed.yml @@ -26,6 +26,7 @@ - type: entity parent: BaseKeyedInstrument id: SuperSynthesizerInstrument + suffix: Admin name: super synthesizer description: Blasting the ghetto with Touhou MIDIs since 2020. components: @@ -41,7 +42,7 @@ - type: entity parent: SuperSynthesizerInstrument id: SuperSynthesizerNoLimitInstrument - suffix: NoLimits + suffix: NoLimits Admin components: - type: Instrument respectMidiLimits: false diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index 34aff04489..7634f8e3a7 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -108,7 +108,7 @@ - ReagentId: Plasma Quantity: 10 canReact: false - - type: Tag + - type: Tag # Redundant tags: - Sheet - ConstructionMaterial diff --git a/Resources/Prototypes/Entities/Objects/Misc/folders.yml b/Resources/Prototypes/Entities/Objects/Misc/folders.yml index cee720b6ea..9991709bcf 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/folders.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/folders.yml @@ -83,7 +83,7 @@ - type: entity abstract: true - id: BoxFolderFillThreePapers # Like BoxFolderFill, but always has exactly three sheets of standard paper; use for roles' startingGear + id: BoxFolderFillThreePapers # Like BoxFolderFill, but always has exactly three sheets of standard paper; use for things that should always be consistent, e.g roundstart items suffix: 3 papers components: - type: StorageFill @@ -95,6 +95,10 @@ parent: [BoxFolderBaseEmpty, BoxFolderFill] id: BoxFolderBase +- type: entity + parent: [BoxFolderBaseEmpty, BoxFolderFillThreePapers] + id: BoxFolderBaseThreePapers + - type: entity parent: BoxFolderBaseEmpty id: BoxFolderRedEmpty @@ -111,6 +115,11 @@ id: BoxFolderRed suffix: Red, Filled +- type: entity + parent: [BoxFolderRedEmpty, BoxFolderFillThreePapers] + id: BoxFolderRedThreePapers + suffix: Red, 3 papers + - type: entity parent: BoxFolderBaseEmpty id: BoxFolderBlueEmpty @@ -127,6 +136,11 @@ id: BoxFolderBlue suffix: Blue, Filled +- type: entity + parent: [BoxFolderBlueEmpty, BoxFolderFillThreePapers] + id: BoxFolderBlueThreePapers + suffix: Blue, 3 papers + - type: entity parent: BoxFolderBaseEmpty id: BoxFolderYellowEmpty @@ -143,6 +157,11 @@ id: BoxFolderYellow suffix: Yellow, Filled +- type: entity + parent: [BoxFolderYellowEmpty, BoxFolderFillThreePapers] + id: BoxFolderYellowThreePapers + suffix: Yellow, 3 papers + - type: entity parent: BoxFolderBaseEmpty id: BoxFolderGreyEmpty @@ -159,6 +178,11 @@ id: BoxFolderGrey suffix: Grey, Filled +- type: entity + parent: [BoxFolderGreyEmpty, BoxFolderFillThreePapers] + id: BoxFolderGreyThreePapers + suffix: Grey, 3 papers + - type: entity parent: BoxFolderBaseEmpty id: BoxFolderBlackEmpty @@ -175,6 +199,11 @@ id: BoxFolderBlack suffix: Black, Filled +- type: entity + parent: [BoxFolderBlackEmpty, BoxFolderFillThreePapers] + id: BoxFolderBlackThreePapers + suffix: Black, 3 papers + - type: entity parent: BoxFolderBaseEmpty id: BoxFolderGreenEmpty @@ -191,6 +220,11 @@ id: BoxFolderGreen suffix: Green, Filled +- type: entity + parent: [BoxFolderGreenEmpty, BoxFolderFillThreePapers] + id: BoxFolderGreenThreePapers + suffix: Green, 3 papers + - type: entity parent: BoxFolderBaseEmpty id: BoxFolderWhiteEmpty @@ -206,6 +240,11 @@ id: BoxFolderWhite suffix: White, Filled +- type: entity + parent: [BoxFolderWhiteEmpty, BoxFolderFillThreePapers] + id: BoxFolderWhiteThreePapers + suffix: White, 3 papers + - type: entity parent: BoxFolderBaseEmpty id: BoxFolderCentComEmpty @@ -221,7 +260,12 @@ - type: entity parent: [BoxFolderCentComEmpty, BoxFolderFill] id: BoxFolderCentCom - suffix: DO NOT MAP, Filled + suffix: DO NOT MAP; Filled + +- type: entity + parent: [BoxFolderCentComEmpty, BoxFolderFillThreePapers] + id: BoxFolderCentComThreePapers + suffix: DO NOT MAP; 3 papers - type: entity parent: BoxFolderBaseEmpty @@ -263,7 +307,7 @@ - type: Storage grid: - 0,0,5,3 - whitelist: + whitelist: # Redundant tags: - Document - type: ItemMapper @@ -316,6 +360,10 @@ parent: [BoxFolderPlasticClipboardEmpty, BoxFolderFill] id: BoxFolderPlasticClipboard +- type: entity + parent: [BoxFolderPlasticClipboardEmpty, BoxFolderFillThreePapers] + id: BoxFolderPlasticClipboardThreePapers + - type: entity parent: BoxFolderClipboardEmpty id: BoxFolderCentComClipboardEmpty diff --git a/Resources/Prototypes/Entities/Objects/Misc/parcel_wrap.yml b/Resources/Prototypes/Entities/Objects/Misc/parcel_wrap.yml index 58455ba211..8d7baa4339 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/parcel_wrap.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/parcel_wrap.yml @@ -28,6 +28,17 @@ - type: LimitedCharges maxCharges: 30 +- type: entity + parent: ParcelWrap + id: ParcelWrapAdmeme + name: bluespace wrap + suffix: Admeme + description: Paper used contain items for transport. This one seems to be able to store an unusual amount of space within it. + components: + - type: ParcelWrap + whitelist: null + blacklist: null + - type: entity parent: BaseItem id: WrappedParcel @@ -38,6 +49,7 @@ - type: ContainerContainer containers: contents: !type:ContainerSlot + paper_label: !type:ContainerSlot - type: Appearance - type: GenericVisualizer visuals: @@ -49,11 +61,25 @@ "Large": { state: "parcel-medium" } "Huge": { state: "parcel-large" } "Ginormous": { state: "parcel-large" } + enum.PaperLabelVisuals.HasLabel: + enum.PaperLabelVisuals.Layer: + True: { visible: true } + False: { visible: false } + enum.PaperLabelVisuals.LabelType: + enum.PaperLabelVisuals.Layer: + Paper: { state: paper } + Bounty: { state: bounty } + CaptainsPaper: { state: captains_paper } + Invoice: { state: invoice } - type: Sprite sprite: Objects/Misc/ParcelWrap/wrapped_parcel.rsi layers: - state: parcel-medium map: [ "enum.WrappedParcelVisuals.Layer" ] + - state: paper + visible: false + sprite: Objects/Misc/ParcelWrap/paper_labels.rsi + map: ["enum.PaperLabelVisuals.Layer"] - type: WrappedParcel unwrapDelay: 0.5 unwrapSound: @@ -61,6 +87,17 @@ params: volume: -4 unwrapTrash: ParcelWrapTrash + - type: ItemSlots + - type: PaperLabel + labelSlot: + insertVerbText: comp-paper-label-insert + ejectVerbText: comp-paper-label-eject + whitelist: + components: + - Paper + blacklist: + tags: + - Book - type: Damageable damageContainer: Inorganic - type: Destructible diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml index 426e54fa0f..2f16a4dcdd 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml @@ -1,5 +1,5 @@ - type: entity - name: bible + name: space bible description: New Interstellar Version 2340. parent: BaseStorageItem id: Bible @@ -109,21 +109,10 @@ event: !type:SummonActionEvent - type: entity - parent: Bible - name: tanakh - description: "For God's chosen crewmembers" - id: BibleTanakh - components: - - type: Sprite - sprite: Objects/Specific/Chapel/tanakh.rsi - - type: Item - sprite: Objects/Specific/Chapel/tanakh.rsi - -- type: entity - parent: Bible - name: druidic tablet - description: "It's the mystery of the druids!" id: BibleDruid + name: druidic tablet + parent: Bible + description: "It's the mystery of the druids!" components: - type: Sprite sprite: Objects/Specific/Chapel/mysteryofthedruids.rsi @@ -131,10 +120,10 @@ sprite: Objects/Specific/Chapel/mysteryofthedruids.rsi - type: entity - parent: Bible - name: communist manifesto - description: "Remove the mask of humanity from Capital." id: BibleCommunistManifesto + name: communist manifesto + parent: Bible + description: "Remove the mask of humanity from Capital." components: - type: Sprite sprite: Objects/Specific/Chapel/communistmanifesto.rsi @@ -142,23 +131,45 @@ sprite: Objects/Specific/Chapel/communistmanifesto.rsi - type: entity + id: BibleNarsie + name: tome of nar'sie parent: Bible - name: satanic bible - description: "What could possibly go wrong?" - id: BibleSatanic + description: "What could possibly go wrong with a book covered in blood?" components: - type: Sprite - sprite: Objects/Specific/Chapel/satanicbible.rsi + sprite: Objects/Specific/Chapel/tomeofnarsie.rsi - type: Item - sprite: Objects/Specific/Chapel/satanicbible.rsi + sprite: Objects/Specific/Chapel/tomeofnarsie.rsi - type: entity - parent: Bible - name: codex nanotrasimus - description: "A familiar book containing the Sacred Operating Procedures." id: BibleNanoTrasen + name: codex nanotrasimus + parent: Bible + description: "A familiar book containing the Sacred Operating Procedures." components: - type: Sprite sprite: Objects/Specific/Chapel/codexnanotrasimus.rsi - type: Item sprite: Objects/Specific/Chapel/codexnanotrasimus.rsi + +- type: entity + id: BibleHonk + name: mirth of the honkmother + parent: Bible + description: "Oh great and glorious Mother, Mistress of Mirth, Matron of Mask and Merriments, Blessed is she amongst us jesters." + components: + - type: Sprite + sprite: Objects/Specific/Chapel/honk.rsi + - type: Item + sprite: Objects/Specific/Chapel/honk.rsi + +- type: entity + id: BibleRatvar + name: tablet of ratvar + parent: Bible + description: "A holy relic of the Clockwork Cult, blessed by the Clockwork Justice, Ratvar." + components: + - type: Sprite + sprite: Objects/Specific/Chapel/ratvartablet.rsi + - type: Item + sprite: Objects/Specific/Chapel/ratvartablet.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml index 7239677726..01d73ad9c1 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/janitor.yml @@ -293,9 +293,11 @@ parent: Plunger description: A plunger with a plastic suction cup coated in a thin layer of gold given as a token of appreciation for years of service. Still used to unclog drains. components: - - type: Tag + - type: Tag # TODO change Plunger into a tool so we dont got to layer Tags like below. tags: - GoldenPlunger + - Plunger + - WhitelistChameleon - type: Sprite sprite: Objects/Specific/Janitorial/golden_plunger.rsi state: plunger diff --git a/Resources/Prototypes/Entities/Objects/Tools/bucket.yml b/Resources/Prototypes/Entities/Objects/Tools/bucket.yml index c62b178366..3c95afe69e 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/bucket.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/bucket.yml @@ -1,22 +1,13 @@ - type: entity - parent: DrinkBase + parent: [ DrinkBaseMaterialStrongPlastic, DrinkBase, DrinkVisualsFill ] id: Bucket name: bucket description: It's a boring old bucket. components: - - type: Clickable - type: Edible - edible: Drink - solution: bucket - destroyOnEmpty: false utensil: Spoon - type: Sprite sprite: Objects/Tools/bucket.rsi - layers: - - state: icon - - map: ["enum.SolutionContainerLayers.Fill"] - state: fill-1 - visible: false - type: Item size: Normal - type: Clothing @@ -26,50 +17,23 @@ quickEquip: false - type: SolutionContainerManager solutions: - bucket: + drink: maxVol: 250 - - type: MixableSolution - solution: bucket - type: SolutionTransfer transferAmount: 100 maxTransferAmount: 100 minTransferAmount: 10 - canChangeTransferAmount: true - - type: UserInterface - interfaces: - enum.TransferAmountUiKey.Key: - type: TransferAmountBoundUserInterface - - type: MeleeWeapon - soundNoDamage: - path: "/Audio/Effects/Fluids/splat.ogg" - damage: - types: - Blunt: 0 - - type: Spillable - solution: bucket - type: SpillWhenWorn - solution: bucket - - type: DrawableSolution - solution: bucket - - type: RefillableSolution - solution: bucket - - type: DrainableSolution - solution: bucket - - type: SolutionItemStatus - solution: bucket - - type: Appearance + solution: drink - type: SolutionContainerVisuals maxFillLevels: 3 - fillBaseName: fill- - - type: ExaminableSolution - solution: bucket + inHandsFillBaseName: null - type: Tag tags: - Bucket - type: PhysicalComposition materialComposition: Plastic: 50 - - type: DnaSubstanceTrace - type: entity parent: Bucket @@ -79,5 +43,5 @@ components: - type: SolutionContainerManager solutions: - bucket: + drink: maxVol: 500 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/antimateriel.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/antimateriel.yml index e622952b3f..1fd04ae36f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/antimateriel.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/antimateriel.yml @@ -5,7 +5,6 @@ components: - type: Tag tags: - - Cartridge - CartridgeAntiMateriel - type: CartridgeAmmo proto: BulletAntiMateriel diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/caseless_rifle.yml index fd465b71d6..8d4e9b8ffc 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/caseless_rifle.yml @@ -6,7 +6,6 @@ components: - type: Tag tags: - - Cartridge - CartridgeCaselessRifle - type: CartridgeAmmo deleteOnSpawn: true diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml index 51bf0fea54..a953985e9a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/heavy_rifle.yml @@ -6,7 +6,6 @@ components: - type: Tag tags: - - Cartridge - CartridgeHeavyRifle - type: CartridgeAmmo proto: BulletHeavyRifle diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml index bdd4758fd2..b4af723945 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/light_rifle.yml @@ -6,7 +6,6 @@ components: - type: Tag tags: - - Cartridge - CartridgeLightRifle - type: CartridgeAmmo proto: BulletLightRifle diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml index c7adfb5b1e..58862b9984 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/magnum.yml @@ -6,7 +6,6 @@ components: - type: Tag tags: - - Cartridge - CartridgeMagnum - type: CartridgeAmmo proto: BulletMagnum diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml index faa094f7f5..ba2b856778 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/pistol.yml @@ -6,7 +6,6 @@ components: - type: Tag tags: - - Cartridge - CartridgePistol - type: CartridgeAmmo proto: BulletPistol diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml index 2559349c4a..d4304ef803 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/rifle.yml @@ -6,7 +6,6 @@ components: - type: Tag tags: - - Cartridge - CartridgeRifle - type: CartridgeAmmo proto: BulletRifle diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml index 72411fc134..3dfab5e84a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml @@ -6,7 +6,6 @@ components: - type: Tag tags: - - Cartridge - ShellShotgun - type: CartridgeAmmo soundEject: @@ -26,7 +25,6 @@ components: - type: Tag tags: - - Cartridge - ShellShotgun - ShellShotgunLight - type: Sprite @@ -59,7 +57,6 @@ components: - type: Tag tags: - - Cartridge - ShellShotgun - ShellShotgunLight - type: Sprite @@ -118,7 +115,6 @@ components: - type: Tag tags: - - Cartridge - ShellShotgun - ShellShotgunLight - type: Sprite @@ -147,7 +143,6 @@ components: - type: Tag tags: - - Cartridge - ShellShotgun - ShellShotgunLight - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/toy.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/toy.yml index 6ec93e1778..510a8fef3e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/toy.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/toy.yml @@ -6,7 +6,6 @@ components: - type: Tag tags: - - Cartridge - CartridgeCap - type: CartridgeAmmo - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml index 6af54bb114..47c09282c6 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Magazines/pistol.yml @@ -337,7 +337,7 @@ components: - type: BallisticAmmoProvider proto: CartridgePistol - whitelist: + whitelist: # Redundant tags: - CartridgePistol soundInsert: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml index 43427c1dac..60640bdd2e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml @@ -29,8 +29,8 @@ - type: Projectile damage: types: - Blunt: 3 - Heat: 16 + Piercing: 14 + Heat: 5 - type: entity id: BulletLightRifleUranium diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml index b4017fd550..124fa4a93e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml @@ -29,8 +29,8 @@ - type: Projectile damage: types: - Blunt: 3 - Heat: 32 + Piercing: 26 + Heat: 9 - type: entity id: BulletMagnumAP diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml index 8d146939b7..53917035cb 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml @@ -29,8 +29,8 @@ - type: Projectile damage: types: - Blunt: 2 - Heat: 14 + Piercing: 12 + Heat: 4 - type: entity id: BulletPistolUranium diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml index 497ca9e2a3..84506148b4 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml @@ -29,8 +29,8 @@ - type: Projectile damage: types: - Blunt: 2 - Heat: 15 + Piercing: 12 + Heat: 5 - type: entity id: BulletRifleUranium diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml index e5120a746f..ebea6dde5e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml @@ -68,8 +68,8 @@ - type: Projectile damage: types: - Blunt: 3 - Heat: 7 + Piercing: 7 + Heat: 3 - type: IgnitionSource ignited: true 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 30967200d7..bd532ce709 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -611,7 +611,6 @@ slots: - Belt - type: Gun - fireRate: 0.5 soundGunshot: path: /Audio/Weapons/Guns/Gunshots/taser.ogg - type: ProjectileBatteryAmmoProvider @@ -815,7 +814,7 @@ - type: entity name: energy shotgun - parent: [BaseWeaponBattery, BaseGunWieldable, BaseGrandTheftContraband] + parent: [BaseWeaponBattery, BaseGunWieldable, BaseSecurityContraband] id: WeaponEnergyShotgun description: A one-of-a-kind prototype energy weapon that uses various shotgun configurations. It offers the possibility of both lethal and non-lethal shots, making it a versatile weapon. components: @@ -839,34 +838,69 @@ soundGunshot: path: /Audio/Weapons/Guns/Gunshots/laser_cannon.ogg - type: ProjectileBatteryAmmoProvider - proto: BulletLaserSpread - fireCost: 150 + proto: BulletLaserSpreadNarrow + fireCost: 80 - type: BatteryWeaponFireModes fireModes: - - proto: BulletLaserSpread - fireCost: 150 - proto: BulletLaserSpreadNarrow - fireCost: 200 + fireCost: 80 - proto: BulletDisablerSmgSpread - fireCost: 120 + fireCost: 48 - type: Item size: Large sprite: Objects/Weapons/Guns/Battery/inhands_64x.rsi heldPrefix: energy + - type: GunRequiresWield #remove when inaccuracy on spreads is fixed + - type: Battery + maxCharge: 480 + startingCharge: 480 + +- type: entity + name: energy magnum + parent: [BaseWeaponBatterySmall, BaseGrandTheftContraband] + id: WeaponEnergyMagnum + description: A high powered self-charging energy pistol designed for elite security personnel. It has has three firing modes allowing for either high damage, window piercing, or non-lethal disabling. + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Battery/energy_magnum.rsi + layers: + - state: base + map: [ "enum.GunVisualLayers.Base" ] + - state: mag-unshaded-1 + visible: false + map: [ "enum.GunVisualLayers.MagUnshaded" ] + shader: unshaded + - type: MagazineVisuals + magState: mag + steps: 4 + zeroVisible: true + - type: Appearance + - type: Clothing + sprite: Objects/Weapons/Guns/Battery/energy_magnum.rsi - type: Tag tags: - HighRiskItem - type: StealTarget - stealGroup: WeaponEnergyShotgun - - type: GunRequiresWield #remove when inaccuracy on spreads is fixed - - type: Battery - maxCharge: 1200 - startingCharge: 1200 + stealGroup: WeaponEnergyMagnum + - type: Gun + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/laser_cannon.ogg + - type: ProjectileBatteryAmmoProvider + proto: BulletLaserMagnum + fireCost: 150 + - type: BatteryWeaponFireModes + fireModes: + - proto: BulletLaserMagnum + fireCost: 150 + - proto: BulletLaserWindowPiercingMagnum + fireCost: 150 + - proto: BulletDisabler + fireCost: 62.5 - type: BatterySelfRecharger autoRecharge: true - autoRechargeRate: 24 + autoRechargeRate: 48 autoRechargePause: true - autoRechargePauseTime: 30 + autoRechargePauseTime: 10 - type: entity name: temperature gun diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml index de9cea7e52..7a2b44e615 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml @@ -425,7 +425,7 @@ description: It fires large meteors. components: - type: BallisticAmmoProvider - whitelist: + whitelist: # Redundant tags: - CartridgeRocket proto: MeteorMedium @@ -438,7 +438,7 @@ description: It fires slow immovable rods. components: - type: BallisticAmmoProvider - whitelist: + whitelist: # Redundant tags: - CartridgeRocket proto: ImmovableRodSlow diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 6c39e112bd..74f546c61d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -142,7 +142,8 @@ - type: Projectile damage: types: - Blunt: 14 + Piercing: 10 + Heat: 4 - type: PointLight enabled: true color: "#ff4300" @@ -210,8 +211,9 @@ bounds: "-0.15,-0.45,0.15,0.15" hard: false mask: - - Impassable - - BulletImpassable + - Opaque + - Impassable + - BulletImpassable fly-by: *flybyfixture - type: Ammo - type: Projectile @@ -225,8 +227,7 @@ lifetime: 0.170 # Very short range - type: StunOnCollide stunAmount: 0 - knockdownAmount: 2.5 # Enough to subdue and follow up with a stun baton - drop: false #Ranged KD and item drop are too strong in one package + knockdownAmount: 2.5 # Enough to subdue and follow up with a stun batong slowdownAmount: 2.5 walkSpeedModifier: 0.5 sprintSpeedModifier: 0.5 @@ -254,7 +255,6 @@ lifetime: 1.0 # Not so short range - type: StunOnCollide stunAmount: 5 - drop: true # this is the evil taser knockdownAmount: 10 slowdownAmount: 10 walkSpeedModifier: 0.5 @@ -288,6 +288,7 @@ bounds: "-0.15,-0.3,0.15,0.3" hard: false mask: + - Opaque - Impassable - BulletImpassable fly-by: *flybyfixture @@ -328,6 +329,7 @@ bounds: "-0.15,-0.3,0.15,0.3" hard: false mask: + - Opaque - Impassable - BulletImpassable fly-by: *flybyfixture @@ -397,7 +399,7 @@ - state: omnilaser shader: unshaded - type: Ammo - muzzleFlash: null + muzzleFlash: MuzzleFlashEffectOmnilaser - type: Physics - type: Fixtures fixtures: @@ -408,6 +410,8 @@ hard: false mask: - Opaque + - Impassable + - BulletImpassable fly-by: *flybyfixture - type: Projectile # soundHit: Waiting on serv3 @@ -426,6 +430,9 @@ parent: WatcherBolt categories: [ HideSpawnMenu ] components: + - type: Reflective + reflective: + - Energy - type: Projectile # soundHit: Waiting on serv3 impactEffect: BulletImpactEffectDisabler @@ -440,7 +447,7 @@ - type: entity name: magmawing watcher bolt id: WatcherBoltMagmawing - parent: BaseBullet + parent: WatcherBolt categories: [ HideSpawnMenu ] components: - type: Sprite @@ -449,6 +456,8 @@ - state: omnilaser_greyscale shader: unshaded color: orangered + - type: Ammo + muzzleFlash: MuzzleFlashEffectHeavyLaser - type: Projectile # soundHit: Waiting on serv3 impactEffect: BulletImpactEffectOrangeDisabler @@ -464,6 +473,9 @@ parent: WatcherBoltMagmawing categories: [ HideSpawnMenu ] components: + - type: Reflective + reflective: + - Energy - type: Projectile # soundHit: Waiting on serv3 impactEffect: BulletImpactEffectOrangeDisabler @@ -1131,6 +1143,7 @@ bounds: "-0.15,-0.3,0.15,0.3" hard: false mask: + - Opaque - Impassable - BulletImpassable fly-by: *flybyfixture @@ -1282,6 +1295,7 @@ bounds: "-0.15,-0.3,0.15,0.3" hard: false mask: + - Opaque - Impassable - BulletImpassable fly-by: *flybyfixture @@ -1304,7 +1318,7 @@ spread: 30 - type: entity - name: narrow laser barrage + name: lethal laser barrage id: BulletLaserSpreadNarrow categories: [ HideSpawnMenu ] parent: BulletLaser @@ -1324,3 +1338,52 @@ proto: BulletDisablerSmg count: 3 #bit stronger than a disabler if you hit your shots you goober, still not a 2 hit stun though spread: 9 + +- type: entity + name: magnum laser bolt + id: BulletLaserMagnum + categories: [ HideSpawnMenu ] + parent: BulletLaser + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles_magnum.rsi + layers: + - state: magnum + shader: unshaded + - type: PointLight + enabled: true + color: "#ff4300" + - type: Projectile + impactEffect: BulletImpactEffectOrangeDisabler + damage: + types: + Heat: 30 + +- type: entity + name: magnum window-piercing bolt + id: BulletLaserWindowPiercingMagnum + categories: [ HideSpawnMenu ] + parent: BulletLaser + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles_magnum.rsi + layers: + - state: magnum_piercing + shader: unshaded + - type: PointLight + enabled: true + color: "#ff4300" + - type: Projectile + impactEffect: BulletImpactEffectOrangeDisabler + damage: + types: + Heat: 20 + - type: Fixtures + fixtures: + projectile: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.1,0.1,0.1" + hard: false + mask: + - Opaque diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml index 1f24828428..1ea835a2cd 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml @@ -153,7 +153,7 @@ suffix: armor-piercing components: - type: RevolverAmmoProvider - whitelist: + whitelist: # Redundant tags: - CartridgeMagnum - SpeedLoaderMagnum diff --git a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml index 26db89ed32..e9faaece39 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml @@ -1,8 +1,8 @@ - type: entity - id: BaseMaterialDoor - parent: BaseStructure - name: door abstract: true + parent: BaseStructure + id: BaseMaterialDoor + name: door description: A door, where will it lead? components: - type: Anchorable @@ -63,31 +63,31 @@ - type: BlockWeather - type: entity + abstract: true parent: BaseMaterialDoor id: BaseMaterialDoorNavMap - abstract: true components: - type: NavMapDoor ### Metal doors ### - type: entity + parent: BaseMaterialDoorNavMap id: MetalDoor name: metal door - parent: BaseMaterialDoorNavMap components: - type: Construction graph: DoorGraph node: metalDoor - type: Destructible thresholds: - - trigger: + - trigger: &DamageTrigger200 # Overkill threshold !type:DamageTrigger damage: 200 - behaviors: + behaviors: &OverkillBehavior - !type:DoActsBehavior acts: ["Destruction"] - - trigger: + - trigger: &DamageTrigger150 !type:DamageTrigger damage: 150 behaviors: @@ -103,30 +103,20 @@ max: 5 - type: entity + parent: BaseMaterialDoorNavMap id: PlasmaDoor name: plasma door - parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/plasma_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Construction graph: DoorGraph node: plasmaDoor - type: Destructible thresholds: - - trigger: - !type:DamageTrigger - damage: 200 - behaviors: - - !type:DoActsBehavior - acts: ["Destruction"] - - trigger: - !type:DamageTrigger - damage: 150 + - trigger: *DamageTrigger200 + behaviors: *OverkillBehavior + - trigger: *DamageTrigger150 behaviors: - !type:DoActsBehavior acts: ["Destruction"] @@ -140,30 +130,20 @@ max: 5 - type: entity + parent: BaseMaterialDoorNavMap id: GoldDoor name: gold door - parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/gold_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Construction graph: DoorGraph node: goldDoor - type: Destructible thresholds: - - trigger: - !type:DamageTrigger - damage: 200 - behaviors: - - !type:DoActsBehavior - acts: ["Destruction"] - - trigger: - !type:DamageTrigger - damage: 150 + - trigger: *DamageTrigger200 + behaviors: *OverkillBehavior + - trigger: *DamageTrigger150 behaviors: - !type:DoActsBehavior acts: ["Destruction"] @@ -177,30 +157,20 @@ max: 5 - type: entity + parent: BaseMaterialDoorNavMap id: SilverDoor name: silver door - parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/silver_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Construction graph: DoorGraph node: silverDoor - type: Destructible thresholds: - - trigger: - !type:DamageTrigger - damage: 200 - behaviors: - - !type:DoActsBehavior - acts: ["Destruction"] - - trigger: - !type:DamageTrigger - damage: 150 + - trigger: *DamageTrigger200 + behaviors: *OverkillBehavior + - trigger: *DamageTrigger150 behaviors: - !type:DoActsBehavior acts: ["Destruction"] @@ -214,35 +184,26 @@ max: 5 - type: entity + parent: BaseMaterialDoorNavMap id: BananiumDoor name: bananium door - parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/bananium_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Door - openSound: - path: /Audio/Items/bikehorn.ogg - closeSound: - path: /Audio/Items/bikehorn.ogg + openSound: &BikeHornSound + collection: BikeHorn + params: + variation: 0.125 + closeSound: *BikeHornSound - type: Construction graph: DoorGraph node: bananiumDoor - type: Destructible thresholds: - - trigger: - !type:DamageTrigger - damage: 200 - behaviors: - - !type:DoActsBehavior - acts: ["Destruction"] - - trigger: - !type:DamageTrigger - damage: 150 + - trigger: *DamageTrigger200 + behaviors: *OverkillBehavior + - trigger: *DamageTrigger150 behaviors: - !type:DoActsBehavior acts: ["Destruction"] @@ -258,9 +219,9 @@ ### Other doors ### - type: entity + parent: BaseMaterialDoorNavMap id: WoodDoor name: wooden door - parent: BaseMaterialDoorNavMap components: - type: Sprite sprite: Structures/Doors/MineralDoors/wood_door.rsi @@ -273,16 +234,11 @@ graph: DoorGraph node: woodDoor - type: Damageable - damageContainer: StructuralInorganic damageModifierSet: Wood - type: Destructible thresholds: - - trigger: - !type:DamageTrigger - damage: 150 - behaviors: - - !type:DoActsBehavior - acts: ["Destruction"] + - trigger: *DamageTrigger150 + behaviors: *OverkillBehavior - trigger: !type:DamageTrigger damage: 75 @@ -299,16 +255,12 @@ max: 5 - type: entity + parent: BaseMaterialDoorNavMap id: PaperDoor name: paper door - parent: BaseMaterialDoorNavMap - description: A door, where will it lead? components: - type: Sprite sprite: Structures/Doors/MineralDoors/paper_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Door openSound: path: /Audio/Effects/paperdoor_openclose.ogg @@ -318,16 +270,11 @@ graph: DoorGraph node: paperDoor - type: Damageable - damageContainer: StructuralInorganic damageModifierSet: Wood - type: Destructible thresholds: - - trigger: - !type:DamageTrigger - damage: 150 - behaviors: - - !type:DoActsBehavior - acts: ["Destruction"] + - trigger: *DamageTrigger150 + behaviors: *OverkillBehavior - trigger: !type:DamageTrigger damage: 50 @@ -344,16 +291,13 @@ max: 5 - type: entity + parent: BaseMaterialDoorNavMap id: WebDoor name: web door - parent: BaseMaterialDoorNavMap description: A door, leading to the lands of the spiders... or a spaced room. components: - type: Sprite sprite: Structures/Doors/web_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - type: Door closeSound: path: /Audio/Effects/rustle1.ogg @@ -366,21 +310,8 @@ damageModifierSet: Web - type: Destructible thresholds: - - trigger: # Excess damage, don't spawn entities - !type:DamageTrigger - damage: 100 - behaviors: - - !type:PlaySoundBehavior - sound: - collection: WoodDestroy - - !type:DoActsBehavior - acts: ["Destruction"] - - trigger: - !type:DamageTrigger - damage: 150 - behaviors: - - !type:DoActsBehavior - acts: ["Destruction"] + - trigger: *DamageTrigger150 + behaviors: *OverkillBehavior - trigger: !type:DamageTrigger damage: 50 @@ -397,8 +328,8 @@ max: 2 - type: entity - id: CardDoor parent: BaseMaterialDoorNavMap + id: CardDoor name: cardboard door components: - type: Sprite @@ -417,16 +348,11 @@ path: "/Audio/Weapons/pierce.ogg" - type: Damageable - damageContainer: StructuralInorganic damageModifierSet: Card - type: Destructible thresholds: - - trigger: - !type:DamageTrigger - damage: 60 #excess damage (nuke?). avoid computational cost of spawning entities. - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] + - trigger: *DamageTrigger150 + behaviors: *OverkillBehavior - trigger: !type:DamageTrigger damage: 30 diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index ec1d9231a2..7b3cc96ad4 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -136,6 +136,7 @@ - type: EmagLatheRecipes emagStaticPacks: - SecurityAmmoStatic + - SyndicateAmmoStatic - type: BlueprintReceiver whitelist: tags: @@ -406,6 +407,9 @@ - SecurityAmmo - SecurityWeapons - SecurityDisablers + - type: EmagLatheRecipes + emagStaticPacks: + - SyndicateAmmoStatic - type: MaterialStorage whitelist: tags: @@ -442,6 +446,9 @@ runningState: icon staticPacks: - SecurityAmmoStatic + - type: EmagLatheRecipes + emagStaticPacks: + - SyndicateAmmoStatic - type: MaterialStorage whitelist: tags: diff --git a/Resources/Prototypes/Entities/Structures/Specific/Janitor/janicart.yml b/Resources/Prototypes/Entities/Structures/Specific/Janitor/janicart.yml index a24a03da3e..90893cd432 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Janitor/janicart.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Janitor/janicart.yml @@ -190,11 +190,7 @@ whitelist: tags: - Plunger - goldenplunger_slot: - name: janitorial-trolley-slot-component-slot-name-goldenplunger - whitelist: - tags: - - GoldenPlunger + - GoldenPlunger priority: 8 wetfloorsign_slot4: name: janitorial-trolley-slot-component-slot-name-sign diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml index b77fbc3547..8798e920c7 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml @@ -104,7 +104,15 @@ description: A direction sign, pointing out which way evac is. components: - type: Sprite - state: direction_evac + layers: + - state: direction_evac + - state: direction_evac_glow + shader: unshaded + - state: direction_evac_glow + shader: shaded + #This is a neat trick I found to sort of "hack" an emissive map into ss14. Basically, the direction_evac_glow texture has an alpha channel. + #Alpha doesn't work for unshaded, but for *shaded* it does, and by putting a shaded texture infront of the unshaded, we can dim the unshaded texture, effectively allowing brightness control. + #I am re-using this from my high-vis vest PR, where I go further into detail, https://github.com/space-wizards/space-station-14/pull/37869 - type: entity parent: BaseSignDirectional @@ -288,6 +296,15 @@ - type: Sprite state: armory +- type: entity + parent: BaseSign + id: SignArrivals + name: arrivals sign + description: A sign indicating where the Arrivals shuttle will dock. + components: + - type: Sprite + state: arrivals + - type: entity parent: BaseSign id: SignToolStorage diff --git a/Resources/Prototypes/Loadouts/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Loadouts/Jobs/Cargo/quartermaster.yml index 60fc1834fb..602b2d36fd 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Cargo/quartermaster.yml @@ -6,7 +6,7 @@ requirement: !type:RoleTimeRequirement role: JobQuartermaster - time: 72000 #20 hrs + time: 20h # Jumpsuit - type: loadout @@ -53,7 +53,7 @@ - type: loadout id: QuartermasterMantle - equipment: + equipment: neck: ClothingNeckMantleQM effects: - !type:GroupLoadoutEffect diff --git a/Resources/Prototypes/Loadouts/Jobs/Civilian/bartender.yml b/Resources/Prototypes/Loadouts/Jobs/Civilian/bartender.yml index c8c80c7895..b8a8744915 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Civilian/bartender.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Civilian/bartender.yml @@ -1,3 +1,12 @@ +- type: loadoutEffectGroup + id: SeniorBar + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobBartender + time: 52h # 1 hour per week for 1 year + # Head - type: loadout id: BartenderHead @@ -40,3 +49,13 @@ id: BartenderWintercoat equipment: outerClothing: ClothingOuterWinterBar + +# Misc +- type: loadout + id: BartenderGoldenShaker + effects: + - !type:GroupLoadoutEffect + proto: SeniorBar + storage: + back: + - DrinkShakerGold diff --git a/Resources/Prototypes/Loadouts/Jobs/Civilian/chaplain.yml b/Resources/Prototypes/Loadouts/Jobs/Civilian/chaplain.yml index eb252a0c43..0bfc99d41f 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Civilian/chaplain.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Civilian/chaplain.yml @@ -1,3 +1,33 @@ +# Playtime requirement for NanoTrasen Bible, Codex NanoTrasimus +- type: loadoutEffectGroup + id: NanoTrasenBibleRequirement + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobCaptain + time: 7200 #2 hrs + +# Playtime requirement for Druid Bible, Druidic Tablet +- type: loadoutEffectGroup + id: DruidBibleRequirement + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobBotanist + time: 18000 #5 hrs + +# Playtime requirement for Clown Bible, Mirth of the Honkmother +- type: loadoutEffectGroup + id: ClownBibleRequirement + effects: + - !type:JobRequirementLoadoutEffect + requirement: + !type:RoleTimeRequirement + role: JobClown + time: 18000 #5 hrs + # Head - type: loadout id: ChaplainHead @@ -87,24 +117,39 @@ - type: loadout id: BibleDruid + effects: + - !type:GroupLoadoutEffect + proto: DruidBibleRequirement storage: back: - BibleDruid - type: loadout id: BibleNanoTrasen + effects: + - !type:GroupLoadoutEffect + proto: NanoTrasenBibleRequirement storage: back: - BibleNanoTrasen - + - type: loadout - id: BibleSatanic + id: BibleNarsie storage: back: - - BibleSatanic + - BibleNarsie - type: loadout - id: BibleTanakh + id: BibleHonk + effects: + - !type:GroupLoadoutEffect + proto: ClownBibleRequirement storage: back: - - BibleTanakh + - BibleHonk + +- type: loadout + id: BibleRatvar + storage: + back: + - BibleRatvar diff --git a/Resources/Prototypes/Loadouts/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Loadouts/Jobs/Civilian/janitor.yml index d9c4faed8c..d902481f9c 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Civilian/janitor.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Civilian/janitor.yml @@ -5,7 +5,7 @@ requirement: !type:RoleTimeRequirement role: JobJanitor - time: 187200 #52 hrs (1 hour per week for 1 year) + time: 52h # 1 hour per week for 1 year # Head - type: loadout diff --git a/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml b/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml index edb9c8d1fc..1ed5e8aca0 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Civilian/passenger.yml @@ -6,7 +6,7 @@ requirement: !type:RoleTimeRequirement role: JobPassenger - time: 36000 #10 hrs, silly reward for people who play passenger a lot + time: 10h # silly reward for people who play passenger a lot # Head of Greytide (for grey mantle) - type: loadoutEffectGroup @@ -16,7 +16,7 @@ requirement: !type:RoleTimeRequirement role: JobPassenger - time: 72000 #20 hrs, fun mantle for the most experienced greytiders + time: 20h # fun mantle for the most experienced greytiders # Face - type: loadout diff --git a/Resources/Prototypes/Loadouts/Jobs/Command/captain.yml b/Resources/Prototypes/Loadouts/Jobs/Command/captain.yml index 9043354a31..2951678968 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Command/captain.yml @@ -6,7 +6,7 @@ requirement: !type:RoleTimeRequirement role: JobCaptain - time: 72000 #20 hrs + time: 20h # Jumpsuit - type: loadout diff --git a/Resources/Prototypes/Loadouts/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Loadouts/Jobs/Command/head_of_personnel.yml index 623951a7d0..bf9dfa92e6 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Command/head_of_personnel.yml @@ -6,7 +6,7 @@ requirement: !type:RoleTimeRequirement role: JobHeadOfPersonnel - time: 72000 #20 hrs + time: 20h # Professional HoP Time - type: loadoutEffectGroup @@ -16,7 +16,7 @@ requirement: !type:RoleTimeRequirement role: JobHeadOfPersonnel - time: 72000 #20 hrs, special reward for HoP mains # Corvax-RoleTime + time: 20h # special reward for HoP mains # Corvax-RoleTime # Jumpsuit - type: loadout diff --git a/Resources/Prototypes/Loadouts/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Loadouts/Jobs/Engineering/chief_engineer.yml index 13b72e0af4..55f184a168 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Engineering/chief_engineer.yml @@ -6,7 +6,7 @@ requirement: !type:RoleTimeRequirement role: JobChiefEngineer - time: 72000 #20 hrs + time: 20h # Jumpsuit - type: loadout diff --git a/Resources/Prototypes/Loadouts/Jobs/Engineering/station_engineer.yml b/Resources/Prototypes/Loadouts/Jobs/Engineering/station_engineer.yml index f76b2e50da..b04f8388db 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Engineering/station_engineer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Engineering/station_engineer.yml @@ -6,17 +6,17 @@ requirement: !type:RoleTimeRequirement role: JobAtmosphericTechnician - time: 72000 #20 hrs # Corvax-RoleTime + time: 20h # Corvax-RoleTime - !type:JobRequirementLoadoutEffect requirement: !type:RoleTimeRequirement role: JobStationEngineer - time: 72000 #20 hrs # Corvax-RoleTime + time: 20h # Corvax-RoleTime - !type:JobRequirementLoadoutEffect requirement: !type:DepartmentTimeRequirement department: Engineering - time: 216000 # 60 hrs + time: 60h # Head - type: startingGear diff --git a/Resources/Prototypes/Loadouts/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Loadouts/Jobs/Medical/chief_medical_officer.yml index 43bbc42f46..1444247083 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Medical/chief_medical_officer.yml @@ -6,7 +6,7 @@ requirement: !type:RoleTimeRequirement role: JobChiefMedicalOfficer - time: 72000 #20 hrs + time: 20h # Jumpsuit - type: loadout diff --git a/Resources/Prototypes/Loadouts/Jobs/Medical/medical_doctor.yml b/Resources/Prototypes/Loadouts/Jobs/Medical/medical_doctor.yml index 40d4d81e60..617db69cff 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Medical/medical_doctor.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Medical/medical_doctor.yml @@ -6,17 +6,17 @@ requirement: !type:RoleTimeRequirement role: JobChemist - time: 72000 #20 hrs # Corvax-RoleTime + time: 20h # Corvax-RoleTime - !type:JobRequirementLoadoutEffect requirement: !type:RoleTimeRequirement role: JobMedicalDoctor - time: 72000 #20 hrs # Corvax-RoleTime + time: 20h # Corvax-RoleTime - !type:JobRequirementLoadoutEffect requirement: !type:DepartmentTimeRequirement department: Medical - time: 216000 # 60 hrs + time: 60h # Other Timers @@ -27,7 +27,7 @@ requirement: !type:RoleTimeRequirement role: JobMedicalDoctor - time: 108000 #30 hrs + time: 30h # Head diff --git a/Resources/Prototypes/Loadouts/Jobs/Science/research_director.yml b/Resources/Prototypes/Loadouts/Jobs/Science/research_director.yml index 2e607aca69..3717c1c67c 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Science/research_director.yml @@ -6,7 +6,7 @@ requirement: !type:RoleTimeRequirement role: JobResearchDirector - time: 72000 #20 hrs + time: 20h # Head - type: loadout diff --git a/Resources/Prototypes/Loadouts/Jobs/Science/scientist.yml b/Resources/Prototypes/Loadouts/Jobs/Science/scientist.yml index 4708f8bfa8..21965389c4 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Science/scientist.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Science/scientist.yml @@ -6,7 +6,7 @@ requirement: !type:DepartmentTimeRequirement department: Science - time: 216000 #60 hrs + time: 60h # Head - type: startingGear diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Loadouts/Jobs/Security/head_of_security.yml index 1f40d5e044..e85e1c8ccb 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/head_of_security.yml @@ -6,7 +6,7 @@ requirement: !type:RoleTimeRequirement role: JobHeadOfSecurity - time: 72000 #20 hrs + time: 20h # Jumpsuit - type: loadout diff --git a/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml b/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml index 071f68bdf1..cf37ca8835 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Security/security_officer.yml @@ -6,12 +6,12 @@ requirement: !type:RoleTimeRequirement role: JobWarden - time: 72000 #20 hrs # Corvax-RoleTime + time: 20h # Corvax-RoleTime - !type:JobRequirementLoadoutEffect requirement: !type:DepartmentTimeRequirement department: Security - time: 216000 # 60 hrs + time: 60h #Security Star - type: loadoutEffectGroup @@ -21,7 +21,7 @@ requirement: !type:DepartmentTimeRequirement department: Security - time: 360000 #100 hrs + time: 100h # Head - type: loadout @@ -67,7 +67,7 @@ - type: loadout id: TrooperUniform - equipment: + equipment: jumpsuit: ClothingUniformSecurityTrooper - type: loadout diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml b/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml index 1ff3f1533e..8a474d359a 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml @@ -6,7 +6,7 @@ requirement: !type:RoleTimeRequirement role: JobLibrarian - time: 3600 # 1 hour of being the biggest nerd on the station + time: 1h # for being the biggest nerd on the station - type: loadoutEffectGroup id: JensenTimer @@ -15,7 +15,7 @@ requirement: !type:DepartmentTimeRequirement department: Cargo - time: 36000 #10 hours of being a space trucker + time: 10h # 10 hours of being a space trucker # Basic options # Glasses @@ -41,4 +41,4 @@ - !type:GroupLoadoutEffect proto: JensenTimer equipment: - eyes: ClothingEyesGlassesJensen \ No newline at end of file + eyes: ClothingEyesGlassesJensen diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml index 7038b78730..16e3f5b210 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml @@ -6,7 +6,7 @@ requirement: !type:DepartmentTimeRequirement department: Command - time: 3600 # 1 hour + time: 1h # Flowers - type: loadout @@ -106,6 +106,31 @@ - CigarGold groupBy: "smokeables" +# Folders +- type: loadout + id: BoxFolderBaseThreePapers + storage: + back: + - BoxFolderBaseThreePapers + groupBy: "folders" + +- type: loadout + id: BoxFolderPlasticClipboardThreePapers + storage: + back: + - BoxFolderPlasticClipboardThreePapers + groupBy: "folders" + +- type: loadout + id: BoxFolderClipboardThreePapers + effects: + - !type:GroupLoadoutEffect + proto: Command + storage: + back: + - BoxFolderClipboardThreePapers + groupBy: "folders" + # Pins - type: loadout id: ClothingNeckLGBTPin @@ -308,7 +333,7 @@ - !type:JobRequirementLoadoutEffect requirement: !type:OverallPlaytimeRequirement - time: 36000 # 10hr + time: 10h storage: back: - TowelColorWhite @@ -320,7 +345,7 @@ - !type:JobRequirementLoadoutEffect requirement: !type:OverallPlaytimeRequirement - time: 1800000 # 500hr + time: 500h storage: back: - TowelColorSilver @@ -332,7 +357,7 @@ - !type:JobRequirementLoadoutEffect requirement: !type:OverallPlaytimeRequirement - time: 3600000 # 1000hr + time: 1000h storage: back: - TowelColorGold @@ -345,7 +370,7 @@ requirement: !type:DepartmentTimeRequirement department: Cargo - time: 360000 # 100hr + time: 100h storage: back: - TowelColorLightBrown @@ -358,7 +383,7 @@ requirement: !type:DepartmentTimeRequirement department: Civilian - time: 360000 # 100hr + time: 100h storage: back: - TowelColorGreen @@ -371,7 +396,7 @@ requirement: !type:DepartmentTimeRequirement department: Command - time: 360000 # 100hr + time: 100h storage: back: - TowelColorDarkBlue @@ -384,7 +409,7 @@ requirement: !type:DepartmentTimeRequirement department: Engineering - time: 360000 # 100hr + time: 100h storage: back: - TowelColorOrange @@ -397,7 +422,7 @@ requirement: !type:DepartmentTimeRequirement department: Medical - time: 360000 # 100hr + time: 100h storage: back: - TowelColorLightBlue @@ -410,7 +435,7 @@ requirement: !type:DepartmentTimeRequirement department: Science - time: 360000 # 100hr + time: 100h storage: back: - TowelColorPurple @@ -423,7 +448,7 @@ requirement: !type:DepartmentTimeRequirement department: Security - time: 360000 # 100hr + time: 100h storage: back: - TowelColorRed @@ -436,7 +461,7 @@ requirement: !type:RoleTimeRequirement role: JobPassenger - time: 360000 # 100hr + time: 100h storage: back: - TowelColorGray @@ -449,7 +474,7 @@ requirement: !type:RoleTimeRequirement role: JobChaplain - time: 360000 # 100hr + time: 100h storage: back: - TowelColorBlack @@ -462,7 +487,7 @@ requirement: !type:RoleTimeRequirement role: JobLibrarian - time: 360000 # 100hr + time: 100h storage: back: - TowelColorDarkGreen @@ -475,7 +500,7 @@ requirement: !type:RoleTimeRequirement role: JobIAA # Corvax-IAA - time: 360000 # 100hr + time: 100h storage: back: - TowelColorMaroon @@ -488,7 +513,7 @@ requirement: !type:RoleTimeRequirement role: JobClown - time: 360000 # 100hr + time: 100h storage: back: - TowelColorYellow @@ -501,7 +526,7 @@ requirement: !type:RoleTimeRequirement role: JobMime - time: 360000 # 100hr + time: 100h storage: back: - TowelColorMime diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index 2cd7c8f0a4..ca11702c36 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -19,6 +19,9 @@ - CigPackBlack - CigarCase - CigarGold + - BoxFolderBaseThreePapers + - BoxFolderPlasticClipboardThreePapers + - BoxFolderClipboardThreePapers - ClothingNeckLGBTPin - ClothingNeckAllyPin - ClothingNeckAromanticPin @@ -290,6 +293,13 @@ - BartenderApron - BartenderWintercoat +- type: loadoutGroup + id: BartenderGoldenShaker + name: loadout-group-bartender-shaker + minLimit: 0 + loadouts: + - BartenderGoldenShaker + - type: loadoutGroup id: ChefHead name: loadout-group-chef-head @@ -401,10 +411,11 @@ minLimit: 1 loadouts: - Bible - - BibleDruid - BibleNanoTrasen - - BibleSatanic - - BibleTanakh + - BibleDruid + - BibleHonk + - BibleRatvar + - BibleNarsie - type: loadoutGroup id: JanitorHead diff --git a/Resources/Prototypes/Loadouts/role_loadouts.yml b/Resources/Prototypes/Loadouts/role_loadouts.yml index 4d2c45ad17..bb2dd1bf58 100644 --- a/Resources/Prototypes/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Loadouts/role_loadouts.yml @@ -65,6 +65,7 @@ - BartenderJumpsuit - CommonBackpack - BartenderOuterClothing + - BartenderGoldenShaker - Glasses - Survival - Trinkets diff --git a/Resources/Prototypes/Maps/relic.yml b/Resources/Prototypes/Maps/relic.yml index 5739d15558..cb9f8003b1 100644 --- a/Resources/Prototypes/Maps/relic.yml +++ b/Resources/Prototypes/Maps/relic.yml @@ -60,7 +60,7 @@ SecurityCadet: [ 2, 2 ] #intern, not counted #Lawyer: [ 1, 1 ] #supply (0) - #civilian (1+) + #civilian (0+) Passenger: [ -1, -1 ] #infinite, not counted #silicon (1) StationAi: [ 1, 1 ] diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index 174c26dae4..1d635cbf3c 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -23,7 +23,7 @@ CaptainGunStealObjective: 0.5 CaptainJetpackStealObjective: 0.5 HandTeleporterStealObjective: 0.5 - EnergyShotgunStealObjective: 0.5 + EnergyMagnumStealObjective: 0.5 - type: weightedRandom id: TraitorObjectiveGroupKill diff --git a/Resources/Prototypes/Objectives/stealTargetGroups.yml b/Resources/Prototypes/Objectives/stealTargetGroups.yml index 4aad692734..37d7ca1124 100644 --- a/Resources/Prototypes/Objectives/stealTargetGroups.yml +++ b/Resources/Prototypes/Objectives/stealTargetGroups.yml @@ -85,11 +85,11 @@ state: icon - type: stealTargetGroup - id: WeaponEnergyShotgun - name: steal-target-groups-weapon-energy-shot-gun + id: WeaponEnergyMagnum + name: steal-target-groups-weapon-energy-magnum sprite: - sprite: Objects/Weapons/Guns/Battery/energy_shotgun.rsi - state: base + sprite: Objects/Weapons/Guns/Battery/energy_magnum.rsi + state: icon # Thief Collection diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index 61a8fbf1c6..9af0215e8e 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -243,7 +243,7 @@ - type: entity parent: BaseTraitorStealObjective - id: EnergyShotgunStealObjective + id: EnergyMagnumStealObjective components: - type: Objective # HoS will have this on them a lot of the time so.. @@ -251,7 +251,7 @@ - type: NotJobRequirement job: HeadOfSecurity - type: StealCondition - stealGroup: WeaponEnergyShotgun + stealGroup: WeaponEnergyMagnum owner: job-name-hos ## ce diff --git a/Resources/Prototypes/Parallaxes/relic.yml b/Resources/Prototypes/Parallaxes/relic.yml index ba72af7ace..bc0be872d5 100644 --- a/Resources/Prototypes/Parallaxes/relic.yml +++ b/Resources/Prototypes/Parallaxes/relic.yml @@ -5,5 +5,5 @@ !type:ImageParallaxTextureSource path: "/Textures/Parallaxes/oldspace.png" slowness: 0.0 - scrolling: "-0.25, 0" + scrolling: "-0.125, 0" scale: "1, 1" diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml index 68448bc0c9..f49e9f9671 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml @@ -96,7 +96,7 @@ color: "#664300" metamorphicSprite: sprite: Objects/Consumable/Drinks/cafe_latte.rsi - state: icon_empty + state: icon metamorphicMaxFillLevels: 1 metamorphicFillBaseName: fill- metamorphicChangeColor: false diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml index b5dbdf032a..a82a44b00a 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml @@ -5,6 +5,10 @@ - node: start edges: - to: msstunprod + completed: + - !type:AdminLog + message: "Construction" + impact: High steps: - material: MetalRod amount: 1 diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/security.yml b/Resources/Prototypes/Recipes/Lathes/Packs/security.yml index 0dc5fe3d90..51058205c4 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/security.yml @@ -49,9 +49,6 @@ - MagazinePistolSubMachineGunTopMountedEmpty - MagazineRifle - MagazineRifleEmpty - - MagazineShotgun - - MagazineShotgunEmpty - - MagazineShotgunSlug - SpeedLoaderMagnum - SpeedLoaderMagnumEmpty diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/syndicate.yml b/Resources/Prototypes/Recipes/Lathes/Packs/syndicate.yml new file mode 100644 index 0000000000..8c87f80780 --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/Packs/syndicate.yml @@ -0,0 +1,9 @@ +## Static recipes + +# Added to emagged autolathe +- type: latheRecipePack + id: SyndicateAmmoStatic + recipes: + - MagazineShotgun + - MagazineShotgunEmpty + - MagazineShotgunSlug diff --git a/Resources/Prototypes/Roles/Antags/nukeops.yml b/Resources/Prototypes/Roles/Antags/nukeops.yml index a134849c9e..6fb887c21c 100644 --- a/Resources/Prototypes/Roles/Antags/nukeops.yml +++ b/Resources/Prototypes/Roles/Antags/nukeops.yml @@ -6,10 +6,10 @@ objective: roles-antag-nuclear-operative-objective requirements: - !type:OverallPlaytimeRequirement - time: 54000 # 15h # Corvax-RoleTime + time: 15h # Corvax-RoleTime 5 - !type:DepartmentTimeRequirement department: Security - time: 18000 # 5h # Corvax-RoleTime + time: 5h # Corvax-RoleTime guides: [ NuclearOperatives ] - type: antag @@ -20,13 +20,13 @@ objective: roles-antag-nuclear-operative-agent-objective requirements: - !type:OverallPlaytimeRequirement - time: 54000 # 15h # Corvax-RoleTime + time: 15h # Corvax-RoleTime 5 - !type:RoleTimeRequirement role: JobChemist - time: 36000 # 10h # Corvax-RoleTime + time: 10h # Corvax-RoleTime 3 - !type:DepartmentTimeRequirement department: Security - time: 36000 # 10h # Corvax-RoleTime + time: 10h # Corvax-RoleTime guides: [ NuclearOperatives ] - type: antag @@ -37,10 +37,10 @@ objective: roles-antag-nuclear-operative-commander-objective requirements: - !type:OverallPlaytimeRequirement - time: 108000 # 30h # Corvax-RoleTime + time: 30h # Corvax-RoleTime 5 - !type:DepartmentTimeRequirement department: Security - time: 54000 # 15h # Corvax-RoleTime + time: 15h # Corvax-RoleTime 5 # should be changed to nukie playtime when thats tracked (wyci) guides: [ NuclearOperatives ] diff --git a/Resources/Prototypes/Roles/Antags/revolutionary.yml b/Resources/Prototypes/Roles/Antags/revolutionary.yml index 7beeeb41f6..20b10bff03 100644 --- a/Resources/Prototypes/Roles/Antags/revolutionary.yml +++ b/Resources/Prototypes/Roles/Antags/revolutionary.yml @@ -7,7 +7,7 @@ guides: [ Revolutionaries ] requirements: - !type:OverallPlaytimeRequirement - time: 108000 # 30h # Corvax-RoleTime + time: 30h # Corvax-RoleTime 1 - type: antag id: Rev diff --git a/Resources/Prototypes/Roles/Antags/thief.yml b/Resources/Prototypes/Roles/Antags/thief.yml index afe3467ad0..8d32f84294 100644 --- a/Resources/Prototypes/Roles/Antags/thief.yml +++ b/Resources/Prototypes/Roles/Antags/thief.yml @@ -7,7 +7,7 @@ guides: [ Thieves ] requirements: - !type:OverallPlaytimeRequirement - time: 108000 # 30h # Corvax-RoleTime + time: 30h # Corvax-RoleTime 1 - type: startingGear id: ThiefGear diff --git a/Resources/Prototypes/Roles/Antags/traitor.yml b/Resources/Prototypes/Roles/Antags/traitor.yml index 15c7b242b2..0cd255b7fd 100644 --- a/Resources/Prototypes/Roles/Antags/traitor.yml +++ b/Resources/Prototypes/Roles/Antags/traitor.yml @@ -7,7 +7,7 @@ guides: [ Traitors ] requirements: - !type:OverallPlaytimeRequirement - time: 108000 # 30h # Corvax-RoleTime + time: 30h # Corvax-RoleTime 1 - type: antag id: TraitorSleeper @@ -18,7 +18,7 @@ guides: [ Traitors ] requirements: - !type:OverallPlaytimeRequirement - time: 3600 # 1h + time: 1h # Syndicate Operative Outfit - Monkey - type: startingGear diff --git a/Resources/Prototypes/Roles/Antags/wizard.yml b/Resources/Prototypes/Roles/Antags/wizard.yml index 0ddf90ef2b..8ef9bda367 100644 --- a/Resources/Prototypes/Roles/Antags/wizard.yml +++ b/Resources/Prototypes/Roles/Antags/wizard.yml @@ -13,7 +13,7 @@ objective: roles-antag-wizard-objective # TODO: maybe give random objs and stationary ones from AntagObjectives and AntagRandomObjectives requirements: # I hate time locked roles but this should be enough time for someone to be acclimated - !type:OverallPlaytimeRequirement - time: 18000 # 5h + time: 5h guides: [ Wizard ] # See wizard_startinggear for wiz start gear options diff --git a/Resources/Prototypes/Roles/Antags/zombie.yml b/Resources/Prototypes/Roles/Antags/zombie.yml index 8123e28ecb..d1f3858ce8 100644 --- a/Resources/Prototypes/Roles/Antags/zombie.yml +++ b/Resources/Prototypes/Roles/Antags/zombie.yml @@ -7,7 +7,7 @@ guides: [ Zombies ] requirements: - !type:OverallPlaytimeRequirement - time: 108000 # 30h # Corvax-RoleTime + time: 30h # Corvax-RoleTime 1 - type: antag id: Zombie diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index edf42d0f2d..c54ae3e7fe 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -9,12 +9,12 @@ # time: 21600 #6 hrs - !type:RoleTimeRequirement role: JobSalvageSpecialist - time: 36000 #10 hrs # Corvax-RoleTime + time: 10h # Corvax-RoleTime 2.5 - !type:DepartmentTimeRequirement department: Cargo - time: 36000 #10 hours + time: 10h - !type:OverallPlaytimeRequirement - time: 144000 #40 hrs + time: 40h # Corvax-RoleTime - !type:TraitsRequirement #Corvax-TraitsRequirement inverted: true traits: diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml b/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml index d23649bf3a..c4dca0d652 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/salvage_specialist.yml @@ -6,9 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Cargo - time: 10800 # 3 hrs -# - !type:OverallPlaytimeRequirement -# time: 36000 #10 hrs + time: 3h icon: "JobIconShaftMiner" startingGear: SalvageSpecialistGear supervisors: job-supervisors-qm diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml index a121fe82bf..4373f0d7e5 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/bartender.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Civilian - time: 3600 #1 hrs # Corvax-RoleTime + time: 1h # Corvax-RoleTime startingGear: BartenderGear icon: "JobIconBartender" supervisors: job-supervisors-hop diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml index cb8549e80f..a8af348c56 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chef.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Civilian - time: 3600 #1 hrs # Corvax-RoleTime + time: 1h # Corvax-RoleTime startingGear: ChefGear icon: "JobIconChef" supervisors: job-supervisors-hop diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml index 038dbc0c70..1951bf5342 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml @@ -5,7 +5,7 @@ playTimeTracker: JobLawyer requirements: - !type:OverallPlaytimeRequirement - time: 9000 # 2.5 hrs + time: 2.5h startingGear: LawyerGear setPreference: false # Corvax-IAA icon: "JobIconLawyer" diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml index 821e894eca..23a49231b0 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/mime.yml @@ -4,8 +4,8 @@ description: job-description-mime playTimeTracker: JobMime requirements: - - !type:OverallPlaytimeRequirement - time: 3600 #1 hrs # Corvax-RoleTime + - !type:OverallPlaytimeRequirement + time: 1h # Corvax-RoleTime 4 startingGear: MimeGear icon: "JobIconMime" supervisors: job-supervisors-hop diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml index f98dac80ed..0c83971827 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Civilian - time: 1800 #0.5 hr + time: 0.5h startingGear: ServiceWorkerGear icon: "JobIconServiceWorker" supervisors: job-supervisors-service diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index 42c63b97cc..6b9b93a2b2 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -6,21 +6,21 @@ requirements: - !type:DepartmentTimeRequirement department: Engineering - time: 72000 #20 hrs # Corvax-RoleTime + time: 20h # Corvax-RoleTime 4 - !type:DepartmentTimeRequirement department: Medical - time: 72000 #20 hrs # Corvax-RoleTime + time: 20h # Corvax-RoleTime 4 - !type:DepartmentTimeRequirement department: Science - time: 14400 # 4 hours + time: 4h - !type:DepartmentTimeRequirement department: Security - time: 72000 #20 hrs # Corvax-RoleTime + time: 20h # Corvax-RoleTime 4 # - !type:DepartmentTimeRequirement # department: Command -# time: 54000 # 15 hours +# time: 4h - !type:OverallPlaytimeRequirement - time: 504000 #140 hrs # Corvax-RoleTime + time: 140h # Corvax-RoleTime 4 - !type:TraitsRequirement #Corvax-TraitsRequirement inverted: true traits: diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index ce4762b47f..3e11f97103 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -6,21 +6,21 @@ requirements: - !type:DepartmentTimeRequirement department: Engineering - time: 18000 #5 hrs # Corvax-RoleTime + time: 5h # Corvax-RoleTime 2.5h - !type:DepartmentTimeRequirement department: Medical - time: 18000 #5 hrs # Corvax-RoleTime + time: 5h # Corvax-RoleTime 2.5h - !type:DepartmentTimeRequirement department: Science - time: 9000 # 2.5 hrs + time: 2.5h - !type:DepartmentTimeRequirement department: Security - time: 18000 #5 hrs # Corvax-RoleTime + time: 5h # Corvax-RoleTime 2.5h # - !type:DepartmentTimeRequirement # department: Command -# time: 72000 # 20 hrs +# time: 2.5h - !type:OverallPlaytimeRequirement - time: 180000 #50 hrs # Corvax-RoleTime + time: 50h # Corvax-RoleTime - !type:TraitsRequirement #Corvax-TraitsRequirement inverted: true traits: diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml index b371a6be9d..9cd766503d 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Engineering - time: 36000 #10 hrs # Corvax-RoleTime + time: 10h # Corvax-RoleTime 2.5 startingGear: AtmosphericTechnicianGear icon: "JobIconAtmosphericTechnician" supervisors: job-supervisors-ce diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml index 8df960f884..7f2d055212 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml @@ -6,13 +6,13 @@ requirements: - !type:RoleTimeRequirement role: JobAtmosphericTechnician - time: 36000 #10 hrs # Corvax-RoleTime + time: 10h # Corvax-RoleTime 2.5h # - !type:RoleTimeRequirement # role: JobStationEngineer # time: 21600 #6 hrs - !type:DepartmentTimeRequirement department: Engineering - time: 54000 #15 hrs # Corvax-RoleTime + time: 15h # Corvax-RoleTime 5h # - !type:OverallPlaytimeRequirement # time: 144000 #40 hrs - !type:TraitsRequirement #Corvax-TraitsRequirement diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml index f3fe0346f7..2a4540380a 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Engineering - time: 18000 #5 hrs # Corvax-RoleTime + time: 5h # Corvax-RoleTime startingGear: StationEngineerGear icon: "JobIconStationEngineer" supervisors: job-supervisors-ce diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml index 422accef35..6b77a2d4f5 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml @@ -5,10 +5,10 @@ playTimeTracker: JobTechnicalAssistant requirements: - !type:OverallPlaytimeRequirement - time: 3600 #1 hr + time: 1h - !type:DepartmentTimeRequirement department: Engineering - time: 36000 #10 hrs # Corvax-RoleTime + time: 10h # Corvax-RoleTime inverted: true # stop playing intern if you're good at engineering! startingGear: TechnicalAssistantGear icon: "JobIconTechnicalAssistant" diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml index 9a893a5f81..784ba81403 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chemist.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Medical - time: 18000 #5 hrs # Corvax-RoleTime + time: 5h startingGear: ChemistGear icon: "JobIconChemist" supervisors: job-supervisors-cmo diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index c3db33f369..04aaf883ea 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -8,13 +8,13 @@ requirements: - !type:RoleTimeRequirement role: JobChemist - time: 18000 #5 hrs # Corvax-RoleTime + time: 5h # Corvax-RoleTime 2.5h # - !type:RoleTimeRequirement # role: JobMedicalDoctor -# time: 21600 #6 hrs +# time: 5h - !type:DepartmentTimeRequirement department: Medical - time: 54000 #15 hrs # Corvax-RoleTime + time: 15h # Corvax-RoleTime 10h # - !type:OverallPlaytimeRequirement # time: 144000 #40 hrs - !type:TraitsRequirement #Corvax-TraitsRequirement diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml index d13f6b62d4..5e6c77060b 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Medical - time: 7200 #2 hrs # Corvax-RoleTime + time: 2h # Corvax-RoleTime startingGear: DoctorGear icon: "JobIconMedicalDoctor" supervisors: job-supervisors-cmo diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml index d8c56373cf..b1ebcaa1dd 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Medical - time: 36000 #10 hrs # Corvax-RoleTime + time: 10h # Corvax-RoleTime 5 inverted: true # stop playing intern if you're good at med! startingGear: MedicalInternGear icon: "JobIconMedicalIntern" diff --git a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml index 5526e63f24..da71ac0367 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Medical - time: 9000 #2.5 hrs + time: 2.5h startingGear: ParamedicGear icon: "JobIconParamedic" supervisors: job-supervisors-cmo diff --git a/Resources/Prototypes/Roles/Jobs/Science/borg.yml b/Resources/Prototypes/Roles/Jobs/Science/borg.yml index 84ded8ed48..da84441e31 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/borg.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/borg.yml @@ -8,7 +8,7 @@ requirements: - !type:RoleTimeRequirement role: JobBorg - time: 18000 # 5 hrs + time: 5h canBeAntag: false icon: JobIconStationAi supervisors: job-supervisors-rd @@ -23,7 +23,7 @@ playTimeTracker: JobBorg requirements: - !type:OverallPlaytimeRequirement - time: 36000 # 10 hrs + time: 10h canBeAntag: false icon: JobIconBorg supervisors: job-supervisors-rd diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml index 7c52e26cc0..5bfee0f0cc 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_assistant.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Science - time: 36000 #10 hrs # Corvax-RoleTime + time: 10h # Corvax-RoleTime 5 inverted: true # stop playing intern if you're good at science! startingGear: ResearchAssistantGear icon: "JobIconResearchAssistant" diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index c2cbc7a77b..f7c173cc41 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -4,11 +4,12 @@ description: job-description-rd playTimeTracker: JobResearchDirector requirements: + #- !type:RoleTimeRequirement + # role: JobScientist + # time: 5h - !type:DepartmentTimeRequirement department: Science - time: 54000 #15 hrs # Corvax-RoleTime -# - !type:OverallPlaytimeRequirement -# time: 144000 #40 hrs + time: 15h # Corvax-RoleTime 10 - !type:TraitsRequirement #Corvax-TraitsRequirement inverted: true traits: diff --git a/Resources/Prototypes/Roles/Jobs/Science/scientist.yml b/Resources/Prototypes/Roles/Jobs/Science/scientist.yml index e924b82e98..c397ea79b5 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/scientist.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/scientist.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Science - time: 18000 #5 hrs # Corvax-RoleTime + time: 5h # Corvax-RoleTime startingGear: ScientistGear icon: "JobIconScientist" supervisors: job-supervisors-rd diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml index 9b09cf274d..b92f16bbe9 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Security - time: 72000 #20 hrs # Corvax-RoleTime + time: 20h # Corvax-RoleTime - !type:TraitsRequirement #Corvax-TraitsRequirement inverted: true traits: diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 7ab40f1407..b947dffcea 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -6,15 +6,16 @@ requirements: - !type:RoleTimeRequirement role: JobWarden - time: 36000 #10 hrs # Corvax-RoleTime -# - !type:RoleTimeRequirement -# role: JobSecurityOfficer -# time: 36000 #10 hrs + time: 10h # Corvax-RoleTime 1 + #- !type:RoleTimeRequirement + # role: JobDetective + # time: 1h # knowing how to use the tools is important + #- !type:RoleTimeRequirement + # role: JobSecurityOfficer + # time: 5h - !type:DepartmentTimeRequirement department: Security - time: 108000 #50 hrs # Corvax-RoleTime -# - !type:OverallPlaytimeRequirement -# time: 144000 #40 hrs + time: 50h # Corvax-RoleTime 10 - !type:TraitsRequirement #Corvax-TraitsRequirement inverted: true traits: diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml index bd3f4e2997..98fcc8f370 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml @@ -5,10 +5,10 @@ playTimeTracker: JobSecurityCadet requirements: - !type:OverallPlaytimeRequirement - time: 36000 #10 hrs # Corvax-RoleTime + time: 10h # Corvax-RoleTime - !type:DepartmentTimeRequirement department: Security - time: 72000 #20 hrs # Corvax-RoleTime + time: 20h # Corvax-RoleTime 5 inverted: true # stop playing intern if you're good at security! - !type:TraitsRequirement #Corvax-TraitsRequirement inverted: true diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml index 473763026a..e51fcb54cf 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/security_officer.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Security - time: 36000 #10 hrs # Corvax-RoleTime + time: 10h # Corvax-RoleTime - !type:TraitsRequirement #Corvax-TraitsRequirement inverted: true traits: diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index b0b9b7eef8..371b592f23 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -6,7 +6,7 @@ requirements: - !type:DepartmentTimeRequirement department: Security - time: 108000 #50 hrs # Corvax-RoleTime + time: 50h # Corvax-RoleTime - !type:TraitsRequirement #Corvax-TraitsRequirement inverted: true traits: diff --git a/Resources/Prototypes/Roles/requirement_overrides.yml b/Resources/Prototypes/Roles/requirement_overrides.yml index 62041f42d7..752249e90b 100644 --- a/Resources/Prototypes/Roles/requirement_overrides.yml +++ b/Resources/Prototypes/Roles/requirement_overrides.yml @@ -4,13 +4,13 @@ Captain: - !type:DepartmentTimeRequirement department: Engineering - time: 3600 # 1 hours + time: 1h - !type:DepartmentTimeRequirement department: Medical - time: 3600 # 1 hours + time: 1h - !type:DepartmentTimeRequirement department: Security - time: 3600 # 1 hours + time: 1h - !type:DepartmentTimeRequirement department: Command - time: 3600 # 1 hour + time: 1h diff --git a/Resources/Prototypes/Species/vox.yml b/Resources/Prototypes/Species/vox.yml index 1b49ebc776..d01db69e0d 100644 --- a/Resources/Prototypes/Species/vox.yml +++ b/Resources/Prototypes/Species/vox.yml @@ -52,6 +52,9 @@ points: 1 required: true defaultMarkings: [ VoxBeak ] + SnoutCover: + points: 1 + required: false Arms: points: 4 required: true diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index e24aba9b1f..d7d70da156 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -40,10 +40,10 @@ id: Arrow # Storage whitelist: ClothingBeltQuiver - type: Tag - id: ArtifactFragment # Storage whitelist: OreBag, CargoBounty: BountyArtifactFragment, ConstructionGraph: Artifact + id: ArtifactFragment # Storage whitelist: OreBag. CargoBounty: BountyArtifactFragment. ConstructionGraph: Artifact - type: Tag - id: ATVKeys # Unused + id: ATVKeys # Unused x2 ## B ## @@ -57,7 +57,7 @@ id: Banana # CargoBounty: BountyBanana - type: Tag - id: BananaPeel # SpecialDigestible by OrganAnimalRuminantStomach, and several BananaClown ConstructionGraphs + id: BananaPeel # SpecialDigestible by OrganAnimalRuminantStomach. Several BananaClown ConstructionGraphs - type: Tag id: Bandana # CargoBounty: BountyBandana @@ -66,13 +66,13 @@ id: BaseballBat # CargoBounty: BountyBaseballBat - type: Tag - id: BBQsauce # Storage whitelist: ClothingBeltChef and FoodCartHot, ItemMapper: ClothingBeltChef and FoodCartHot + id: BBQsauce # Storage whitelist: ClothingBeltChef and FoodCartHot. ItemMapper: ClothingBeltChef and FoodCartHot - type: Tag id: Bedsheet # CargoBounty: BountyBedsheet - type: Tag - id: Bee # Mode switch whitelisting for BuzzochloricBees (only damages non-bees) + id: Bee # Mode switching for BuzzochloricBees (only damages non-bees) - type: Tag id: Beer # CargoBounty: BountyBeer @@ -87,7 +87,7 @@ id: BlueprintAutolathe # Whitelist on BlueprintReceiverComponent on the autolate for linking this entity's BlueprintComponent - type: Tag - id: BodyBag # Storage whitelist: BoxBodyBag # TODO cardboard boxes shouldn't have whitelisting + id: BodyBag # Storage whitelist: BoxBodyBag - type: Tag id: Boll # MaterialStorage whitelist: Sheetifier @@ -147,16 +147,16 @@ id: BorgModuleSyndicateAssault # Cyborg module category for extra evil red robots (nukies) - type: Tag - id: Bot # Unused + id: Bot # Unused (Exists on MobRobotic, MobSupplyBot) - type: Tag - id: BotanyHatchet # Storage whitelist: ClothingBeltPlant, ItemMapper: ClothingBeltPlant + id: BotanyHatchet # Storage whitelist: ClothingBeltPlant. ItemMapper: ClothingBeltPlant - type: Tag - id: BotanyHoe # Storage whitelist: ClothingBeltPlant, ItemMapper: ClothingBeltPlant + id: BotanyHoe # Storage whitelist: ClothingBeltPlant. ItemMapper: ClothingBeltPlant - type: Tag - id: BotanyShovel # Storage whitelist: ClothingBeltPlant, ItemMapper: ClothingBeltPlant + id: BotanyShovel # Storage whitelist: ClothingBeltPlant. ItemMapper: ClothingBeltPlant - type: Tag # Used for specifically chemistry bottles id: Bottle # Storage whitelist: ChemMaster, ChemBag, SmartFridge, ClothingBeltJanitor, ClothingBeltMedical, ClothingBeltPlant @@ -165,10 +165,10 @@ id: BoxCardboard # CargoBounty: BountyCardboardBox - type: Tag - id: BoxHug # Unused + id: BoxHug # Unused (Exists on BoxHug, BoxHoloclown) - type: Tag - id: Brain # Storage whitelist: MMI. CargoBounty: BountyBrain. FoodSequenceElement: Brain + id: Brain # Storage whitelist: MMI. CargoBounty: BountyBrain - type: Tag id: BrassInstrument # MachineBoard construction: DawInstrumentMachineCircuitboard @@ -177,7 +177,7 @@ id: Bread # CargoBounty: BountyBread. Blacklisted in BountyFruit and BountyVegetable - type: Tag - id: Briefcase # Unused + id: Briefcase # Unused (exists on BriefcaseBase) - type: Tag id: BrimFlatcapBrown # ConstructionGraph: BladedFlatcapBrown @@ -192,16 +192,16 @@ id: Bucket # Storage whitelist: JanitorialTrolley. ItemMapper: JanitorialTrolley. ConstructionGraph: CleanBot, scraphelmet - type: Tag - id: Burger # Unused x2 (this is the only place burger tag exists) + id: Burger # Food sequence key - type: Tag - id: BulletFoam # BallisticAmmoProviderComponent whitelist for WeaponRifleFoam, FoamCrossbow, MagazineFoamBox, BoxDonkSoftBox + id: BulletFoam # Ammo: WeaponRifleFoam, FoamCrossbow, MagazineFoamBox, BoxDonkSoftBox - type: Tag id: Burnt # Storage whitelist: ashtray. Seemingly redundant - type: Tag - id: Bun # FoodSequenceElement: BunTopBurger, CottonBunTopBurger + id: Bun # Unused (Exists on FoodSequenceElements BunTopBurger and CottonBunTopBurger) - type: Tag id: BypassDropChecks # Entities with this tag don't care about drop distance or walls (Aghost) @@ -212,414 +212,416 @@ ## C ## - type: Tag - id: CableCoil + id: CableCoil # Storage whitelist: ClothingBeltUtility, BorgModuleCable - type: Tag - id: Candle + id: Candle # Storage whitelist: BoxCandle - type: Tag - id: Cake + id: Cake # CargoBounty blacklist: BountyFruit, BountyVegetable - type: Tag - id: CaneBlade + id: CaneBlade # Storage whitelist: CaneSheath. ItemMapper: CaneSheath - type: Tag - id: CannonBall + id: CannonBall # Ammo: WeaponLauncherPirateCannon, ShuttleGunPirateCannon - type: Tag - id: CannotSuicide + id: CannotSuicide # Used by SuicideSystem. Entities with this tag ghost when attempting to suicide - type: Tag - id: CanPilot + id: CanPilot # Used by ShuttleConsoleSystem to guard who's allowed to pilot ships - type: Tag - id: CaptainSabre + id: CaptainSabre # Storage whitelist: ClothingBeltSheath. ItemMapper: ClothingBeltSheath - type: Tag - id: Carpet + id: Carpet # Unused (exists on carpets (obviously)) - type: Tag - id: Carrot + id: Carrot # CargoBounty: BountyCarrot - type: Tag - id: CarrotFries + id: CarrotFries # CargoBounty: BountyCarrotFries - type: Tag - id: Carp + id: Carp # CargoBounty: BountyCarp + +- type: Tag # NOT bullets. This is for the cart to load PDA programs + id: Cartridge # Storage whitelist: BasePDA, TrashBag - type: Tag - id: Cartridge + id: CartridgeAntiMateriel # Ammo: WeaponSniperHristov, Musket, BaseMagazineBoxAntiMateriel - type: Tag - id: CartridgeAntiMateriel + id: CartridgeCap # Ammo: RevolverCapGun, RevolverCapGunFake, BaseSpeedLoaderCap - type: Tag - id: CartridgeCap + id: CartridgeCaselessRifle # Ammo: WeaponPistolCobra, BaseMagazineCaselessRifle, BaseMagazineBoxCaselessRifle - type: Tag - id: CartridgeCaselessRifle + id: CartridgeCHIMP # Unused x2 - type: Tag - id: CartridgeCHIMP + id: CartridgeHeavyRifle # Unused (exists on BaseCartridgeHeavyRifle) - type: Tag - id: CartridgeHeavyRifle + id: CartridgeLightRifle # Ammo: BaseWeaponLightMachineGun, BaseWeaponRifle, BaseWeaponSniper + # SpeedLoaderLightRifle, BaseMagazineLightRifle, BaseMagazineBoxLightRifle - type: Tag - id: CartridgeLightRifle + id: CartridgeMagnum # Ammo: BaseWeaponRevolver, RevolverCapGunFake, WeaponPistolN1984, WeaponPistolFlintlock, XenoArtifactGun + # BaseMagazineBoxMagnum, BaseMagazineMagnum, BaseSpeedLoaderMagnum - type: Tag - id: CartridgeMagnum + id: CartridgePistol # Ammo: BaseWeaponPistol, BasePistol, BaseWeaponSubMachineGun, WeaponPistolViper, WeaponSubMachineGunDrozd, WeaponSubMachineGunWt550 + # BaseMagazineBoxPistol, BaseMagazinePistol, BaseMagazinePistolHighCapacity, BaseMagazinePistolSubMachineGun, MagazinePistolSubMachineGunTopMounted, BaseSpeedLoaderPistol - type: Tag - id: CartridgePistol + id: CartridgeRifle # Ammo: BaseMagazineRifle, WeaponRifleLecter, WeaponRifleEstoc, WeaponRifleM90GrenadeLauncher, BaseMagazineBoxRifle - type: Tag - id: CartridgeRifle + id: CartridgeRocket # Ammo: WeaponLauncherRocket, WeaponLauncherMultipleRocket - type: Tag - id: CartridgeRocket - -# Allows you to walk over tile entities such as lava without steptrigger -- type: Tag - id: Catwalk + id: Catwalk # Allows you to walk over tile entities such as lava without steptrigger - type: Tag - id: CentrifugeCompatible + id: CentrifugeCompatible # Storage whitelist: MachineCentrifuge - type: Tag - id: Chicken + id: Chicken # MetamorphRecipe: FoodBurgerChicken - type: Tag - id: Cheese - -# Allowed to control someone wearing a Chef's hat if inside their hat. -- type: Tag - id: ChefPilot + id: Cheese # MetamorphRecipe: FoodBurgerCheese, FoodBurgerDuck - type: Tag - id: ChemDispensable # container that can go into the chem dispenser + id: ChefPilot # Allowed to control someone wearing a Chef's hat if inside their hat. - type: Tag - id: ChiliBowl + id: ChemDispensable # Storage whitelist: ChemDispenserEmpty, SmartFridge, BorgModuleAdvancedChemical - type: Tag - id: Cigarette + id: ChiliBowl # CargoBounty: BountyChili - type: Tag - id: CigFilter + id: Cigarette # Storage whitelist: Ashtray - type: Tag - id: CigPack + id: CigFilter # Storage whitelist: PackPaperRolling - type: Tag - id: Cleaver + id: CigPack # Storage whitelist: ClothingBeltUtility, ClothingBeltAssault, ClothingBeltChef, ClothingBeltMedical, ClothingBeltJanitor - type: Tag - id: ClockworkGlassShard + id: Cleaver # Storage whitelist: ClothingBeltChef. ItemMapper: ClothingBeltChef - type: Tag - id: ClothMade + id: ClockworkGlassShard # Unused (Exists on ShardGlassClockwork) - type: Tag - id: ClownMask + id: ClothMade # SpecialDigestible: OrganMothStomach. Storage whitelist: FoodBoxCloth - type: Tag - id: ClownRecorder + id: ClownMask # CargoBounty: BountyClownCostume. ConstructionGraph: Honker, BananaClownMask - type: Tag - id: ClownRubberStamp + id: ClownRecorder # ConstructionGraph: ClownHardsuit - type: Tag - id: ClownShoes + id: ClownRubberStamp # Unused: RubberStampClown - type: Tag - id: ClownSuit + id: ClownShoes # CargoBounty: BountyClownCostume. ConstructionGraph: Honker, BananaClownShoes - type: Tag - id: CluwneHappyHonk + id: ClownSuit # ConstructionGraph: BananaClownJumpsuit - type: Tag - id: CluwneHorn + id: CluwneHappyHonk # ConstructionGraph: JonkBot - type: Tag - id: Cola + id: CluwneHorn # ConstructionGraph: JonkBot - type: Tag - id: Coldsauce + id: Cola # Storage whitelist: DrinkCanPack - type: Tag - id: CombatKnife + id: Coldsauce # Storage whitelist: ClothingBeltChef and FoodCartHot. ItemMapper: ClothingBeltChef and FoodCartHot - type: Tag - id: ComputerTelevisionCircuitboard + id: CombatKnife # Storage whitelist: ClothingBeltSecurity - type: Tag - id: ConstructionMaterial + id: ComputerTelevisionCircuitboard # ConstructionGraph: WallmountTelevision - type: Tag - id: ConveyorAssembly + id: ConstructionMaterial # Storage whitelist: BorgModuleConstruction - type: Tag - id: CoordinatesDisk + id: ConveyorAssembly # ConstructionGraph: ConveyorGraph + +- type: Tag + id: CoordinatesDisk # Storage whitelist: DiskCase - type: Tag # designed to let corgis wear things; at present only for SmartCorgi. View PR 33737 on upstream for more dog wearables id: CorgiWearable - type: Tag #Ohioans die happy - id: Corn + id: Corn # CargoBounty: BountyCorn - type: Tag - id: CottonBoll + id: CottonBoll # CargoBounty: BountyCottonBoll - type: Tag - id: CottonBurger + id: CottonBurger # Food sequence key - type: Tag - id: Cow + id: Cow # Reproduction key - type: Tag - id: Crab + id: Crab # MetamorphRecipe: FoodBurgerCrab - type: Tag - id: Crayon + id: Crayon # SpecialDigestible: OrganAnimalStomach. CargoBounty: BountyCrayon - type: Tag - id: CrayonBlack + id: CrayonBlack # ConstructionGraph: MimeHardsuit. ItemMapper: CrayonBox - type: Tag - id: CrayonBlue + id: CrayonBlue # ItemMapper: CrayonBox - type: Tag - id: CrayonGreen + id: CrayonGreen # ItemMapper: CrayonBox - type: Tag - id: CrayonOrange + id: CrayonOrange # ItemMapper: CrayonBox - type: Tag - id: CrayonPurple + id: CrayonPurple # ConstructionGraph: ClownHardsuit. ItemMapper: CrayonBox - type: Tag - id: CrayonRed + id: CrayonRed # ConstructionGraph: MimeHardsuit, ClownHardsuit. ItemMapper: CrayonBox - type: Tag - id: CrayonWhite + id: CrayonWhite # ItemMapper: CrayonBox - type: Tag - id: CrayonYellow + id: CrayonYellow # ConstructionGraph: ClownHardsuit. ItemMapper: CrayonBox - type: Tag - id: Creamsicle + id: Creamsicle # Blacklist on BountyFruit - type: Tag - id: Crowbar + id: Crowbar # Storage whitelist: ClothingBeltUtility, ClothingBeltChiefEngineer. ItemMapper: ClothingBeltUtility, ClothingBeltChiefEngineer - type: Tag - id: CrowbarRed + id: CrowbarRed # Storage whitelist: ClothingBeltUtility, ClothingBeltChiefEngineer. ItemMapper: ClothingBeltUtility, ClothingBeltChiefEngineer - type: Tag - id: Cryobeaker + id: Cryobeaker # Unused x2 - type: Tag - id: CrystalBlack + id: CrystalBlack # ConstructionGraph: BlackLight, BlackLightBulb - type: Tag - id: CrystalBlue + id: CrystalBlue # ConstructionGraph: BlueLight, BlueLightBulb - type: Tag - id: CrystalCyan + id: CrystalCyan # ConstructionGraph: CyanLight, CyanLightBulb - type: Tag - id: CrystalGreen + id: CrystalGreen # ConstructionGraph: GreenLight, GreenLightBulb - type: Tag - id: CrystalOrange + id: CrystalOrange # ConstructionGraph: OrangeLight, OrangeLightBulb - type: Tag - id: CrystalPink + id: CrystalPink # ConstructionGraph: PinkLight, PinkLightBulb - type: Tag - id: CrystalRed + id: CrystalRed # ConstructionGraph: RedLight, RedLightBulb - type: Tag - id: CrystalYellow + id: CrystalYellow # ConstructionGraph: YellowLight, YellowLightBulb - type: Tag - id: CubanCarp + id: CubanCarp # CargoBounty: BountyCubanCarp ## D ## - type: Tag - id: DeathAcidifier + id: DeathAcidifier # Unused (Exists on DeathAcidifierImplant) - type: Tag - id: Debug + id: Debug # Exists on various debug / testing entities, but seemingly unused + +- type: Tag # Exists on diagonal walls and windows + id: Diagonal # Used by TileWallsCommand and FixRotationsCommand - type: Tag - id: Diagonal + id: Diamond # CargoBounty: BountySalvageDiamond - type: Tag - id: Diamond + id: Dice # Storage whitelist: BorgModuleService, DiceBag, BooksBag - type: Tag - id: Dice + id: DiscreteHealthAnalyzer # Storage whitelist: ClothingBeltMedical. ConstructionGraph: MediBot - type: Tag - id: DiscreteHealthAnalyzer #So construction recipes don't eat medical PDAs + id: DNASolutionScannable # Used by ForensicScannerSystem for scanning a solution container. Exists only on Puddle - type: Tag - id: DNASolutionScannable + id: DockArrivals # Used by ArrivalsSystem for finding a priority FTL destination - type: Tag - id: DockArrivals + id: DockCargo # Unused x2 - type: Tag - id: DockCargo + id: DockEmergency # Used bv EmergencyShuttleSystem - type: Tag - id: DockEmergency + id: Document # A superset of Paper tag. Represents a paper-like entity with writing on it, but is not necessarily writeable itself. - type: Tag - id: Document + id: DonkPocket # Storage whitelist: FoodBoxDonkpocket - type: Tag - id: DonkPocket + id: Donut # Storage whitelist: FoodBoxDonut. CargoBounty: BountyDonut - type: Tag - id: Donut + id: DoorBumpOpener # Used by SharedDoorSystem to allow entities to open doors when they collide. - type: Tag - id: DoorBumpOpener + id: DoorElectronics # ConstructionGraph: PinionAirlock, BlastDoor, Windoor + # Used interchangeably with DoorElectronicsComponent, sometimes even in the same graph. TODO pick one - type: Tag - id: DoorElectronics + id: DoorElectronicsConfigurator # Used by ActivatableUIComponent on entity DoorElectronics to whitelist a tool to open the UI. - type: Tag - id: DoorElectronicsConfigurator + id: DrinkBottle # Storage whitelist: BoozeDispenserEmpty, SodaDispenserEmpty - type: Tag - id: DrinkBottle + id: DrinkCan # ConstructionGraph: FireBomb - type: Tag - id: DrinkCan + id: DrinkCup # Unused. Exists on DrinkBaseCup, DrinkWaterCup, DrinkGlass - type: Tag - id: DrinkCup + id: DrinkGlass # Unused. Exists on DrinkGlass, DrinkShotGlass, DrinkJarWhat, DrinkShakeBase - type: Tag - id: DrinkGlass + id: DrinkSpaceGlue # Unused. Exists on DrinkSpaceGlue, CrazyGlue - type: Tag - id: DrinkSpaceGlue + id: Dropper # Storage whitelist: ClothingBeltMedical, ClothingBeltPlant, ChemBag - type: Tag - id: Dropper - -- type: Tag - id: Duck + id: Duck # Reproduction key. MetamorphRecipe: FoodBurgerDuck ## E ## - type: Tag - id: Ectoplasm + id: Ectoplasm # ConstructionGraph: PlushieGhostRevenant - type: Tag - id: Egg + id: Egg # Storage whitelist: FoodContainerEgg - type: Tag - id: EmagImmune + id: EmagImmune # Default value in EmagComponent to prevent the emag - type: Tag - id: EmitterBolt + id: EmitterBolt # Default value in ContainmentFieldGeneratorComponent for collisions that power the generator - type: Tag - id: EncryptionCargo + id: EncryptionCargo # ItemMapper: TelecomServer - type: Tag - id: EncryptionCommand + id: EncryptionCommand # ItemMapper: TelecomServer - type: Tag - id: EncryptionCommon + id: EncryptionCommon # ItemMapper: TelecomServer - type: Tag - id: EncryptionElse + id: EncryptionElse # Unused x2 - type: Tag - id: EncryptionEngineering + id: EncryptionEngineering # ItemMapper: TelecomServer - type: Tag - id: EncryptionMedical + id: EncryptionMedical # ItemMapper: TelecomServer - type: Tag - id: EncryptionScience + id: EncryptionScience # ItemMapper: TelecomServer - type: Tag - id: EncryptionSecurity + id: EncryptionSecurity # ItemMapper: TelecomServer - type: Tag - id: EncryptionService + id: EncryptionService # ItemMapper: TelecomServer - type: Tag - id: Enzyme + id: Enzyme # Storage whitelist: ClothingBeltChef. ItemMapper: ClothingBeltChef - type: Tag - id: ExCable + id: ExCable # Placement blacklist on CableDetStack. Placement whitelist on WiredDetonator - type: Tag - id: ExplosivePassable + id: ExplosivePassable # Unused x2 ## F ## - type: Tag - id: FakeMindShieldImplant + id: FakeMindShieldImplant # Used by FakeMindShieldSystem to toggle the action when a chameleon outfit is selected - type: Tag - id: FakeNukeDisk + id: FakeNukeDisk # Exists so that the fake nuke disk can be blacklisted by storages that blacklist the real disk - type: Tag - id: Figurine + id: Figurine # Storage whitelist: BooksBag, BorgModuleService. CargoBounty: BountyFigurine - type: Tag - id: FireAlarm + id: FireAlarm # Used by AtmosAlarmableComponent for syncing devices - type: Tag - id: FireAlarmElectronics + id: FireAlarmElectronics # ConstructionGraph: FireAlarmAssembly - type: Tag - id: FireAxe + id: FireAxe # Storage whitelist: FireAxeCabinet - type: Tag - id: FirelockElectronics + id: FirelockElectronics # ConstructionGraph: Firelock - type: Tag - id: FireExtinguisher + id: FireExtinguisher # ConstructionGraph: FireBot - type: Tag - id: FireHelmet + id: FireHelmet # ConstructionGraph: FireBot - type: Tag - id: Flare + id: Flare # Storage whitelist: ClothingBeltUtility - type: Tag - id: Flashlight + id: Flashlight # Storage whitelist: ClothingBeltUtility, ClothingBeltJanitor - type: Tag - id: Flesh + id: Flesh # Used by FleshKudzu to ignore contacts with flesh creatures - type: Tag - id: Flower + id: Flower # CargoBounty: flowerwreath. CargoBounty: BountyFlower - type: Tag - id: Folder + id: Folder # Storage whitelist: Bookshelf, NoticeBoard - type: Tag - id: FoodSnack + id: FoodSnack # Storage whitelist: CandyBucket, CandyBowl. ItemMapper: CandyBowl - type: Tag - id: FootstepSound + id: FootstepSound # SharedMoverController checks for this before playing footstep sounds - type: Tag - id: ForceableFollow + id: ForceableFollow # Used by FollowerSystem to give entities an altverb to start orbiting the user - type: Tag id: ForceFixRotations # fixrotations command WILL target this @@ -628,10 +630,10 @@ id: ForceNoFixRotations # fixrotations command WON'T target this - type: Tag - id: FreezerElectronics + id: FreezerElectronics # ConstructionGraph: CrateFreezer, ClosetFreezer - type: Tag - id: Fruit + id: Fruit # SpecialDigestible: OrganReptilianStomach. CargoBounty: BountyFruit ## G ## @@ -1070,7 +1072,7 @@ id: ParadoxCloneObjectiveBlacklist # objective entities with this tag don't get copied to paradox clones - type: Tag - id: Paper + id: Paper # A writeable piece of paper. Subset of Document tag. SpecialDigestible: OrganMothStomach, OrganReptilianStomach - type: Tag id: Pancake @@ -1328,7 +1330,7 @@ id: SkeletonMotorcycleKeys - type: Tag - id: Skewer + id: Skewer # Food sequence key - type: Tag id: Slice # sliced fruit, vegetables, pizza etc. @@ -1441,7 +1443,7 @@ id: TabletopBoard - type: Tag - id: Taco + id: Taco # Food sequence key - type: Tag id: TabletopPiece diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml index 25ccac38f6..917483b10a 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml @@ -25,7 +25,11 @@ [color=#a4885c]Tracking Implants:[/color] Trackers can be applied to any suspect that has been convicted of a violent crime (the red linked crimes). - [color=#a4885c]Mind Shields:[/color] Shields can be administered to any inmate who has been clearly mind controlled, lost control of themselves, or a suspect charged with unlawful control. Unlike standard implantation you may hold a prisoner until you finish issuing Mind Shields, so long as it's done in a timely fashion. If a suspect refuses to cooperate or the implant fails to function they can be charged with Refusal of Mental Shielding. + [color=#a4885c]Mind Shields:[/color] Mind Shields can be administered to any suspect charged with a crime if there is reasonable and articulable suspicion to believe they committed the crime while under mind control. If there is undeniable proof of ongoing mind control on the station, such as a successful deconversion, all the following statements apply: + + - Crew can be required to be shielded and may be forcibly implanted if they refuse. + - If a suspect refuses to cooperate or the implant fails to function they can be charged with Refusal of Mental Shielding. + - Unlike standard implantation you may indefinitely extend the duration of a prisoner's sentence until you finish issuing Mind Shields, so long as active attempts are made to procure implants and complete the implantation procedure. Usage of contraband implanters is a detainable offense, but it's not reasonable to detain someone solely for having an unidentified implant inside them. diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak.png index 23744679b6..384717ce24 100644 Binary files a/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak.png and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak_hooked.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak_hooked.png new file mode 100644 index 0000000000..879ceb7bde Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak_hooked.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak_shaved.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak_shaved.png new file mode 100644 index 0000000000..749be9cfb9 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak_shaved.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak_squarecere.png b/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak_squarecere.png new file mode 100644 index 0000000000..53a2430cfb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_parts.rsi/beak_squarecere.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_parts.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_parts.rsi/meta.json index 143710ad9f..b00bec9bf0 100644 --- a/Resources/Textures/Mobs/Customization/vox_parts.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/vox_parts.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at 02ff588d59b3c560c685d9ca75e882d32a72d8cb, modified by Bhijn, Errant and Flareguy. tail_big tail_short and tail_docked modified from tail by Flareguy, tail_spiked modified from tail by TrixxedHeart", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13 at 02ff588d59b3c560c685d9ca75e882d32a72d8cb, modified by Bhijn, Errant, Flareguy, and TrixxedHeart. tail_big tail_short and tail_docked modified from tail by Flareguy, beak_shaved/squarecere/hooked modified from beak and tail_spiked modified from tail by TrixxedHeart", "size": { "x": 32, "y": 32 @@ -11,6 +11,18 @@ "name": "beak", "directions": 4 }, + { + "name": "beak_squarecere", + "directions": 4 + }, + { + "name": "beak_shaved", + "directions": 4 + }, + { + "name": "beak_hooked", + "directions": 4 + }, { "name": "l_arm", "directions": 4 diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/beakcover_stripe.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/beakcover_stripe.png new file mode 100644 index 0000000000..875018784b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/beakcover_stripe.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/beakcover_tip.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/beakcover_tip.png new file mode 100644 index 0000000000..ff394df8f8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/beakcover_tip.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/cheekblush.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/cheekblush.png new file mode 100644 index 0000000000..5db759fe24 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/cheekblush.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/chest_v_1.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/chest_v_1.png new file mode 100644 index 0000000000..e9214818db Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/chest_v_1.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/chest_v_2.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/chest_v_2.png new file mode 100644 index 0000000000..5f8dc43399 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/chest_v_2.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/eyeliner.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/eyeliner.png new file mode 100644 index 0000000000..0130ae02b2 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/eyeliner.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json index 92dbbff751..5e6df07fe2 100644 --- a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/ef7a4d962915cb36b138eeb59663f0053d4906fe/icons/mob/sprite_accessories/vox/vox_body_markings.dmi and modified by Flareguy. eyeshadow & tail_ring states by Flareguy, tail_talisman by TrixxedHeart", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/ef7a4d962915cb36b138eeb59663f0053d4906fe/icons/mob/sprite_accessories/vox/vox_body_markings.dmi and modified by Flareguy. eyeshadow & tail_ring states by Flareguy. beakcover_stripe, beakcover_tip, cheekblush, chest_v, nightbelt, tail_talisman, tattoo_arrow_head, tattoo_nightling_head (modified from nightling_s), underbelly, visage, visage_l and visage_r by TrixxedHeart", "size": { "x": 32, "y": 32 @@ -23,6 +23,22 @@ "name": "nightling_s", "directions": 4 }, + { + "name": "nightbelt", + "directions": 4 + }, + { + "name": "chest_v_1", + "directions": 4 + }, + { + "name": "chest_v_2", + "directions": 4 + }, + { + "name": "underbelly", + "directions": 4 + }, { "name": "tail_talisman", "directions": 4 @@ -47,9 +63,45 @@ "name": "eyeshadow_large", "directions": 4 }, + { + "name": "eyeliner", + "directions": 4 + }, + { + "name": "cheekblush", + "directions": 4 + }, { "name": "tail_ring", "directions": 4 + }, + { + "name": "beakcover_tip", + "directions": 4 + }, + { + "name": "beakcover_stripe", + "directions": 4 + }, + { + "name": "tattoo_arrow_head", + "directions": 4 + }, + { + "name": "tattoo_nightling_head", + "directions": 4 + }, + { + "name": "visage", + "directions": 4 + }, + { + "name": "visage_l", + "directions": 4 + }, + { + "name": "visage_r", + "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/nightbelt.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/nightbelt.png new file mode 100644 index 0000000000..7df63a0bc4 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/nightbelt.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/tattoo_arrow_head.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/tattoo_arrow_head.png new file mode 100644 index 0000000000..63b097e940 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/tattoo_arrow_head.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/tattoo_nightling_head.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/tattoo_nightling_head.png new file mode 100644 index 0000000000..d48f4346a2 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/tattoo_nightling_head.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/underbelly.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/underbelly.png new file mode 100644 index 0000000000..19232451de Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/underbelly.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/visage.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/visage.png new file mode 100644 index 0000000000..d8190e56f2 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/visage.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/visage_l.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/visage_l.png new file mode 100644 index 0000000000..fd1dc77915 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/visage_l.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/visage_r.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/visage_r.png new file mode 100644 index 0000000000..a2d13dbea6 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/visage_r.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/head.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/head.png index 955e6c7b2a..59379e7d55 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/head.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/head.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_leg.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_leg.png index 918b343f98..b7039d11d5 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_leg.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_leg.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_leg.png index 45b1ae82e7..ed2fe24fc5 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_leg.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso.png b/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso.png index 01259ea03d..9896f1e17f 100644 Binary files a/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso.png and b/Resources/Textures/Mobs/Species/Vox/parts.rsi/torso.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/icon-vend.png b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/icon-vend.png new file mode 100644 index 0000000000..c5d52da5d3 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/icon-vend.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/icon.png index c5d52da5d3..a5564b5976 100644 Binary files a/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/icon.png and b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/icon_empty.png deleted file mode 100644 index a5564b5976..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/icon_empty.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/meta.json index c3942590a6..737fc565b1 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/cafe_latte.rsi/meta.json @@ -12,9 +12,6 @@ { "name": "icon" }, - { - "name": "icon_empty" - }, { "name": "fill-1" }, @@ -25,6 +22,9 @@ { "name": "inhand-left", "directions": 4 + }, + { + "name": "icon-vend" } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill1.png b/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill1.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill2.png b/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill2.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill3.png b/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill3.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill4.png b/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-4.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill4.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-4.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill5.png b/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-5.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill5.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-5.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill6.png b/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-6.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill6.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-6.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill7.png b/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-7.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill7.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-7.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill8.png b/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-8.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill8.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-8.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill9.png b/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-9.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill9.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/fill-9.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/meta.json index 16bcd31794..4f1b5d9173 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/glass_clear.rsi/meta.json @@ -14,31 +14,31 @@ "name": "icon-front" }, { - "name": "fill1" + "name": "fill-1" }, { - "name": "fill2" + "name": "fill-2" }, { - "name": "fill3" + "name": "fill-3" }, { - "name": "fill4" + "name": "fill-4" }, { - "name": "fill5" + "name": "fill-5" }, { - "name": "fill6" + "name": "fill-6" }, { - "name": "fill7" + "name": "fill-7" }, { - "name": "fill8" + "name": "fill-8" }, { - "name": "fill9" + "name": "fill-9" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill1.png b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill1.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill2.png b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill2.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill3.png b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill3.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill4.png b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill-4.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill4.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill-4.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill5.png b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill-5.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill5.png rename to Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/fill-5.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/meta.json index 6b42e9b9f7..ddffe3572d 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/glass_coupe_shape.rsi/meta.json @@ -14,19 +14,19 @@ "name": "icon-front" }, { - "name": "fill1" + "name": "fill-1" }, { - "name": "fill2" + "name": "fill-2" }, { - "name": "fill3" + "name": "fill-3" }, { - "name": "fill4" + "name": "fill-4" }, { - "name": "fill5" + "name": "fill-5" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill1.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill1.png rename to Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill2.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill2.png rename to Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill3.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill3.png rename to Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill4.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill-4.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill4.png rename to Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill-4.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill5.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill-5.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill5.png rename to Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill-5.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill6.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill-6.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill6.png rename to Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/fill-6.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/icon_empty.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/icon.png rename to Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/icon_empty.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/meta.json index afc42a380e..a60196b83b 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/glue-tube.rsi/meta.json @@ -8,7 +8,7 @@ "copyright": "Created by discord: brainfood#7460 / github: brainfood1183. Inhands by Tiniest Shark (Github)", "states": [ { - "name": "icon" + "name": "icon_empty" }, { "name": "icon_open" @@ -17,22 +17,22 @@ "name": "icon-front" }, { - "name": "fill1" + "name": "fill-1" }, { - "name": "fill2" + "name": "fill-2" }, { - "name": "fill3" + "name": "fill-3" }, { - "name": "fill4" + "name": "fill-4" }, { - "name": "fill5" + "name": "fill-5" }, { - "name": "fill6" + "name": "fill-6" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-0.png deleted file mode 100644 index d2a5ef967a..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-0.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-1.png deleted file mode 100644 index c97ead8da8..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-1.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-2.png deleted file mode 100644 index 18ff175dad..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-2.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-3.png deleted file mode 100644 index a60b6edb6d..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-3.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-4.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-4.png deleted file mode 100644 index 52a03df508..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-4.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/meta.json deleted file mode 100644 index b22da85aa9..0000000000 --- a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/meta.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", - "states": [{ - "name": "icon-0" - }, - { - "name": "icon-1" - }, - { - "name": "icon-2" - }, - { - "name": "icon-3" - }, - { - "name": "icon-4" - }, - { - "name": "icon-vend" - } - ] -} diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-0.png deleted file mode 100644 index d2a5ef967a..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-0.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-1.png deleted file mode 100644 index c97ead8da8..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-1.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-2.png deleted file mode 100644 index 18ff175dad..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-2.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-3.png deleted file mode 100644 index a60b6edb6d..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-3.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-4.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-4.png deleted file mode 100644 index 52a03df508..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-4.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-vend.png b/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-vend.png deleted file mode 100644 index 765112be76..0000000000 Binary files a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/icon-vend.png and /dev/null differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/meta.json deleted file mode 100644 index b22da85aa9..0000000000 --- a/Resources/Textures/Objects/Consumable/Drinks/hot_coffee.rsi/meta.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", - "states": [{ - "name": "icon-0" - }, - { - "name": "icon-1" - }, - { - "name": "icon-2" - }, - { - "name": "icon-3" - }, - { - "name": "icon-4" - }, - { - "name": "icon-vend" - } - ] -} diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill1.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill1.png rename to Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill2.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill2.png rename to Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill3.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill3.png rename to Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill4.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-4.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill4.png rename to Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-4.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill5.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-5.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill5.png rename to Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-5.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill6.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-6.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill6.png rename to Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-6.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill7.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-7.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill7.png rename to Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-7.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill8.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-8.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill8.png rename to Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-8.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill9.png b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-9.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill9.png rename to Resources/Textures/Objects/Consumable/Drinks/jar.rsi/fill-9.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/meta.json index f7db09b523..59e2295761 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/jar.rsi/meta.json @@ -14,31 +14,31 @@ "name": "icon-front" }, { - "name": "fill1" + "name": "fill-1" }, { - "name": "fill2" + "name": "fill-2" }, { - "name": "fill3" + "name": "fill-3" }, { - "name": "fill4" + "name": "fill-4" }, { - "name": "fill5" + "name": "fill-5" }, { - "name": "fill6" + "name": "fill-6" }, { - "name": "fill7" + "name": "fill-7" }, { - "name": "fill8" + "name": "fill-8" }, { - "name": "fill9" + "name": "fill-9" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill1.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill1.png rename to Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill2.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill2.png rename to Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill3.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill3.png rename to Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill4.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill-4.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill4.png rename to Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill-4.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill5.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill-5.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill5.png rename to Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill-5.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill6.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill-6.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill6.png rename to Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/fill-6.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/icon_empty.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/icon.png rename to Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/icon_empty.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/meta.json index afc42a380e..a60196b83b 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/lube-tube.rsi/meta.json @@ -8,7 +8,7 @@ "copyright": "Created by discord: brainfood#7460 / github: brainfood1183. Inhands by Tiniest Shark (Github)", "states": [ { - "name": "icon" + "name": "icon_empty" }, { "name": "icon_open" @@ -17,22 +17,22 @@ "name": "icon-front" }, { - "name": "fill1" + "name": "fill-1" }, { - "name": "fill2" + "name": "fill-2" }, { - "name": "fill3" + "name": "fill-3" }, { - "name": "fill4" + "name": "fill-4" }, { - "name": "fill5" + "name": "fill-5" }, { - "name": "fill6" + "name": "fill-6" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/mug.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/mug.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/mug.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-vend.png b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/icon-vend-brown.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/hot_coco.rsi/icon-vend.png rename to Resources/Textures/Objects/Consumable/Drinks/mug.rsi/icon-vend-brown.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/mug.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/meta.json index 052ebf11aa..3e7bc06ad1 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug.rsi/meta.json @@ -8,16 +8,16 @@ "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { - "name": "icon-2" + "name": "fill-2" }, { - "name": "icon-3" + "name": "fill-3" }, { "name": "inhand-left", @@ -26,6 +26,9 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "icon-vend-brown" } ] } diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/meta.json index 052ebf11aa..a64a38d5eb 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_black.rsi/meta.json @@ -8,16 +8,16 @@ "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { - "name": "icon-2" + "name": "fill-2" }, { - "name": "icon-3" + "name": "fill-3" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/meta.json index 052ebf11aa..a64a38d5eb 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_blue.rsi/meta.json @@ -8,16 +8,16 @@ "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { - "name": "icon-2" + "name": "fill-2" }, { - "name": "icon-3" + "name": "fill-3" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/meta.json index d7e6f34541..8b87125a21 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_dog.rsi/meta.json @@ -8,16 +8,16 @@ "copyright": "https://github.com/unitystation/unitystation/blob/221bbcc50edf4e63dc71ac6fd5152664a6b6745a/UnityProject/Assets/Textures/items/drinks/mug_gromit.png | Created By https://github.com/ksivte, inhands and modification by TiniestShark (github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { - "name": "icon-2" + "name": "fill-2" }, { - "name": "icon-3" + "name": "fill-3" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/meta.json index 052ebf11aa..a64a38d5eb 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_green.rsi/meta.json @@ -8,16 +8,16 @@ "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { - "name": "icon-2" + "name": "fill-2" }, { - "name": "icon-3" + "name": "fill-3" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/meta.json index 052ebf11aa..a64a38d5eb 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_heart.rsi/meta.json @@ -8,16 +8,16 @@ "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { - "name": "icon-2" + "name": "fill-2" }, { - "name": "icon-3" + "name": "fill-3" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/meta.json index 052ebf11aa..a64a38d5eb 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_metal.rsi/meta.json @@ -8,16 +8,16 @@ "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { - "name": "icon-2" + "name": "fill-2" }, { - "name": "icon-3" + "name": "fill-3" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/meta.json index 052ebf11aa..a64a38d5eb 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_moebius.rsi/meta.json @@ -8,16 +8,16 @@ "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { - "name": "icon-2" + "name": "fill-2" }, { - "name": "icon-3" + "name": "fill-3" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/meta.json index 052ebf11aa..a64a38d5eb 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_one.rsi/meta.json @@ -8,16 +8,16 @@ "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { - "name": "icon-2" + "name": "fill-2" }, { - "name": "icon-3" + "name": "fill-3" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/meta.json index 052ebf11aa..a64a38d5eb 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_rainbow.rsi/meta.json @@ -8,16 +8,16 @@ "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { - "name": "icon-2" + "name": "fill-2" }, { - "name": "icon-3" + "name": "fill-3" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/meta.json index 052ebf11aa..a64a38d5eb 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/mug_red.rsi/meta.json @@ -8,16 +8,16 @@ "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi, inhands by TiniestShark (github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { - "name": "icon-2" + "name": "fill-2" }, { - "name": "icon-3" + "name": "fill-3" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/shaker_gold.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/shaker_gold.rsi/icon.png new file mode 100644 index 0000000000..ff1cc87098 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/shaker_gold.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/shaker_gold.rsi/inhand-left.png b/Resources/Textures/Objects/Consumable/Drinks/shaker_gold.rsi/inhand-left.png new file mode 100644 index 0000000000..d7d28288a5 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/shaker_gold.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/shaker_gold.rsi/inhand-right.png b/Resources/Textures/Objects/Consumable/Drinks/shaker_gold.rsi/inhand-right.png new file mode 100644 index 0000000000..a03626d8b0 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/shaker_gold.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/shaker_gold.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/shaker_gold.rsi/meta.json new file mode 100644 index 0000000000..3a5c625df4 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/shaker_gold.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "icon taken from https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi ; inhand sprites made by Failed (Discord: greetings_). Color adjustments by Hitlinemoss.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/fill1.png b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/fill1.png rename to Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/fill2.png b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/fill2.png rename to Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/meta.json index cf438684de..c7d6205b6f 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/shotglass.rsi/meta.json @@ -14,10 +14,10 @@ "name": "icon-front" }, { - "name": "fill1" + "name": "fill-1" }, { - "name": "fill2" + "name": "fill-2" }, { "name": "inhand-left", diff --git a/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/icon-2.png b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/icon-2.png rename to Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/icon-3.png b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/icon-3.png rename to Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/icon-4.png b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/fill-4.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/icon-4.png rename to Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/fill-4.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/meta.json index 8f340a2eab..060a643bef 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/teacup.rsi/meta.json @@ -8,19 +8,19 @@ "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { - "name": "icon-2" + "name": "fill-2" }, { - "name": "icon-3" + "name": "fill-3" }, { - "name": "icon-4" + "name": "fill-4" }, { "name": "icon-vend-tea" diff --git a/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/icon-1.png b/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/icon-1.png rename to Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/icon-0.png b/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/icon-0.png rename to Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/meta.json index 6301d09d7d..61406ac3b6 100644 --- a/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/water_cup.rsi/meta.json @@ -8,10 +8,10 @@ "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi. Inhands by Tiniest Shark (Github)", "states": [ { - "name": "icon-0" + "name": "icon" }, { - "name": "icon-1" + "name": "fill-1" }, { "name": "inhand-right", diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-cotton-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-cotton-inhand-left.png new file mode 100644 index 0000000000..d0ffbf4019 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-cotton-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-cotton-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-cotton-inhand-right.png new file mode 100644 index 0000000000..ce48ffe182 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-cotton-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-cotton.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-cotton.png new file mode 100644 index 0000000000..a2b3f0162f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-cotton.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-inhand-left.png new file mode 100644 index 0000000000..42794c2ef2 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-inhand-right.png new file mode 100644 index 0000000000..664a6cda2b Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard.png new file mode 100644 index 0000000000..12ccfa8ca6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/batard.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/meta.json index d9142f7cf1..6a74ec1684 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/meta.json @@ -1,158 +1,180 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by potato1234x at https://github.com/tgstation/tgstation/commit/0631fe5bde73a68b4c12bdfa633c30b2cee442d5. Crostini created by Github user deathride58, baguette taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955, cotton made by mlexf (discord 1143460554963427380). Cotton baguette and crostini variants by JuneSzalkowska", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "alpha" + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation and modified by potato1234x at https://github.com/tgstation/tgstation/commit/0631fe5bde73a68b4c12bdfa633c30b2cee442d5. Crostini created by Github user deathride58, baguette taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955, cotton made by mlexf (discord 1143460554963427380). Cotton baguette and crostini variants by JuneSzalkowska. Batard by SurrealShibe (GitHub)", + "size": { + "x": 32, + "y": 32 }, - { - "name": "alpha2" - }, - { - "name": "alpha-filling" - }, - { - "name": "alpha-filling2" - }, - { - "name": "alpha-slice" - }, - { - "name": "alpha-slice2" - }, - { - "name": "alpha-slice-filling" - }, - { - "name": "alpha-slice2-filling" - }, - { - "name": "baguette" - }, - { - "name": "baguette-equipped-BELT", - "directions": 4 - }, - { - "name": "baguette-inhand-left", - "directions": 4 - }, - { - "name": "baguette-inhand-right", - "directions": 4 - }, - { - "name": "baguette-cotton" - }, - { - "name": "baguette-cotton-equipped-BELT", - "directions": 4 - }, - { - "name": "baguette-cotton-inhand-left", - "directions": 4 - }, - { - "name": "baguette-cotton-inhand-right", - "directions": 4 - }, - { - "name": "banana" - }, - { - "name": "banana-slice" - }, - { - "name": "buttered-toast" - }, - { - "name": "cornbread" - }, - { - "name": "cornbread-slice" - }, - { - "name": "creamcheese" - }, - { - "name": "creamcheese-slice" - }, - { - "name": "crostini" - }, - { - "name": "crostini-cotton" - }, - { - "name": "cotton" - }, - { - "name": "cotton-slice" - }, - { - "name": "french-toast" - }, - { - "name": "garlic-slice" - }, - { - "name": "jelly-toast" - }, - { - "name": "meat" - }, - { - "name": "meat-slice" - }, - { - "name": "mimana" - }, - { - "name": "mimana-slice" - }, - { - "name": "moldy-slice" - }, - { - "name": "plain" - }, - { - "name": "plain-slice" - }, - { - "name": "plate" - }, - { - "name": "sausage" - }, - { - "name": "sausage-slice" - }, - { - "name": "spidermeat" - }, - { - "name": "spidermeat-slice" - }, - { - "name": "tofu" - }, - { - "name": "tofu-slice" - }, - { - "name": "two-slice" - }, - { - "name": "xenomeat" - }, - { - "name": "xenomeat-slice" - } - ] + "states": [ + { + "name": "alpha" + }, + { + "name": "alpha2" + }, + { + "name": "alpha-filling" + }, + { + "name": "alpha-filling2" + }, + { + "name": "alpha-slice" + }, + { + "name": "alpha-slice2" + }, + { + "name": "alpha-slice-filling" + }, + { + "name": "alpha-slice2-filling" + }, + { + "name": "baguette" + }, + { + "name": "baguette-equipped-BELT", + "directions": 4 + }, + { + "name": "baguette-inhand-left", + "directions": 4 + }, + { + "name": "baguette-inhand-right", + "directions": 4 + }, + { + "name": "baguette-cotton" + }, + { + "name": "baguette-cotton-equipped-BELT", + "directions": 4 + }, + { + "name": "baguette-cotton-inhand-left", + "directions": 4 + }, + { + "name": "baguette-cotton-inhand-right", + "directions": 4 + }, + { + "name": "banana" + }, + { + "name": "banana-slice" + }, + { + "name": "buttered-toast" + }, + { + "name": "cornbread" + }, + { + "name": "cornbread-slice" + }, + { + "name": "creamcheese" + }, + { + "name": "creamcheese-slice" + }, + { + "name": "crostini" + }, + { + "name": "crostini-cotton" + }, + { + "name": "cotton" + }, + { + "name": "cotton-slice" + }, + { + "name": "french-toast" + }, + { + "name": "garlic-slice" + }, + { + "name": "jelly-toast" + }, + { + "name": "meat" + }, + { + "name": "meat-slice" + }, + { + "name": "mimana" + }, + { + "name": "mimana-slice" + }, + { + "name": "moldy-slice" + }, + { + "name": "plain" + }, + { + "name": "plain-slice" + }, + { + "name": "plate" + }, + { + "name": "sausage" + }, + { + "name": "sausage-slice" + }, + { + "name": "spidermeat" + }, + { + "name": "spidermeat-slice" + }, + { + "name": "tofu" + }, + { + "name": "tofu-slice" + }, + { + "name": "two-slice" + }, + { + "name": "xenomeat" + }, + { + "name": "xenomeat-slice" + }, + { + "name": "batard" + }, + { + "name": "batard-inhand-left", + "directions": 4 + }, + { + "name": "batard-inhand-right", + "directions": 4 + }, + { + "name": "batard-cotton" + }, + { + "name": "batard-cotton-inhand-left", + "directions": 4 + }, + { + "name": "batard-cotton-inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/bounty.png b/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/bounty.png new file mode 100644 index 0000000000..8b44d0e52b Binary files /dev/null and b/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/bounty.png differ diff --git a/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/captains_paper.png b/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/captains_paper.png new file mode 100644 index 0000000000..b02ea9c4a5 Binary files /dev/null and b/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/captains_paper.png differ diff --git a/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/invoice.png b/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/invoice.png new file mode 100644 index 0000000000..2089996fdb Binary files /dev/null and b/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/invoice.png differ diff --git a/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/meta.json b/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/meta.json new file mode 100644 index 0000000000..4136d89ef0 --- /dev/null +++ b/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Original sprites by Vermidia and modified by SpaceRox1244; manual offset applied by Centronias", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "paper" + }, + { + "name": "bounty" + }, + { + "name": "captains_paper" + }, + { + "name": "invoice" + } + ] +} diff --git a/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/paper.png b/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/paper.png new file mode 100644 index 0000000000..f9f977302c Binary files /dev/null and b/Resources/Textures/Objects/Misc/ParcelWrap/paper_labels.rsi/paper.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/icon.png b/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/icon.png index 2f29dff1c7..8b98bf5436 100644 Binary files a/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/icon.png and b/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/inhand-left.png index 0d7d9cf676..1dcacda0e3 100644 Binary files a/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/inhand-left.png and b/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/inhand-right.png index 6e5e4cd27a..20c3c84cb2 100644 Binary files a/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/inhand-right.png and b/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/meta.json b/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/meta.json index c0dd9096bc..2240b862c6 100644 --- a/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chapel/codexnanotrasimus.rsi/meta.json @@ -1,23 +1,22 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Originally drawn by @Trosling (Discord)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Sprites created by Davyei (Discord) for Spacestation 14.", + "size": { + "x": 32, + "y": 32 }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } - diff --git a/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/icon.png b/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/icon.png index a38632e437..ba16466073 100644 Binary files a/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/icon.png and b/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/inhand-left.png index 35fc35abf1..b65eae74ef 100644 Binary files a/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/inhand-left.png and b/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/inhand-right.png index 7e0df50bb5..bb02dc20cd 100644 Binary files a/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/inhand-right.png and b/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/meta.json b/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/meta.json index c0dd9096bc..2240b862c6 100644 --- a/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chapel/communistmanifesto.rsi/meta.json @@ -1,23 +1,22 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Originally drawn by @Trosling (Discord)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Sprites created by Davyei (Discord) for Spacestation 14.", + "size": { + "x": 32, + "y": 32 }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } - diff --git a/Resources/Textures/Objects/Specific/Chapel/honk.rsi/icon.png b/Resources/Textures/Objects/Specific/Chapel/honk.rsi/icon.png new file mode 100644 index 0000000000..caa8572835 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/honk.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/honk.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Chapel/honk.rsi/inhand-left.png new file mode 100644 index 0000000000..95b5790e89 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/honk.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/honk.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Chapel/honk.rsi/inhand-right.png new file mode 100644 index 0000000000..f1a5163cbc Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/honk.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/honk.rsi/meta.json b/Resources/Textures/Objects/Specific/Chapel/honk.rsi/meta.json new file mode 100644 index 0000000000..2240b862c6 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Chapel/honk.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Sprites created by Davyei (Discord) for Spacestation 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/icon.png b/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/icon.png index 4e24e24ad2..85d3b716a3 100644 Binary files a/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/icon.png and b/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/inhand-left.png index 4be96c2070..f27ffd7038 100644 Binary files a/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/inhand-left.png and b/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/inhand-right.png index bdf1c5e363..d345671051 100644 Binary files a/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/inhand-right.png and b/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/meta.json b/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/meta.json index c0dd9096bc..2240b862c6 100644 --- a/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Chapel/mysteryofthedruids.rsi/meta.json @@ -1,23 +1,22 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Originally drawn by @Trosling (Discord)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Sprites created by Davyei (Discord) for Spacestation 14.", + "size": { + "x": 32, + "y": 32 }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } - diff --git a/Resources/Textures/Objects/Specific/Chapel/ratvartablet.rsi/icon.png b/Resources/Textures/Objects/Specific/Chapel/ratvartablet.rsi/icon.png new file mode 100644 index 0000000000..0e294639fa Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/ratvartablet.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/ratvartablet.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Chapel/ratvartablet.rsi/inhand-left.png new file mode 100644 index 0000000000..71ed63d933 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/ratvartablet.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/ratvartablet.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Chapel/ratvartablet.rsi/inhand-right.png new file mode 100644 index 0000000000..dcfac241cd Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/ratvartablet.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/ratvartablet.rsi/meta.json b/Resources/Textures/Objects/Specific/Chapel/ratvartablet.rsi/meta.json new file mode 100644 index 0000000000..2240b862c6 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Chapel/ratvartablet.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Sprites created by Davyei (Discord) for Spacestation 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Chapel/satanicbible.rsi/icon.png b/Resources/Textures/Objects/Specific/Chapel/satanicbible.rsi/icon.png deleted file mode 100644 index 2c0a574d58..0000000000 Binary files a/Resources/Textures/Objects/Specific/Chapel/satanicbible.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Chapel/satanicbible.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Chapel/satanicbible.rsi/inhand-left.png deleted file mode 100644 index 1e6043fb41..0000000000 Binary files a/Resources/Textures/Objects/Specific/Chapel/satanicbible.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Chapel/satanicbible.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Chapel/satanicbible.rsi/inhand-right.png deleted file mode 100644 index 60aba34bbb..0000000000 Binary files a/Resources/Textures/Objects/Specific/Chapel/satanicbible.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Chapel/satanicbible.rsi/meta.json b/Resources/Textures/Objects/Specific/Chapel/satanicbible.rsi/meta.json deleted file mode 100644 index 9a00632eed..0000000000 --- a/Resources/Textures/Objects/Specific/Chapel/satanicbible.rsi/meta.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Originally drawn by @Trosling (Discord), modified by @SurrealShibe (Github)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} - diff --git a/Resources/Textures/Objects/Specific/Chapel/tanakh.rsi/icon.png b/Resources/Textures/Objects/Specific/Chapel/tanakh.rsi/icon.png deleted file mode 100644 index c04412d52b..0000000000 Binary files a/Resources/Textures/Objects/Specific/Chapel/tanakh.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Chapel/tanakh.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Chapel/tanakh.rsi/inhand-left.png deleted file mode 100644 index 94fdcc0f20..0000000000 Binary files a/Resources/Textures/Objects/Specific/Chapel/tanakh.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Chapel/tanakh.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Chapel/tanakh.rsi/inhand-right.png deleted file mode 100644 index 56c5a517f1..0000000000 Binary files a/Resources/Textures/Objects/Specific/Chapel/tanakh.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Objects/Specific/Chapel/tanakh.rsi/meta.json b/Resources/Textures/Objects/Specific/Chapel/tanakh.rsi/meta.json deleted file mode 100644 index c0dd9096bc..0000000000 --- a/Resources/Textures/Objects/Specific/Chapel/tanakh.rsi/meta.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Originally drawn by @Trosling (Discord)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} - diff --git a/Resources/Textures/Objects/Specific/Chapel/tomeofnarsie.rsi/icon.png b/Resources/Textures/Objects/Specific/Chapel/tomeofnarsie.rsi/icon.png new file mode 100644 index 0000000000..92a2b5e138 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/tomeofnarsie.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/tomeofnarsie.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Chapel/tomeofnarsie.rsi/inhand-left.png new file mode 100644 index 0000000000..9cc27ac3c5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/tomeofnarsie.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/tomeofnarsie.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Chapel/tomeofnarsie.rsi/inhand-right.png new file mode 100644 index 0000000000..98151112f4 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Chapel/tomeofnarsie.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Chapel/tomeofnarsie.rsi/meta.json b/Resources/Textures/Objects/Specific/Chapel/tomeofnarsie.rsi/meta.json new file mode 100644 index 0000000000..2240b862c6 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Chapel/tomeofnarsie.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Sprites created by Davyei (Discord) for Spacestation 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Janitorial/janitorial_cart.rsi/cart_goldenplunger.png b/Resources/Textures/Objects/Specific/Janitorial/janitorial_cart.rsi/cart_goldenplunger.png index 13988bf1c4..4829eb6c7b 100644 Binary files a/Resources/Textures/Objects/Specific/Janitorial/janitorial_cart.rsi/cart_goldenplunger.png and b/Resources/Textures/Objects/Specific/Janitorial/janitorial_cart.rsi/cart_goldenplunger.png differ diff --git a/Resources/Textures/Objects/Specific/Janitorial/janitorial_cart.rsi/meta.json b/Resources/Textures/Objects/Specific/Janitorial/janitorial_cart.rsi/meta.json index 5293d5488d..708d514397 100644 --- a/Resources/Textures/Objects/Specific/Janitorial/janitorial_cart.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Janitorial/janitorial_cart.rsi/meta.json @@ -5,6 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428, cart_goldenplunger modified from cart_plunger by TiniestShark (github) and tweaked by Prole0 (github)", "copyright": "Taken from TauCetiStation at commit https://github.com/TauCetiStation/TauCetiClassic/pull/970/commits/6f0a020e35a78b997420ca8ffff2c1de4bad3428, cart_goldenplunger modified from cart_plunger by TiniestShark (github)", "states": [ { diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/base.png new file mode 100644 index 0000000000..56ff3c1509 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/base.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/equipped-BELT.png b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/equipped-BELT.png new file mode 100644 index 0000000000..3f83ef42eb Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000..3f83ef42eb Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/icon.png new file mode 100644 index 0000000000..b5c9f8a1f7 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/inhand-left.png new file mode 100644 index 0000000000..9384a6a861 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/inhand-right.png new file mode 100644 index 0000000000..c2172122ea Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/mag-unshaded-0.png b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/mag-unshaded-0.png new file mode 100644 index 0000000000..e1e5161e0a Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/mag-unshaded-0.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/mag-unshaded-1.png b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/mag-unshaded-1.png new file mode 100644 index 0000000000..8f2e879b02 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/mag-unshaded-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/mag-unshaded-2.png b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/mag-unshaded-2.png new file mode 100644 index 0000000000..6b863defb7 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/mag-unshaded-2.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/mag-unshaded-3.png b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/mag-unshaded-3.png new file mode 100644 index 0000000000..7976821be1 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/mag-unshaded-3.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/meta.json new file mode 100644 index 0000000000..293dcbdcbd --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Battery/energy_magnum.rsi/meta.json @@ -0,0 +1,53 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Created by BoskiYourk (GitHub), edited by spanky-spanky (GitHub)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "mag-unshaded-3" + }, + { + "name": "mag-unshaded-2" + }, + { + "name": "mag-unshaded-1" + }, + { + "name": "mag-unshaded-0", + "delays": [ + [ + 0.35, + 0.35, + 0.35, + 0.35 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_magnum.rsi/magnum.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_magnum.rsi/magnum.png new file mode 100644 index 0000000000..4f9199b2bc Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_magnum.rsi/magnum.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_magnum.rsi/magnum_piercing.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_magnum.rsi/magnum_piercing.png new file mode 100644 index 0000000000..d35cd0a852 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_magnum.rsi/magnum_piercing.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_magnum.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_magnum.rsi/meta.json new file mode 100644 index 0000000000..73f61cbb15 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles_magnum.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Created by BoskiYourk (GitHub)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "magnum" + }, + { + "name": "magnum_piercing" + } + ] +} diff --git a/Resources/Textures/Parallaxes/oldspace.png b/Resources/Textures/Parallaxes/oldspace.png index 7960ffaf44..09836bc365 100644 Binary files a/Resources/Textures/Parallaxes/oldspace.png and b/Resources/Textures/Parallaxes/oldspace.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/arrivals.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/arrivals.png new file mode 100644 index 0000000000..2a615548a7 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/arrivals.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/direction_evac_glow.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/direction_evac_glow.png new file mode 100644 index 0000000000..d82d60abdd Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/signs.rsi/direction_evac_glow.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json index f1f31ed1e7..068b570f71 100644 --- a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json @@ -5,8 +5,8 @@ "y": 32 }, "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, Job signs by EmoGarbage404 (github) with inspiration from yogstation and tgstation, 'direction_exam' and 'direction_icu' made by rosieposieeee (github), 'direction_atmos' made by SlamBamActionman, 'vox' based on sprites taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/e7f005f8b8d3f7d89cbee3b87f76c23f9e951c27/icons/obj/decals.dmi, 'direction_pods' derived by WarPigeon from existing directional signs., 'detective' derived by Soupkilove from existing security sign, direction_evac_glow made by moomoobeef based on existing direction_evac, 'arrivals' made by SlamBamActionman", "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, Job signs by EmoGarbage404 (github) with inspiration from yogstation and tgstation, 'direction_exam' and 'direction_icu' made by rosieposieeee (github). 'court', 'janitor', 'law', 'psychology', 'eva' changed for corvax by netwy (discord, 583844759429316618) and updated by github:lapatison; Job signs localized by kaiserGans (github), 'direction_atmos' made by SlamBamActionman. voxcross taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/e7f005f8b8d3f7d89cbee3b87f76c23f9e951c27/icons/obj/decals.dmi, 'ntmining' modified by Ko4erga, 'corvax_newyear' by Ko4erga, 'direction_pods' derived by WarPigeon from existing directional signs, 'cans_sci' by @mishutka09 (discord:1152277579206774854), 'bath' by NotSoDamn (github)", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, Job signs by EmoGarbage404 (github) with inspiration from yogstation and tgstation, 'direction_exam' and 'direction_icu' made by rosieposieeee (github), 'direction_atmos' made by SlamBamActionman, 'vox' based on sprites taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/e7f005f8b8d3f7d89cbee3b87f76c23f9e951c27/icons/obj/decals.dmi, 'direction_pods' derived by WarPigeon from existing directional signs., 'detective' derived by Soupkilove from existing security sign", "states": [ { "name": "ai" @@ -29,6 +29,9 @@ { "name": "armory" }, + { + "name": "arrivals" + }, { "name": "barbershop" }, @@ -166,6 +169,10 @@ "name": "direction_evac", "directions": 4 }, + { + "name": "direction_evac_glow", + "directions": 4 + }, { "name": "direction_supply", "directions": 4 diff --git a/Resources/migration.yml b/Resources/migration.yml index 75a0fb027b..6cbf3206ed 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -749,3 +749,10 @@ ClothingUniformJumpsuitParamedicNT: ClothingUniformJumpsuitParamedic # 2025-08-29 PrefilledSyringe: Syringe + +# 2025-10-6 +BibleTanakh: null +BibleSatanic: null + +# 2025-10-8 +ClothingBeltAssault: ClothingBeltMilitaryWebbing