diff --git a/Content.Client/DeltaV/Harpy/HarpyVisualsComponent.cs b/Content.Client/DeltaV/Harpy/HarpyVisualsComponent.cs new file mode 100644 index 00000000000..1c3253c74ef --- /dev/null +++ b/Content.Client/DeltaV/Harpy/HarpyVisualsComponent.cs @@ -0,0 +1,5 @@ +namespace Content.Client.DeltaV.Harpy; + +[RegisterComponent] +public sealed partial class HarpyVisualsComponent : Component +{ } diff --git a/Content.Client/DeltaV/Overlays/UltraVisionOverlay.cs b/Content.Client/DeltaV/Overlays/UltraVisionOverlay.cs new file mode 100644 index 00000000000..64e5e762df6 --- /dev/null +++ b/Content.Client/DeltaV/Overlays/UltraVisionOverlay.cs @@ -0,0 +1,44 @@ +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Enums; +using Robust.Shared.Prototypes; +using Content.Shared.DeltaV.Abilities; + +namespace Content.Client.DeltaV.Overlays; + +public sealed partial class UltraVisionOverlay : Overlay +{ + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] IEntityManager _entityManager = default!; + + + public override bool RequestScreenTexture => true; + public override OverlaySpace Space => OverlaySpace.WorldSpace; + private readonly ShaderInstance _ultraVisionShader; + + public UltraVisionOverlay() + { + IoCManager.InjectDependencies(this); + _ultraVisionShader = _prototypeManager.Index("UltraVision").Instance().Duplicate(); + } + + protected override void Draw(in OverlayDrawArgs args) + { + if (ScreenTexture == null) + return; + if (_playerManager.LocalPlayer?.ControlledEntity is not {Valid: true} player) + return; + if (!_entityManager.HasComponent(player)) + return; + + _ultraVisionShader?.SetParameter("SCREEN_TEXTURE", ScreenTexture); + + + var worldHandle = args.WorldHandle; + var viewport = args.WorldBounds; + worldHandle.SetTransform(Matrix3.Identity); + worldHandle.UseShader(_ultraVisionShader); + worldHandle.DrawRect(viewport, Color.White); + } +} diff --git a/Content.Client/DeltaV/Overlays/UltraVisionSystem.cs b/Content.Client/DeltaV/Overlays/UltraVisionSystem.cs new file mode 100644 index 00000000000..3c23d4f423d --- /dev/null +++ b/Content.Client/DeltaV/Overlays/UltraVisionSystem.cs @@ -0,0 +1,31 @@ +using Content.Shared.DeltaV.Abilities; +using Robust.Client.Graphics; + +namespace Content.Client.DeltaV.Overlays; + +public sealed partial class UltraVisionSystem : EntitySystem +{ + [Dependency] private readonly IOverlayManager _overlayMan = default!; + + private UltraVisionOverlay _overlay = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnUltraVisionInit); + SubscribeLocalEvent(OnUltraVisionShutdown); + + _overlay = new(); + } + + private void OnUltraVisionInit(EntityUid uid, UltraVisionComponent component, ComponentInit args) + { + _overlayMan.AddOverlay(_overlay); + } + + private void OnUltraVisionShutdown(EntityUid uid, UltraVisionComponent component, ComponentShutdown args) + { + _overlayMan.RemoveOverlay(_overlay); + } +} diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs index fcecbad465a..c5c4c33446e 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringNavMapControl.cs @@ -1,6 +1,7 @@ using Content.Client.Pinpointer.UI; using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; +using Robust.Shared.GameObjects; // Frontier modification namespace Content.Client.Medical.CrewMonitoring; @@ -63,7 +64,9 @@ protected override void Draw(DrawingHandleScreen handle) if (!LocalizedNames.TryGetValue(netEntity, out var name)) name = "Unknown"; - var message = name + "\nLocation: [x = " + MathF.Round(blip.Coordinates.X) + ", y = " + MathF.Round(blip.Coordinates.Y) + "]"; + // Text location of the blip will display GPS coordinates for the purpose of being able to find a person via GPS + // Previously it displayed coordinates relative to the center of the station, which had no use. + var message = name + "\nLocation: [x = " + MathF.Round(blip.MapCoordinates.X) + ", y = " + MathF.Round(blip.MapCoordinates.Y) + "]"; // Frontier modification _trackedEntityLabel.Text = message; _trackedEntityPanel.Visible = true; diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs index 645243b0a3a..57190f6d99e 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs @@ -27,6 +27,7 @@ public sealed partial class CrewMonitoringWindow : FancyWindow private readonly IEntityManager _entManager; private readonly IPrototypeManager _prototypeManager; private readonly SpriteSystem _spriteSystem; + private readonly SharedTransformSystem _transformSystem; // Frontier modification private NetEntity? _trackedEntity; private bool _tryToScrollToListFocus; @@ -39,6 +40,7 @@ public CrewMonitoringWindow(string stationName, EntityUid? mapUid) _entManager = IoCManager.Resolve(); _prototypeManager = IoCManager.Resolve(); _spriteSystem = _entManager.System(); + _transformSystem = _entManager.System(); // Frontier modification _blipTexture = _spriteSystem.Frame0(new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png"))); @@ -149,7 +151,7 @@ public void ShowSensors(List sensors, EntityUid monitor, Entit // Show monitor on nav map if (monitorCoords != null && _blipTexture != null) { - NavMap.TrackedEntities[_entManager.GetNetEntity(monitor)] = new NavMapBlip(monitorCoords.Value, _blipTexture, Color.Cyan, true, false); + NavMap.TrackedEntities[_entManager.GetNetEntity(monitor)] = new NavMapBlip(monitorCoords.Value, monitorCoords.Value.ToMap(_entManager, _transformSystem), _blipTexture, Color.Cyan, true, false); // Frontier modification } } @@ -273,10 +275,13 @@ private void PopulateDepartmentList(IEnumerable departmentSens jobContainer.AddChild(jobIcon); } - // Job name + // Job name area + // Frontier modification + // Made in its name appear location name as its much more convenient + // While job icons should do good enough job of conveying job var jobLabel = new Label() { - Text = sensor.Job, + Text = sensor.LocationName, HorizontalExpand = true, ClipText = true, }; @@ -289,6 +294,7 @@ private void PopulateDepartmentList(IEnumerable departmentSens NavMap.TrackedEntities.TryAdd(sensor.SuitSensorUid, new NavMapBlip (coordinates.Value, + coordinates.Value.ToMap(_entManager, _transformSystem), // Frontier modification _blipTexture, (_trackedEntity == null || sensor.SuitSensorUid == _trackedEntity) ? Color.LimeGreen : Color.LimeGreen * Color.DimGray, sensor.SuitSensorUid == _trackedEntity)); @@ -355,6 +361,7 @@ private void UpdateSensorsTable(NetEntity? currTrackedEntity, NetEntity? prevTra { data = new NavMapBlip (data.Coordinates, + data.Coordinates.ToMap(_entManager, _transformSystem), // Frontier modification data.Texture, (currTrackedEntity == null || castSensor.SuitSensorUid == currTrackedEntity) ? Color.LimeGreen : Color.LimeGreen * Color.DimGray, castSensor.SuitSensorUid == currTrackedEntity); diff --git a/Content.Client/Pinpointer/UI/NavMapControl.cs b/Content.Client/Pinpointer/UI/NavMapControl.cs index 3b426e73d89..28e6a05b09d 100644 --- a/Content.Client/Pinpointer/UI/NavMapControl.cs +++ b/Content.Client/Pinpointer/UI/NavMapControl.cs @@ -642,14 +642,16 @@ protected Vector2 GetOffset() public struct NavMapBlip { public EntityCoordinates Coordinates; + public MapCoordinates MapCoordinates; //Frontier modification public Texture Texture; public Color Color; public bool Blinks; public bool Selectable; - public NavMapBlip(EntityCoordinates coordinates, Texture texture, Color color, bool blinks, bool selectable = true) + public NavMapBlip(EntityCoordinates coordinates, MapCoordinates mapCoordinates, Texture texture, Color color, bool blinks, bool selectable = true) //Frontier modification { Coordinates = coordinates; + MapCoordinates = mapCoordinates; // Frontier modification Texture = texture; Color = color; Blinks = blinks; diff --git a/Content.Client/Power/PowerMonitoringWindow.xaml.cs b/Content.Client/Power/PowerMonitoringWindow.xaml.cs index edc0eaa18a8..eeea8b2aef8 100644 --- a/Content.Client/Power/PowerMonitoringWindow.xaml.cs +++ b/Content.Client/Power/PowerMonitoringWindow.xaml.cs @@ -18,6 +18,7 @@ public sealed partial class PowerMonitoringWindow : FancyWindow private readonly IEntityManager _entManager; private readonly SpriteSystem _spriteSystem; private readonly IGameTiming _gameTiming; + private readonly SharedTransformSystem _transformSystem; // Frontier modification private const float BlinkFrequency = 1f; @@ -39,6 +40,7 @@ public PowerMonitoringWindow(PowerMonitoringConsoleBoundUserInterface userInterf RobustXamlLoader.Load(this); _entManager = IoCManager.Resolve(); _gameTiming = IoCManager.Resolve(); + _transformSystem = _entManager.System(); // Frontier modification _spriteSystem = _entManager.System(); _owner = owner; @@ -166,7 +168,7 @@ public void ShowEntites if (monitorCoords != null && mon != null) { var texture = _spriteSystem.Frame0(new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png"))); - var blip = new NavMapBlip(monitorCoords.Value, texture, Color.Cyan, true, false); + var blip = new NavMapBlip(monitorCoords.Value, monitorCoords.Value.ToMap(_entManager, _transformSystem), texture, Color.Cyan, true, false); // Frontier modification NavMap.TrackedEntities[mon.Value] = blip; } @@ -233,7 +235,7 @@ private void AddTrackedEntityToNavMap(NetEntity netEntity, PowerMonitoringDevice if (_focusEntity != null && usedEntity != _focusEntity && !entitiesOfInterest.Contains(usedEntity.Value)) modulator = Color.DimGray; - var blip = new NavMapBlip(coords, _spriteSystem.Frame0(texture), color * modulator, blink); + var blip = new NavMapBlip(coords, coords.ToMap(_entManager, _transformSystem), _spriteSystem.Frame0(texture), color * modulator, blink); //Frontier modification NavMap.TrackedEntities[netEntity] = blip; } diff --git a/Content.Client/StationRecords/GeneralStationRecordConsoleWindow.xaml.cs b/Content.Client/StationRecords/GeneralStationRecordConsoleWindow.xaml.cs index 4bc62f3169d..cf60b64a1ef 100644 --- a/Content.Client/StationRecords/GeneralStationRecordConsoleWindow.xaml.cs +++ b/Content.Client/StationRecords/GeneralStationRecordConsoleWindow.xaml.cs @@ -94,13 +94,19 @@ public void UpdateState(GeneralStationRecordConsoleState state) StationRecordsFilterType.SelectId((int) _currentFilterType); + if (state.JobList != null) + { + JobListing.Visible = true; + PopulateJobsContainer(state.JobList); + } + if (state.RecordListing == null) { RecordListingStatus.Visible = true; - RecordListing.Visible = false; + RecordListing.Visible = true; RecordListingStatus.Text = Loc.GetString("general-station-record-console-empty-state"); - RecordContainer.Visible = false; - RecordContainerStatus.Visible = false; + RecordContainer.Visible = true; + RecordContainerStatus.Visible = true; return; } @@ -108,11 +114,7 @@ public void UpdateState(GeneralStationRecordConsoleState state) RecordListing.Visible = true; RecordContainer.Visible = true; PopulateRecordListing(state.RecordListing!, state.SelectedKey); - if (state.JobList != null) - { - JobListing.Visible = true; - PopulateJobsContainer(state.JobList); - } + RecordContainerStatus.Visible = state.Record == null; if (state.Record != null) diff --git a/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs b/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs index 28c25eef04d..3e73ffde3e1 100644 --- a/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs +++ b/Content.Server/Construction/NodeEntities/BoardNodeEntity.cs @@ -31,7 +31,7 @@ public sealed partial class BoardNodeEntity : IGraphNodeEntity // Frontier - adds tabletop variants if (args.EntityManager.TryGetComponent(container.Owner, out ConstructionComponent? constructionComponent) - && constructionComponent.Graph == "GraphComputerTabletop" + && constructionComponent.Graph == "ComputerTabletop" && args.EntityManager.TryGetComponent(board, out ComputerTabletopBoardComponent? tabletopComputer)) { return tabletopComputer.Prototype; diff --git a/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs b/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs new file mode 100644 index 00000000000..ec3637823af --- /dev/null +++ b/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs @@ -0,0 +1,180 @@ +using Content.Server.Instruments; +using Content.Server.Speech.Components; +using Content.Server.UserInterface; +using Content.Shared.Instruments; +using Content.Shared.ActionBlocker; +using Content.Shared.Damage; +using Content.Shared.Damage.ForceSay; +using Content.Shared.DeltaV.Harpy; +using Content.Shared.FixedPoint; +using Content.Shared.Inventory; +using Content.Shared.Inventory.Events; +using Content.Shared.Mobs; +using Content.Shared.Popups; +using Content.Shared.StatusEffect; +using Content.Shared.Stunnable; +using Content.Shared.UserInterface; +using Content.Shared.Zombies; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; +using Content.Shared.DeltaV.Harpy.Components; + +namespace Content.Server.DeltaV.Harpy +{ + public sealed class HarpySingerSystem : EntitySystem + { + [Dependency] private readonly InstrumentSystem _instrument = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly InventorySystem _inventorySystem = default!; + [Dependency] private readonly ActionBlockerSystem _blocker = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMobStateChangedEvent); + SubscribeLocalEvent(OnEquip); + SubscribeLocalEvent(OnZombified); + SubscribeLocalEvent(OnKnockedDown); + SubscribeLocalEvent(OnStunned); + SubscribeLocalEvent(OnSleep); + SubscribeLocalEvent(OnStatusEffect); + SubscribeLocalEvent(OnDamageChanged); + SubscribeLocalEvent(OnBoundUIClosed); + SubscribeLocalEvent(OnBoundUIOpened); + + // This is intended to intercept the UI event and stop the MIDI UI from opening if the + // singer is unable to sing. Thus it needs to run before the ActivatableUISystem. + SubscribeLocalEvent(OnInstrumentOpen, before: new[] { typeof(ActivatableUISystem) }); + } + + private void OnEquip(GotEquippedEvent args) + { + // Check if an item that makes the singer mumble is equipped to their face + // (not their pockets!). As of writing, this should just be the muzzle. + if (TryComp(args.Equipment, out var accent) && + accent.ReplacementPrototype == "mumble" && + args.Slot == "mask") + { + CloseMidiUi(args.Equipee); + } + } + + private void OnMobStateChangedEvent(EntityUid uid, InstrumentComponent component, MobStateChangedEvent args) + { + if (args.NewMobState is MobState.Critical or MobState.Dead) + CloseMidiUi(args.Target); + } + + private void OnZombified(ref EntityZombifiedEvent args) + { + CloseMidiUi(args.Target); + } + + private void OnKnockedDown(EntityUid uid, InstrumentComponent component, ref KnockedDownEvent args) + { + CloseMidiUi(uid); + } + + private void OnStunned(EntityUid uid, InstrumentComponent component, ref StunnedEvent args) + { + CloseMidiUi(uid); + } + + private void OnSleep(EntityUid uid, InstrumentComponent component, ref SleepStateChangedEvent args) + { + if (args.FellAsleep) + CloseMidiUi(uid); + } + + private void OnStatusEffect(EntityUid uid, InstrumentComponent component, StatusEffectAddedEvent args) + { + if (args.Key == "Muted") + CloseMidiUi(uid); + } + + /// + /// Almost a copy of Content.Server.Damage.ForceSay.DamageForceSaySystem.OnDamageChanged. + /// Done so because DamageForceSaySystem doesn't output an event, and my understanding is + /// that we don't want to change upstream code more than necessary to avoid merge conflicts + /// and maintenance overhead. It still reuses the values from DamageForceSayComponent, so + /// any tweaks to that will keep ForceSay consistent with singing interruptions. + /// + private void OnDamageChanged(EntityUid uid, InstrumentComponent instrumentComponent, DamageChangedEvent args) + { + if (!TryComp(uid, out var component) || + args.DamageDelta == null || + !args.DamageIncreased || + args.DamageDelta.GetTotal() < component.DamageThreshold || + component.ValidDamageGroups == null) + return; + + var totalApplicableDamage = FixedPoint2.Zero; + foreach (var (group, value) in args.DamageDelta.GetDamagePerGroup(_prototype)) + { + if (!component.ValidDamageGroups.Contains(group)) + continue; + + totalApplicableDamage += value; + } + + if (totalApplicableDamage >= component.DamageThreshold) + CloseMidiUi(uid); + } + + /// + /// Closes the MIDI UI if it is open. + /// + private void CloseMidiUi(EntityUid uid) + { + if (HasComp(uid) && + TryComp(uid, out var actor)) + { + _instrument.ToggleInstrumentUi(uid, actor.PlayerSession); + } + } + + /// + /// Prevent the player from opening the MIDI UI under some circumstances. + /// + private void OnInstrumentOpen(EntityUid uid, HarpySingerComponent component, OpenUiActionEvent args) + { + // CanSpeak covers all reasons you can't talk, including being incapacitated + // (crit/dead), asleep, or for any reason mute inclding glimmer or a mime's vow. + var canNotSpeak = !_blocker.CanSpeak(uid); + var zombified = TryComp(uid, out var _); + var muzzled = _inventorySystem.TryGetSlotEntity(uid, "mask", out var maskUid) && + TryComp(maskUid, out var accent) && + accent.ReplacementPrototype == "mumble"; + + // Set this event as handled when the singer should be incapable of singing in order + // to stop the ActivatableUISystem event from opening the MIDI UI. + args.Handled = canNotSpeak || muzzled || zombified; + + // Tell the user that they can not sing. + if (args.Handled) + _popupSystem.PopupEntity(Loc.GetString("no-sing-while-no-speak"), uid, uid, PopupType.Medium); + } + + private void OnBoundUIClosed(EntityUid uid, HarpySingerComponent component, BoundUIClosedEvent args) + { + if (args.UiKey is not InstrumentUiKey) + return; + + TryComp(uid, out AppearanceComponent? appearance); + _appearance.SetData(uid, HarpyVisualLayers.Singing, SingingVisualLayer.False, appearance); + } + + private void OnBoundUIOpened(EntityUid uid, HarpySingerComponent component, BoundUIOpenedEvent args) + { + if (args.UiKey is not InstrumentUiKey) + return; + + TryComp(uid, out AppearanceComponent? appearance); + _appearance.SetData(uid, HarpyVisualLayers.Singing, SingingVisualLayer.True, appearance); + + } + } +} diff --git a/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs b/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs new file mode 100644 index 00000000000..60ec363ac2e --- /dev/null +++ b/Content.Server/DeltaV/Implants/SubdermalBionicSyrinxImplantSystem.cs @@ -0,0 +1,114 @@ +using Content.Server.Administration.Logs; +using Content.Server.Chat.Systems; +using Content.Server.Popups; +using Content.Server.VoiceMask; +using Content.Server.Implants; +using Content.Shared.Database; +using Content.Shared.Implants; +using Content.Shared.Implants.Components; +using Content.Shared.Popups; +using Content.Shared.Preferences; +using Content.Shared.Tag; +using Content.Shared.VoiceMask; +using Robust.Server.GameObjects; +using Robust.Shared.Containers; + +namespace Content.Server.DeltaV.Implants; + +public sealed class SubdermalBionicSyrinxImplantSystem : EntitySystem +{ + [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly TagSystem _tag = default!; + + [ValidatePrototypeId] + public const string BionicSyrinxImplant = "BionicSyrinxImplant"; + + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInsert); + SubscribeLocalEvent(OnSpeakerNameTransform); + SubscribeLocalEvent(OnChangeName); + // We need to remove the SyrinxVoiceMaskComponent from the owner before the implant + // is removed, so we need to execute before the SubdermalImplantSystem. + SubscribeLocalEvent(OnRemove, before: new[] { typeof(SubdermalImplantSystem) }); + } + + private void OnInsert(EntityUid uid, VoiceMaskerComponent component, ImplantImplantedEvent args) + { + if (!args.Implanted.HasValue || + !_tag.HasTag(args.Implant, BionicSyrinxImplant)) + return; + + var voicemask = EnsureComp(args.Implanted.Value); + voicemask.VoiceName = MetaData(args.Implanted.Value).EntityName; + Dirty(args.Implanted.Value, voicemask); + } + + private void OnRemove(EntityUid uid, VoiceMaskerComponent component, EntGotRemovedFromContainerMessage args) + { + if (!TryComp(uid, out var implanted) || implanted.ImplantedEntity == null) + return; + + RemComp(implanted.ImplantedEntity.Value); + } + + /// + /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. + /// + private void OnChangeName(EntityUid uid, SyrinxVoiceMaskComponent component, VoiceMaskChangeNameMessage message) + { + if (message.Name.Length > HumanoidCharacterProfile.MaxNameLength || message.Name.Length <= 0) + { + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-failure"), uid, message.Session, PopupType.SmallCaution); + return; + } + + component.VoiceName = message.Name; + if (message.Session.AttachedEntity != null) + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(message.Session.AttachedEntity.Value):player} set voice of {ToPrettyString(uid):mask}: {component.VoiceName}"); + else + _adminLogger.Add(LogType.Action, LogImpact.Medium, $"Voice of {ToPrettyString(uid):mask} set: {component.VoiceName}"); + + _popupSystem.PopupEntity(Loc.GetString("voice-mask-popup-success"), uid, message.Session); + TrySetLastKnownName(uid, message.Name); + UpdateUI(uid, component); + } + + /// + /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. + /// + private void TrySetLastKnownName(EntityUid implanted, string lastName) + { + if (!HasComp(implanted) + || !TryComp(implanted, out var maskComp)) + return; + + maskComp.LastSetName = lastName; + } + + /// + /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. + /// + private void UpdateUI(EntityUid owner, SyrinxVoiceMaskComponent? component = null) + { + if (!Resolve(owner, ref component, logMissing: false)) + return; + + if (_uiSystem.TryGetUi(owner, VoiceMaskUIKey.Key, out var bui)) + _uiSystem.SetUiState(bui, new VoiceMaskBuiState(component.VoiceName)); + } + + /// + /// Copy from VoiceMaskSystem, adapted to work with SyrinxVoiceMaskComponent. + /// + private void OnSpeakerNameTransform(EntityUid uid, SyrinxVoiceMaskComponent component, TransformSpeakerNameEvent args) + { + if (component.Enabled) + args.Name = component.VoiceName; + } +} diff --git a/Content.Server/DeltaV/VoiceMask/SyrinxVoiceMaskComponent.cs b/Content.Server/DeltaV/VoiceMask/SyrinxVoiceMaskComponent.cs new file mode 100644 index 00000000000..97c04039f92 --- /dev/null +++ b/Content.Server/DeltaV/VoiceMask/SyrinxVoiceMaskComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server.VoiceMask; + +[RegisterComponent] +public sealed partial class SyrinxVoiceMaskComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] public bool Enabled = true; + + [ViewVariables(VVAccess.ReadWrite)] public string VoiceName = "Unknown"; +} diff --git a/Content.Server/Explosion/Components/OnTrigger/GibOnTriggerComponent.cs b/Content.Server/Explosion/Components/OnTrigger/GibOnTriggerComponent.cs index da584676593..61615d65b9a 100644 --- a/Content.Server/Explosion/Components/OnTrigger/GibOnTriggerComponent.cs +++ b/Content.Server/Explosion/Components/OnTrigger/GibOnTriggerComponent.cs @@ -13,4 +13,11 @@ public sealed partial class GibOnTriggerComponent : Component [ViewVariables(VVAccess.ReadWrite)] [DataField("deleteItems")] public bool DeleteItems = false; + + /// + /// Frontier - Should gibbing also delete the owners organs? + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("deleteOrgans")] + public bool DeleteOrgans = false; } diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index 0647fec0690..d05a186a315 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -33,6 +33,7 @@ using Robust.Shared.Random; using Robust.Shared.Player; using Content.Shared.Coordinates; +using Content.Shared.Body.Components; // Frontier - Gib organs namespace Content.Server.Explosion.EntitySystems { @@ -175,6 +176,19 @@ private void HandleGibTrigger(EntityUid uid, GibOnTriggerComponent component, Tr Del(item); } } + + if (component.DeleteOrgans) // Frontier - Gib organs + { + if (TryComp(xform.ParentUid, out var body)) + { + var organs = _body.GetBodyOrganComponents(xform.ParentUid, body); + foreach (var (_, organ) in organs) + { + Del(organ.Owner); + } + } + } // Frontier + _body.GibBody(xform.ParentUid, true); args.Handled = true; } diff --git a/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerSystem.cs b/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerSystem.cs index bff7f1565a1..887165330f7 100644 --- a/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerSystem.cs +++ b/Content.Server/Medical/CrewMonitoring/CrewMonitoringServerSystem.cs @@ -3,7 +3,8 @@ using Content.Server.DeviceNetwork.Systems; using Content.Server.Medical.SuitSensors; using Content.Server.Power.Components; -using Content.Server.Station.Systems; +//using Content.Server.Station.Systems; +using Robust.Shared.Map; // Frontier modification using Content.Shared.DeviceNetwork; using Content.Shared.Medical.SuitSensor; using Robust.Shared.Timing; @@ -15,7 +16,7 @@ public sealed class CrewMonitoringServerSystem : EntitySystem [Dependency] private readonly SuitSensorSystem _sensors = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly DeviceNetworkSystem _deviceNetworkSystem = default!; - [Dependency] private readonly StationSystem _stationSystem = default!; + //[Dependency] private readonly StationSystem _stationSystem = default!; // Frontier modification private const float UpdateRate = 3f; private float _updateDiff; @@ -66,16 +67,18 @@ public override void Update(float frameTime) } /// - /// Returns the address of the currently active server for the given station id if there is one + /// Returns the address of the currently active server for the given map (instead of station id) if there is one /// - public bool TryGetActiveServerAddress(EntityUid stationId, out string? address) + //public bool TryGetActiveServerAddress(EntityUid stationId, out string? address) // Frontier modification + public bool TryGetActiveServerAddress(MapId map, out string? address) // Frontier modification { - var servers = EntityQueryEnumerator(); + var servers = EntityQueryEnumerator(); // Frontier modification (EntityUid id, CrewMonitoringServerComponent server, DeviceNetworkComponent device)? last = default; - while (servers.MoveNext(out var uid, out var server, out var device)) + while (servers.MoveNext(out var uid, out var server, out var device, out var xform)) // Frontier modification { - if (!_stationSystem.GetOwningStation(uid)?.Equals(stationId) ?? true) + //if (!_stationSystem.GetOwningStation(uid)?.Equals(stationId) ?? true) + if (xform.MapID != map) //Frontier modification continue; if (!server.Available) diff --git a/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs b/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs index 9079655c80c..c7bd961e2cb 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorComponent.cs @@ -59,13 +59,15 @@ public sealed partial class SuitSensorComponent : Component [DataField("nextUpdate", customTypeSerializer:typeof(TimeOffsetSerializer))] [AutoPausedField] public TimeSpan NextUpdate = TimeSpan.Zero; - + + /* -- Frontier modification /// /// The station this suit sensor belongs to. If it's null the suit didn't spawn on a station and the sensor doesn't work. /// [DataField("station")] public EntityUid? StationId = null; - + */ + /// /// The server the suit sensor sends it state to. /// The suit sensor will try connecting to a new server when no server is connected. diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index 94ecf5fd0e7..2c4819b9b99 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -6,7 +6,7 @@ using Content.Server.GameTicking; using Content.Server.Medical.CrewMonitoring; using Content.Server.Popups; -using Content.Server.Station.Systems; +//using Content.Server.Station.Systems; // Frontier modification using Content.Shared.Damage; using Content.Shared.DeviceNetwork; using Content.Shared.Emp; @@ -20,6 +20,8 @@ using Robust.Shared.Map; using Robust.Shared.Random; using Robust.Shared.Timing; +using System.Numerics; //Frontier modification +using Content.Server.Salvage.Expeditions; // Frontier modification namespace Content.Server.Medical.SuitSensors; @@ -33,12 +35,13 @@ public sealed class SuitSensorSystem : EntitySystem [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly StationSystem _stationSystem = default!; + //[Dependency] private readonly StationSystem _stationSystem = default!; // Frontier modification + [Dependency] private readonly MetaDataSystem _metaData = default!; // Frontier modification public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnPlayerSpawn); + //SubscribeLocalEvent(OnPlayerSpawn); // Frontier modification SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnEquipped); SubscribeLocalEvent(OnUnequipped); @@ -55,9 +58,10 @@ public override void Update(float frameTime) base.Update(frameTime); var curTime = _gameTiming.CurTime; - var sensors = EntityManager.EntityQueryEnumerator(); + //var sensors = EntityManager.EntityQueryEnumerator(); // Frontier modification + var sensors = EntityQueryEnumerator(); // Frontier modification - while (sensors.MoveNext(out var uid, out var sensor, out var device)) + while (sensors.MoveNext(out var uid, out var sensor, out var device, out var xform)) // Frontier modification { if (device.TransmitFrequency is null) continue; @@ -66,8 +70,10 @@ public override void Update(float frameTime) if (curTime < sensor.NextUpdate) continue; + /* -- Frontier modification if (!CheckSensorAssignedStation(uid, sensor)) continue; + */ // TODO: This would cause imprecision at different tick rates. sensor.NextUpdate = curTime + sensor.UpdateRate; @@ -80,8 +86,10 @@ public override void Update(float frameTime) //Retrieve active server address if the sensor isn't connected to a server if (sensor.ConnectedServer == null) { - if (!_monitoringServerSystem.TryGetActiveServerAddress(sensor.StationId!.Value, out var address)) + //if (!_monitoringServerSystem.TryGetActiveServerAddress(sensor.StationId!.Value, out var address)) // Frontier modification + if (!_monitoringServerSystem.TryGetActiveServerAddress(xform.MapID, out var address)) // Frontier modification continue; + sensor.ConnectedServer = address; } @@ -100,6 +108,7 @@ public override void Update(float frameTime) } } + /* -- Frontier modification /// /// Checks whether the sensor is assigned to a station or not /// and tries to assign an unassigned sensor to a station if it's currently on a grid @@ -139,11 +148,14 @@ private void RecursiveSensor(EntityUid uid, EntityUid stationUid, EntityQuery(); + var userLocationName = Loc.GetString("suit-sensor-location-unknown"); // Frontier modification if (_idCardSystem.TryFindIdCard(sensor.User.Value, out var card)) { @@ -346,7 +360,8 @@ public void SetSensor(EntityUid uid, SuitSensorMode mode, EntityUid? userUid = n totalDamage = damageable.TotalDamage.Int(); // finally, form suit sensor status - var status = new SuitSensorStatus(GetNetEntity(uid), userName, userJob, userJobIcon, userJobDepartments); + // will additonally check the grid and name if it exists, as well if its expedition + var status = new SuitSensorStatus(GetNetEntity(uid), userName, userJob, userJobIcon, userJobDepartments, userLocationName); switch (sensor.Mode) { case SuitSensorMode.SensorBinary: @@ -355,6 +370,32 @@ public void SetSensor(EntityUid uid, SuitSensorMode mode, EntityUid? userUid = n case SuitSensorMode.SensorVitals: status.IsAlive = isAlive; status.TotalDamage = totalDamage; + string locationName; // Frontier modification + + //Frontier modification + if (transform.GridUid != null) + { + if(TryComp(transform.GridUid.Value, out var salvageComp)) + { + locationName = Loc.GetString("suit-sensor-location-expedition"); + } + else + { + var meta = MetaData(transform.GridUid.Value); + + locationName = meta.EntityName; + } + } + else if (transform.MapUid != null) + { + locationName = Loc.GetString("suit-sensor-location-space"); // Frontier modification + } + else + { + locationName = Loc.GetString("suit-sensor-location-unknown"); // Frontier modification + } + + status.LocationName = locationName; //Frontier modification break; case SuitSensorMode.SensorCords: status.IsAlive = isAlive; @@ -364,21 +405,49 @@ public void SetSensor(EntityUid uid, SuitSensorMode mode, EntityUid? userUid = n if (transform.GridUid != null) { - coordinates = new EntityCoordinates(transform.GridUid.Value, + + coordinates = new EntityCoordinates(transform.GridUid.Value, _transform.GetInvWorldMatrix(xformQuery.GetComponent(transform.GridUid.Value), xformQuery) .Transform(_transform.GetWorldPosition(transform, xformQuery))); + /* + coordinates = new EntityCoordinates(uid, + new Vector2(transform.WorldPosition.X, transform.WorldPosition.Y)); //Frontier modification + */ + + // Frontier modification + /// Checks if sensor is present on expedition grid + if(TryComp(transform.GridUid.Value, out var salvageComp)) + { + locationName = Loc.GetString("suit-sensor-location-expedition"); + } + else + { + var meta = MetaData(transform.GridUid.Value); + + locationName = meta.EntityName; + } } else if (transform.MapUid != null) { + coordinates = new EntityCoordinates(transform.MapUid.Value, _transform.GetWorldPosition(transform, xformQuery)); + /* + coordinates = new EntityCoordinates(uid, + new Vector2(transform.WorldPosition.X, transform.WorldPosition.Y)); //Frontier modification + */ + + locationName = Loc.GetString("suit-sensor-location-space"); // Frontier modification } else { coordinates = EntityCoordinates.Invalid; + + locationName = Loc.GetString("suit-sensor-location-unknown"); // Frontier modification } status.Coordinates = GetNetCoordinates(coordinates); + status.LocationName = locationName; //Frontier modification break; } @@ -405,6 +474,8 @@ public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) payload.Add(SuitSensorConstants.NET_TOTAL_DAMAGE, status.TotalDamage); if (status.Coordinates != null) payload.Add(SuitSensorConstants.NET_COORDINATES, status.Coordinates); + if (status.LocationName != null) + payload.Add(SuitSensorConstants.NET_LOCATION_NAME, status.LocationName); return payload; } @@ -427,12 +498,13 @@ public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) if (!payload.TryGetValue(SuitSensorConstants.NET_JOB_DEPARTMENTS, out List? jobDepartments)) return null; if (!payload.TryGetValue(SuitSensorConstants.NET_IS_ALIVE, out bool? isAlive)) return null; if (!payload.TryGetValue(SuitSensorConstants.NET_SUIT_SENSOR_UID, out NetEntity suitSensorUid)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_LOCATION_NAME, out string? location)) return null; // Frontier modification - // try get total damage and cords (optionals) + // try get total damage and cords and location name (optionals) payload.TryGetValue(SuitSensorConstants.NET_TOTAL_DAMAGE, out int? totalDamage); payload.TryGetValue(SuitSensorConstants.NET_COORDINATES, out NetCoordinates? coords); - var status = new SuitSensorStatus(suitSensorUid, name, job, jobIcon, jobDepartments) + var status = new SuitSensorStatus(suitSensorUid, name, job, jobIcon, jobDepartments, location) { IsAlive = isAlive.Value, TotalDamage = totalDamage, diff --git a/Content.Server/Nyanotrasen/Carrying/CarryingSystem.cs b/Content.Server/Nyanotrasen/Carrying/CarryingSystem.cs index 58e2f80d3cc..9351900d3e1 100644 --- a/Content.Server/Nyanotrasen/Carrying/CarryingSystem.cs +++ b/Content.Server/Nyanotrasen/Carrying/CarryingSystem.cs @@ -1,6 +1,7 @@ using System.Numerics; using System.Threading; using Content.Server.DoAfter; +using Content.Server.Inventory; using Content.Server.Resist; using Content.Server.Popups; using Content.Server.Item.PseudoItem; @@ -21,6 +22,7 @@ using Content.Shared.Pulling.Components; using Content.Shared.Standing; using Content.Shared.ActionBlocker; +using Content.Shared.Inventory.VirtualItem; using Content.Shared.Item; using Content.Shared.Item.PseudoItem; using Content.Shared.Mind.Components; @@ -45,6 +47,7 @@ public sealed class CarryingSystem : EntitySystem [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly MovementSpeedModifierSystem _movementSpeed = default!; [Dependency] private readonly PseudoItemSystem _pseudoItem = default!; + [Dependency] private readonly VirtualItemSystem _virtualItemSystem = default!; public override void Initialize() { @@ -116,7 +119,13 @@ private void OnVirtualItemDeleted(EntityUid uid, CarryingComponent component, Vi /// private void OnThrow(EntityUid uid, CarryingComponent component, BeforeThrowEvent args) { - args.ThrowStrength = 5f; + if (!TryComp(args.ItemUid, out var virtItem) || !HasComp(virtItem.BlockingEntity)) + return; + + args.ItemUid = virtItem.BlockingEntity; + + // var multiplier = _contests.MassContest(uid, virtItem.BlockingEntity); + // args.ThrowStrength = 5f * multiplier; } private void OnParentChanged(EntityUid uid, CarryingComponent component, ref EntParentChangedMessage args) @@ -164,7 +173,7 @@ private void OnMoveInput(EntityUid uid, BeingCarriedComponent component, ref Mov if (_actionBlockerSystem.CanInteract(uid, component.Carrier)) { - _escapeInventorySystem.AttemptEscape(uid, component.Carrier, escape, 1); + _escapeInventorySystem.AttemptEscape(uid, component.Carrier, escape); } } @@ -256,6 +265,9 @@ private void Carry(EntityUid carrier, EntityUid carried) var carriedComp = EnsureComp(carried); EnsureComp(carried); + _virtualItemSystem.TrySpawnVirtualItemInHand(carried, carrier); + _virtualItemSystem.TrySpawnVirtualItemInHand(carried, carrier); + carryingComp.Carried = carried; carriedComp.Carrier = carrier; @@ -272,18 +284,19 @@ public void DropCarried(EntityUid carrier, EntityUid carried) Transform(carried).AttachToGridOrMap(); _standingState.Stand(carried); _movementSpeed.RefreshMovementSpeedModifiers(carrier); + _virtualItemSystem.DeleteInHandsMatching(carrier, carried); } private void ApplyCarrySlowdown(EntityUid carrier, EntityUid carried) { - var massRatio = 1; - - if (massRatio == 0) - massRatio = 1; - - var massRatioSq = Math.Pow(massRatio, 2); - var modifier = (1 - (0.15 / massRatioSq)); - modifier = Math.Max(0.1, modifier); + // Carrying slowdown made static as a part of removing mass contests + // var massRatio = _contests.MassContest(carrier, carried); + // if (massRatio == 0) + // massRatio = 1; + // var massRatioSq = Math.Pow(massRatio, 2); + // var modifier = (1 - (0.15 / massRatioSq)); + // modifier = Math.Max(0.1, modifier); + var modifier = 0.7f; // 30% slowdown while carrying var slowdownComp = EnsureComp(carrier); _slowdown.SetModifier(carrier, (float) modifier, (float) modifier, slowdownComp); } @@ -323,9 +336,17 @@ public override void Update(float frameTime) if (carrier is not { Valid: true } || carried is not { Valid: true }) continue; + // SOMETIMES - when an entity is inserted into disposals, or a cryosleep chamber - it can get re-parented without a proper reparent event + // when this happens, it needs to be dropped because it leads to weird behavior + if (Transform(carried).ParentUid != carrier) + { + DropCarried(carrier, carried); + continue; + } + // Make sure the carried entity is always centered relative to the carrier, as gravity pulls can offset it otherwise var xform = Transform(carried); - if (!xform.LocalPosition.EqualsApprox(Vector2.Zero)) + if (!xform.LocalPosition.Equals(Vector2.Zero)) { xform.LocalPosition = Vector2.Zero; } @@ -335,11 +356,11 @@ public override void Update(float frameTime) public TimeSpan GetPickupDuration(EntityUid carrier, EntityUid carried) { - TimeSpan length = TimeSpan.FromSeconds(3); + TimeSpan length = TimeSpan.FromSeconds(6); // The default was 3 seconds; with the removal of mass contests was increased to 6 to make it less abusable - var mod = 1; - if (mod != 0) - length /= mod; + // var mod = _contests.MassContest(carrier, carried); + // if (mod != 0) + // length /= mod; return length; } diff --git a/Content.Server/Paper/PaperSystem.cs b/Content.Server/Paper/PaperSystem.cs index 1a906b251b7..7907c2db79b 100644 --- a/Content.Server/Paper/PaperSystem.cs +++ b/Content.Server/Paper/PaperSystem.cs @@ -116,18 +116,8 @@ private void OnInteractUsing(EntityUid uid, PaperComponent paperComp, InteractUs var editable = paperComp.StampedBy.Count == 0 || _tagSystem.HasTag(args.Used, "WriteIgnoreStamps"); if (_tagSystem.HasTag(args.Used, "Write") && editable) { - bool write = true; - - if (TryComp(args.Used, out var penComp)) - { - // If a pen in sign mod, dont try to write. - if (penComp.Pen == PenMode.PenSign) - { - write = false; - } - } - - if (write) + if (TryComp(args.Used, out var penComp) && penComp.Pen == PenMode.PenSign); + else // Frontier - Else the rest { var writeEvent = new PaperWriteEvent(uid, args.User); RaiseLocalEvent(args.Used, ref writeEvent); @@ -145,37 +135,16 @@ private void OnInteractUsing(EntityUid uid, PaperComponent paperComp, InteractUs // If a stamp, attempt to stamp paper if (TryComp(args.Used, out var stampComp) && TryStamp(uid, GetStampInfo(stampComp), stampComp.StampState, paperComp)) { - var actionOther = "stamps"; - var actionSelf = "stamp"; - - if (stampComp.StampedPersonal) - { - stampComp.StampedIdUser = args.User; - - var userName = Loc.GetString("stamp-component-unknown-name"); - var userJob = Loc.GetString("stamp-component-unknown-job"); - if (_idCardSystem.TryFindIdCard(stampComp.StampedIdUser!.Value, out var card)) - { - if (card.Comp.FullName != null) - userName = card.Comp.FullName; - if (card.Comp.JobTitle != null) - userJob = card.Comp.JobTitle; - } - //string stampedName = userJob + " - " + userName; - string stampedName = userName; - stampComp.StampedName = stampedName; - - actionOther = "signs"; - actionSelf = "sign"; - } + if (stampComp.StampedPersonal) // Frontier + stampComp.StampedName = Loc.GetString("stamp-component-signee-name", ("user", args.User)); // Frontier // successfully stamped, play popup var stampPaperOtherMessage = Loc.GetString("paper-component-action-stamp-paper-other", - ("action", actionOther), ("user", args.User), ("target", args.Target), ("stamp", args.Used)); + ("user", args.User), ("target", args.Target), ("stamp", args.Used)); _popupSystem.PopupEntity(stampPaperOtherMessage, args.User, Filter.PvsExcept(args.User, entityManager: EntityManager), true); var stampPaperSelfMessage = Loc.GetString("paper-component-action-stamp-paper-self", - ("action", actionSelf), ("target", args.Target), ("stamp", args.Used)); + ("target", args.Target), ("stamp", args.Used)); _popupSystem.PopupEntity(stampPaperSelfMessage, args.User, args.User); _audio.PlayPvs(stampComp.Sound, uid); @@ -275,20 +244,8 @@ private void OnHandPickUp(EntityUid uid, StampComponent stampComp, GotEquippedHa { if (stampComp.StampedPersonal) { - stampComp.StampedIdUser = args.User; - - var userName = Loc.GetString("stamp-component-unknown-name"); - var userJob = Loc.GetString("stamp-component-unknown-job"); - if (_idCardSystem.TryFindIdCard(stampComp.StampedIdUser!.Value, out var card)) - { - if (card.Comp.FullName != null) - userName = card.Comp.FullName; - if (card.Comp.JobTitle != null) - userJob = card.Comp.JobTitle; - } - //string stampedName = userJob + " - " + userName; - string stampedName = userName; - stampComp.StampedName = stampedName; + if (stampComp.StampedPersonal) // Frontier + stampComp.StampedName = Loc.GetString("stamp-component-signee-name", ("user", args.User)); // Frontier } } diff --git a/Content.Server/Procedural/DungeonJob.Generator.cs b/Content.Server/Procedural/DungeonJob.Generator.cs index 4415ec66d4a..a466cfdb14d 100644 --- a/Content.Server/Procedural/DungeonJob.Generator.cs +++ b/Content.Server/Procedural/DungeonJob.Generator.cs @@ -351,7 +351,8 @@ private async Task GeneratePrefabDungeon(PrefabDunGen prefab, EntityUid grid.SetTile(tilePos, fallbackTile); } - var result = _decals.TryAddDecal( + // var result = + _decals.TryAddDecal( decal.Id, new EntityCoordinates(gridUid, position), out _, @@ -360,7 +361,10 @@ private async Task GeneratePrefabDungeon(PrefabDunGen prefab, EntityUid decal.ZIndex, decal.Cleanable); - DebugTools.Assert(result); + // Frontier change + // We disable the assertion here because generation of spaceplatform stops prematurely since it has holes. + // Dont care if decals dont get placed because of holes, generation works fine if we ignore the assertion. + // DebugTools.Assert(result); } } diff --git a/Content.Server/Research/Systems/ResearchSystem.Client.cs b/Content.Server/Research/Systems/ResearchSystem.Client.cs index 1edd5d14bef..d6faea23d50 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Client.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Client.cs @@ -58,20 +58,17 @@ private void OnClientRegistrationChanged(EntityUid uid, ResearchClientComponent private void OnClientMapInit(EntityUid uid, ResearchClientComponent component, MapInitEvent args) { - // If the actual RD server on a map is initialized later, it won't work if we run this immediately. - // For the time being while a better solution is found, we register/unregister a little bit later. - // If we don't run this later, RD servers won't appear in the list on all machines on a ship. - Task.Run(async () => + var maybeGrid = Transform(uid).GridUid; + if (maybeGrid is { } grid) { - await Task.Delay(TimeSpan.FromSeconds(10)); + var servers = new HashSet>(); + _lookup.GetChildEntities(grid, servers); - var allServers = EntityQuery(true).ToArray(); - if (allServers.Length > 0) + foreach (var server in servers) { - RegisterClient(uid, allServers[0].Owner, component, allServers[0]); - UnregisterClient(uid, component); + RegisterClient(uid, server, component); } - }); + } } private void OnClientShutdown(EntityUid uid, ResearchClientComponent component, ComponentShutdown args) @@ -89,12 +86,11 @@ private void UpdateClientInterface(EntityUid uid, ResearchClientComponent? compo if (!Resolve(uid, ref component, false)) return; - if (!TryGetClientServer(uid, out _, out var serverComponent, component)) - return; + TryGetClientServer(uid, out _, out var serverComponent, component); var names = GetNFServerNames(uid); var state = new ResearchClientBoundInterfaceState(names.Length, names, - GetNFServerIds(uid), component.ConnectedToServer ? serverComponent.Id : -1); + GetNFServerIds(uid), serverComponent?.Id ?? -1); _uiSystem.TrySetUiState(uid, ResearchClientUiKey.Key, state); } diff --git a/Content.Server/Research/Systems/ResearchSystem.cs b/Content.Server/Research/Systems/ResearchSystem.cs index 852657f038a..fb7e09cb1d6 100644 --- a/Content.Server/Research/Systems/ResearchSystem.cs +++ b/Content.Server/Research/Systems/ResearchSystem.cs @@ -23,6 +23,7 @@ public sealed partial class ResearchSystem : SharedResearchSystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly RadioSystem _radio = default!; [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; public override void Initialize() { diff --git a/Content.Server/Resist/EscapeInventorySystem.cs b/Content.Server/Resist/EscapeInventorySystem.cs index ed16f8881a0..ba6b08d9f0f 100644 --- a/Content.Server/Resist/EscapeInventorySystem.cs +++ b/Content.Server/Resist/EscapeInventorySystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Interaction.Events; using Content.Shared.Inventory; using Content.Shared.Movement.Events; +using Content.Shared.Movement.Systems; using Content.Shared.Resist; using Content.Shared.Storage; using Robust.Shared.Containers; diff --git a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs index b740900b66d..629d2e12ed4 100644 --- a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs +++ b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs @@ -36,6 +36,7 @@ using Content.Server.Shuttles.Components; using Content.Server.Station.Components; using System.Text.RegularExpressions; +using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; namespace Content.Server.Shipyard.Systems; @@ -438,12 +439,12 @@ private void SendSellMessage(EntityUid uid, EntityUid? player, string name, stri private void PlayDenySound(EntityUid uid, ShipyardConsoleComponent component) { - _audio.PlayPvs(_audio.GetSound(component.ErrorSound), uid); + _audio.PlayPvs(_audio.GetSound(component.ErrorSound), uid, AudioParams.Default.WithMaxDistance(0.01f)); } private void PlayConfirmSound(EntityUid uid, ShipyardConsoleComponent component) { - _audio.PlayPvs(_audio.GetSound(component.ConfirmSound), uid); + _audio.PlayPvs(_audio.GetSound(component.ConfirmSound), uid, AudioParams.Default.WithMaxDistance(0.01f)); } private void OnItemSlotChanged(EntityUid uid, ShipyardConsoleComponent component, ContainerModifiedMessage args) diff --git a/Content.Server/Species/Systems/NymphSystem.cs b/Content.Server/Species/Systems/NymphSystem.cs index 8d0646ae8e4..da7a3d2a61f 100644 --- a/Content.Server/Species/Systems/NymphSystem.cs +++ b/Content.Server/Species/Systems/NymphSystem.cs @@ -1,4 +1,6 @@ +using Content.Server.Cargo.Components; using Content.Server.Mind; +using Content.Shared.Bank.Components; using Content.Shared.Species.Components; using Content.Shared.Body.Events; using Robust.Shared.Prototypes; @@ -34,8 +36,24 @@ private void OnRemovedFromPart(EntityUid uid, NymphComponent comp, RemovedFromPa var nymph = EntityManager.SpawnAtPosition(entityProto.ID, coords); if (comp.TransferMind == true && _mindSystem.TryGetMind(args.OldBody, out var mindId, out var mind)) + { _mindSystem.TransferTo(mindId, nymph, mind: mind); + + // Frontier + EnsureComp(nymph); + + // Frontier + // bank account transfer + if (TryComp(args.OldBody, out var bank)) + { + // Do this carefully since changing the value of a bank account component on a entity will save the balance immediately through subscribers. + var oldBankBalance = bank.Balance; + var newBank = EnsureComp(nymph); + newBank.Balance = oldBankBalance; + } + } + QueueDel(uid); } } diff --git a/Content.Server/StationRecords/Systems/GeneralStationRecordConsoleSystem.cs b/Content.Server/StationRecords/Systems/GeneralStationRecordConsoleSystem.cs index 5fbe3f48a85..7e9b2849aae 100644 --- a/Content.Server/StationRecords/Systems/GeneralStationRecordConsoleSystem.cs +++ b/Content.Server/StationRecords/Systems/GeneralStationRecordConsoleSystem.cs @@ -75,12 +75,15 @@ private void UpdateUserInterface(Entity en return; } + var jobList = _stationJobsSystem.GetJobs(owningStation.Value); + var listing = _stationRecords.BuildListing((owningStation.Value, stationRecords), console.Filter); switch (listing.Count) { case 0: - _ui.TrySetUiState(uid, GeneralStationRecordConsoleKey.Key, new GeneralStationRecordConsoleState()); + GeneralStationRecordConsoleState emptyState = new(null, null, null, jobList, console.Filter); + _ui.TrySetUiState(uid, GeneralStationRecordConsoleKey.Key, emptyState); return; case 1: console.ActiveKey = listing.Keys.First(); @@ -89,8 +92,6 @@ private void UpdateUserInterface(Entity en if (console.ActiveKey is not { } id) return; - var jobList = _stationJobsSystem.GetJobs(owningStation.Value); - var key = new StationRecordKey(id, owningStation.Value); _stationRecords.TryGetRecord(key, out var record, stationRecords); diff --git a/Content.Server/_NF/Species/Systems/ReformSystem.cs b/Content.Server/_NF/Species/Systems/ReformSystem.cs new file mode 100644 index 00000000000..4e101843161 --- /dev/null +++ b/Content.Server/_NF/Species/Systems/ReformSystem.cs @@ -0,0 +1,21 @@ +using Content.Server.Cargo.Components; +using Content.Shared.Mind; +using Content.Shared.Species.Components; +using static Content.Shared.Species.ReformSystem; + +namespace Content.Server._NF.Species.Systems; + +// Frontier - This adds cargo sell blacklist component to the newly reformed diona. +public sealed partial class ReformSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnDionaReformed); + } + + private void OnDionaReformed(SetDionaCargoBlacklistEvent ev) + { + EnsureComp(ev.ReformedDiona); + } +} diff --git a/Content.Shared/Access/Components/IdCardComponent.cs b/Content.Shared/Access/Components/IdCardComponent.cs index 26e83c5586e..9459f6c1910 100644 --- a/Content.Shared/Access/Components/IdCardComponent.cs +++ b/Content.Shared/Access/Components/IdCardComponent.cs @@ -1,6 +1,7 @@ using Content.Shared.Access.Systems; using Content.Shared.PDA; using Content.Shared.StatusIcon; +using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -40,4 +41,21 @@ public sealed partial class IdCardComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite)] public bool BypassLogging; + + + // Frontier + [DataField("soundError")] + public SoundSpecifier ErrorSound = + new SoundPathSpecifier("/Audio/Effects/Cargo/buzz_sigh.ogg"); + + // Frontier + [DataField("soundSwipe")] + public SoundSpecifier SwipeSound = + new SoundPathSpecifier("/Audio/Machines/id_swipe.ogg"); + + // Frontier + [DataField("soundInsert")] + public SoundSpecifier InsertSound = + new SoundPathSpecifier("/Audio/Machines/id_insert.ogg"); + } diff --git a/Content.Shared/Access/Components/IdCardConsoleComponent.cs b/Content.Shared/Access/Components/IdCardConsoleComponent.cs index 3beff6c7d17..55023e4e14a 100644 --- a/Content.Shared/Access/Components/IdCardConsoleComponent.cs +++ b/Content.Shared/Access/Components/IdCardConsoleComponent.cs @@ -49,6 +49,7 @@ public sealed partial class IdCardConsoleComponent : Component "Janitor", "Kitchen", "Lawyer", + "Mail", // Frontier "Maintenance", "Medical", "Mercenary", // Frontier diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs index 6d97fb750b1..ba1bba519a7 100644 --- a/Content.Shared/Access/Systems/AccessReaderSystem.cs +++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs @@ -78,8 +78,10 @@ private void OnLinkAttempt(EntityUid uid, AccessReaderComponent component, LinkA private void OnEmagged(EntityUid uid, AccessReaderComponent reader, ref GotEmaggedEvent args) { - if (!reader.BreakOnEmag) - return; + //if (!reader.BreakOnEmag) // Frontier + // return; // Frontier + if (reader.ImmuneToEmag) // Frontier + return; // Frontier args.Handled = true; reader.Enabled = false; reader.AccessLog.Clear(); diff --git a/Content.Shared/Bed/Sleep/AutoWakeUpComponent.cs b/Content.Shared/Bed/Sleep/AutoWakeUpComponent.cs new file mode 100644 index 00000000000..f2fa75ca4a2 --- /dev/null +++ b/Content.Shared/Bed/Sleep/AutoWakeUpComponent.cs @@ -0,0 +1,13 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Bed.Sleep; + +/// +/// Frontier - Added to AI to allow auto waking up after 5 secs. +/// +[NetworkedComponent, RegisterComponent] +public sealed partial class AutoWakeUpComponent : Component +{ +} diff --git a/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs b/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs index 4e4bc2c574b..1a5443b160c 100644 --- a/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs +++ b/Content.Shared/Bed/Sleep/SharedSleepingSystem.cs @@ -7,6 +7,7 @@ using Robust.Shared.Network; using Robust.Shared.Prototypes; using Robust.Shared.Timing; +using System.Threading.Tasks; // Frontier namespace Content.Server.Bed.Sleep { @@ -38,6 +39,16 @@ private void OnMapInit(EntityUid uid, SleepingComponent component, MapInitEvent // TODO remove hardcoded time. _actionsSystem.SetCooldown(component.WakeAction, _gameTiming.CurTime, _gameTiming.CurTime + TimeSpan.FromSeconds(15)); + + if (TryComp(uid, out var autoWakeUp)) // Frontier + { + Task.Run(async () => + { + await Task.Delay(TimeSpan.FromSeconds(5)); + ev = new SleepStateChangedEvent(false); + RaiseLocalEvent(uid, ev); + }); + } // Frontier } private void OnShutdown(EntityUid uid, SleepingComponent component, ComponentShutdown args) diff --git a/Content.Shared/Buckle/Components/BuckleComponent.cs b/Content.Shared/Buckle/Components/BuckleComponent.cs index cf28b56d51f..80d3be7db14 100644 --- a/Content.Shared/Buckle/Components/BuckleComponent.cs +++ b/Content.Shared/Buckle/Components/BuckleComponent.cs @@ -75,6 +75,13 @@ public sealed partial class BuckleComponent : Component /// Used for client rendering /// [ViewVariables] public int? OriginalDrawDepth; + + /// + /// Frontier - True if the entity is blocked from buckling. + /// + [DataField] + [ViewVariables(VVAccess.ReadWrite)] + public bool Disable; } [ByRefEvent] diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs index cfaea47d304..ab5289f35a6 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs @@ -323,6 +323,9 @@ private bool CanBuckle( if (attemptEvent.Cancelled) return false; + if (buckleComp.Disable) // Frontier + return false; // Frontier + return true; } diff --git a/Content.Shared/DeltaV/Abilities/UltraVisionComponent.cs b/Content.Shared/DeltaV/Abilities/UltraVisionComponent.cs new file mode 100644 index 00000000000..c601d5bd8a8 --- /dev/null +++ b/Content.Shared/DeltaV/Abilities/UltraVisionComponent.cs @@ -0,0 +1,8 @@ +using Robust.Shared.GameStates; +namespace Content.Shared.DeltaV.Abilities; + +[RegisterComponent] +[NetworkedComponent] + +public sealed partial class UltraVisionComponent : Component +{} diff --git a/Content.Shared/DeltaV/Harpy/Components/HarpyVisualSystem.cs b/Content.Shared/DeltaV/Harpy/Components/HarpyVisualSystem.cs new file mode 100644 index 00000000000..f5100e13c7f --- /dev/null +++ b/Content.Shared/DeltaV/Harpy/Components/HarpyVisualSystem.cs @@ -0,0 +1,17 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.DeltaV.Harpy.Components +{ + [Serializable, NetSerializable] + public enum HarpyVisualLayers + { + Singing, + } + + [Serializable, NetSerializable] + public enum SingingVisualLayer + { + True, + False, + } +} diff --git a/Content.Shared/DeltaV/Harpy/HarpySingerComponent.cs b/Content.Shared/DeltaV/Harpy/HarpySingerComponent.cs new file mode 100644 index 00000000000..1ee3f795d58 --- /dev/null +++ b/Content.Shared/DeltaV/Harpy/HarpySingerComponent.cs @@ -0,0 +1,17 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.DeltaV.Harpy +{ + [RegisterComponent, NetworkedComponent] + public sealed partial class HarpySingerComponent : Component + { + [DataField("midiActionId", serverOnly: true, + customTypeSerializer: typeof(PrototypeIdSerializer))] + public string? MidiActionId = "ActionHarpyPlayMidi"; + + [DataField("midiAction", serverOnly: true)] // server only, as it uses a server-BUI event !type + public EntityUid? MidiAction; + } +} diff --git a/Content.Shared/DeltaV/Harpy/HarpySingerSystem.cs b/Content.Shared/DeltaV/Harpy/HarpySingerSystem.cs new file mode 100644 index 00000000000..50e8b6302c0 --- /dev/null +++ b/Content.Shared/DeltaV/Harpy/HarpySingerSystem.cs @@ -0,0 +1,28 @@ +using Content.Shared.Actions; + +namespace Content.Shared.DeltaV.Harpy +{ + public class HarpySingerSystem : EntitySystem + { + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnStartup); + SubscribeLocalEvent(OnShutdown); + } + + private void OnStartup(EntityUid uid, HarpySingerComponent component, ComponentStartup args) + { + _actionsSystem.AddAction(uid, ref component.MidiAction, component.MidiActionId); + } + + private void OnShutdown(EntityUid uid, HarpySingerComponent component, ComponentShutdown args) + { + _actionsSystem.RemoveAction(uid, component.MidiAction); + } + } +} + diff --git a/Content.Shared/DeltaV/Harpy/HarpyVisualsSystem.cs b/Content.Shared/DeltaV/Harpy/HarpyVisualsSystem.cs new file mode 100644 index 00000000000..f75fcee8d42 --- /dev/null +++ b/Content.Shared/DeltaV/Harpy/HarpyVisualsSystem.cs @@ -0,0 +1,40 @@ +using Content.Shared.Inventory.Events; +using Content.Shared.Tag; +using Content.Shared.Humanoid; + +namespace Content.Shared.DeltaV.Harpy; + +public sealed class HarpyVisualsSystem : EntitySystem +{ + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly SharedHumanoidAppearanceSystem _humanoidSystem = default!; + + [ValidatePrototypeId] + private const string HarpyWingsTag = "HidesHarpyWings"; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDidEquipEvent); + SubscribeLocalEvent(OnDidUnequipEvent); + } + + private void OnDidEquipEvent(EntityUid uid, HarpySingerComponent component, DidEquipEvent args) + { + if (args.Slot == "outerClothing" && _tagSystem.HasTag(args.Equipment, HarpyWingsTag)) + { + _humanoidSystem.SetLayerVisibility(uid, HumanoidVisualLayers.RArm, false); + _humanoidSystem.SetLayerVisibility(uid, HumanoidVisualLayers.Tail, false); + } + } + + private void OnDidUnequipEvent(EntityUid uid, HarpySingerComponent component, DidUnequipEvent args) + { + if (args.Slot == "outerClothing" && _tagSystem.HasTag(args.Equipment, HarpyWingsTag)) + { + _humanoidSystem.SetLayerVisibility(uid, HumanoidVisualLayers.RArm, true); + _humanoidSystem.SetLayerVisibility(uid, HumanoidVisualLayers.Tail, true); + } + } +} diff --git a/Content.Shared/DeltaV/Harpy/SharedHarpyVisualsComponent.cs b/Content.Shared/DeltaV/Harpy/SharedHarpyVisualsComponent.cs new file mode 100644 index 00000000000..cc0f7c39354 --- /dev/null +++ b/Content.Shared/DeltaV/Harpy/SharedHarpyVisualsComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.DeltaV.Harpy; + +[Serializable, NetSerializable] +public enum HardsuitWings : byte +{ + Worn +} diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index 6a2a25f614b..1aa73b03aa7 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -22,6 +22,7 @@ using Robust.Shared.Timing; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; +using Content.Shared.Emag.Components; // Frontier - Added DEMUG namespace Content.Shared.Doors.Systems; @@ -82,6 +83,7 @@ public override void Initialize() SubscribeLocalEvent(OnPryTimeModifier); SubscribeLocalEvent(OnEmagged); + SubscribeLocalEvent(OnUnEmagged); // Frontier - Added DEMUG } protected virtual void OnComponentInit(Entity ent, ref ComponentInit args) @@ -137,6 +139,23 @@ private void OnEmagged(EntityUid uid, DoorComponent door, ref GotEmaggedEvent ar } } + private void OnUnEmagged(EntityUid uid, DoorComponent door, ref GotUnEmaggedEvent args) // Frontier - Added DEMUG + { + if (TryComp(uid, out var airlockComponent)) + { + if (HasComp(uid)) + { + if (TryComp(uid, out var doorBoltComponent)) + { + SetBoltsDown((uid, doorBoltComponent), !doorBoltComponent.BoltsDown, null, true); + SetState(uid, DoorState.Closing, door); + } + Audio.PlayPredicted(door.SparkSound, uid, args.UserUid, AudioParams.Default.WithVolume(8)); + args.Handled = true; + } + } + } + #region StateManagement private void OnHandleState(Entity ent, ref AfterAutoHandleStateEvent args) { diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index d89a4aebcec..bda4af90d62 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -267,6 +267,7 @@ private void OnUnEmagged(EntityUid uid, LockComponent component, ref GotUnEmagge if (HasComp(uid)) { _audio.PlayPredicted(component.UnlockSound, uid, null, AudioParams.Default.WithVolume(-5)); + _appearanceSystem.SetData(uid, LockVisuals.Locked, true); //EnsureComp(uid); //Literally addes the lock as a tell it was emagged component.Locked = true; args.Handled = true; diff --git a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs b/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs index 07e0eca33bd..34d7d221649 100644 --- a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs +++ b/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs @@ -6,13 +6,14 @@ namespace Content.Shared.Medical.SuitSensor; [Serializable, NetSerializable] public sealed class SuitSensorStatus { - public SuitSensorStatus(NetEntity suitSensorUid, string name, string job, string jobIcon, List jobDepartments) + public SuitSensorStatus(NetEntity suitSensorUid, string name, string job, string jobIcon, List jobDepartments, string locationName) { SuitSensorUid = suitSensorUid; Name = name; Job = job; JobIcon = jobIcon; JobDepartments = jobDepartments; + LocationName = locationName; } public TimeSpan Timestamp; @@ -24,6 +25,7 @@ public SuitSensorStatus(NetEntity suitSensorUid, string name, string job, string public bool IsAlive; public int? TotalDamage; public NetCoordinates? Coordinates; + public string LocationName; } [Serializable, NetSerializable] @@ -60,6 +62,7 @@ public static class SuitSensorConstants public const string NET_TOTAL_DAMAGE = "vitals"; public const string NET_COORDINATES = "coords"; public const string NET_SUIT_SENSOR_UID = "uid"; + public const string NET_LOCATION_NAME = "location"; // Frontier modification ///Used by the CrewMonitoringServerSystem to send the status of all connected suit sensors to each crew monitor public const string NET_STATUS_COLLECTION = "suit-status-collection"; diff --git a/Content.Shared/Paper/PenComponent.cs b/Content.Shared/Paper/PenComponent.cs index b4e6269cf23..84fc6863757 100644 --- a/Content.Shared/Paper/PenComponent.cs +++ b/Content.Shared/Paper/PenComponent.cs @@ -17,12 +17,12 @@ public PenStatus(NetEntity penUid) public enum PenMode : byte { /// - /// Sensor doesn't send any information about owner + /// Frontier - The normal mode of a pen. /// PenWrite = 0, /// - /// Sensor sends only binary status (alive/dead) + /// Frontier - The sign mode of a pen. /// PenSign = 1, } diff --git a/Content.Shared/Paper/StampComponent.cs b/Content.Shared/Paper/StampComponent.cs index 5588537b5ea..cc788cca592 100644 --- a/Content.Shared/Paper/StampComponent.cs +++ b/Content.Shared/Paper/StampComponent.cs @@ -55,7 +55,7 @@ public sealed partial class StampComponent : Component public SoundSpecifier? Sound = null; /// - /// The stamp using the person name on it + /// Frontier - The stamp using the person name on it /// [DataField("stampedPersonal")] public bool StampedPersonal = false; diff --git a/Content.Shared/RCD/Components/RCDAmmoComponent.cs b/Content.Shared/RCD/Components/RCDAmmoComponent.cs index 7b1fc001d4d..16a92b6aa25 100644 --- a/Content.Shared/RCD/Components/RCDAmmoComponent.cs +++ b/Content.Shared/RCD/Components/RCDAmmoComponent.cs @@ -13,6 +13,13 @@ public sealed partial class RCDAmmoComponent : Component /// [DataField("charges"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public int Charges = 5; + + /// + /// ~~~ Frontier ~~~ + /// A flag that limits RCD to the authorized ships. + /// + [DataField("isShipyardRCDAmmo"), AutoNetworkedField] + public bool IsShipyardRCDAmmo; } // TODO: state??? check if it desyncs diff --git a/Content.Shared/RCD/Components/RCDComponent.cs b/Content.Shared/RCD/Components/RCDComponent.cs index 8e1032884aa..68271b1a102 100644 --- a/Content.Shared/RCD/Components/RCDComponent.cs +++ b/Content.Shared/RCD/Components/RCDComponent.cs @@ -48,4 +48,18 @@ public sealed partial class RCDComponent : Component [DataField("floor", customTypeSerializer: typeof(PrototypeIdSerializer))] [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public string Floor = "FloorSteel"; + + /// + /// ~~~ Frontier ~~~ + /// A flag that limits RCD to the authorized ships. + /// + [DataField("isShipyardRCD"), AutoNetworkedField] + public bool IsShipyardRCD; + + /// + /// ~~~ Frontier ~~~ + /// The uid to which this RCD is limited to be used on. + /// + [DataField("linkedShuttleUid"), AutoNetworkedField] + public EntityUid? LinkedShuttleUid = null; } diff --git a/Content.Shared/RCD/Systems/RCDAmmoSystem.cs b/Content.Shared/RCD/Systems/RCDAmmoSystem.cs index 9481d299aaa..9136e337e28 100644 --- a/Content.Shared/RCD/Systems/RCDAmmoSystem.cs +++ b/Content.Shared/RCD/Systems/RCDAmmoSystem.cs @@ -42,6 +42,16 @@ private void OnAfterInteract(EntityUid uid, RCDAmmoComponent comp, AfterInteract return; var user = args.User; + + // ## Frontier - Shipyard RCD ammo only fits in shipyard RCD. + // At this point RCDComponent is guaranteed + EnsureComp(target, out var rcdComponent); + if (rcdComponent.IsShipyardRCD && !comp.IsShipyardRCDAmmo || !rcdComponent.IsShipyardRCD && comp.IsShipyardRCDAmmo) + { + _popup.PopupClient(Loc.GetString("rcd-component-wrong-ammo-type"), target, user); + return; + } + args.Handled = true; var count = Math.Min(charges.MaxCharges - charges.Charges, comp.Charges); if (count <= 0) diff --git a/Content.Shared/RCD/Systems/RCDSystem.cs b/Content.Shared/RCD/Systems/RCDSystem.cs index 2b9852a6945..f93ecb12fd2 100644 --- a/Content.Shared/RCD/Systems/RCDSystem.cs +++ b/Content.Shared/RCD/Systems/RCDSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.Access.Components; using Content.Shared.Administration.Logs; using Content.Shared.Charges.Components; using Content.Shared.Charges.Systems; @@ -10,6 +11,7 @@ using Content.Shared.Physics; using Content.Shared.Popups; using Content.Shared.RCD.Components; +using Content.Shared.Shipyard.Components; using Content.Shared.Tag; using Content.Shared.Tiles; using Robust.Shared.Audio; @@ -50,6 +52,7 @@ public override void Initialize() SubscribeLocalEvent(OnAfterInteract); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent>(OnDoAfterAttempt); + SubscribeLocalEvent(OnIdCardSwipeHappened); // Frontier } private void OnExamine(EntityUid uid, RCDComponent comp, ExaminedEvent args) @@ -70,6 +73,56 @@ private void OnUseInHand(EntityUid uid, RCDComponent comp, UseInHandEvent args) args.Handled = true; } + /** + * Frontier - ability to swipe rcd for authorizations to build on specific grids + */ + private void OnIdCardSwipeHappened(EntityUid uid, IdCardComponent comp, ref AfterInteractEvent args) + { + if (args.Handled) + return; + + if (args.Target is not { Valid: true } target || !args.CanReach) + return; + + var rcdEntityUid = target; + + // Is this id card interacting with a shipyard RCD ? if not, ignore it. + if (!TryComp(rcdEntityUid, out var rcdComponent) || !rcdComponent.IsShipyardRCD) + { + args.Handled = true; + return; + } + + // If the id card has no registered ship we cant continue. + if (!TryComp(comp.Owner, out var shuttleDeedComponent)) + { + _popup.PopupClient(Loc.GetString("rcd-component-missing-id-deed"), + uid, args.User, PopupType.Medium); + _audio.PlayPredicted(comp.ErrorSound, rcdEntityUid, args.User, AudioParams.Default.WithMaxDistance(0.01f)); + args.Handled = true; + return; + } + + // Swiping it again removes the authorization on it. + if (rcdComponent.LinkedShuttleUid != null) + { + _popup.PopupClient(Loc.GetString("rcd-component-id-card-removed"), + uid, args.User, PopupType.Medium); + _audio.PlayPredicted(comp.SwipeSound, rcdEntityUid, args.User, AudioParams.Default.WithMaxDistance(0.01f)); + rcdComponent.LinkedShuttleUid = null; + } + else + { + _popup.PopupClient(Loc.GetString("rcd-component-id-card-accepted"), + uid, args.User, PopupType.Medium); + _audio.PlayPredicted(comp.InsertSound, rcdEntityUid, args.User, AudioParams.Default.WithMaxDistance(0.01f)); + rcdComponent.LinkedShuttleUid = shuttleDeedComponent.ShuttleUid; + } + + Dirty(rcdComponent.Owner, rcdComponent); + args.Handled = true; + } + private void OnAfterInteract(EntityUid uid, RCDComponent comp, AfterInteractEvent args) { if (args.Handled || !args.CanReach) @@ -111,10 +164,48 @@ private void OnAfterInteract(EntityUid uid, RCDComponent comp, AfterInteractEven args.Handled = true; - if (_doAfter.TryStartDoAfter(doAfterArgs) && _gameTiming.IsFirstTimePredicted) + // IsAuthorized is part of frontier + if (IsAuthorized(gridId, uid, comp, args) && _doAfter.TryStartDoAfter(doAfterArgs) && _gameTiming.IsFirstTimePredicted) Spawn("EffectRCDConstruction", location); } + /** + * Frontier - Stops RCD functions if there is a protected grid component on it, and adds shipyard rcd limitations. + */ + private bool IsAuthorized(EntityUid? gridId, EntityUid uid, RCDComponent comp, AfterInteractEvent args) + { + if (gridId == null) + { + return true; + } + var mapGrid = _mapMan.GetGrid(gridId.Value); + var gridUid = mapGrid.Owner; + + // Frontier - Remove all RCD use on outpost. + if (HasComp(gridUid)) + { + _popup.PopupClient(Loc.GetString("rcd-component-use-blocked"), uid, args.User); + return false; + } + + // Frontier - LinkedShuttleUid requirements to use Shipyard RCD. + if (comp.IsShipyardRCD) + { + if (comp.LinkedShuttleUid == null) + { + _popup.PopupClient(Loc.GetString("rcd-component-no-id-swiped"), uid, args.User); + return false; + } + if (comp.LinkedShuttleUid != gridUid) + { + _popup.PopupClient(Loc.GetString("rcd-component-can-only-build-authorized-ship"), uid, args.User); + return false; + } + } + + return true; + } + private void OnDoAfterAttempt(EntityUid uid, RCDComponent comp, DoAfterAttemptEvent args) { // sus client crash why @@ -162,14 +253,6 @@ private void OnDoAfter(EntityUid uid, RCDComponent comp, RCDDoAfterEvent args) var tile = mapGrid.GetTileRef(location); var snapPos = mapGrid.TileIndicesFor(location); - // I love that this uses entirely separate code to construction and tile placement!!! - - var gridUid = mapGrid.Owner; - var ev = new FloorTileAttemptEvent(); - - if (HasComp(gridUid) || ev.Cancelled) // Frontier - Remove all RCD use on outpost. - return; - switch (comp.Mode) { //Floor mode just needs the tile to be a space tile (subFloor) diff --git a/Content.Shared/Roles/StartingGearPrototype.cs b/Content.Shared/Roles/StartingGearPrototype.cs index 9ba4eab945d..9fb05aec077 100644 --- a/Content.Shared/Roles/StartingGearPrototype.cs +++ b/Content.Shared/Roles/StartingGearPrototype.cs @@ -35,7 +35,8 @@ public string GetGear(string slot, HumanoidCharacterProfile? profile) { if (profile != null) { - if (slot == "jumpsuit" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(InnerClothingSkirt)) + if (slot == "jumpsuit" && profile.Clothing == ClothingPreference.Jumpskirt && !string.IsNullOrEmpty(InnerClothingSkirt) + ||slot == "jumpsuit" && profile.Species == "Harpy" && !string.IsNullOrEmpty(InnerClothingSkirt)) //Frontier: Needed for Harpies return InnerClothingSkirt; if (slot == "back" && profile.Backpack == BackpackPreference.Satchel && !string.IsNullOrEmpty(Satchel)) return Satchel; diff --git a/Content.Shared/Shipyard/Components/ShuttleDeedComponent.cs b/Content.Shared/Shipyard/Components/ShuttleDeedComponent.cs index ef66b5ff989..1ff534afbcb 100644 --- a/Content.Shared/Shipyard/Components/ShuttleDeedComponent.cs +++ b/Content.Shared/Shipyard/Components/ShuttleDeedComponent.cs @@ -1,9 +1,11 @@ +using Robust.Shared.GameStates; + namespace Content.Shared.Shipyard.Components; /// /// Tied to an ID card when a ship is purchased. 1 ship per captain. /// -[RegisterComponent, Access(typeof(SharedShipyardSystem))] +[RegisterComponent, NetworkedComponent, Access(typeof(SharedShipyardSystem))] public sealed partial class ShuttleDeedComponent : Component { public const int MaxNameLength = 30; diff --git a/Content.Shared/Species/Systems/ReformSystem.cs b/Content.Shared/Species/Systems/ReformSystem.cs index a013a7f8864..1c4c7c1f379 100644 --- a/Content.Shared/Species/Systems/ReformSystem.cs +++ b/Content.Shared/Species/Systems/ReformSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Species.Components; using Content.Shared.Actions; +using Content.Shared.Bank.Components; using Content.Shared.DoAfter; using Content.Shared.Popups; using Content.Shared.Stunnable; @@ -90,19 +91,37 @@ private void OnDoAfter(EntityUid uid, ReformComponent comp, ReformDoAfterEvent a return; // Spawn a new entity - // This is, to an extent, taken from polymorph. I don't use polymorph for various reasons- most notably that this is permanent. + // This is, to an extent, taken from polymorph. I don't use polymorph for various reasons- most notably that this is permanent. var child = Spawn(comp.ReformPrototype, Transform(uid).Coordinates); // This transfers the mind to the new entity if (_mindSystem.TryGetMind(uid, out var mindId, out var mind)) _mindSystem.TransferTo(mindId, child, mind: mind); + // Frontier + // bank account transfer + if (TryComp(uid, out var bank)) + { + // Do this carefully since changing the value of a bank account component on a entity will save the balance immediately through subscribers. + var oldBankBalance = bank.Balance; + var newBank = EnsureComp(child); + newBank.Balance = oldBankBalance; + } + + // Frontier + RaiseLocalEvent(child, new SetDionaCargoBlacklistEvent(child), true); + // Delete the old entity QueueDel(uid); } - public sealed partial class ReformEvent : InstantActionEvent { } - + public sealed partial class ReformEvent : InstantActionEvent { } + [Serializable, NetSerializable] public sealed partial class ReformDoAfterEvent : SimpleDoAfterEvent { } + + public sealed partial class SetDionaCargoBlacklistEvent(EntityUid entity) : EntityEventArgs + { + public EntityUid ReformedDiona { get; } = entity; + } } diff --git a/Resources/Audio/DeltaV/Voice/Harpy/attributions.yml b/Resources/Audio/DeltaV/Voice/Harpy/attributions.yml new file mode 100644 index 00000000000..f8c5fc72360 --- /dev/null +++ b/Resources/Audio/DeltaV/Voice/Harpy/attributions.yml @@ -0,0 +1,9 @@ +- files: ["caw1.ogg"] + license: "CC-BY-SA-4.0" + copyright: "Original sound by https://xeno-canto.org/756861" + source: "https://xeno-canto.org/756861" + + files: ["chirp1.ogg"] + license: "CC-BY-SA-4.0" + copyright: "Original sound by https://xeno-canto.org/797998" + source: "https://xeno-canto.org/797998" diff --git a/Resources/Audio/DeltaV/Voice/Harpy/caw1.ogg b/Resources/Audio/DeltaV/Voice/Harpy/caw1.ogg new file mode 100644 index 00000000000..182d3e755bf Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Harpy/caw1.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Harpy/chirp1.ogg b/Resources/Audio/DeltaV/Voice/Harpy/chirp1.ogg new file mode 100644 index 00000000000..5eeea546775 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Harpy/chirp1.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Harpy/license.txt b/Resources/Audio/DeltaV/Voice/Harpy/license.txt new file mode 100644 index 00000000000..d7e2f4ed36b --- /dev/null +++ b/Resources/Audio/DeltaV/Voice/Harpy/license.txt @@ -0,0 +1,2 @@ +caw1.ogg licensed under CC-BY-SA-4.0 taken from https://xeno-canto.org/756861 +chirp1.ogg licensed under CC-BY-SA-4.0 taken from https://xeno-canto.org/797998 diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/attributions.yml b/Resources/Audio/DeltaV/Voice/Vulpkanin/attributions.yml new file mode 100644 index 00000000000..8335f4cbf10 --- /dev/null +++ b/Resources/Audio/DeltaV/Voice/Vulpkanin/attributions.yml @@ -0,0 +1,49 @@ +- files: ["dog_bark1.ogg", "dog_bark2.ogg", "dog_bark3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by abhisheky948 at https://freesound.org/people/abhisheky948/sounds/625497/" + source: "https://freesound.org/people/abhisheky948/sounds/625497/" + +- files: ["dog_bark2.ogg"] + license: "CC0-1.0" + copyright: "Original sound by michael_grinnell at https://freesound.org/people/michael_grinnell/sounds/464400/" + source: "https://freesound.org/people/michael_grinnell/sounds/464400/" + +- files: ["dog_bark3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by Geoff-Bremner-Audio at https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/" + source: "https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/" + +- files: ["dog_growl1.ogg", "dog_growl2.ogg", "dog_growl3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by GlitchedTones at https://freesound.org/people/Glitchedtones/sounds/372533/ - cut out three clips of dog growling, cleaned up, converted to ogg" + source: "https://freesound.org/people/Glitchedtones/sounds/372533/" + +- files: ["dog_growl4.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Paradise Station. Renamed to dog_growl4.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl1.ogg" + +- files: ["dog_growl5.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Paradise Station. Renamed to dog_growl5.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl2.ogg" + +- files: ["dog_growl6.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Paradise Station. Renamed to dog_growl6.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl3.ogg" + +- files: ["dog_snarl1.ogg", "dog_snarl2.ogg", "dog_snarl3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by strongbot at https://freesound.org/people/strongbot/sounds/341090/ - cut out three clips of dog snarling, cleaned up, converted to ogg" + source: "https://freesound.org/people/strongbot/sounds/341090/" + +- files: ["dog_whine.ogg"] + license: "CC0-1.0" + copyright: "Original sound by Sruddi1 at https://freesound.org/people/Sruddi1/sounds/34878/ - cleaned up, converted to ogg" + source: "https://freesound.org/people/Sruddi1/sounds/34878/" + +- files: ["howl.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Goonstation. Renamed to howl.ogg" + source: "https://github.com/goonstation/goonstation/blob/master/sound/voice/animal/werewolf_howl.ogg" diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark1.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark1.ogg new file mode 100644 index 00000000000..8f3b8fe5bff Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark1.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark2.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark2.ogg new file mode 100644 index 00000000000..ed4d7bc7868 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark2.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark3.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark3.ogg new file mode 100644 index 00000000000..13aab8edd40 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_bark3.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl1.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl1.ogg new file mode 100644 index 00000000000..d2c99e97e7e Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl1.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl2.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl2.ogg new file mode 100644 index 00000000000..3eb018413a5 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl2.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl3.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl3.ogg new file mode 100644 index 00000000000..84b505442d2 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl3.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl4.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl4.ogg new file mode 100644 index 00000000000..d5152d9c057 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl4.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl5.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl5.ogg new file mode 100644 index 00000000000..5c48053ac68 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl5.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl6.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl6.ogg new file mode 100644 index 00000000000..bcacf2442f0 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_growl6.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl1.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl1.ogg new file mode 100644 index 00000000000..4493be060cc Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl1.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl2.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl2.ogg new file mode 100644 index 00000000000..6529e4e05d0 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl2.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl3.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl3.ogg new file mode 100644 index 00000000000..fb9e4c7ec7b Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_snarl3.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_whine.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_whine.ogg new file mode 100644 index 00000000000..47f2e8200d7 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/dog_whine.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/howl.ogg b/Resources/Audio/DeltaV/Voice/Vulpkanin/howl.ogg new file mode 100644 index 00000000000..778fd6b2483 Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Vulpkanin/howl.ogg differ diff --git a/Resources/Audio/DeltaV/Voice/Vulpkanin/license.txt b/Resources/Audio/DeltaV/Voice/Vulpkanin/license.txt new file mode 100644 index 00000000000..753d95909aa --- /dev/null +++ b/Resources/Audio/DeltaV/Voice/Vulpkanin/license.txt @@ -0,0 +1,14 @@ +dog_bark1.ogg licensed under CC0 1.0 taken from abhisheky948 at https://freesound.org/people/abhisheky948/sounds/625497/ +dog_bark2.ogg licensed under CC0 1.0 taken from michael_grinnell at https://freesound.org/people/michael_grinnell/sounds/464400/ +dog_bark3.ogg licensed under CC0 1.0 taken from Geoff-Bremner-Audio at https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/ +dog_growl1.ogg licensed under CC0 1.0 taken from GlitchedTones at https://freesound.org/people/Glitchedtones/sounds/372533/ +dog_growl2.ogg licensed under CC0 1.0 taken from GlitchedTones at https://freesound.org/people/Glitchedtones/sounds/372533/ +dog_growl3.ogg licensed under CC0 1.0 taken from GlitchedTones at https://freesound.org/people/Glitchedtones/sounds/372533/ +dog_growl4.ogg licensed under CC-BY-NC-SA 3.0 taken from Paradise Station at https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl1.ogg +dog_growl5.ogg licensed under CC-BY-NC-SA 3.0 taken from Paradise Station at https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl2.ogg +dog_growl6.ogg licensed under CC-BY-NC-SA 3.0 taken from Paradise Station at https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl3.ogg +dog_snarl1.ogg licensed under CC0 1.0 taken from strongbot at https://freesound.org/people/strongbot/sounds/341090/ +dog_snarl2.ogg licensed under CC0 1.0 taken from strongbot at https://freesound.org/people/strongbot/sounds/341090/ +dog_snarl3.ogg licensed under CC0 1.0 taken from strongbot at https://freesound.org/people/strongbot/sounds/341090/ +dog_whine.ogg licensed under CC SAMPLING+ 1.0 DEED taken from Sruddil at https://freesound.org/people/Sruddi1/sounds/34878/ +howl.ogg taken from goonstation at https://github.com/goonstation/goonstation/blob/master/sound/voice/animal/werewolf_howl.ogg which is licensed under the CC BY-NC-SA 3.0. \ No newline at end of file diff --git a/Resources/Audio/_NF/Effects/bloodcult/attributions.yml b/Resources/Audio/_NF/Effects/bloodcult/attributions.yml new file mode 100644 index 00000000000..fb84f07db3e --- /dev/null +++ b/Resources/Audio/_NF/Effects/bloodcult/attributions.yml @@ -0,0 +1,8 @@ +- files: ["whispers.ogg"] + license: "CC0-1.0" + copyright: "Original file made by dimbark1 (https://freesound.org/people/dimbark1/), converted to ogg by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/dimbark1/sounds/316797/" +- files: ["ghost-scream.ogg"] + license: "CC0-1.0" + copyright: "Original file made by NachtmahrTV (https://freesound.org/people/NachtmahrTV/), converted to mono and cut, exported as ogg by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/NachtmahrTV/sounds/556701/" \ No newline at end of file diff --git a/Resources/Audio/_NF/Effects/bloodcult/ghost-scream.ogg b/Resources/Audio/_NF/Effects/bloodcult/ghost-scream.ogg new file mode 100644 index 00000000000..3ce69432b5e Binary files /dev/null and b/Resources/Audio/_NF/Effects/bloodcult/ghost-scream.ogg differ diff --git a/Resources/Audio/_NF/Effects/bloodcult/licence.txt b/Resources/Audio/_NF/Effects/bloodcult/licence.txt new file mode 100644 index 00000000000..fb84f07db3e --- /dev/null +++ b/Resources/Audio/_NF/Effects/bloodcult/licence.txt @@ -0,0 +1,8 @@ +- files: ["whispers.ogg"] + license: "CC0-1.0" + copyright: "Original file made by dimbark1 (https://freesound.org/people/dimbark1/), converted to ogg by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/dimbark1/sounds/316797/" +- files: ["ghost-scream.ogg"] + license: "CC0-1.0" + copyright: "Original file made by NachtmahrTV (https://freesound.org/people/NachtmahrTV/), converted to mono and cut, exported as ogg by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/NachtmahrTV/sounds/556701/" \ No newline at end of file diff --git a/Resources/Audio/_NF/Effects/bloodcult/whispers.ogg b/Resources/Audio/_NF/Effects/bloodcult/whispers.ogg new file mode 100644 index 00000000000..593b9c09a4d Binary files /dev/null and b/Resources/Audio/_NF/Effects/bloodcult/whispers.ogg differ diff --git a/Resources/Audio/_NF/Effects/silence.ogg b/Resources/Audio/_NF/Effects/silence.ogg new file mode 100644 index 00000000000..91738108486 Binary files /dev/null and b/Resources/Audio/_NF/Effects/silence.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8bf34d95109..1e6b7302dbb 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -3575,3 +3575,268 @@ Entries: message: Fixed rusty wall replacement id: 4854 time: '2024-03-04T23:55:37.0000000+00:00' +- author: Spessmann + changes: + - type: Add + message: >- + Added the ship, SV Point, a science ship purchasable from the scrap + terminal. + id: 4855 + time: '2024-03-06T02:45:06.0000000+00:00' +- author: Letholldus + changes: + - type: Add + message: >- + Adds the NC Hauler-Class Cargo and Salvage vessel to the game and the + Frontier outpost shipyard + id: 4856 + time: '2024-03-08T01:24:03.0000000+00:00' +- author: Cheackraze + changes: + - type: Fix + message: Fixed job selector not showing up in empty records consoles + id: 4857 + time: '2024-03-08T02:07:06.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: >- + Now tt is possible to print AstroGrass and AstroIce on Tile-Meister + 5000. + id: 4858 + time: '2024-03-08T02:14:57.0000000+00:00' +- author: Wolfking6116 + changes: + - type: Fix + message: Centcom has recalled their faulty Anomaly Generator units! + id: 4859 + time: '2024-03-08T13:53:08.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: >- + FlatpackVend sells flatpacked machines instead of circuits now + (renamed). + - type: Tweak + message: >- + JRPAKMAN, PAKMAN, SUPERPAKMAN, thrusters, gyroscopes and some other + machines are sold as flatpacks at cargo now. + - type: Tweak + message: >- + Particularly big musical instruments are sold as flatpacks from Autotune + vendomat. + id: 4860 + time: '2024-03-08T15:13:09.0000000+00:00' +- author: Wolfking6116 + changes: + - type: Add + message: Pilot and Mercenary corpses are being found across the Sector... + id: 4861 + time: '2024-03-08T16:52:17.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Now you can make a sawn-off PKA. But should you though? + id: 4862 + time: '2024-03-08T17:55:56.0000000+00:00' +- author: ThatOneGoblin25 + changes: + - type: Remove + message: RCD and Ammo have been removed from the Eagle. + id: 4863 + time: '2024-03-11T05:47:20.0000000+00:00' +- author: Qulibly + changes: + - type: Tweak + message: Tweaked crew monitors with new QoL features + id: 4864 + time: '2024-03-11T23:03:50.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Fix + message: Carrying now works correctly (once again). + - type: Tweak + message: >- + Carrying was slightly nerfed as it no longer depends on your body + strength. + id: 4865 + time: '2024-03-11T23:20:49.0000000+00:00' +- author: Wolfking6116 + changes: + - type: Add + message: >- + Scientists in the Sector have discovered new ways to refine ground up + Artifact fragments to make them more potent. + - type: Tweak + message: >- + It's been discovered that the quality of xenoartifacts has been + degrading with excessive excavation. + id: 4866 + time: '2024-03-11T23:31:50.0000000+00:00' +- author: Leander + changes: + - type: Tweak + message: Server Rules have been updated in relation to the station safezone. + id: 4867 + time: '2024-03-14T22:47:33.0000000+00:00' +- author: cite2000 + changes: + - type: Add + message: NFSD medical ship "Whiskey" + id: 4868 + time: '2024-03-16T21:53:36.0000000+00:00' +- author: Cu1r + changes: + - type: Add + message: Added the UAC Canister to the scrapyard for purchase. + id: 4869 + time: '2024-03-17T08:29:25.0000000+00:00' +- author: Letholldus + changes: + - type: Fix + message: >- + Adjusts the price of the NC Hauler from 49,500 to 60,000 to cost what it + should. + id: 4870 + time: '2024-03-17T10:21:37.0000000+00:00' +- author: MagnusCrowe + changes: + - type: Remove + message: Opportunity temporarily removed. + id: 4871 + time: '2024-03-18T13:42:10.0000000+00:00' +- author: Leander + changes: + - type: Tweak + message: smugglers and pirates are no longer in the same team. + id: 4872 + time: '2024-03-18T16:30:56.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: >- + Pen sign is back, signing is now based on your name and not your ID + name. + id: 4873 + time: '2024-03-18T16:35:36.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Hardsuits and softsuits can be researched and fabricated. + - type: Add + message: Added salvage techfab machine. + - type: Add + message: >- + Added Botany and Mailcarrier EVA suits. Print one on your service fab + today! + - type: Tweak + message: Hardsuits and softsuits can be recycled. + id: 4874 + time: '2024-03-18T16:45:02.0000000+00:00' +- author: arimah + changes: [] + id: 4875 + time: '2024-03-18T16:46:12.0000000+00:00' +- author: ThatOneGoblin25 + changes: + - type: Add + message: Liberation Station now offers slug rounds. + id: 4876 + time: '2024-03-18T18:39:07.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: >- + New Bluespace Event. NT Naval Command disrupted the FTL-jump of + Syndicate Vessel. + - type: Add + message: >- + New Bluespace Event. NT Naval Command detected a Wizard Federation + Scouting Probe entering Frontier Sector. + - type: Add + message: >- + New Bluespace Event. NT Office of Faith and Believes issues aa + announcement about seemingly increased Blood Cult related activity in + the Frontier Sector and warns against worshiping fictional deities. + - type: Add + message: >- + New dungeon factions. Syndicate agents and Blood Cultists can now be + encountered planetside. + id: 4877 + time: '2024-03-25T20:09:10.0000000+00:00' +- author: Leander + changes: + - type: Add + message: >- + Nanotrasen just its newest radar microchip NSR-882 now available on + latest radar consoles. + - type: Tweak + message: >- + The paid trial of all mass scanners has ended and has been locked to the + demo version as by Nanotrasen terms of service. + id: 4878 + time: '2024-03-25T21:05:52.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: Mail room upgraded. + id: 4879 + time: '2024-03-25T21:08:21.0000000+00:00' +- author: VMSolidus + changes: + - type: Add + message: >- + Harpies have made their way from the Delta sector to Frontier, and are + now a new playable species! + id: 4880 + time: '2024-03-25T21:13:00.0000000+00:00' +- author: MoistBiscuits + changes: + - type: Tweak + message: Grifty's Gas and Grub has recieved a small expansion + id: 4881 + time: '2024-03-25T21:18:13.0000000+00:00' +- author: arimah + changes: + - type: Add + message: NC Ceres now comes with soda and booze dispensers. + id: 4882 + time: '2024-03-25T21:19:17.0000000+00:00' +- author: ThatOneGoblin25 + changes: + - type: Remove + message: Removed Tranquilizer rounds from LibertyVend. + id: 4883 + time: '2024-03-26T09:57:43.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: >- + Syndicate agents are now more agitated, refusing to sit, and having + issues with sleeping for long duration. + id: 4884 + time: '2024-03-26T22:52:38.0000000+00:00' +- author: VMSolidus + changes: + - type: Fix + message: >- + Harpies now correctly trill, tweet, chirp, and caw instead of + miraculously screeching about missing localizations. + id: 4885 + time: '2024-03-27T12:31:17.0000000+00:00' +- author: MagnusCrowe + changes: + - type: Add + message: Added beacons and maps to the station. + - type: Add + message: Added cameras to the station. + - type: Tweak + message: Remodeled SR office. + - type: Tweak + message: Swapped brig and theater locations. + - type: Fix + message: Fixed disposals. + - type: Fix + message: Named bus docks for STC. + id: 4886 + time: '2024-03-27T20:49:47.0000000+00:00' diff --git a/Resources/Locale/en-US/_NF/advertisements/mobchatter/bloodculthumanoidmob.ftl b/Resources/Locale/en-US/_NF/advertisements/mobchatter/bloodculthumanoidmob.ftl new file mode 100644 index 00000000000..9be975fd847 --- /dev/null +++ b/Resources/Locale/en-US/_NF/advertisements/mobchatter/bloodculthumanoidmob.ftl @@ -0,0 +1,20 @@ +advertisement-bloodcultisthumanoid-1 = Nar'Sie will rise again! +advertisement-bloodcultisthumanoid-2 = We will drain your blood! +advertisement-bloodcultisthumanoid-3 = Kill the unbeliever! +advertisement-bloodcultisthumanoid-4 = What was that? +advertisement-bloodcultisthumanoid-5 = You. Will. Suffer. +advertisement-bloodcultisthumanoid-6 = More blood for Nar'Sie! +advertisement-bloodcultisthumanoid-7 = You shouldn't have come here, Bloodbag! +advertisement-bloodcultisthumanoid-8 = I'll die, if Nar'Sie wills it! +advertisement-bloodcultisthumanoid-9 = I hear the Call of The Void. +advertisement-bloodcultisthumanoid-10 = Struggle or surrender- doesn't matter: we will claim your blood. +advertisement-bloodcultisthumanoid-11 = Blood! +advertisement-bloodcultisthumanoid-12 = Glory to The Lurking Void! +advertisement-bloodcultisthumanoid-13 = You will know the true pain! +advertisement-bloodcultisthumanoid-14 = There will be no mercy, unbeliever. +advertisement-bloodcultisthumanoid-15 = Hey, nice jacket! +advertisement-bloodcultisthumanoid-16 = Death to the followers of False Gods! +advertisement-bloodcultisthumanoid-17 = Yes-yes, blood. Need more blood. More, yes. +advertisement-bloodcultisthumanoid-18 = Void take you1 +advertisement-bloodcultisthumanoid-19 = *hums* +advertisement-bloodcultisthumanoid-20 = I will make a flute out of your collarbone! diff --git a/Resources/Locale/en-US/_NF/advertisements/mobchatter/syndicatehumanoidmob.ftl b/Resources/Locale/en-US/_NF/advertisements/mobchatter/syndicatehumanoidmob.ftl new file mode 100644 index 00000000000..d622b177479 --- /dev/null +++ b/Resources/Locale/en-US/_NF/advertisements/mobchatter/syndicatehumanoidmob.ftl @@ -0,0 +1,20 @@ +advertisement-syndicatehumanoid-1 = Man, I hate it in here! +advertisement-syndicatehumanoid-2 = Yesterday I saw an NT employee. Miserable creature. +advertisement-syndicatehumanoid-3 = Must've been the wind. +advertisement-syndicatehumanoid-4 = What was that? +advertisement-syndicatehumanoid-5 = You saw that? +advertisement-syndicatehumanoid-6 = Yo, dude, like, check this out! +advertisement-syndicatehumanoid-7 = Fuck, that blunt hits hard, I'm trippin'. +advertisement-syndicatehumanoid-8 = I'm looking foward for my hazard pay for this mission. +advertisement-syndicatehumanoid-9 = DIE, DIE, DIE! +advertisement-syndicatehumanoid-10 = Sometime I dream about cheese... +advertisement-syndicatehumanoid-11 = Stop! +advertisement-syndicatehumanoid-12 = Glory to The Syndicate! +advertisement-syndicatehumanoid-13 = Stop resisting! +advertisement-syndicatehumanoid-14 = Drop your weapons! +advertisement-syndicatehumanoid-15 = Argh! +advertisement-syndicatehumanoid-16 = Huh, that's funny. +advertisement-syndicatehumanoid-17 = This day is turning out alright afterall! +advertisement-syndicatehumanoid-18 = Hah! Take that! +advertisement-syndicatehumanoid-19 = *whistles* +advertisement-syndicatehumanoid-20 = Dibs on on that! diff --git a/Resources/Locale/en-US/_NF/advertisements/mobchatter/wizardhumanoidmob.ftl b/Resources/Locale/en-US/_NF/advertisements/mobchatter/wizardhumanoidmob.ftl new file mode 100644 index 00000000000..2901134948e --- /dev/null +++ b/Resources/Locale/en-US/_NF/advertisements/mobchatter/wizardhumanoidmob.ftl @@ -0,0 +1,20 @@ +advertisement-wizardhumanoid-1 = Ţ̴̜͠ú̷̞̬͐t̷̲̺̀̿e̸̠͛ą̸̻͓͗r̴͎͂̀ù̴͎̗͈̓̒m̴̼̽̋ ̴̧͑Ý̴̧͋e̵̒͘ͅv̵̜͂͂a̵͙̽ŗ̵̛̘r̵̯͚̈̍̑à̶̧̺̄̕n̴͓͐̾̇!̷̤̠́ +advertisement-wizardhumanoid-2 = M̵̭̼̣̆̒͋ộ̸̞ŕ̷̹̰̥ą̴̰̅̃̇ŗ̶̱̘͂́͂i̸̞̱̹͋͑s̵̗͌̓ ̸̳̅A̴͖̦͗͑͘n̷͚̣̠̉̊t̸̠̪̀́i̶̯͖͚͘ò̷̜͖̇a̴̹̳̘̐̃̊a̴̛̘̥͍i̸̡͔̪͋ẗ̷͎͚́͐̅ư̵̤̤̦̓ȑ̴͈ȋ̷̱̑́͜!̶͍͈̦͠ +advertisement-wizardhumanoid-3 = Y̸̕ͅa̵͈̒́a̶̢̹̺̾̈́v̶̤̈a̴͖̯̎r̴͓̲̻͒̃͝u̸̠̒͠ȗ̶̮̺̰k̸̖͍̾!̵̼̹̈́̈́ +advertisement-wizardhumanoid-4 = A̵͇͉̐̀n̷̮̈́͘g̴̯̞͛u̵͎̐͛͝l̴̢̙͘e̷̩̭͛ͅ ̵̳̮͍̓͝R̸͇̎͛͝a̵̢͓̼̒ṽ̴̼́ā̸̛͈̙̊t̴̫͒̈͝e̶͉̝̿!̷͉͖͔̈́ +advertisement-wizardhumanoid-5 = K̴̙͑̾̃ạ̴̢̒͗͋l̶̫͓̈́̍̒i̵̧̊͑̃i̸̛̗͚i̶̹͎͋͗ǘ̴̠̂a̷̦̐̈́c̵̦̠̜͆ ̷͓̺̓I̷̺͠ṋ̸̋̌q̸̡͉̓ṳ̶̿e̴̟̯͊͂ ̷̧͇̤̀R̷̮͖͝ė̴̢̡͘v̶͍̙̞̆͊̒u̴̠̿ḻ̴̠̳͘!̷̨̰̽̈́̃ +advertisement-wizardhumanoid-6 = Z̸̘̽̑e̸̳͂o̷̙̗̘͊u̷̪̍͠á̵͓î̵̭̟͎̄c̸̪̠̑͑̊ ̷͎̫̕K̴̠͍͖͊ă̷̹̗͉̿̐l̴̻̏̚i̴͚̅a̵̲͆́͠t̷̡̹̐i̷̞͙͆ŏ̸̫͖̋͌ ̸̛̻̤̄̔I̶̖̫̻̿̃n̶̮̪̂́a̷̛̩͂̇t̷͈̗̱̚͝ȩ̶̳̹̾͆!̸̠̺̀̆͌ +advertisement-wizardhumanoid-7 = Klaatu, Baratu, Nhh... Niktie? Nickle? Fuck.. +advertisement-wizardhumanoid-8 = L̷̰̅͗͠i̴͇͑͛̋b̸̡͇̈̾a̸͖͆͘a̶͈̓y̵͒̃͜o̷̧͍̿p̶͚͑͂͜ū̷̼͈͎s̷̯͕̠͂̾͝ ̴̛̣͎̤͑́Ž̵̳̫̈͂ů̶̪͊͘l̶̲̒̿̊ȃ̸̧̻e̸̖̎̋̍y̷̱͐c̵̎ͅì̵̟͍͚̒ȏ̷͈ ̶̻̰̌̕̚Ỉ̸̘̱͕n̷̞̫̣͘f̵̤̊ā̷͔̝̫̏̎i̴̤̋̅̇u̶̝͉̒ͅe̷̗͗̔͑s̷͓͗̑̀t̸̘̳̐̿a̴͇̲̬̔ ̷̯͔̤͠O̷̺̙̣͘c̵̺͖̚c̸͚̯͚̋o̶̖͆i̸̟̔͝ă̶̹̋ͅl̶̢̩̇̋͐ +advertisement-wizardhumanoid-9 = NOW YOU DIE! +advertisement-wizardhumanoid-10 = Ş̶̙͋ͅo̵̪̙̍̒m̶̱̏é̸̟̱͑͊t̸͙͑̀̎ì̵̗̀m̵̨͗e̶̗̳̒ ̴̡͓̆̐͆I̵̢͂̚ ̴͍̹͂d̵͎͇̋r̵̢̻̃̀̔ė̴̯͙a̵̧̤̗͑m̷̝̮̔͛ ̶̮͛̆a̶̞̕b̷̼́ǫ̸̩̘͋̍͠u̷͓̬̯͑ṯ̸͒̍̓ ̷͕́͆̂ć̸̱̯̺́͝h̸̨̗̃͠ȅ̶̡̫̓͝e̶̹̻̋̀̑͜s̵͕͍̃e̷̙̳͆.̶͕͑̀̚.̶̘͒͆.̸̺̠̥̒͐͋ +advertisement-wizardhumanoid-11 = J̴̪̥͐̒̓a̸̟̞̘͆l̴̟̉̉͝ţ̶̧͆͜i̸͚̮͊ỏ̴̘̘̤n̶͇̰̝͂͋͐ ̶̲̼̥̈́̔̕T̴̻̀̔̓a̸̼̝̞͒͌͝o̴̞͙͝a̶̡͔̰̚ú̴̝͎l̵͖̝͊̚ ̷̼͋͜B̴̪̤͌̏͗ṟ̶̩͌o̷̼̲͔̔͑̀i̸͉̗̗͠ỏ̶̝̹u̷̮̦̕s̵̯̩̰͌ +advertisement-wizardhumanoid-12 = O̶̳͈̐͛̚c̶̦͙̈́c̶̪͍̠͐̂ã̵̮͖̠̃͠a̶̙̺̒̒t̵͚̣͎́͘͝ŕ̴͍̋͘ͅͅḁ̶̠̓̕ ̸̝̄X̷̩̰̻̆͗̽á̵͖v̸͔̱̏͑͗ḏ̸̉̉̑i̵̪̣̯͒ù̷̘͙͈̀ŝ̶̲̗̗́͌ +advertisement-wizardhumanoid-13 = Surrender, worm, and your life will be spared! +advertisement-wizardhumanoid-14 = F̴̘̜̺̿o̶̼̲̽̓̽r̵͇̽y̷̗̺̼͑͗͠ę̷̛̹̰̇̕a̷̙͓̽ͅl̵̛̗̫͒g̴̯̞̻͘͝í̵̖̜̼̌̒ȃ̶̹̬̱ ̵͇͕̽Å̵͈̗̜̎t̸̡͍̄t̵͓̮̦͌̅̆ö̶̭́̍y̸̞̘͉̋u̸̻̞̎ţ̴̠̱͗̿̂u̶̻͚̽r̴̹̮͆̍̌i̶̘͍̾͆̈́ +advertisement-wizardhumanoid-15 = A̵̭̿͛ř̶̳͈̓g̸̘̯͛h̷̘̎͘!̶̡̳̃̾̕ +advertisement-wizardhumanoid-16 = A̴̘͎̿n̵̗̠͝t̶̤͚͌͛i̸̹͉̾̆̑ó̵͙t̷̢̓i̵̢̜̓̾o̸̮̣̻̎̊͘ ̶͚̓̐S̸̻̻͇̾͠͝ù̵͉͈̃̓l̶̫͔̭̋b̴̲͙̏͘a̶̠͂̓ ̶̼̗̹̀̃̃Q̷̠͘u̵͓̚͝ȧ̵̭̫̒̂͜ą̸̡͂͗i̴̺͘ĉ̶̫̳̿̾ī̶ͅŏ̷͇͍̊̓ +advertisement-wizardhumanoid-17 = V̵̳͇̻̏̆i̶͙̞͖̽͊͠n̶̦̦͍̉͝d̵̙͎̲̈́͑͌i̷̫͕̲̊̒̚ư̷̡̯͈͗̌s̶̠̙̿̽ ̶͈̬͐̈́R̶̟͙̉̀̏è̷̡͒͛v̵͕͖̚i̷̩͠ặ̴̾͋ͅq̵͎̝͚͝ū̵̙͉̔́é̷͙̗ ̵͉̑̃̐C̷̱͙͎͝i̷̢̘͗̽s̴̞̦̘͛̊ě̵̙͖͑͜y̵̖̻̭͂͑̾ḭ̴̅ẗ̷̙͉̙́ư̸̺͝r̴̻̺̍̀i̶̖̓͐ +advertisement-wizardhumanoid-18 = V̴͙̟̳̈į̴̪͈̒͗̈á̸͈ớ̴̠͑é̸͎̺̻g̷͉̓ȕ̶̡͓̻̇̚í̸͍͋̕n̷̰͗̋̈́ ̸͚͒́Z̸̛̟̉͘ő̴̘͝a̸̳͎͍̓͆͠y̶̖̋̚͘u̶̗̿͊͂b̶̡͓͓͗̈́a̷̺̱͌͠ ̷̢͈̺̿̿V̴̞͖̈͛̕è̸̞͎̏ṇ̴́͑͒t̴̛̼̐e̷̻͛̈ḯ̶̲̻̪͗a̵̻͙̋͛l̸̺̞̦͌͋͛k̶̺͔̉͒ů̵̙̰̾͐š̶̠͔̗ +advertisement-wizardhumanoid-19 = *giggles* +advertisement-wizardhumanoid-20 = *cackles* diff --git a/Resources/Locale/en-US/_NF/bluespace-events/events.ftl b/Resources/Locale/en-US/_NF/bluespace-events/events.ftl index b9879c9b243..50d771864c0 100644 --- a/Resources/Locale/en-US/_NF/bluespace-events/events.ftl +++ b/Resources/Locale/en-US/_NF/bluespace-events/events.ftl @@ -9,3 +9,12 @@ station-event-bluespace-asteroid-end-announcement = In compliance with NanoTrase station-event-bluespace-ship-start-announcement = We have detected an unusual FTL signature - long range scans indicate an unknown ship. NanoTrasen cannot confirm safety for prospectors within its vicinity, be advised. station-event-bluespace-ship-end-announcement = In compliance with NanoTrasen FTL traffic patterns, the unknown ship has been dissipated to ensure non-collision. + +station-event-bluespace-syndicate-ftl-interception-start-announcement = Attention all available NanoTrasen personnel! NanoTrasen Naval Command disrupted the FTL-jump of Syndicate Vessel, according to our deepspace scanners the vessel either already entered the real space in your sector or is about to enter. Code: Intercept, Expunge, Exterminate, Cauterise. Expect armed opposition, use of lethal force against enemy agents is authorized. Do note: any loss of NT affiliated personnel lifes will not be compensated. +station-event-bluespace-syndicate-ftl-interception-end-announcement = In compliance with NanoTrasen FTL traffic patterns, the Syndicate Vessel has been dissipated to ensure non-collision. + +station-event-bluespace-wizardfederation-scout-start-announcement = Attention all available NanoTrasen personnel! NanoTrasen Naval Command detected a Bluespace Anomaly in your sector with the signature indicative of the imminent arrival of a Wizard Federation micro vessel. Code: Intercept, Detain, Incarcerate. Arrest the intruders and prepare them to be handed over to the NanoTrasen Special Forces Unit for enhanced interrogation. +station-event-bluespace-wizardfederation-scout-end-announcement = In compliance with NanoTrasen FTL traffic patterns, the Wizard Federation Vessel has been dissipated to ensure non-collision. + +station-event-bluespace-bloodmoon-start-announcement = A̴̗̕ť̸͓t̸͍̂ë̶͈́̇n̵̠̑t̸̗̅i̸̜̓ő̷͉̭̀n̸̠̿̉ ̷̘̿ȃ̵̲͍͑l̴̲̽͒l̵͔̺̔̉ ̶̩̥͋̋S̵̟̼̐ē̷͓c̶̯̏̒u̸̱̿͊r̶̡͉̈́i̶̙̲͒t̷̢̻͌y̷͇̾̐ ̶͗͜p̵̲͂͆͜e̶̥̣̅ṟ̴͆s̶̹̋o̶̩͓̔͗n̸̝̄̔ṋ̵̓͌͜e̷̮͓̊l̴̩̞̕!̶̬͚̋̚ ̶̻̌̐N̶̖͇͗T̴͎̝̓̋ ̸̛̯N̸͙̓á̵̩̀v̷̬̫́a̸̰̒ļ̸̱͠ ̸͔̕ͅC̶̡͊ò̷̺͊m̶̫̐̽m̶͉̉a̷͖̾n̵̨̞̍̅d̶͓̥̀ ̶̨͖̀͝d̷͎̤̆͑e̶͚͎͗t̷̹̤̉̽e̷͙̽c̴̱͗t̴͖͈̅̽e̶͓̓d̵̼̱̈́ ̵̞̀͆b̸͍̼̋̂l̵͎͆u̵̻̐̚é̵̢̲s̴̢͇̒ṗ̴͉à̶̩̥ć̴͉ê̷͎͠ ̵̧̃͛a̸͙͙̾n̵͚͋o̸̤͑m̸͉̼̆̈́å̴̫l̷̜͂y̷͎̋͛ ̵̨͋ỉ̵̬ͅn̴̨͔͂͗ ̸̙̈̑y̴͉̮̾ȍ̴̠ų̶͝r̵͔̦̍͌ ̴̬̗͑s̷̻̆̒ě̴̗̲c̸̠̦̚t̸̬̅ỏ̵̝͂r̸̮̦̆ ̵͈͝w̴͍͊ỉ̴̯̙̕t̷͖̗̍̍h̷̳̭́ ̴̮̦̃̑t̷̩̓̌ḩ̷͇͝e̵͐́͜ ̸̳̈́͠s̶̖͌į̵̙̚̕g̵̰̓ñ̸̝̽a̷͖͊t̶̲̑u̸̬̾̑r̴̲͚̊̐ē̴̮ ̸̪͛i̴̝͆n̵͈̎̄d̶̥̍̄ȉ̶̜͕̇c̵̳̻͛ǎ̶̱̠̈t̴̢̘̉̔i̵͍͂̔v̸̢̛ͅe̷̛̬͘ ̸̠̱̅͠ŏ̵̹̲f̸͖̱̃̒ ̶͎̽i̵͙̱̊͘m̴̙̞̚m̷͖͉͋ǐ̴̠̊n̸̗̗̂̿è̶͇͖n̷̺̖̚t̵͎͉̽ ̴̝̑͗a̸̖̓̆ȑ̷̢̹̾r̷̬̓͜i̸̞̅v̷̗̒̍͜a̸̱̬̋̓ḽ̵̓ ̷̻̬̃ó̷̧̋f̷̨̈̈́͜ ̷̣͛a̸̞͛ ̴̼̮̈́̀B̵̖͊l̵̻̈́ͅo̴̧̺͗ő̸̳d̶̦̲̈͊ ̷͚̪̇C̶̨̽u̵̥̇l̴̥̣̋̆ṭ̵̞͒̔i̵̐͜s̵̰̏t̴̺̍̽'̴̢͘s̸̬̗̋ ̸͓̌v̷̼̆͛é̶̲͓s̴͙̯̄s̷̯̐̀ẻ̴̮̔l̶̢̀̈́.̷̳͠ ̵͓̜̓S̶̬̫͌e̵̱̣͐͘c̵̖̘̾u̷͎͜͠r̷͚̖̀̀i̵̪͖͗t̸͉͇̎̐y̵̺̼̽͗ ̷̖̋͝C̴̹͝ò̶̤ḓ̴̮̽̈e̴̦̕:̴͕̀̚ ̸̗̂͋Ì̴̪͗n̴̛͎ẗ̵̠̺̅e̷͔̍ͅr̴̖̯̋c̸̨͆e̴̻̖̓͠p̴̤̉t̴̰̆,̴̱̿̄ ̶̫̄Ȅ̵̝̤x̴̥̂͊p̸͕̟̽̕ú̸͙̖̈́n̶͙͗̈́g̶̟̯͑e̸̲̤͂͑,̶͉̤̃ ̷̰͐̆E̶̺͝x̵̛̭̔t̷͔̅e̸̜̩̓͝r̸̻͔̿͋m̵̢̆̄i̴̧͚͌n̷̜̼͊a̴̭̭̓t̸̘̘͝e̶̙̎͐,̶̱͚̽͐ ̷̖̥̔C̸̮̽ầ̸̞u̴̮̿͑t̶͉̕e̶̥͝r̸͔̘͛̏i̵̡̝͆s̵͚͇̃e̷̯͔͊͐.̸̮͊̆ ̶̧̰͒Ȅ̴̻̭̊x̵̞̋̍p̵̱͗̕e̶̛̦ĉ̴̣̅t̶̡̞̃͠ ̴̪̙͆a̴͉̪͋͑ř̷̛͕m̸̙͂͛ḙ̴͎̈́̑d̴̠̒ ̴̢̅o̷̟̪͐͊p̷̤̄p̷̲̠̑̓o̴͔͐͠ś̸̗i̸̩̓͌t̵̜̎i̷̱̅͠o̵̻̅͆ņ̶̱̇,̴̗̊̃ ̸̥̆u̵̪͂s̸̖͊̾e̷̫̭̒̇ ̷̫̲̓̊o̵̠͂f̵̺̿ ̸̦̞̅̔ļ̷̯̄̃ē̸͕t̸͖͗h̸̨͕̆̑à̷͓̫́ḽ̸̛͚̃ ̷̼̟͘f̵̻̱̈́̌ȏ̵̦r̸̭͘ͅć̸̼̂e̴͔̠̊̚ ̶̻̍ä̷̰̩g̷̠͒ą̸̩̈͌i̶̘̘̒͊n̵͖̏s̸̩̏͜t̶͇̳̍ ̵̪̲̋̓ȩ̸̙̏n̷͖̽͑ë̴̞͚́m̴̺͑̈y̵̤̅͂ ̵̥̼͛ạ̵̩̇g̸̣̪͊͂e̷͎̔͂n̸̳̎t̵̥̀s̵̛͚̗̀ ̷̡̝́́ī̶̹͇s̷͓̠̆ ̶̤̤̔͝a̷͇̝͌̇ũ̵͎̤͊t̵̡͖̽ḧ̸̝̥́o̵͙͑ȑ̵̟̮i̷̺͗ż̵͇̍é̸̙̏͜d̷̼̊.̴̮̗̑̿ ̵̰̇P̵͎̟͛ȓ̸͚é̶̤͍̈́v̵͔͑͂e̴͍͉̿͘ṇ̷̝͛t̶̗͚̕ ̶̫͇̉͋N̵̯͛T̸͔̂̚-̷̣̋̕á̷̬͉͘f̵̳̖̀͘f̸͎̟̄i̷̖̺͊́l̶̗͆̄i̷̧͙͑́a̶͂̑͜t̸̘̿̚e̸̺̓d̵̡̪̈́͋ ̷̞͐c̴̺̻͊a̶̮̱̍͠p̶̭̹̌t̴̳̱̒̀a̴̪͉̐i̸̖̎̏n̷͎̫̾s̶̫̖̒̚ ̵̣̒w̴̨̗̒i̸̬̚t̴̝͆h̴̪̮̑̃o̶̥̲̔͘u̷̲̣̐̏t̸̩͌͝ ̵̧̧͛́s̸̬͑̾e̵̯̜̐̈́č̷̮̰u̴̗̜̕r̷͇͇̽̀i̷̛̫̿t̸̞̓͝y̷̨̔ ̶̪̒̈́a̴̻͇̅c̷͙̯̀c̸̩̃̃e̸͇͙̓s̷̭̣͊s̷͇̭̉ ̶̠͂͠f̵͙̣̉͌r̵̲̐͗ǫ̶̬͑͝m̸̖̓ ̷͖̹̌̌ĝ̸̹̍ą̴̂͘i̸͈̺͆̇n̶̜̋ḯ̵̼̮n̵̺̉͊g̸̗̱͘ ̴̪̞̃a̶̩̯͐͂c̶͕̯̓c̷̮̟̿̒ë̷͙́̀s̶̨̳̋s̸̜̆̑ ̵̯̆̎t̷̞͕͆o̶̡̞͐ ̴̱̈́͝t̶͇̋̃h̵̟̼̀e̴̦̼͐̚ ̷̟̗̓͂e̵͙̓̂n̴̻͂̃ȩ̸̻͑m̴̢͋͊ý̷̬́ ̵͔͛v̵͔̓̂͜e̸̖̋ṡ̴̹͑s̴̬̈͋ė̵̖̈l̴̗͆̓ͅ ̷̛̱̀a̷̡̫̿n̸̜̟̓̕d̷͙̜͌̅ ̴̗́͑i̵̫͌ṯ̴̢͝s̵̫̼͂ ̷̱̥͗̓c̴͖͐̚o̶͕͍͒ń̷̞ṱ̸͖̒͛e̷͋ͅn̵̖̠̉͒t̴̲̋̚ș̸͍̈́.̸͖̅̓ ̸̧͛̄A̷͖̞͒͘n̷̮̥̿ḑ̷͊͠ ̵̬͚͂̊ȑ̷̰e̶̬͗ṃ̶̓ͅê̴̬ṁ̴̖͝b̶̨͘e̷̼̫̍r̷͔̦̓̓:̷̜͠ ̸̤̎N̵̢̖͐a̶͘ͅr̶̳̚'̸͈̝̽̕S̶͔̳̎̅i̷̠̝̓è̴͙͛ ̶͖͚͆͂i̸͓͠͝s̸͎͐̀ ̸̻̀̑n̸̮͆ö̶͙̮̇t̵̛̟͝ ̴͎̐͜r̴̘̹͑͛e̴̙̱͂a̵̖͑̆l̵͓̝͑ ̸̝̀á̵͙͎n̶̞̊̉d̶̥͙́̄ ̴̥̫̽c̴̨͉̐̀a̷̲͋̕n̸̦̽ ̷̖̾̕n̸̤̥͑͑ó̵̳t̸̡͆̅ ̸͈͚̒͆h̴͉͔̕u̴̠̩͌̑r̷̡̟̄̋t̵̗̰̃ ̵̛̭y̸͖̯͐ò̸͔̜̈ū̸ͅ.̸̨̜̕ +station-event-bluespace-bloodmoon-end-announcement = I̶̼͈͊̽n̶͉͉̈ ̶̭̝̈c̷̯͔̀o̸̙̊m̸̥̕͜͝p̸͋͜l̵͖͆i̴̛̗̟̓a̴͚̼͗n̸͔͙̓c̶̹̠͌ė̶͙̮ ̸̟́w̶͓̫̎ḯ̷͕t̶͚̩̍h̵̰͘ ̷̫͕̂̊Ň̸̥̞͂a̷̻̐n̴̖̺̒̄o̸̺͚͊́T̵̨̔̃ͅr̷̢͈̾á̸͉͛s̵̞̒ę̴͠n̵̩̈́ ̴̫̐̅F̸̹̤͗̈́T̸̹̅͜L̷̙̱͠ ̷̛͍͒t̴̘̣̔͝r̵̥̈́à̴̮͝f̴͉͇͆̎f̴͙̗̿̈́ȋ̸͍c̶̯͜͠ ̴̨̧̐͒p̷̬̻͐̊a̵͚̓̏t̴͇̺͌̕t̷͈͂̾ḙ̴͎͘ṛ̶̂n̷͔̈́͌s̴̡̤̊̆,̵͍̭͑̔ ̷͎̾t̵̜̪͆ḩ̸͗ę̶͉̏̽ ̶̠̎̑W̶̙̍̚i̴̢̜͘z̵̈́͂͜a̸͓̥̿͑r̵̭͆́ͅd̷̘͉͝ ̴̧̉ͅF̴͇̌͘ë̸͍͎́̀d̶̨̲́͠e̶̪̽͜͠ȑ̶̩͘à̸̺t̴̨̻̀͝ì̷͕̣̄o̶̢͑͠n̴̟̈́ ̸̹̈ͅV̸̜͑ė̵̥̩́s̵̖̓ṡ̵̲̮ȩ̷̈́l̷̰͠ ̸̥̇̆h̵̯͂a̷̜̗͝s̷̻̯̈́̍ ̸͈͂b̸̪̓̇e̸͍̰͋͗e̶͚̜̅̽n̷̡̯̓̋ ̴̤͎̃d̸͇̽i̸͚̍͠s̴̨̍͝ṡ̸͚̩͠ǐ̴̜͘p̵̣͂͂a̸͓̔́t̷̟̱̋̌e̷͕̒͂d̶̦͂͝ ̷̳̈́ṫ̵͈̀ò̵̡̟ ̶͔͂ḙ̸͍́͆n̶̩̐ṣ̸́ǔ̸̠͖ř̸̘̱͑ē̴̜͈ ̵̻͋͌n̴̪̩̊o̶̭̙̅n̶͇̑͒-̸̘̚̚c̸͖̩͌͘ö̴̡͌ͅl̵̳̗̓l̵͖̓̆i̷͖͝ͅs̵̘̝͝i̷̧̜͑̔o̷̼̲͐́ṋ̴̘͠.̶̡͎̌ diff --git a/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl b/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl index cb46006603c..1144eccb8f1 100644 --- a/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl +++ b/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl @@ -9,6 +9,11 @@ chat-speech-verb-felinid-2 = mews chat-speech-verb-felinid-3 = meows chat-speech-verb-felinid-4 = purrs out +chat-speech-verb-harpy-1 = chirps +chat-speech-verb-harpy-2 = tweets +chat-speech-verb-harpy-3 = caws +chat-speech-verb-harpy-4 = trills + chat-speech-verb-goblin-1 = jabbers chat-speech-verb-goblin-2 = vokers chat-speech-verb-goblin-3 = blurts out diff --git a/Resources/Locale/en-US/_NF/chemicals/chemicals.ftl b/Resources/Locale/en-US/_NF/chemicals/chemicals.ftl new file mode 100644 index 00000000000..7bcdabacc18 --- /dev/null +++ b/Resources/Locale/en-US/_NF/chemicals/chemicals.ftl @@ -0,0 +1,2 @@ +reagent-name-rawartifexium = raw artifexium +reagent-desc-rawartifexium = A raw mixture of microscopic artifact fragments and a strong acid. It has the ability to activate artifacts. It looks like it could be refined further to be more potent. diff --git a/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl index 517367a8448..29032ea7579 100644 --- a/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl @@ -12,4 +12,7 @@ ghost-role-information-crispy-name = Crispy ghost-role-information-crispy-description = Mistakes were made. ghost-role-information-mistake-name = ????? -ghost-role-information-mistake-description = Ymg' ph'nglui ah li. \ No newline at end of file +ghost-role-information-mistake-description = Ymg' ph'nglui ah li. + +ghost-role-information-ert-mailcarrier-name = ERT Mail Carrier +ghost-role-information-ert-mailcarrier-description = Assist with paperworks efforts to resolve the stations issues. diff --git a/Resources/Locale/en-US/_NF/job/job-description.ftl b/Resources/Locale/en-US/_NF/job/job-description.ftl index 1d9a6c2bf8d..a8cc0c07f37 100644 --- a/Resources/Locale/en-US/_NF/job/job-description.ftl +++ b/Resources/Locale/en-US/_NF/job/job-description.ftl @@ -1,3 +1,4 @@ +job-description-ertmailcarrier = Nothing stops the mail. job-description-mercenary = Execute the bidding of anyone- for the right price. Enjoy being unbound from the confines of the law. job-description-pilot = Pilot spaceships from point A to B, outmaneuver pirates and dodge asteroids. You are a leaf on the solar wind, let others marvel at how you soar. job-description-security-guard = Patrol the empty halls, whistle simple tunes you heard on radio, jingle your keychain and scurry away at the sight of danger. diff --git a/Resources/Locale/en-US/_NF/job/job-names.ftl b/Resources/Locale/en-US/_NF/job/job-names.ftl index 7c34eb3e226..8be5e8a7de5 100644 --- a/Resources/Locale/en-US/_NF/job/job-names.ftl +++ b/Resources/Locale/en-US/_NF/job/job-names.ftl @@ -1,10 +1,12 @@ +job-name-ertmailcarrier = ERT Mail Carrier job-name-mercenary = Mercenary job-name-pilot = Pilot job-name-security-guard = Security Guard job-name-stc = Station Traffic Controller # Role timers - Make these alphabetical or I cut you +JobERTMailCarrier = ERT Mail Carrier JobMercenary = Mercenary JobPilot = Pilot JobSecurityGuard = Security Guard -JobSTC = Station Traffic Controller +JobSTC = Station Traffic Controller \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/medical/suit-sensor.ftl b/Resources/Locale/en-US/_NF/medical/suit-sensor.ftl new file mode 100644 index 00000000000..ea74f4a0507 --- /dev/null +++ b/Resources/Locale/en-US/_NF/medical/suit-sensor.ftl @@ -0,0 +1,5 @@ +## Components + +suit-sensor-location-unknown = Unidentified Location +suit-sensor-location-space = In Space +suit-sensor-location-expedition = On Expedition \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/paper/stamp-component.ftl b/Resources/Locale/en-US/_NF/paper/stamp-component.ftl index d5c439dce56..93bf418f785 100644 --- a/Resources/Locale/en-US/_NF/paper/stamp-component.ftl +++ b/Resources/Locale/en-US/_NF/paper/stamp-component.ftl @@ -1,7 +1,6 @@ ## Components -stamp-component-unknown-name = Unknown -stamp-component-unknown-job = No job +stamp-component-signee-name = {$user} stamp-component-stamped-name-psychologist = Psychologist stamp-component-stamped-name-lawyer = Lawyer diff --git a/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl b/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl index cf0684630b5..561c4c7ce13 100644 --- a/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl +++ b/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl @@ -1,3 +1,4 @@ id-card-access-level-frontier = Frontier id-card-access-level-pilot = Pilot +id-card-access-level-mail = Mail id-card-access-level-mercenary = Mercenary diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-vending.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-vending.ftl index efca148a5bc..97bf18849dc 100644 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-vending.ftl +++ b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-vending.ftl @@ -4,8 +4,8 @@ ent-CrateVendingMachineRestockAstroVend = { ent-CrateVendingMachineRestockAstroV ent-CrateVendingMachineRestockAmmo = { ent-CrateVendingMachineRestockAmmoFilled } .desc = { ent-CrateVendingMachineRestockAmmoFilled.desc } -ent-CrateVendingMachineRestockCircuitVend = { ent-CrateVendingMachineRestockCircuitVendFilled } - .desc = { ent-CrateVendingMachineRestockCircuitVendFilled.desc } +ent-CrateVendingMachineRestockFlatpackVend = { ent-CrateVendingMachineRestockFlatpackVendFilled } + .desc = { ent-CrateVendingMachineRestockFlatpackVendFilled.desc } ent-CrateVendingMachineRestockCuddlyCritterVend = { ent-CrateVendingMachineRestockCuddlyCritterVendFilled } .desc = { ent-CrateVendingMachineRestockCuddlyCritterVendFilled.desc } \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl index b0cebeca7df..cbdf5dd81e2 100644 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl +++ b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl @@ -4,8 +4,8 @@ ent-CrateVendingMachineRestockAstroVendFilled = AstroVend restock crate ent-CrateVendingMachineRestockAmmoFilled = Liberation restock crate .desc = Contains two restock boxes for the Liberation vending machine. -ent-CrateVendingMachineRestockCircuitVendFilled = CircuitVend restock crate - .desc = Contains two restock boxes for a CircuitVend vending machine. +ent-CrateVendingMachineRestockFlatpackVendFilled = FlatpackVend restock crate + .desc = Contains two restock boxes for a FlatpackVend vending machine. ent-CrateVendingMachineRestockCuddlyCritterVendFilled = CuddlyCritterVend restock crate .desc = Contains two restock boxes for a CuddlyCritterVend vending machine. diff --git a/Resources/Locale/en-US/_NF/research/technologies.ftl b/Resources/Locale/en-US/_NF/research/technologies.ftl index 090b62aaa59..450e9a9d736 100644 --- a/Resources/Locale/en-US/_NF/research/technologies.ftl +++ b/Resources/Locale/en-US/_NF/research/technologies.ftl @@ -1 +1,9 @@ -research-techology-advanced-personal-propulsion = Advanced Personal Propulsion \ No newline at end of file +research-techology-advanced-personal-propulsion = Advanced Personal Propulsion +research-technology-rapid-construction = Rapid Construction +research-technology-hardsuits-basic = Basic Hardsuits +research-technology-hardsuits-specialized = Specialized Hardsuits +research-technology-hardsuits-advanced = Advanced Hardsuits +research-technology-hardsuits-experimental-industrial = Experimental Salvager Hardsuit +research-technology-hardsuits-armored = Armored Hardsuits +research-technology-hardsuits-armored-advanced = Advanced Armored Hardsuits +research-technology-hardsuits-experimental-rd = Experimental Research Hardsuit \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/shipyard/shipyard-rcd-component.ftl b/Resources/Locale/en-US/_NF/shipyard/shipyard-rcd-component.ftl new file mode 100644 index 00000000000..ee6dac465c4 --- /dev/null +++ b/Resources/Locale/en-US/_NF/shipyard/shipyard-rcd-component.ftl @@ -0,0 +1,8 @@ +## UI +rcd-component-missing-id-deed = No ship registered to this ID +rcd-component-can-only-build-authorized-ship = Can only build on authorized ships! +rcd-component-no-id-swiped = Swipe id card on RCD to authorize. +rcd-component-use-blocked = The RCD whirrs, but nothing happens. +rcd-component-id-card-accepted = You swipe the id card and the RCD makes a accepting noise. +rcd-component-id-card-removed = The RCD powers down, unauthorizing it. +rcd-component-wrong-ammo-type = Wrong type of RCD ammo. diff --git a/Resources/Locale/en-US/deltav/harpy/singer_system.ftl b/Resources/Locale/en-US/deltav/harpy/singer_system.ftl new file mode 100644 index 00000000000..8c21fc4c02a --- /dev/null +++ b/Resources/Locale/en-US/deltav/harpy/singer_system.ftl @@ -0,0 +1 @@ +no-sing-while-no-speak = You can't sing right now. diff --git a/Resources/Locale/en-US/deltav/markings/harpy.ftl b/Resources/Locale/en-US/deltav/markings/harpy.ftl new file mode 100644 index 00000000000..3c1a2e3b9b2 --- /dev/null +++ b/Resources/Locale/en-US/deltav/markings/harpy.ftl @@ -0,0 +1,52 @@ +marking-HarpyWingDefault = Basic Wings +marking-HarpyWingDefault-harpy = Wings + +marking-HarpyWingFolded = Folded Wings +marking-HarpyWingFolded-harpyfolded = Wings + +marking-HarpyWingClassic = Classic Wings +marking-HarpyWingClassic-classicharpy = Wings + +marking-HarpyWing2ToneClassic = Classic Two Tone Wings +marking-HarpyWing2ToneClassic-harpy2tone1 = Top Half +marking-HarpyWing2ToneClassic-harpy2tone2 = Bottom Half + +marking-HarpyWing3ToneClassic = Classic Three Tone Wings +marking-HarpyWing3ToneClassic-harpy3tone1 = Top Third +marking-HarpyWing3ToneClassic-harpy3tone2 = Middle Third +marking-HarpyWing3ToneClassic-harpy3tone3 = Bottom Third + +marking-HarpyWingSpeckledClassic = Speckled Classic Wings +marking-HarpyWingSpeckledClassic-harpyspeckled1 = Main +marking-HarpyWingSpeckledClassic-harpyspeckled2 = Speckles + +marking-HarpyWingUndertoneClassic = Classic Wings with Undertone +marking-HarpyWingUndertoneClassic-harpyundertone1 = Front +marking-HarpyWingUndertoneClassic-harpyundertone2 = Back + +marking-HarpyWingTipsClassic = Classic Wings with Feather Tips +marking-HarpyWingTipsClassic-harpywingtip1 = Main +marking-HarpyWingTipsClassic-harpywingtip2 = Feathertips + +marking-HarpyEarsDefault = Feather Tufts +marking-HarpyEarsDefault-harpy_ears_default = Tufts + +marking-HarpyTailPhoenix = Basic Tail +marking-HarpyTailPhoenix-phoenix_tail = Tail + +marking-HarpyTailRooster = Rooster Tail +marking-HarpyTailRooster-rooster_tail = Tail + +marking-HarpyTailFinch = Finch Tail +marking-HarpyTailFinch-finch_tail = Tail + +marking-HarpyChestDefault = Wing & Groin Under-Clothes +marking-HarpyChestDefault-upper = Wing Under-Clothes +marking-HarpyChestDefault-lower = Groin Under-Clothes + +marking-HarpyLegsDefault = Avian Legs +marking-HarpyLegsDefault-thighs = Thighs + +marking-HarpyFeetDefault = Avian Feet +marking-HarpyFeetDefault-feet = Feet +marking-HarpyFeetDefault-talons = Talons diff --git a/Resources/Locale/en-US/deltav/species/species.ftl b/Resources/Locale/en-US/deltav/species/species.ftl new file mode 100644 index 00000000000..83437bd651f --- /dev/null +++ b/Resources/Locale/en-US/deltav/species/species.ftl @@ -0,0 +1,4 @@ +## Species Names + +species-name-vulpkanin = Vulpkanin +species-name-harpy = Harpy diff --git a/Resources/Locale/en-US/deltav/store/uplink-catalog.ftl b/Resources/Locale/en-US/deltav/store/uplink-catalog.ftl new file mode 100644 index 00000000000..f5990c369d7 --- /dev/null +++ b/Resources/Locale/en-US/deltav/store/uplink-catalog.ftl @@ -0,0 +1,3 @@ +# Implants +uplink-bionic-syrinx-implanter-name = Bionic Syrinx Implanter +uplink-bionic-syrinx-implanter-desc = An implant that enhances a harpy's natural talent for mimicry to let you adjust your voice to whoever you can think of. diff --git a/Resources/Locale/en-US/deltav/traits/traits.ftl b/Resources/Locale/en-US/deltav/traits/traits.ftl index 4bcbbc21bdf..d10746274a9 100644 --- a/Resources/Locale/en-US/deltav/traits/traits.ftl +++ b/Resources/Locale/en-US/deltav/traits/traits.ftl @@ -1,2 +1,6 @@ trait-scottish-accent-name = Scottish Accent -trait-scottish-accent-desc = Fer tha folk who come frae Hielan clan. \ No newline at end of file +trait-scottish-accent-desc = Fer tha folk who come frae Hielan clan. + +trait-ultravision-name = Ultraviolet Vision +trait-ultravision-desc = Whether through custom bionic eyes, random mutation, + or being a Harpy, you perceive the world with ultraviolet light. diff --git a/Resources/Locale/en-US/lathe/lathe-categories.ftl b/Resources/Locale/en-US/lathe/lathe-categories.ftl index a7261c2b511..6b1917d8351 100644 --- a/Resources/Locale/en-US/lathe/lathe-categories.ftl +++ b/Resources/Locale/en-US/lathe/lathe-categories.ftl @@ -6,3 +6,4 @@ lathe-category-parts = Parts lathe-category-robotics = Robotics lathe-category-tools = Tools lathe-category-weapons = Weapons +lathe-category-evasuits = EVA diff --git a/Resources/Locale/en-US/paper/paper-component.ftl b/Resources/Locale/en-US/paper/paper-component.ftl index 689dea665f3..5a86e06cdd1 100644 --- a/Resources/Locale/en-US/paper/paper-component.ftl +++ b/Resources/Locale/en-US/paper/paper-component.ftl @@ -8,5 +8,7 @@ paper-component-examine-detail-has-words = {CAPITALIZE(THE($paper))} has somethi # Shown when paper with stamps examined paper-component-examine-detail-stamped-by = {CAPITALIZE(THE($paper))} {CONJUGATE-HAVE($paper)} been stamped by: {$stamps}. -paper-component-action-stamp-paper-other = {CAPITALIZE(THE($user))} {$action} {THE($target)} with {THE($stamp)}. -paper-component-action-stamp-paper-self = You {$action} {THE($target)} with {THE($stamp)}. +paper-component-action-stamp-paper-other = {CAPITALIZE(THE($user))} stamps {THE($target)} with {THE($stamp)}. +paper-component-action-stamp-paper-self = You stamp {THE($target)} with {THE($stamp)}. + +paper-ui-save-button = Save ({$keybind}) \ No newline at end of file diff --git a/Resources/Maps/_NF/Bluespace/bloodmoon.yml b/Resources/Maps/_NF/Bluespace/bloodmoon.yml new file mode 100644 index 00000000000..e82dd172540 --- /dev/null +++ b/Resources/Maps/_NF/Bluespace/bloodmoon.yml @@ -0,0 +1,8855 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 30: FloorDark + 33: FloorDarkHerringbone + 34: FloorDarkMini + 35: FloorDarkMono + 39: FloorDarkPlastic + 45: FloorFreezer + 46: FloorGlass + 63: FloorLino + 68: FloorMiningDark + 120: FloorWoodTile + 122: Plating + 125: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Blood Moon + - type: Transform + pos: -0.5156249,-0.5312496 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: LQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAARAAAAAAARAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALgAAAAACLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAALgAAAAABLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAALgAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAALgAAAAADLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAALgAAAAADLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAARAAAAAAARAAAAAAAegAAAAAAAAAAAAAALgAAAAACAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAARAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAIgAAAAAARAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAARAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAIgAAAAAAIgAAAAAARAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: RAAAAAAARAAAAAAAegAAAAAAAAAAAAAALgAAAAACAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAALgAAAAADLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAALgAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAALgAAAAACLgAAAAABLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIQAAAAAAIQAAAAAALgAAAAAALgAAAAADLgAAAAADLgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIQAAAAAAAAAAAAAALgAAAAACLgAAAAAALgAAAAADLgAAAAACLgAAAAADLgAAAAADRAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAIQAAAAAAAAAAAAAAAAAAAAAALgAAAAABLgAAAAABLgAAAAADLgAAAAACLgAAAAABRAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAfQAAAAAAfQAAAAAAegAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAegAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAfQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAAAIgAAAAAAIgAAAAAARAAAAAAALgAAAAADLgAAAAAALgAAAAADLgAAAAADRAAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAAAIgAAAAAAIgAAAAAARAAAAAAALgAAAAAALgAAAAAALgAAAAABLgAAAAAARAAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAARAAAAAAARAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAARAAAAAAARAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARAAAAAAARAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAARAAAAAAARAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAARAAAAAAARAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAABLgAAAAADLgAAAAABLgAAAAADLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAABLgAAAAABLgAAAAABLgAAAAABLgAAAAAALgAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADLgAAAAAALgAAAAAALgAAAAABLgAAAAABLgAAAAAALgAAAAAALgAAAAACLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAARAAAAAAARAAAAAAARAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAARAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAARAAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAARAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAARAAAAAAAIQAAAAAAIQAAAAAAIwAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAegAAAAAAegAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 999999 + linearDamping: 999999 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + angularDamping: 999999 + linearDamping: 999999 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3AFF' + id: ArrowsGreyscale + decals: + 69: 3,-19 + 70: 4,-19 + 71: 5,-19 + - node: + color: '#DE3A3AFF' + id: BotRightGreyscale + decals: + 72: 3,-19 + 73: 4,-19 + 74: 5,-19 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkBox + decals: + 63: 15,8 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkCornerNe + decals: + 14: 14,-10 + 15: 13,-9 + 16: 12,-8 + 27: 12,5 + 28: 11,6 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkCornerNw + decals: + 4: 13,-14 + 5: 14,-13 + 10: 8,-10 + 17: 9,-9 + 18: 10,-8 + 29: 18,5 + 30: 19,6 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkCornerSe + decals: + 31: 11,10 + 32: 12,11 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkCornerSw + decals: + 11: 8,-12 + 12: 9,-13 + 13: 10,-14 + 33: 18,11 + 34: 19,10 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkInnerNe + decals: + 23: 13,-10 + 24: 14,-11 + 25: 12,-9 + 52: 12,4 + 53: 11,5 + 54: 10,6 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkInnerNw + decals: + 6: 15,-13 + 7: 14,-14 + 8: 13,-15 + 19: 9,-10 + 26: 10,-9 + 49: 20,6 + 50: 19,5 + 51: 18,4 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkInnerSe + decals: + 60: 10,10 + 61: 11,11 + 62: 12,12 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkInnerSw + decals: + 20: 9,-12 + 21: 10,-13 + 22: 11,-14 + 46: 18,12 + 47: 19,11 + 48: 20,10 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkLineE + decals: + 38: 10,9 + 39: 10,8 + 40: 10,7 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkLineN + decals: + 2: 11,-15 + 3: 12,-15 + 55: 13,4 + 56: 14,4 + 57: 15,4 + 58: 16,4 + 59: 17,4 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkLineS + decals: + 41: 13,12 + 42: 14,12 + 43: 15,12 + 44: 16,12 + 45: 17,12 + 64: 13,14 + 65: 14,14 + 66: 15,14 + 67: 16,14 + 68: 17,14 + - node: + color: '#DE3A3AFF' + id: BrickTileDarkLineW + decals: + 0: 15,-11 + 1: 15,-12 + 9: 8,-11 + 35: 20,9 + 36: 20,8 + 37: 20,7 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 14335 + 1: 51200 + 0,-1: + 1: 2247 + 0: 63280 + 0,1: + 1: 7 + 2: 13104 + 0,2: + 2: 51 + 1: 63232 + 0,3: + 1: 4095 + 1,0: + 1: 273 + 1,2: + 2: 256 + 1: 64512 + 1,3: + 1: 4095 + 2: 4096 + 2,1: + 1: 65534 + 2,2: + 1: 65535 + 2,3: + 1: 3071 + 2,0: + 1: 60416 + 3,0: + 1: 65520 + 3,1: + 1: 65535 + 3,2: + 1: 65535 + 3,3: + 1: 65535 + 0,-4: + 1: 7 + 2: 29488 + 0,-3: + 2: 3311 + 1,-4: + 2: 1 + 1: 32780 + 1,-3: + 2: 1904 + 1: 34952 + 1,-1: + 1: 4352 + 2,-4: + 1: 65519 + 2,-3: + 1: 65535 + 2,-2: + 1: 49391 + 2: 2048 + 3,-4: + 1: 65535 + 3,-3: + 1: 65535 + 3,-2: + 1: 12343 + -4,0: + 1: 2184 + -3,0: + 1: 65535 + -3,1: + 1: 61183 + -3,2: + 1: 140 + -2,0: + 2: 255 + 1: 4352 + -2,1: + 1: 65395 + -2,2: + 1: 61439 + -2,3: + 1: 12 + -1,0: + 1: 25361 + 0: 36078 + -1,1: + 1: 4108 + -1,2: + 1: 65523 + -1,3: + 1: 2303 + -4,-1: + 2: 64 + 1: 34952 + -4,-2: + 1: 34952 + -3,-3: + 1: 65534 + -3,-2: + 1: 65535 + -3,-1: + 1: 63351 + 2: 128 + -3,-4: + 1: 60544 + -2,-4: + 1: 65535 + -2,-3: + 1: 4991 + -2,-2: + 1: 1 + -1,-4: + 1: 5119 + -1,-1: + 1: 4972 + 0: 60544 + 4,0: + 1: 65534 + 4,1: + 1: 65535 + 4,2: + 1: 65535 + 4,3: + 1: 32767 + 5,0: + 1: 4915 + 5,1: + 1: 30579 + 5,2: + 1: 30583 + 5,3: + 1: 307 + 4,-4: + 1: 63281 + 4,-3: + 1: 65535 + 4,-2: + 1: 61167 + 4,-1: + 2: 32 + 1: 60620 + 5,-3: + 1: 4368 + 5,-2: + 1: 13107 + 5,-1: + 1: 13107 + 2: 64 + 0,-6: + 2: 65504 + 0,-5: + 1: 65535 + 1,-6: + 2: 65520 + 1,-5: + 1: 65535 + 2,-6: + 2: 4352 + 2,-5: + 1: 65523 + 3,-5: + 1: 63248 + -2,-5: + 1: 60416 + -1,-5: + 1: 65528 + 2,-1: + 1: 52974 + 3,-1: + 1: 4915 + uniqueMixes: + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirCanister + entities: + - uid: 581 + components: + - type: Transform + anchored: True + pos: 12.5,-2.5 + parent: 1 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 + - uid: 582 + components: + - type: Transform + anchored: True + pos: 12.5,-3.5 + parent: 1 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 +- proto: AirlockBloodCult + entities: + - uid: 2 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 1256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 1 + - uid: 1257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 576 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 306 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 323 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 +- proto: AtmosFixFreezerMarker + entities: + - uid: 1100 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 1104 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 1105 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 1106 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 1107 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 1111 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 1112 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 1117 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 1120 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 1121 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 1125 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 1126 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: BeachBall + entities: + - uid: 1270 + components: + - type: Transform + pos: 18.490425,10.588631 + parent: 1 +- proto: Bed + entities: + - uid: 1216 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 1220 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1 + - uid: 1221 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1 +- proto: BedsheetCult + entities: + - uid: 1234 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1 + - uid: 1235 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 1236 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 1255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 1 +- proto: BenchSofaLeft + entities: + - uid: 1078 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSofaRight + entities: + - uid: 1079 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BloodCollector + entities: + - uid: 1137 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 1140 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 1141 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 1142 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 1143 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 +- proto: BloodCultAlwaysPoweredLight + entities: + - uid: 505 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + - uid: 506 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 507 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 508 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-17.5 + parent: 1 + - uid: 510 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 1 + - uid: 511 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + - uid: 512 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1 + - uid: 513 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 514 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 515 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 1 + - uid: 516 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 518 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + - uid: 519 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 520 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-20.5 + parent: 1 + - uid: 521 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 522 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + - uid: 523 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 1 + - uid: 524 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 1 + - uid: 526 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 + - uid: 527 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 528 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,8.5 + parent: 1 + - uid: 1083 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-7.5 + parent: 1 +- proto: BloodCultGlowingFloor + entities: + - uid: 517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - uid: 525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + - uid: 529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + - uid: 530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 1 + - uid: 531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1 + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + - uid: 535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + - uid: 537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 1 + - uid: 538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + - uid: 539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - uid: 541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - uid: 547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 1 + - uid: 552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 1 + - uid: 553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 1 + - uid: 554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + - uid: 555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + - uid: 556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 1 + - uid: 557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 1 + - uid: 558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + - uid: 559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + - uid: 560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + - uid: 561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 1 + - uid: 562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 1 + - uid: 563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 1 + - uid: 564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 1 + - uid: 565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-22.5 + parent: 1 + - uid: 566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 1 + - uid: 567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 1 +- proto: BloodCultGravityGeneratorMini + entities: + - uid: 410 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - type: PointLight + radius: 2.5 +- proto: BloodCultHoleFloor + entities: + - uid: 1178 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 + - uid: 1222 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: 19.5,0.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 1 + - uid: 1276 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 1277 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 +- proto: BloodCultProp01 + entities: + - uid: 1168 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 + - uid: 1219 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 +- proto: BloodCultProp02 + entities: + - uid: 1179 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 +- proto: BloodCultProp03 + entities: + - uid: 476 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1 + - uid: 1201 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - uid: 1202 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 1 +- proto: BloodCultProp04 + entities: + - uid: 1159 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 1209 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 1226 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1 +- proto: BloodCultProp05 + entities: + - uid: 1200 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 +- proto: BloodCultProp07 + entities: + - uid: 1193 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 +- proto: BloodCultTurret + entities: + - uid: 470 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 +- proto: BookNames + entities: + - uid: 1268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.506048,10.494881 + parent: 1 +- proto: BookRandom + entities: + - uid: 1261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.46716,-9.395261 + parent: 1 + - uid: 1267 + components: + - type: Transform + pos: 17.521675,6.607325 + parent: 1 +- proto: Bookshelf + entities: + - uid: 1081 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-8.5 + parent: 1 + - uid: 1206 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 1207 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-10.5 + parent: 1 + - uid: 1208 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-11.5 + parent: 1 + - uid: 1223 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 1225 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,13.5 + parent: 1 +- proto: BoxCardboard + entities: + - uid: 494 + components: + - type: MetaData + flags: InContainer + name: cardboard box (Steve's) + - type: Transform + parent: 492 + - type: Storage + storedItems: + 495: + position: 0,0 + _rotation: South + 496: + position: 1,0 + _rotation: South + 497: + position: 2,0 + _rotation: South + 498: + position: 0,1 + _rotation: South + 499: + position: 1,1 + _rotation: South + 500: + position: 2,1 + _rotation: South + 501: + position: 0,2 + _rotation: South + 502: + position: 2,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 495 + - 496 + - 497 + - 498 + - 499 + - 500 + - 501 + - 502 + - type: Physics + canCollide: False + - type: Label + originalName: cardboard box + currentLabel: Steve's + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 461 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 19.5,0.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 19.5,1.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 19.5,3.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 19.5,5.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 19.5,10.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 13.5,4.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 756 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 757 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 759 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 +- proto: CableHV + entities: + - uid: 585 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 588 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 +- proto: CarpetBlack + entities: + - uid: 1084 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 1 +- proto: ChairWood + entities: + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,9.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1 + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 16.5,11.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,8.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,7.5 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 1 + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 1 + - uid: 443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,5.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,5.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,10.5 + parent: 1 + - uid: 446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,6.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-9.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + - uid: 1176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1 + - uid: 1212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + - uid: 1227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 1 +- proto: ClothingHeadHelmetBone + entities: + - uid: 1199 + components: + - type: Transform + pos: -8.527203,7.6776237 + parent: 1 +- proto: ClothingOuterArmorBone + entities: + - uid: 1195 + components: + - type: Transform + pos: -8.589703,7.7244987 + parent: 1 +- proto: ComfyChair + entities: + - uid: 1082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 1 +- proto: Dresser + entities: + - uid: 1204 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 1 +- proto: DrinkMugDog + entities: + - uid: 466 + components: + - type: Transform + pos: 15.982802,14.467746 + parent: 1 +- proto: DrinkMugOne + entities: + - uid: 469 + components: + - type: Transform + pos: 15.071344,14.717746 + parent: 1 +- proto: DrinkMugRainbow + entities: + - uid: 484 + components: + - type: Transform + pos: 15.461969,14.436496 + parent: 1 +- proto: DrinkMugRed + entities: + - uid: 467 + components: + - type: Transform + pos: 15.118219,14.436496 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 15.680719,14.676079 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 15.961969,14.780246 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 15.441136,14.863579 + parent: 1 +- proto: DrinkScrewdriverCocktailGlass + entities: + - uid: 1269 + components: + - type: Transform + pos: 13.631049,10.651131 + parent: 1 +- proto: Fireplace + entities: + - uid: 1080 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 +- proto: FoodBreadMoldy + entities: + - uid: 499 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False +- proto: FoodMeatRotten + entities: + - uid: 495 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False + - uid: 496 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False + - uid: 497 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False + - uid: 498 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False +- proto: FoodPizzaMoldySlice + entities: + - uid: 500 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False + - uid: 501 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False + - uid: 502 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 494 + - type: Physics + canCollide: False +- proto: GasOutletInjector + entities: + - uid: 1075 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 793 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 801 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 808 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 813 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 912 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 971 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 987 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 992 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 996 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1046 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1062 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 1038 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 764 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 767 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 768 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 770 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 771 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 773 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 774 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 775 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 776 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 777 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 778 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 794 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 799 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 800 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 805 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 807 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 815 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 816 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 817 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 818 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 828 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 829 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 830 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 859 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 860 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 921 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 922 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 923 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 925 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 926 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 927 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 928 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 940 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 941 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 942 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 943 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 944 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 945 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 946 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 952 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 953 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 954 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 973 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 979 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1018 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1021 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1060 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1061 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1063 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1064 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1065 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 827 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 989 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1053 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 783 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 861 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 874 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 875 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 920 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 956 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1020 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1022 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1059 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 180 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 +- proto: HappyHonkNukie + entities: + - uid: 1262 + components: + - type: Transform + pos: 18.677008,13.668269 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: 12.505133,9.291049 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: 18.630133,7.7597985 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 1240 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 1242 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1 + - uid: 1243 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 1244 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1 + - uid: 1245 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 1252 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 504 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1 +- proto: KitchenSpike + entities: + - uid: 1144 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 1146 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 1151 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 1231 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 +- proto: LockerFreezer + entities: + - uid: 492 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 494 + - 493 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MaterialBones + entities: + - uid: 1191 + components: + - type: Transform + pos: -9.59404,5.5593805 + parent: 1 + - uid: 1196 + components: + - type: Transform + pos: -9.28154,5.4968805 + parent: 1 +- proto: Paper + entities: + - uid: 493 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 492 + - type: Paper + content: >- + Steve, please, for Nar'Sie sake, DON'T PUT YOUR FOOD IN COOMON FREEZER! Its abhorent smell makes it hard to concentrate on the rituals - hard to read from The Book when your eyes watering this bad. Last ritual was botched beacuse of this and Viktor's bones decided that they no longer contempt with being inside him and just took off. Poor Vik, we have to feed him through the tube now. And I still can hear his bones rattling in the vents from time to time. + + - Russ + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 1246 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1 + - uid: 1247 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 + - uid: 1248 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1 + - uid: 1249 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1 + - uid: 1250 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 1251 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 1 +- proto: PlasteelArmingSword + entities: + - uid: 1186 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 1185 + - type: Physics + canCollide: False + - uid: 1188 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 1185 + - type: Physics + canCollide: False +- proto: PottedPlantRandomPlastic + entities: + - uid: 1077 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 1217 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 +- proto: Rack + entities: + - uid: 1181 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 +- proto: RandomFoodMeal + entities: + - uid: 1265 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 1266 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 +- proto: RitualDagger + entities: + - uid: 1187 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 1185 + - type: Physics + canCollide: False + - uid: 1189 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 1185 + - type: Physics + canCollide: False + - uid: 1197 + components: + - type: Transform + pos: -5.3562794,10.535943 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: -5.5906544,10.660943 + parent: 1 +- proto: SheetSteel + entities: + - uid: 1192 + components: + - type: Transform + pos: -3.3875294,11.567193 + parent: 1 +- proto: soda_dispenser + entities: + - uid: 503 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 +- proto: SpawnMobBloodCultistAcolyte + entities: + - uid: 407 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 +- proto: SpawnMobBloodCultistAscended + entities: + - uid: 447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,9.5 + parent: 1 +- proto: SpawnMobBloodCultistCaster + entities: + - uid: 451 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + - uid: 1229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,0.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 +- proto: SpawnMobBloodCultistPriest + entities: + - uid: 450 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 +- proto: SpawnMobBloodCultistZealotMelee + entities: + - uid: 459 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1 + - uid: 483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 1 +- proto: SpawnMobBloodCultistZealotRanged + entities: + - uid: 464 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 1 +- proto: SpawnMobBloodCultLeech + entities: + - uid: 462 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 1091 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 1 + - uid: 1258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-11.5 + parent: 1 +- proto: SpearBone + entities: + - uid: 1190 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 1185 + - type: Physics + canCollide: False +- proto: SubstationBasic + entities: + - uid: 575 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 +- proto: TableCarpet + entities: + - uid: 1094 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 + - uid: 1095 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-9.5 + parent: 1 + - uid: 1224 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 +- proto: TableWood + entities: + - uid: 411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 1 + - uid: 412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 1 + - uid: 414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,10.5 + parent: 1 + - uid: 415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 1 + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 1 + - uid: 417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,6.5 + parent: 1 + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 1 + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 1 + - uid: 420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,7.5 + parent: 1 + - uid: 421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 1 + - uid: 422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,10.5 + parent: 1 + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1 + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 1 + - uid: 427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,9.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,9.5 + parent: 1 + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 1 + - uid: 489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,14.5 + parent: 1 + - uid: 490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 1 +- proto: VendingMachineDrGibb + entities: + - uid: 488 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1 +- proto: WallCultIndestructible + entities: + - uid: 3 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 4 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 5 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 6 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 10 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 11 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 12 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 13 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 14 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 15 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 16 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 17 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 18 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 19 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 20 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 21 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 22 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 23 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 24 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 25 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-0.5 + parent: 1 + - uid: 26 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,0.5 + parent: 1 + - uid: 27 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 28 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 29 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 30 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 31 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 32 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 33 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 34 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 35 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 36 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 37 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 38 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 39 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 40 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,6.5 + parent: 1 + - uid: 41 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,7.5 + parent: 1 + - uid: 42 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 43 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 44 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 45 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 46 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 47 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 48 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 49 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 50 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 51 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 52 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 53 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 54 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 55 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 56 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 57 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 58 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 59 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 60 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 61 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 62 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 63 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 64 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 65 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 66 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 67 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 68 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 69 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 70 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 71 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 72 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 73 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 74 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 75 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 76 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 77 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 78 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 79 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 80 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 81 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 82 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 83 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 84 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 85 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 86 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 87 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 88 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 89 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 90 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 91 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 92 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 93 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 94 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 95 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 96 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,10.5 + parent: 1 + - uid: 97 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,10.5 + parent: 1 + - uid: 98 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 99 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,13.5 + parent: 1 + - uid: 100 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 101 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,14.5 + parent: 1 + - uid: 102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,14.5 + parent: 1 + - uid: 103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,15.5 + parent: 1 + - uid: 104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 105 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,15.5 + parent: 1 + - uid: 106 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 107 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,15.5 + parent: 1 + - uid: 108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,15.5 + parent: 1 + - uid: 109 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,15.5 + parent: 1 + - uid: 110 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,14.5 + parent: 1 + - uid: 111 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 112 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 113 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 114 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,13.5 + parent: 1 + - uid: 115 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,12.5 + parent: 1 + - uid: 116 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,11.5 + parent: 1 + - uid: 117 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,11.5 + parent: 1 + - uid: 118 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 119 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,9.5 + parent: 1 + - uid: 120 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,8.5 + parent: 1 + - uid: 121 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,7.5 + parent: 1 + - uid: 122 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,6.5 + parent: 1 + - uid: 123 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 22.5,5.5 + parent: 1 + - uid: 124 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,5.5 + parent: 1 + - uid: 125 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,4.5 + parent: 1 + - uid: 126 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,4.5 + parent: 1 + - uid: 127 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,3.5 + parent: 1 + - uid: 128 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 129 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,2.5 + parent: 1 + - uid: 130 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 131 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,2.5 + parent: 1 + - uid: 132 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,1.5 + parent: 1 + - uid: 133 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,1.5 + parent: 1 + - uid: 134 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,1.5 + parent: 1 + - uid: 135 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,1.5 + parent: 1 + - uid: 136 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,1.5 + parent: 1 + - uid: 137 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 138 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,2.5 + parent: 1 + - uid: 139 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,2.5 + parent: 1 + - uid: 140 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 141 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 142 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 143 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 144 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 145 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 146 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 147 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 148 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 149 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 150 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,0.5 + parent: 1 + - uid: 151 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-0.5 + parent: 1 + - uid: 152 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-1.5 + parent: 1 + - uid: 153 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-2.5 + parent: 1 + - uid: 154 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-3.5 + parent: 1 + - uid: 155 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-4.5 + parent: 1 + - uid: 156 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-5.5 + parent: 1 + - uid: 157 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-6.5 + parent: 1 + - uid: 158 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 159 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-7.5 + parent: 1 + - uid: 160 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 161 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 162 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 163 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 164 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-2.5 + parent: 1 + - uid: 165 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-3.5 + parent: 1 + - uid: 166 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-4.5 + parent: 1 + - uid: 167 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-4.5 + parent: 1 + - uid: 168 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-5.5 + parent: 1 + - uid: 169 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 170 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 171 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 172 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - uid: 173 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-8.5 + parent: 1 + - uid: 174 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-9.5 + parent: 1 + - uid: 175 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-8.5 + parent: 1 + - uid: 176 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 177 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-7.5 + parent: 1 + - uid: 178 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-6.5 + parent: 1 + - uid: 179 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-6.5 + parent: 1 + - uid: 181 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-6.5 + parent: 1 + - uid: 182 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 183 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 184 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 185 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 186 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 189 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 190 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 191 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-12.5 + parent: 1 + - uid: 192 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-13.5 + parent: 1 + - uid: 193 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 194 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-14.5 + parent: 1 + - uid: 195 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 196 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-8.5 + parent: 1 + - uid: 197 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 198 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 20.5,-10.5 + parent: 1 + - uid: 199 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-10.5 + parent: 1 + - uid: 200 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-11.5 + parent: 1 + - uid: 201 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 19.5,-12.5 + parent: 1 + - uid: 202 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-12.5 + parent: 1 + - uid: 203 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 18.5,-13.5 + parent: 1 + - uid: 204 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-13.5 + parent: 1 + - uid: 205 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 17.5,-14.5 + parent: 1 + - uid: 206 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-14.5 + parent: 1 + - uid: 207 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 16.5,-15.5 + parent: 1 + - uid: 208 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - uid: 209 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 15.5,-16.5 + parent: 1 + - uid: 210 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-16.5 + parent: 1 + - uid: 211 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 14.5,-17.5 + parent: 1 + - uid: 212 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-17.5 + parent: 1 + - uid: 213 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-17.5 + parent: 1 + - uid: 214 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-18.5 + parent: 1 + - uid: 215 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-18.5 + parent: 1 + - uid: 216 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-18.5 + parent: 1 + - uid: 217 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-18.5 + parent: 1 + - uid: 218 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-19.5 + parent: 1 + - uid: 219 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-19.5 + parent: 1 + - uid: 220 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-19.5 + parent: 1 + - uid: 221 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-19.5 + parent: 1 + - uid: 222 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-16.5 + parent: 1 + - uid: 223 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - uid: 224 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-15.5 + parent: 1 + - uid: 225 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-15.5 + parent: 1 + - uid: 226 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 227 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 228 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 229 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-16.5 + parent: 1 + - uid: 230 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-16.5 + parent: 1 + - uid: 231 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - uid: 232 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 233 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 234 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-19.5 + parent: 1 + - uid: 235 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - uid: 236 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 237 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 238 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-18.5 + parent: 1 + - uid: 239 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-17.5 + parent: 1 + - uid: 240 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - uid: 241 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-17.5 + parent: 1 + - uid: 242 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-16.5 + parent: 1 + - uid: 243 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-16.5 + parent: 1 + - uid: 244 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-15.5 + parent: 1 + - uid: 245 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-15.5 + parent: 1 + - uid: 246 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-14.5 + parent: 1 + - uid: 247 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-14.5 + parent: 1 + - uid: 248 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-13.5 + parent: 1 + - uid: 249 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-13.5 + parent: 1 + - uid: 250 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-12.5 + parent: 1 + - uid: 251 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-12.5 + parent: 1 + - uid: 252 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-11.5 + parent: 1 + - uid: 253 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-10.5 + parent: 1 + - uid: 254 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-10.5 + parent: 1 + - uid: 255 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-9.5 + parent: 1 + - uid: 256 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-8.5 + parent: 1 + - uid: 257 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-7.5 + parent: 1 + - uid: 258 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-7.5 + parent: 1 + - uid: 259 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-6.5 + parent: 1 + - uid: 260 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - uid: 261 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-4.5 + parent: 1 + - uid: 262 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 263 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 264 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 265 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 266 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 267 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 268 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-4.5 + parent: 1 + - uid: 269 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 270 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 271 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - uid: 272 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 273 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 274 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-8.5 + parent: 1 + - uid: 275 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-9.5 + parent: 1 + - uid: 276 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-9.5 + parent: 1 + - uid: 277 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-10.5 + parent: 1 + - uid: 278 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - uid: 279 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-11.5 + parent: 1 + - uid: 280 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 281 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-12.5 + parent: 1 + - uid: 282 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-12.5 + parent: 1 + - uid: 283 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-13.5 + parent: 1 + - uid: 284 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-13.5 + parent: 1 + - uid: 285 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-14.5 + parent: 1 + - uid: 286 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 287 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - uid: 288 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - uid: 291 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 448 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 449 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 456 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 457 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 458 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 460 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 474 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 509 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 568 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 569 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 570 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 571 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 572 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 573 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 574 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 583 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 1 + - uid: 584 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 468 + components: + - type: MetaData + name: Blood Moon + - type: Transform + pos: 4.5,-17.5 + parent: 1 +- proto: WeaponRackMeleeBase + entities: + - uid: 1185 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1186 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1187 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1190 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1189 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1188 + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +... diff --git a/Resources/Maps/_NF/Bluespace/syndieftlintercept.yml b/Resources/Maps/_NF/Bluespace/syndieftlintercept.yml new file mode 100644 index 00000000000..93655a1a9cd --- /dev/null +++ b/Resources/Maps/_NF/Bluespace/syndieftlintercept.yml @@ -0,0 +1,6398 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 30: FloorDark + 33: FloorDarkHerringbone + 35: FloorDarkMono + 39: FloorDarkPlastic + 45: FloorFreezer + 46: FloorGlass + 77: FloorRGlass + 105: FloorTechMaint + 109: FloorWhite + 114: FloorWhiteMono + 118: FloorWhitePlastic + 121: Lattice + 122: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Intercepted Syndicate Vessel + - type: Transform + pos: -0.484375,-0.49998474 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: JwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAaQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAJwAAAAAAJwAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: bQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAcgAAAAAAcgAAAAAAegAAAAAAcgAAAAAAcgAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAALQAAAAAALQAAAAAAaQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAaQAAAAAAIwAAAAAAIwAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAATQAAAAAATQAAAAAAJwAAAAAAegAAAAAAaQAAAAAAIwAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAaQAAAAAAIwAAAAAAIwAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAALgAAAAAAegAAAAAALgAAAAAALgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAALgAAAAAALgAAAAAAegAAAAAALgAAAAAALgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAJwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAHgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAaQAAAAAAJwAAAAAAegAAAAAAHgAAAAAAegAAAAAAHgAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAaQAAAAAAHgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAdgAAAAAAegAAAAAAegAAAAAAcgAAAAAAcgAAAAAAegAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAAJwAAAAAAJwAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 999999 + linearDamping: 999999 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + angularDamping: 999999 + linearDamping: 999999 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#DE3A3AFF' + id: Bot + decals: + 56: 8,-2 + 57: 0,-3 + 58: 0,-4 + 59: -11,-6 + - node: + color: '#1D1D21A1' + id: BrickTileDarkInnerNe + decals: + 79: 3,-3 + - node: + color: '#1D1D21A1' + id: BrickTileDarkInnerNw + decals: + 80: 6,-3 + - node: + color: '#1D1D21A1' + id: BrickTileDarkInnerSe + decals: + 77: 3,-1 + - node: + color: '#1D1D21A1' + id: BrickTileDarkInnerSw + decals: + 78: 6,-1 + - node: + color: '#1D1D21A1' + id: BrickTileDarkLineE + decals: + 75: 3,-2 + - node: + color: '#1D1D21A1' + id: BrickTileDarkLineN + decals: + 71: 4,-3 + 72: 5,-3 + - node: + color: '#1D1D21A1' + id: BrickTileDarkLineS + decals: + 73: 4,-1 + 74: 5,-1 + - node: + color: '#1D1D21A1' + id: BrickTileDarkLineW + decals: + 76: 6,-2 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelBox + decals: + 61: -7,-3 + - node: + color: '#FF0000FF' + id: BrickTileSteelCornerNe + decals: + 18: -12,0 + - node: + color: '#FF0000FF' + id: BrickTileSteelCornerNw + decals: + 19: -16,0 + - node: + color: '#FF0000FF' + id: BrickTileSteelCornerSe + decals: + 20: -12,-1 + 21: -13,-5 + - node: + color: '#FF0000FF' + id: BrickTileSteelCornerSw + decals: + 22: -16,-5 + - node: + color: '#FF0000FF' + id: BrickTileSteelInnerSe + decals: + 32: -13,-1 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineE + decals: + 23: -13,-4 + 24: -13,-2 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineN + decals: + 25: -13,0 + 26: -14,0 + 27: -15,0 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineS + decals: + 33: -15,-5 + 34: -14,-5 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineW + decals: + 28: -16,-1 + 29: -16,-2 + 30: -16,-3 + 31: -16,-4 + - node: + color: '#C74EBD33' + id: MonoOverlay + decals: + 36: 5,2 + 37: 6,2 + 38: 7,2 + 39: 7,1 + 40: 7,3 + 41: 6,3 + 42: 5,3 + 43: 5,4 + 44: 6,4 + 45: 7,4 + 46: 8,3 + 47: 8,2 + 48: 8,1 + 49: 4,-2 + 50: 5,-2 + - node: + color: '#FFFFFFFF' + id: MonoOverlay + decals: + 0: -4.870145,-1.118727 + 1: -5.838895,-1.118727 + 2: -4.94827,-0.21247697 + 3: -4.932645,0.67814803 + 4: -5.85452,-0.21247697 + 5: -5.88577,0.67814803 + 6: -6.620145,0.17814803 + 7: -6.54202,-0.74372697 + 8: -6.526395,-1.024977 + 9: -7.88577,-1.040602 + 10: -7.932645,-0.11872697 + 11: -7.963895,0.31877303 + 12: -8.91702,0.22502303 + 13: -9.16702,0.22502303 + 14: -9.182645,-0.61872697 + 15: -8.63577,-0.63435197 + 16: -8.60452,-1.384352 + 17: -9.35452,-1.353102 + - node: + color: '#DE3A3AFF' + id: WarnCornerGreyscaleNE + decals: + 68: 3,2 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleE + decals: + 52: 9,-1 + 53: 9,-3 + 63: 9,-2 + 64: 6,-1 + 65: 6,-3 + - node: + color: '#FF0000FF' + id: WarnLineGreyscaleE + decals: + 35: -13,-3 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleN + decals: + 51: 2,2 + 66: -1,-3 + 70: 2,-5 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleS + decals: + 62: -1,-1 + 69: 2,-3 + - node: + color: '#DE3A3AFF' + id: WarnLineGreyscaleW + decals: + 54: 8,-1 + 55: 8,-3 + 60: -11,-3 + 67: -2,2 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,-1: + 0: 65535 + 0,1: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 4607 + 2,0: + 0: 13111 + 2,1: + 0: 51 + 1: 4 + -4,0: + 0: 65535 + -4,1: + 0: 2188 + 1: 32768 + -3,0: + 0: 65535 + -3,1: + 1: 255 + -2,0: + 0: 65535 + -2,1: + 0: 51711 + -1,1: + 0: 65535 + 0,-2: + 1: 272 + 0: 65262 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 1,-3: + 0: 61440 + 1: 256 + 2,-3: + 0: 29696 + 1: 32768 + 2,-2: + 1: 13107 + 2,-1: + 0: 30583 + -4,-2: + 0: 65280 + -4,-1: + 0: 65535 + -3,-2: + 0: 65532 + 1: 2 + -3,-1: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-2: + 0: 61713 + 1: 3808 + -5,0: + 0: 61320 + 1: 102 + -5,-2: + 0: 64512 + 1: 128 + -5,-1: + 1: 26214 + 0: 34952 + -2,2: + 1: 8 + 0,-3: + 0: 32768 + 1,2: + 1: 1 + -1,-3: + 1: 4096 + -6,0: + 1: 2048 + -6,-2: + 1: 32768 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - uid: 669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirlockExternalSyndicateLocked + entities: + - uid: 79 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 230 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + - uid: 234 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 421 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + - uid: 435 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 436 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 +- proto: AirlockMaint + entities: + - uid: 232 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 +- proto: AirlockServiceLocked + entities: + - uid: 278 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,4.5 + parent: 1 +- proto: AirlockShuttleSyndicate + entities: + - uid: 431 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 432 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 434 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 +- proto: AirlockSyndicate + entities: + - uid: 41 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 35: + - DoorStatus: InputA + 881: + - DoorStatus: InputB + 109: + - DoorStatus: DoorBolt + - uid: 109 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 41 + - type: DeviceLinkSource + linkedPorts: + 881: + - DoorStatus: InputA + - uid: 280 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 325 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 326 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 353 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 459 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 240 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + - uid: 681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + - uid: 414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 408 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: -18.5,1.5 + parent: 1 + - uid: 789 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 1 + - uid: 790 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: -18.5,0.5 + parent: 1 + - uid: 796 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 811 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1 + - uid: 820 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 1 + - uid: 822 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1 + - uid: 823 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 +- proto: BannerSyndicate + entities: + - uid: 282 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 +- proto: Barricade + entities: + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 +- proto: BarricadeDirectional + entities: + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 +- proto: Bed + entities: + - uid: 44 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 +- proto: BedsheetSyndie + entities: + - uid: 535 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 +- proto: BenchSteelLeft + entities: + - uid: 524 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSteelMiddle + entities: + - uid: 522 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSteelRight + entities: + - uid: 523 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: Bloodpack10Lingering + entities: + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.531651,-0.63730955 + parent: 1 +- proto: BoxFolderRed + entities: + - uid: 773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.376236,-4.3159266 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 8.700711,3.3962235 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 241 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -14.5,2.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 756 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 757 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 885 + components: + - type: Transform + pos: -17.51392,2.4785938 + parent: 1 +- proto: CableHV + entities: + - uid: 4 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 446 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: -14.5,2.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 32 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,1.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-3.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + - uid: 424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + - uid: 425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 +- proto: Chair + entities: + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 +- proto: ClothingOuterHardsuitSyndie + entities: + - uid: 23 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsMagSyndie + entities: + - uid: 22 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 21 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerCrewMonitoring + entities: + - uid: 29 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-4.5 + parent: 1 +- proto: ComputerTabletopAlert + entities: + - uid: 394 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 +- proto: ComputerTabletopCrewMonitoring + entities: + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 +- proto: ComputerTabletopShuttleSyndie + entities: + - uid: 383 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 +- proto: ComputerTabletopSurveillanceCameraMonitor + entities: + - uid: 391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 +- proto: CrateSurgery + entities: + - uid: 19 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 1 +- proto: CrayonBlue + entities: + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.807645,-0.69685197 + parent: 1 +- proto: CrayonRed + entities: + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.370145,-0.71247697 + parent: 1 +- proto: Crowbar + entities: + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.476197,0.5087105 + parent: 1 +- proto: DefibrillatorCabinetOpen + entities: + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 1 +- proto: DefibrillatorEmpty + entities: + - uid: 16 + components: + - type: Transform + pos: -12.616822,-4.5850396 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 191 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 1 +- proto: DrinkClownBloodGlass + entities: + - uid: 197 + components: + - type: Transform + pos: -15.164893,0.33536708 + parent: 1 +- proto: DrinkMugMetal + entities: + - uid: 530 + components: + - type: Transform + pos: 1.4035671,-0.32198423 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 1.5285671,-0.5407343 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: 1.7316921,-0.29073423 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: 1.8723171,-0.5719843 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: 1.9973171,-0.32198423 + parent: 1 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 774 + components: + - type: Transform + pos: -12.370616,-3.7563806 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: -12.573741,-3.3501306 + parent: 1 +- proto: FaxMachineSyndie + entities: + - uid: 382 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 +- proto: FenceMetalCorner + entities: + - uid: 853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 +- proto: FenceMetalGate + entities: + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 +- proto: Firelock + entities: + - uid: 406 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 834 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 840 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 +- proto: FirelockEdge + entities: + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 +- proto: FoodCondimentSqueezeBottleKetchup + entities: + - uid: 52 + components: + - type: Transform + pos: -15.618385,0.50493973 + parent: 1 +- proto: FoodCondimentSqueezeBottleMustard + entities: + - uid: 63 + components: + - type: Transform + pos: -15.352761,0.53618973 + parent: 1 +- proto: FoodSnackSyndi + entities: + - uid: 540 + components: + - type: Transform + pos: 2.4867,-1.0348451 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 2.64295,-1.4567201 + parent: 1 +- proto: GasMixer + entities: + - uid: 501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasOutletInjector + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 502 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 613 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 558 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 579 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 580 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 630 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 631 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 542 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 588 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 589 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 590 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 591 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 614 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 615 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 616 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 617 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 628 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 629 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 653 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 654 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 655 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 656 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 657 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 665 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 560 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 622 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPressurePump + entities: + - uid: 503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 594 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 598 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 599 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 604 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 605 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 648 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 649 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 664 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 60 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 680 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 +- proto: Grille + entities: + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + - uid: 362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 663 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 +- proto: Igniter + entities: + - uid: 898 + components: + - type: Transform + pos: 0.89551896,-2.250243 + parent: 1 + - type: DeviceLinkSink + links: + - 881 +- proto: InflatableWall + entities: + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 528 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 72 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1 +- proto: LockerMedicalFilled + entities: + - uid: 43 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1 +- proto: LockerSyndicatePersonal + entities: + - uid: 317 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: LockerSyndicatePersonalFilled + entities: + - uid: 2 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 +- proto: LogicGate + entities: + - uid: 35 + components: + - type: Transform + anchored: True + pos: -10.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 41 + - type: DeviceLinkSource + linkedPorts: + 166: + - Output: Open + 157: + - Output: Open + 158: + - Output: Open + 165: + - Output: Open + 155: + - Output: Open + - type: Physics + canCollide: False + bodyType: Static + - uid: 881 + components: + - type: Transform + anchored: True + pos: 0.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 109 + - 41 + - type: DeviceLinkSource + linkedPorts: + 898: + - Output: Trigger + - type: Physics + canCollide: False + bodyType: Static +- proto: Mattress + entities: + - uid: 117 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 +- proto: N14ContrabandCrateSpawner + entities: + - uid: 10 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 785 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 505 + components: + - type: Transform + anchored: True + pos: 3.5,-6.5 + parent: 1 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 +- proto: OperatingTable + entities: + - uid: 7 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 1 +- proto: OrganHumanBrain + entities: + - uid: 104 + components: + - type: Transform + pos: -13.309703,-4.647928 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -12.762828,-4.569803 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -12.528453,-4.257303 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -12.965953,-4.772928 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -12.981578,-4.522928 + parent: 1 +- proto: OxygenCanister + entities: + - uid: 504 + components: + - type: Transform + anchored: True + pos: 2.5,-6.5 + parent: 1 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 +- proto: PlasmaCanister + entities: + - uid: 135 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: PlastitaniumWindowIndestructible + entities: + - uid: 45 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 +- proto: PortableGeneratorPacman + entities: + - uid: 439 + components: + - type: Transform + anchored: True + pos: -1.5,-2.5 + parent: 1 + - type: MaterialStorage + storage: + Plasma: 3000 + - type: Physics + bodyType: Static + - type: InsertingMaterialStorage +- proto: PowerCellRecharger + entities: + - uid: 38 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 +- proto: PoweredlightColoredBlack + entities: + - uid: 184 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 349 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + - uid: 371 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 375 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 393 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 1 + - uid: 441 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 1 + - uid: 678 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 1 + - uid: 682 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - uid: 683 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - uid: 741 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 +- proto: PoweredlightColoredRed + entities: + - uid: 671 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 672 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 673 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 674 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 675 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 676 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 677 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 1 +- proto: PoweredlightLED + entities: + - uid: 133 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 1 +- proto: RailingRound + entities: + - uid: 847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 1 + - uid: 848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 1 + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,2.5 + parent: 1 + - uid: 869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + - uid: 888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 +- proto: RandomFoodMeal + entities: + - uid: 766 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - uid: 760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + - uid: 761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - uid: 762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 +- proto: RandomSecurityCorpseSpawner + entities: + - uid: 795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 516 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: Retractor + entities: + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.694208,0.54949987 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.459833,0.51824987 + parent: 1 +- proto: Saw + entities: + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.856578,0.5551965 + parent: 1 +- proto: SawAdvanced + entities: + - uid: 794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.422024,0.56149024 + parent: 1 +- proto: SawImprov + entities: + - uid: 48 + components: + - type: Transform + pos: -13.577937,0.4629314 + parent: 1 +- proto: Scalpel + entities: + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.225458,0.53387487 + parent: 1 +- proto: Screwdriver + entities: + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.210572,0.5087105 + parent: 1 +- proto: ShuttersNormal + entities: + - uid: 11 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 27 + - uid: 12 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 27 + - uid: 13 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 27 + - uid: 14 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 27 + - uid: 15 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 27 + - uid: 18 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 27 + - uid: 155 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 35 + - uid: 157 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 71 + - 101 + - 35 + - uid: 158 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 71 + - 101 + - 35 + - uid: 165 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 71 + - 101 + - 35 + - uid: 166 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 71 + - 101 + - 35 +- proto: ShuttersRadiationOpen + entities: + - uid: 488 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 759 +- proto: SignalButton + entities: + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 18: + - Pressed: Toggle + 15: + - Pressed: Toggle + 14: + - Pressed: Toggle + 13: + - Pressed: Toggle + 12: + - Pressed: Toggle + 11: + - Pressed: Toggle + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 158: + - Pressed: Toggle + 165: + - Pressed: Toggle + 157: + - Pressed: Toggle + 166: + - Pressed: Toggle + - uid: 101 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 166: + - Pressed: Toggle + 157: + - Pressed: Toggle + 158: + - Pressed: Toggle + 165: + - Pressed: Toggle + - uid: 114 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 488: + - Pressed: Toggle +- proto: SignBiohazardMed + entities: + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 +- proto: SignBridge + entities: + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 +- proto: SignDirectionalDorms + entities: + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 1 +- proto: SignDirectionalEng + entities: + - uid: 511 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 +- proto: SignDirectionalMed + entities: + - uid: 509 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: SignElectricalMed + entities: + - uid: 512 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 +- proto: SignRadiationMed + entities: + - uid: 513 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 +- proto: SinkStemless + entities: + - uid: 311 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 445 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 +- proto: SpaceCash10000 + entities: + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.329699,-0.32579374 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -15.298449,-0.21641874 + parent: 1 + - uid: 776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5020578,1.4059272 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 8.370866,3.1107614 + parent: 1 + - uid: 873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5446186,6.2740526 + parent: 1 + - uid: 875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.963622,-6.613129 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: 8.323991,3.2826364 + parent: 1 + - uid: 878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.6270578,1.6246772 + parent: 1 + - uid: 879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.4608125,1.5170114 + parent: 1 +- proto: SpaceCash5000 + entities: + - uid: 872 + components: + - type: Transform + pos: -1.4448197,6.456311 + parent: 1 + - uid: 874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.249184,3.093674 + parent: 1 + - uid: 876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.0560155,-6.427967 + parent: 1 + - uid: 880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.553066,-0.10241544 + parent: 1 +- proto: SpawnMobCleanBot + entities: + - uid: 895 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1 +- proto: SpawnMobExperimentationVictim + entities: + - uid: 58 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 +- proto: SpawnMobSyndicateNavalCaptain + entities: + - uid: 777 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 +- proto: SpawnMobSyndicateNavalEngineer + entities: + - uid: 779 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 +- proto: SpawnMobSyndicateNavalGrenadier + entities: + - uid: 26 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 +- proto: SpawnMobSyndicateNavalMedic + entities: + - uid: 772 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1 +- proto: SpawnMobSyndicateNavalOperator + entities: + - uid: 28 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 782 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 +- proto: SpawnMobSyndicateNavalSaboteur + entities: + - uid: 870 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 +- proto: SpawnMobSyndicateNavalSecondOfficer + entities: + - uid: 778 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 +- proto: Spoon + entities: + - uid: 86 + components: + - type: Transform + pos: -14.006708,0.48699987 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 65 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 21 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 22 + - 23 +- proto: SuitStorageEVASyndicate + entities: + - uid: 40 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 +- proto: SurveillanceCameraMedical + entities: + - uid: 87 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 20 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 1 +- proto: Table + entities: + - uid: 392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 +- proto: TableCounterMetal + entities: + - uid: 525 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + - uid: 373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - uid: 377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 105 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,1.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,0.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 1 + - uid: 817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 1 + - uid: 824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 +- proto: ToiletDirtyWater + entities: + - uid: 293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 47 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 1 +- proto: VendingMachineSyndieContraband + entities: + - uid: 758 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 +- proto: VendingMachineSyndieDrobe + entities: + - uid: 506 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 +- proto: WallInvisibleShip + entities: + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 84 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-3.5 + parent: 1 + - uid: 85 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,3.5 + parent: 1 + - uid: 88 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,3.5 + parent: 1 + - uid: 89 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 93 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 94 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 95 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 96 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 97 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - uid: 98 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 99 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,3.5 + parent: 1 + - uid: 103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,2.5 + parent: 1 + - uid: 108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-5.5 + parent: 1 + - uid: 110 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - uid: 111 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,1.5 + parent: 1 + - uid: 115 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-5.5 + parent: 1 + - uid: 116 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 120 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-4.5 + parent: 1 + - uid: 123 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,3.5 + parent: 1 + - uid: 129 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 130 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 131 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-2.5 + parent: 1 + - uid: 132 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 136 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 137 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 138 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,0.5 + parent: 1 + - uid: 139 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 140 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 141 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 145 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 176 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-6.5 + parent: 1 + - uid: 177 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 182 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 183 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 186 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 187 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 188 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - uid: 189 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 195 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 196 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,-5.5 + parent: 1 + - uid: 198 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,-5.5 + parent: 1 + - uid: 200 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - uid: 201 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-6.5 + parent: 1 + - uid: 202 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-5.5 + parent: 1 + - uid: 203 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 204 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 205 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 206 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 208 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,-4.5 + parent: 1 + - uid: 209 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -18.5,-4.5 + parent: 1 + - uid: 210 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 211 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 233 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 235 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 236 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 238 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 239 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 274 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 275 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 276 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 281 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 295 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 297 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 298 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 299 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 300 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 301 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 302 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 303 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 304 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 305 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 308 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 310 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,4.5 + parent: 1 + - uid: 312 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 313 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 318 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 320 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 321 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 323 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 324 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 327 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 328 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 329 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 330 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 350 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 351 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 352 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 354 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 355 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 356 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 357 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 358 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 365 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 366 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 367 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 368 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 369 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 370 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 437 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 440 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 444 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 786 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 833 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 845 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,6.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 380 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 381 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 385 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 395 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 397 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 399 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 400 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 401 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 409 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 410 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 411 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 412 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 413 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 416 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 417 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - uid: 418 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 419 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-4.5 + parent: 1 + - uid: 420 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 427 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 447 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 448 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 449 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 450 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 458 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 498 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 508 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 517 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 518 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 543 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 544 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 545 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 546 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 547 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 548 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 549 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 660 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 662 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 770 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 780 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 781 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-3.5 + parent: 1 +- proto: WallSilver + entities: + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + - uid: 25 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - uid: 36 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + - uid: 46 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + - uid: 49 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 50 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + - uid: 57 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 64 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 68 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 127 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - uid: 128 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 134 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 1 + - uid: 144 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 1 + - uid: 148 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + - uid: 149 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + - uid: 150 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 1 + - uid: 151 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 1 + - uid: 152 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 1 +- proto: WarningN2 + entities: + - uid: 497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 +- proto: WarningO2 + entities: + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 894 + components: + - type: MetaData + name: Intercepted Syndicate Ship + - type: Transform + pos: -0.5,0.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 529 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: WeaponTurretSyndicate + entities: + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 1 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1 + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 +- proto: WindoorSecure + entities: + - uid: 883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 +- proto: Wirecutter + entities: + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.491822,0.5243355 + parent: 1 +- proto: Wrench + entities: + - uid: 75 + components: + - type: Transform + pos: -14.851197,0.4930855 + parent: 1 +... diff --git a/Resources/Maps/_NF/Bluespace/wizardprobealt.yml b/Resources/Maps/_NF/Bluespace/wizardprobealt.yml new file mode 100644 index 00000000000..6ded9ede7a2 --- /dev/null +++ b/Resources/Maps/_NF/Bluespace/wizardprobealt.yml @@ -0,0 +1,6282 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 46: FloorGlass + 119: FloorWood + 120: FloorWoodTile + 122: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Wizard Federation Probe + - type: Transform + pos: -0.5,-0.50708264 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: eAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAdwAAAAAAeAAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAALgAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAeAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAeAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAeAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAeAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: LgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAAAeAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 999999 + linearDamping: 999999 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + angularDamping: 999999 + linearDamping: 999999 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 18: 0,-28 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 5: -2,-23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 6: -2,-25 + 9: 0,-26 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 15: 2,-16 + 16: 2,-23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 17: 2,-20 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 14: 4,-14 + 19: 0,-17 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 0: 2,-21 + 1: 2,-22 + 8: -2,-24 + 12: 2,-15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 11: -1,-19 + 20: -1,-5 + 21: 0,-5 + 22: 1,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 10: -1,-17 + 23: -1,-3 + 24: 0,-3 + 25: 1,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 2: 0,-23 + 3: 0,-24 + 4: 0,-25 + 7: -2,-24 + 13: 4,-15 + - node: + color: '#F9801DFF' + id: rune1 + decals: + 26: -3,-25 + 27: -3,-24 + 28: -3,-23 + 29: 3,-22 + 30: 3,-21 + 31: 0,-29 + 32: 0,-27 + 33: 3,-15 + - node: + color: '#3AB3DAFF' + id: rune2 + decals: + 34: -3,-1 + 35: 0,0 + - node: + color: '#9D9D97FF' + id: rune4 + decals: + 36: -3,0 + 37: -1,1 + 38: 0,1 + 39: 1,1 + 40: 1,0 + - node: + color: '#3C44AAFF' + id: rune5 + decals: + 42: 1,-23 + - node: + color: '#3C44AAFF' + id: rune6 + decals: + 43: 1,-24 + - node: + color: '#C74EBDFF' + id: rune6 + decals: + 41: 5,-14 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 2047 + 1: 63488 + -1,0: + 0: 3327 + 1: 62208 + 0,1: + 1: 30719 + 0,2: + 1: 4915 + 0,3: + 1: 4369 + 1,0: + 0: 17 + 1: 5096 + 2,0: + 1: 1 + -2,0: + 1: 2275 + -1,1: + 1: 52462 + -1,2: + 1: 2184 + -1,-1: + 1: 18 + 0: 65516 + -1,-4: + 0: 52428 + -1,-3: + 0: 52428 + -1,-2: + 0: 52428 + 0,-4: + 0: 32767 + 1: 32768 + 0,-3: + 0: 30583 + 1: 2048 + 0,-2: + 0: 30583 + 0,-1: + 0: 65527 + 1: 8 + 1,-1: + 1: 16 + 0: 4352 + -1,-5: + 0: 52974 + 1: 8192 + 0,-5: + 0: 65535 + 1,-4: + 0: 65329 + 1: 66 + 1,-3: + 0: 255 + 1: 65280 + 1,-2: + 1: 1647 + 2,-3: + 1: 256 + -1,-7: + 0: 61064 + 1: 64 + -1,-6: + 0: 61166 + -1,-8: + 0: 32772 + 1: 19656 + 0,-8: + 1: 18291 + 0: 12292 + 0,-7: + 0: 65331 + 1: 64 + 0,-6: + 0: 65535 + 1,-5: + 1: 4096 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: apprentice +- proto: AirAlarm + entities: + - uid: 589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 1 + - type: DeviceList + devices: + - 464 + - 770 + - 777 + - type: AtmosDevice + joinedGrid: 1 + - uid: 590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: DeviceList + devices: + - 484 + - 481 + - 688 + - 768 + - 769 + - 779 + - type: AtmosDevice + joinedGrid: 1 + - uid: 591 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - type: DeviceList + devices: + - 457 + - 483 + - 482 + - 455 + - 772 + - 774 + - 775 + - 770 + - 771 + - 688 + - 768 + - 769 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirCanister + entities: + - uid: 197 + components: + - type: Transform + anchored: True + pos: -0.5,-20.5 + parent: 1 + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 +- proto: AirlockMining + entities: + - uid: 505 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-23.5 + parent: 1 + - type: DeviceLinkSink + links: + - 427 + - uid: 566 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-24.5 + parent: 1 + - type: DeviceLinkSink + links: + - 427 + - uid: 567 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-22.5 + parent: 1 + - type: DeviceLinkSink + links: + - 427 +- proto: AirlockShuttleSyndicate + entities: + - uid: 14 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 427: + - DoorStatus: InputA + - uid: 16 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 427: + - DoorStatus: InputA + - uid: 66 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 427: + - DoorStatus: InputA +- proto: AirSensor + entities: + - uid: 777 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 779 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-28.5 + parent: 1 + - uid: 732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-21.5 + parent: 1 + - uid: 733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 86 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 789 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 790 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 794 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 795 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 796 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 811 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 820 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 822 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 823 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 1 + - uid: 834 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 1 + - uid: 840 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 1 + - uid: 845 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 1 + - uid: 848 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 858 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 862 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 863 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 875 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 876 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 878 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 881 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 883 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 884 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 +- proto: BenchSofaLeft + entities: + - uid: 758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSofaMiddle + entities: + - uid: 731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSofaRight + entities: + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BlastDoor + entities: + - uid: 736 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 1 + - type: DeviceLinkSink + links: + - 738 + - uid: 737 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 1 + - type: DeviceLinkSink + links: + - 738 +- proto: Bookshelf + entities: + - uid: 83 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-11.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 56 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 +- proto: CableHV + entities: + - uid: 85 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 +- proto: CableMV + entities: + - uid: 410 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 1 +- proto: CarpetPurple + entities: + - uid: 493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 1 + - uid: 577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 1 + - uid: 612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 1 + - uid: 614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 1 +- proto: CarpetSBlue + entities: + - uid: 553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1 + - uid: 633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 + - uid: 634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 1 + - uid: 635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 + - uid: 636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 1 + - uid: 637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 1 + - uid: 638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 1 +- proto: ChairWood + entities: + - uid: 494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + - uid: 886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 1 + - uid: 887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 +- proto: ClothingBackpackSatchel + entities: + - uid: 647 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 578 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 648 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 593 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 788 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 598 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatRedwizard + entities: + - uid: 597 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 593 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatVioletwizard + entities: + - uid: 582 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 578 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatWizard + entities: + - uid: 599 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 598 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWizard + entities: + - uid: 601 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 598 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWizardRed + entities: + - uid: 594 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 593 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWizardViolet + entities: + - uid: 580 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 578 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesWizard + entities: + - uid: 579 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 578 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 595 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 593 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 600 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 598 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComputerTabletopIFF + entities: + - uid: 2 + components: + - type: MetaData + name: damaged IFF computer + - type: Transform + pos: -0.5,1.5 + parent: 1 +- proto: ComputerTabletopRadar + entities: + - uid: 563 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 521 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: ComputerTabletopSolarControl + entities: + - uid: 569 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: ComputerTabletopSurveillanceCameraMonitor + entities: + - uid: 522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 +- proto: CultAltarSpawner + entities: + - uid: 646 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: DrinkFlask + entities: + - uid: 640 + components: + - type: Transform + pos: -1.7935157,-1.2497914 + parent: 1 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: JuiceWatermelon + Quantity: 30 + - uid: 641 + components: + - type: Transform + pos: -1.4959452,-1.1931343 + parent: 1 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: GreenTea + Quantity: 30 + - uid: 642 + components: + - type: Transform + pos: -1.2125443,-1.27812 + parent: 1 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: JuiceWatermelon + Quantity: 30 +- proto: DrinkMugBlue + entities: + - uid: 645 + components: + - type: Transform + pos: -1.198374,-1.6605561 + parent: 1 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: JuiceCarrot + Quantity: 20 +- proto: DrinkMugMoebius + entities: + - uid: 644 + components: + - type: Transform + pos: -1.4959452,-1.589735 + parent: 1 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: JuiceOrange + Quantity: 20 +- proto: DrinkMugRed + entities: + - uid: 643 + components: + - type: Transform + pos: -1.7651758,-1.6605561 + parent: 1 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: JuiceBanana + Quantity: 20 +- proto: ExplosionTimedRune + entities: + - uid: 596 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 1 +- proto: FaxMachineSyndie + entities: + - uid: 491 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: Firelock + entities: + - uid: 568 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 770 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 1 +- proto: FirelockEdge + entities: + - uid: 908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 1 + - uid: 909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 1 +- proto: FlashRuneTimer + entities: + - uid: 613 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-29.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 448 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 466 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 467 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 468 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 469 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 470 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 471 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 472 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 474 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 475 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 476 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 477 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 478 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 479 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 480 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 531 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 565 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVentPump + entities: + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 484 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 481 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 113 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 398 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 1 +- proto: Grille + entities: + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-18.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-22.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-19.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-23.5 + parent: 1 +- proto: GroundCannabis + entities: + - uid: 891 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: 2.471746,-18.296904 + parent: 1 +- proto: GunSafe + entities: + - uid: 898 + components: + - type: MetaData + name: staff safe + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 901 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Gyroscope + entities: + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 1 +- proto: HappyHonkNukieSnacks + entities: + - uid: 766 + components: + - type: Transform + pos: -1.5921855,-1.6455922 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: -1.2946144,-1.6880853 + parent: 1 +- proto: IgniteRune + entities: + - uid: 899 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 906 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: LampGold + entities: + - uid: 587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.7495174,-12.084604 + parent: 1 +- proto: LockerBooze + entities: + - uid: 578 + components: + - type: MetaData + name: wizard's locker + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 582 + - 580 + - 579 + - 647 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 593 + components: + - type: MetaData + name: wizard's locker + - type: Transform + pos: 3.5,0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 648 + - 595 + - 594 + - 597 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 598 + components: + - type: MetaData + name: wizard's locker + - type: Transform + pos: 2.5,0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 601 + - 788 + - 600 + - 599 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LogicGate + entities: + - uid: 427 + components: + - type: Transform + anchored: True + pos: 0.5,-26.5 + parent: 1 + - type: DeviceLinkSink + links: + - 66 + - 16 + - 14 + - type: DeviceLinkSource + linkedPorts: + 566: + - Output: Open + 505: + - Output: Open + 567: + - Output: Open + - type: Physics + canCollide: False + bodyType: Static +- proto: Mirror + entities: + - uid: 603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 1 +- proto: PlasmaDoor + entities: + - uid: 502 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 574 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 575 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 676 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-17.5 + parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 757 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 759 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 1 +- proto: PoweredlightColoredBlack + entities: + - uid: 602 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 604 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + - uid: 605 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 1 + - uid: 606 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1 + - uid: 607 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - uid: 608 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-22.5 + parent: 1 + - uid: 609 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 649 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 1 +- proto: PoweredLightPostSmall + entities: + - uid: 110 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 +- proto: Railing + entities: + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 123 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 +- proto: RailingRound + entities: + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 +- proto: RandomPainting + entities: + - uid: 780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + - uid: 781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 1 + - uid: 785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 1 +- proto: RandomSnacks + entities: + - uid: 650 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 3 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 1 +- proto: RGBStaff + entities: + - uid: 901 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 898 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShuttersNormal + entities: + - uid: 571 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 572 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 573 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 576 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 585 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 586 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 592 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 610 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 611 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 619 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 651 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 652 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 653 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 654 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 655 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 656 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 657 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 658 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 659 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 660 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 661 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 662 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 663 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 664 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 665 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 666 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 667 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 + - uid: 668 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 670 +- proto: SignalButtonDirectional + entities: + - uid: 669 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - uid: 670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 611: + - Pressed: Toggle + 610: + - Pressed: Toggle + 663: + - Pressed: Toggle + 652: + - Pressed: Toggle + 619: + - Pressed: Toggle + 651: + - Pressed: Toggle + 655: + - Pressed: Toggle + 657: + - Pressed: Toggle + 662: + - Pressed: Toggle + 665: + - Pressed: Toggle + 666: + - Pressed: Toggle + 667: + - Pressed: Toggle + 668: + - Pressed: Toggle + 653: + - Pressed: Toggle + 654: + - Pressed: Toggle + 661: + - Pressed: Toggle + 592: + - Pressed: Toggle + 586: + - Pressed: Toggle + 576: + - Pressed: Toggle + 664: + - Pressed: Toggle + 656: + - Pressed: Toggle + 658: + - Pressed: Toggle + 573: + - Pressed: Toggle + 572: + - Pressed: Toggle + 571: + - Pressed: Toggle + 585: + - Pressed: Toggle + 660: + - Pressed: Toggle + 659: + - Pressed: Toggle + - uid: 738 + components: + - type: MetaData + name: blast door switch + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 736: + - Pressed: Toggle + 737: + - Pressed: Toggle +- proto: SMESBasic + entities: + - uid: 405 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 +- proto: SmokingPipe + entities: + - uid: 889 + components: + - type: Transform + pos: 2.5378072,-18.083633 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 2.7367246,-18.66657 + parent: 1 +- proto: SolarPanel + entities: + - uid: 301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 + - uid: 302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1 + - uid: 304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1 + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + - uid: 308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 1 + - uid: 311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 1 + - uid: 312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + - uid: 316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + - uid: 319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - uid: 320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - uid: 324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 + - uid: 325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + - uid: 329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + - uid: 334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + - uid: 335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + - uid: 344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 1 + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + - uid: 349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + - uid: 351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1 + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 1 + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 1 + - uid: 362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 1 + - uid: 364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 1 + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 1 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 1 +- proto: SolarTracker + entities: + - uid: 300 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 +- proto: SpawnMobWizFedWizard + entities: + - uid: 746 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 +- proto: SpawnMobWizFedWizardBlueHardsuit + entities: + - uid: 735 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: SpawnMobWizFedWizardRedHardsuit + entities: + - uid: 743 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 +- proto: SpawnMobWizFedWizardSoap + entities: + - uid: 742 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1 +- proto: SpawnMobWizFedWizardSoapHardsuit + entities: + - uid: 745 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: SpawnMobWizFedWizardVioletHardsuit + entities: + - uid: 741 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 +- proto: StunRune + entities: + - uid: 581 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-21.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 675 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 +- proto: SurveillanceCameraGeneral + entities: + - uid: 683 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 1 + - uid: 686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-29.5 + parent: 1 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 687 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 1 +- proto: TableCarpet + entities: + - uid: 583 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1 + - uid: 888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 +- proto: TableWood + entities: + - uid: 489 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 203 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-29.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-31.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-31.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-31.5 + parent: 1 +- proto: UraniumSecretDoor + entities: + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-28.5 + parent: 1 + - uid: 672 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-26.5 + parent: 1 + - uid: 692 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 +- proto: WallUranium + entities: + - uid: 48 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 51 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 52 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 53 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 54 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 57 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 58 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 59 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 60 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 61 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 62 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 63 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 64 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 65 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 67 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 68 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 71 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 72 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 73 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 74 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 75 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 76 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 77 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 78 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 79 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 80 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-13.5 + parent: 1 + - uid: 90 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 91 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 92 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 93 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 94 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 95 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 96 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,-14.5 + parent: 1 + - uid: 98 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-13.5 + parent: 1 + - uid: 99 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 100 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 101 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-25.5 + parent: 1 + - uid: 102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 103 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-17.5 + parent: 1 + - uid: 104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-20.5 + parent: 1 + - uid: 108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 109 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,-13.5 + parent: 1 + - uid: 111 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 186 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-19.5 + parent: 1 + - uid: 187 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-24.5 + parent: 1 + - uid: 188 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-21.5 + parent: 1 + - uid: 189 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-25.5 + parent: 1 + - uid: 190 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-25.5 + parent: 1 + - uid: 191 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,-25.5 + parent: 1 + - uid: 192 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-25.5 + parent: 1 + - uid: 193 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-25.5 + parent: 1 + - uid: 194 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-26.5 + parent: 1 + - uid: 199 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-26.5 + parent: 1 + - uid: 200 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-27.5 + parent: 1 + - uid: 201 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-27.5 + parent: 1 + - uid: 396 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 399 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-28.5 + parent: 1 + - uid: 400 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,-28.5 + parent: 1 + - uid: 403 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 406 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-21.5 + parent: 1 + - uid: 434 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-21.5 + parent: 1 + - uid: 497 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 498 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 499 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-21.5 + parent: 1 +- proto: WallUraniumDiagonal + entities: + - uid: 673 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 1 + - uid: 690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 1 + - uid: 691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-16.5 + parent: 1 + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 1 + - uid: 739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-26.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 903 + components: + - type: MetaData + name: Wizard Federation Probe + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 756 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 +- proto: WoodenSupportBeam + entities: + - uid: 734 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 +... diff --git a/Resources/Maps/_NF/Outpost/frontier.yml b/Resources/Maps/_NF/Outpost/frontier.yml index baa4b9710f3..6d116da092f 100644 --- a/Resources/Maps/_NF/Outpost/frontier.yml +++ b/Resources/Maps/_NF/Outpost/frontier.yml @@ -12,172 +12,160 @@ tilemap: 46: FloorGlass 63: FloorLino 65: FloorMetalDiamond - 82: FloorShuttleBlue - 90: FloorSteel - 97: FloorSteelDirty - 100: FloorSteelMini - 101: FloorSteelMono - 102: FloorSteelOffset - 103: FloorSteelPavement - 104: FloorSteelPavementVertical - 105: FloorTechMaint - 106: FloorTechMaint2 - 109: FloorWhite - 116: FloorWhitePavement - 119: FloorWood - 121: Lattice - 122: Plating + 83: FloorShuttleBlue + 92: FloorSteel + 99: FloorSteelDirty + 102: FloorSteelMini + 103: FloorSteelMono + 104: FloorSteelOffset + 105: FloorSteelPavement + 106: FloorSteelPavementVertical + 107: FloorTechMaint + 108: FloorTechMaint2 + 111: FloorWhite + 115: FloorWhiteMini + 118: FloorWhitePavement + 121: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: - - uid: 1578 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: Parallax - parallax: FrontierStation - - type: LoadedMap - - type: GridTree - - type: MovedGrids - uid: 2173 components: - type: MetaData - type: Transform pos: 0.121950805,-0.15609694 - parent: 1578 + parent: invalid - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: aAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAACaQAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAABaQAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAACaQAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAABaQAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAADaQAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAZgAAAAAAHgAAAAAAHgAAAAADHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAHgAAAAADHgAAAAAAHgAAAAADegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABHgAAAAADHgAAAAABLgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAABLgAAAAADHgAAAAABLgAAAAADHgAAAAABLgAAAAABHgAAAAACHgAAAAABWgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACegAAAAAAAAAAAAAAegAAAAAAHgAAAAACLgAAAAADHgAAAAAALgAAAAABHgAAAAABLgAAAAABHgAAAAABHgAAAAABZgAAAAAAZgAAAAAAHgAAAAAALgAAAAAAHgAAAAADegAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADWgAAAAAAZgAAAAAAHgAAAAAAHgAAAAADHgAAAAACegAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAABegAAAAAAWgAAAAADHgAAAAACLgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAACLgAAAAACLgAAAAACHgAAAAACWgAAAAADaQAAAAAAHgAAAAACHgAAAAAAHgAAAAABaQAAAAAAHgAAAAACHgAAAAAAHgAAAAACaQAAAAAAHgAAAAABHgAAAAAALgAAAAABHgAAAAACHgAAAAACLgAAAAAB + tiles: agAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACawAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAABawAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAACawAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAADXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAABawAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAADawAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAaAAAAAAAHgAAAAAAHgAAAAADHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAHgAAAAADHgAAAAAAHgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABHgAAAAADHgAAAAABLgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAABLgAAAAADHgAAAAABLgAAAAADHgAAAAABLgAAAAABHgAAAAACHgAAAAABXAAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAACLgAAAAADHgAAAAAALgAAAAABHgAAAAABLgAAAAABHgAAAAABHgAAAAABaAAAAAAAaAAAAAAAHgAAAAAALgAAAAAAHgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADXAAAAAAAaAAAAAAAHgAAAAAAHgAAAAADHgAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAABfQAAAAAAXAAAAAADHgAAAAACLgAAAAADHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAACLgAAAAACLgAAAAACHgAAAAACXAAAAAADawAAAAAAHgAAAAACHgAAAAAAHgAAAAABawAAAAAAHgAAAAACHgAAAAAAHgAAAAACawAAAAAAHgAAAAABHgAAAAAALgAAAAABHgAAAAACHgAAAAACLgAAAAAB version: 6 -1,0: ind: -1,0 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAABegAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAABWgAAAAADegAAAAAAaQAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABaQAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABaQAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAACaQAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAACaQAAAAAAWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAABaQAAAAAAWgAAAAABWgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAADZgAAAAAAWgAAAAADZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAACZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADLgAAAAAAHgAAAAAAHgAAAAACWgAAAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACWgAAAAACWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACLgAAAAABHgAAAAABZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAABZgAAAAAAWgAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAALgAAAAADHgAAAAAAWgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAZwAAAAABaQAAAAAAHgAAAAAAHgAAAAADHgAAAAADaQAAAAAAWgAAAAADWgAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAagAAAAABfQAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAABXAAAAAADfQAAAAAAawAAAAAAfQAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAABawAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAABawAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAACawAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAACawAAAAAAXAAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAABawAAAAAAXAAAAAABXAAAAAABAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAACHgAAAAADaAAAAAAAXAAAAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAACHgAAAAACaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADLgAAAAAAHgAAAAAAHgAAAAACXAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACXAAAAAACXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACLgAAAAABHgAAAAABaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAABaAAAAAAAXAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAALgAAAAADHgAAAAAAXAAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAaQAAAAABawAAAAAAHgAAAAAAHgAAAAADHgAAAAADawAAAAAAXAAAAAADXAAAAAAA version: 6 1,0: ind: 1,0 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAACaQAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAAAaQAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABaQAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAACaQAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAADaQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAaQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAABHwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAACXAAAAAADXAAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAACawAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAAAawAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABawAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAACXAAAAAACXAAAAAACXAAAAAAAXAAAAAACawAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAHgAAAAADHgAAAAADawAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAawAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAHgAAAAACHgAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAHgAAAAACHgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAABHwAAAAAAUwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAACHgAAAAADfQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: egAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAACaQAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADaQAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAADWgAAAAACaQAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAACaQAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAADegAAAAAAWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAACaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAA + tiles: fQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAACawAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAADawAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAADXAAAAAACawAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAACawAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAADfQAAAAAAXAAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAABXAAAAAACawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAACHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAACHgAAAAABHgAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: egAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAADegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAXAAAAAADXAAAAAABXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADXAAAAAACXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAADXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAABXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAABXAAAAAADfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaAAAAAABaAAAAAAAaAAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAWgAAAAADWgAAAAABWgAAAAABaQAAAAAAZwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAWgAAAAABWgAAAAAAWgAAAAABaQAAAAAAZwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAWgAAAAABWgAAAAACWgAAAAADaQAAAAAAZwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAagAAAAABagAAAAAAagAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAXAAAAAADXAAAAAABXAAAAAABawAAAAAAaQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAXAAAAAABXAAAAAAAXAAAAAABawAAAAAAaQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAXAAAAAABXAAAAAACXAAAAAADawAAAAAAaQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAABXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACegAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADXAAAAAABXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAACfQAAAAAAfAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaAAAAAADaAAAAAAAaAAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAADaQAAAAAAWgAAAAABWgAAAAADWgAAAAAAaQAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAABaQAAAAAAWgAAAAAAWgAAAAADWgAAAAACaQAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAADaQAAAAAAWgAAAAACWgAAAAABWgAAAAABaQAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAACegAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAagAAAAADagAAAAAAagAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAADawAAAAAAXAAAAAABXAAAAAADXAAAAAAAawAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAABawAAAAAAXAAAAAAAXAAAAAADXAAAAAACawAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAADawAAAAAAXAAAAAACXAAAAAABXAAAAAABawAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAADXAAAAAACXAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAAAXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAADXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAADXAAAAAACfQAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABegAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAACbQAAAAABaQAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABbQAAAAAAaQAAAAAAWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAACWgAAAAABWgAAAAABWgAAAAADbQAAAAACaQAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADbQAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAABegAAAAAAWgAAAAAAWgAAAAACbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAWgAAAAADWgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAZQAAAAABWgAAAAAAbQAAAAAAaQAAAAAAbQAAAAAAbQAAAAADegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAADWgAAAAABbQAAAAACaQAAAAAAIgAAAAABIgAAAAADIgAAAAADegAAAAAAaQAAAAAAWgAAAAABWgAAAAACaQAAAAAAegAAAAAAIwAAAAABIwAAAAACIwAAAAAAWgAAAAABWgAAAAACegAAAAAAegAAAAAAIgAAAAAAIgAAAAAAIgAAAAADegAAAAAAaQAAAAAAWgAAAAADWgAAAAABaQAAAAAAegAAAAAAIwAAAAACIwAAAAAAIwAAAAABWgAAAAAAWgAAAAACHgAAAAAAegAAAAAAIgAAAAADIgAAAAADIgAAAAACegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAIwAAAAADIwAAAAACIwAAAAABWgAAAAACWgAAAAADHgAAAAAAegAAAAAAIgAAAAABIgAAAAADIgAAAAABegAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAABHgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAABHgAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAaQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAbQAAAAABegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAABfQAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAABXAAAAAABXAAAAAACbwAAAAABawAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABbwAAAAAAawAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAABXAAAAAADbwAAAAACawAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADbwAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAABfQAAAAAAXAAAAAAAXAAAAAACbwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAXAAAAAADXAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAZwAAAAABXAAAAAAAbwAAAAAAawAAAAAAbwAAAAAAbwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZwAAAAADXAAAAAABbwAAAAACawAAAAAAIgAAAAABIgAAAAADIgAAAAADfQAAAAAAawAAAAAAXAAAAAABXAAAAAACawAAAAAAfQAAAAAAIwAAAAABIwAAAAACIwAAAAAAXAAAAAABXAAAAAACfQAAAAAAfQAAAAAAIgAAAAAAIgAAAAAAIgAAAAADfQAAAAAAawAAAAAAXAAAAAADXAAAAAABawAAAAAAfQAAAAAAIwAAAAACIwAAAAAAIwAAAAABXAAAAAAAXAAAAAACHgAAAAAAfQAAAAAAIgAAAAADIgAAAAADIgAAAAACfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAIwAAAAADIwAAAAACIwAAAAABXAAAAAACXAAAAAADHgAAAAAAfQAAAAAAIgAAAAABIgAAAAADIgAAAAABfQAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAABHgAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAABHgAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAawAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAbwAAAAABfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAZwAAAAADaQAAAAAAWgAAAAACWgAAAAADWgAAAAABaQAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAABbQAAAAACbQAAAAADbQAAAAABbQAAAAACAAAAAAAAegAAAAAAZwAAAAAAaQAAAAAAWgAAAAACWgAAAAABWgAAAAADaQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAADbQAAAAACbQAAAAAAHgAAAAABbQAAAAACAAAAAAAAegAAAAAAZwAAAAAAaQAAAAAAWgAAAAADWgAAAAAAWgAAAAACaQAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAACHgAAAAACHgAAAAABHgAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAADbQAAAAACHgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAAAbQAAAAAAHgAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAABHgAAAAABHgAAAAACHgAAAAAAbQAAAAAAbQAAAAAAbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAACbQAAAAABHgAAAAABbQAAAAACbQAAAAADbQAAAAACbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALQAAAAAALQAAAAAAbQAAAAABbQAAAAADegAAAAAAHgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAADHgAAAAABHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALQAAAAAALQAAAAAAbQAAAAADbQAAAAAAHgAAAAADHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAACbQAAAAAAHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALQAAAAAALQAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAAD + tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAaQAAAAADawAAAAAAXAAAAAACXAAAAAADXAAAAAABawAAAAAAbwAAAAABbwAAAAACbwAAAAABbwAAAAABbwAAAAACbwAAAAADbwAAAAABbwAAAAACAAAAAAAAfQAAAAAAaQAAAAAAawAAAAAAXAAAAAACXAAAAAABXAAAAAADawAAAAAAbwAAAAABbwAAAAACbwAAAAADbwAAAAADbwAAAAACbwAAAAAAHgAAAAABbwAAAAACAAAAAAAAfQAAAAAAaQAAAAAAawAAAAAAXAAAAAADXAAAAAAAXAAAAAACawAAAAAAbwAAAAAAbwAAAAABbwAAAAAAbwAAAAABbwAAAAACHgAAAAACHgAAAAABHgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAADbwAAAAAAbwAAAAACbwAAAAADbwAAAAACHgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAHgAAAAAAbwAAAAACbwAAAAABbwAAAAABbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAABHgAAAAABHgAAAAACHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAACbwAAAAABHgAAAAABbwAAAAACbwAAAAADbwAAAAACbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAADbwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAAbwAAAAABbwAAAAADfQAAAAAAHgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAABbwAAAAADHgAAAAABHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAAbwAAAAADbwAAAAAAHgAAAAADHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAABbwAAAAACbwAAAAAAHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAACbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAAD version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaAAAAAAAaAAAAAAAaAAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAagAAAAAAagAAAAAAagAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAIwAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAABXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAIgAAAAAAfQAAAAAA version: 6 3,0: ind: 3,0 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAAAaQAAAAAAWgAAAAADWgAAAAACWgAAAAADaQAAAAAAZwAAAAADegAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADaQAAAAAAWgAAAAAAWgAAAAAAWgAAAAADaQAAAAAAZwAAAAACegAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAaQAAAAAAWgAAAAACWgAAAAADWgAAAAACaQAAAAAAZwAAAAADegAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAADegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAAAawAAAAAAXAAAAAADXAAAAAACXAAAAAADawAAAAAAaQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADawAAAAAAXAAAAAAAXAAAAAAAXAAAAAADawAAAAAAaQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAawAAAAAAXAAAAAACXAAAAAADXAAAAAACawAAAAAAaQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAADfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaAAAAAABaAAAAAABaAAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAagAAAAABagAAAAABagAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: WgAAAAACaQAAAAAAHgAAAAABHgAAAAADHgAAAAACaQAAAAAAHgAAAAAAHgAAAAABHgAAAAACaQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAWgAAAAADaQAAAAAAHgAAAAADLgAAAAAAHgAAAAACegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAWgAAAAABaQAAAAAAHgAAAAACHgAAAAAAHgAAAAABegAAAAAAHgAAAAACHgAAAAADHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAACWgAAAAABZQAAAAADWgAAAAACWgAAAAADegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAZQAAAAABWgAAAAACWgAAAAAAZQAAAAACWgAAAAABWgAAAAACegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAADegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAABWgAAAAABaQAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACaQAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAWgAAAAABZQAAAAABZQAAAAABZQAAAAACZQAAAAABZQAAAAAAWgAAAAADWgAAAAADWgAAAAADaQAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAADaQAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAABaQAAAAAAWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAABaQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAABaQAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAACawAAAAAAHgAAAAABHgAAAAADHgAAAAACawAAAAAAHgAAAAAAHgAAAAABHgAAAAACawAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAXAAAAAADawAAAAAAHgAAAAADLgAAAAAAHgAAAAACfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAXAAAAAABawAAAAAAHgAAAAACHgAAAAAAHgAAAAABfQAAAAAAHgAAAAACHgAAAAADHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAACHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAZwAAAAAAXAAAAAACXAAAAAABZwAAAAADXAAAAAACXAAAAAADfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAXAAAAAACXAAAAAAAZwAAAAACXAAAAAABXAAAAAACfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAAAXAAAAAADfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAXAAAAAABXAAAAAABawAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAABfQAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABXAAAAAACawAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAfQAAAAAAXAAAAAABZwAAAAABZwAAAAABZwAAAAACZwAAAAABZwAAAAAAXAAAAAADXAAAAAADXAAAAAADawAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAADawAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAABawAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAABawAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAABawAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAZwAAAAACaQAAAAAAHgAAAAABHgAAAAACHgAAAAADaQAAAAAAWgAAAAABWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADLgAAAAACHgAAAAADaQAAAAAAWgAAAAACWgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAAAaQAAAAAAWgAAAAAAWgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAAAegAAAAAAWgAAAAABWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAACegAAAAAAWgAAAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAACegAAAAAAWgAAAAADWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAABegAAAAAAWgAAAAACWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAAAegAAAAAAWgAAAAADWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAaQAAAAAAWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAADWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAABWgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAaQAAAAACawAAAAAAHgAAAAABHgAAAAACHgAAAAADawAAAAAAXAAAAAABXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAADLgAAAAACHgAAAAADawAAAAAAXAAAAAACXAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAAAawAAAAAAXAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAABHgAAAAAAfQAAAAAAXAAAAAABXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAABHgAAAAACfQAAAAAAXAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAACfQAAAAAAXAAAAAADXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAABHgAAAAABfQAAAAAAXAAAAAACXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAACHgAAAAAAfQAAAAAAXAAAAAADXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAawAAAAAAXAAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAXAAAAAADXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfQAAAAAAXAAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAABXAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: egAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: HgAAAAADHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAZQAAAAABZQAAAAAAZQAAAAADZQAAAAACZQAAAAAAZQAAAAACZQAAAAABZQAAAAACZQAAAAACZQAAAAADZQAAAAABZQAAAAACZQAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAADZQAAAAAAWgAAAAACZQAAAAAAWgAAAAADZQAAAAAAWgAAAAADZQAAAAADWgAAAAAAZQAAAAADWgAAAAACZQAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaAAAAAACegAAAAAAaAAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAADHgAAAAABfQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAZwAAAAABZwAAAAAAZwAAAAADZwAAAAACZwAAAAAAZwAAAAACZwAAAAABZwAAAAACZwAAAAACZwAAAAADZwAAAAABZwAAAAACZwAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAADZwAAAAAAXAAAAAACZwAAAAAAXAAAAAADZwAAAAAAXAAAAAADZwAAAAADXAAAAAAAZwAAAAADXAAAAAACZwAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAagAAAAACfQAAAAAAagAAAAACfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: WgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAACWgAAAAACIwAAAAABIwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAAAWgAAAAACIwAAAAABIwAAAAABegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAADegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAAAIwAAAAABZQAAAAAAWgAAAAADWgAAAAADWgAAAAABegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADIwAAAAADZQAAAAABWgAAAAACWgAAAAACWgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAADIwAAAAADZQAAAAABWgAAAAAAWgAAAAADWgAAAAADegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAADIwAAAAACZQAAAAAAWgAAAAABWgAAAAAAWgAAAAABegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAAAIwAAAAAAZQAAAAACWgAAAAABWgAAAAABWgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAADegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAABXAAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAACXAAAAAACIwAAAAABIwAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAXAAAAAACIwAAAAABIwAAAAABfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAACXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAABXAAAAAADfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAAAIwAAAAABZwAAAAAAXAAAAAADXAAAAAADXAAAAAABfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADIwAAAAADZwAAAAABXAAAAAACXAAAAAACXAAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAADIwAAAAADZwAAAAABXAAAAAAAXAAAAAADXAAAAAADfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAADIwAAAAACZwAAAAAAXAAAAAABXAAAAAAAXAAAAAABfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAAAIwAAAAAAZwAAAAACXAAAAAABXAAAAAABXAAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAABXAAAAAADfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAWgAAAAADZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAACWgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAAAWgAAAAAAZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAADZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAWgAAAAABWgAAAAACZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAADXAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAXAAAAAABXAAAAAACXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAADZwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAACXAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAXAAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAADZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAABXAAAAAACZwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAAA version: 6 2,1: ind: 2,1 - tiles: ZAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAZAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAaQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAZAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAaQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACaQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAAAaQAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAABaQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAIgAAAAAAfQAAAAAAZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAZgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAawAAAAAAawAAAAAAawAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAawAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAawAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACawAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAAAawAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAABawAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: WgAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADegAAAAAAegAAAAAAYQAAAAAAegAAAAAAYQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAAAaQAAAAAAWgAAAAAAWgAAAAADWgAAAAACaQAAAAAAZwAAAAACegAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABaQAAAAAAWgAAAAADWgAAAAACWgAAAAABaQAAAAAAZwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADaQAAAAAAWgAAAAAAWgAAAAABWgAAAAACaQAAAAAAZwAAAAADegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaAAAAAADaAAAAAAAaAAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADfQAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAawAAAAAAXAAAAAAAXAAAAAADXAAAAAACawAAAAAAaQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABawAAAAAAXAAAAAADXAAAAAACXAAAAAABawAAAAAAaQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAADawAAAAAAXAAAAAAAXAAAAAABXAAAAAACawAAAAAAaQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAagAAAAADagAAAAAAagAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 0,3: ind: 0,3 - tiles: WgAAAAAAZQAAAAADZQAAAAAAZQAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAADegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABZQAAAAACZQAAAAADZQAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAADWgAAAAACZQAAAAAAWgAAAAACWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAZQAAAAADWgAAAAACWgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAADaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAACaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAZQAAAAACWgAAAAADWgAAAAABaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XAAAAAAAZwAAAAADZwAAAAAAZwAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAAAXAAAAAADfQAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABZwAAAAACZwAAAAADZwAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAACfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAABXAAAAAABfQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAACXAAAAAADXAAAAAACZwAAAAAAXAAAAAACXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAZwAAAAADXAAAAAACXAAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAADawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAACXAAAAAACawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAZwAAAAACXAAAAAADXAAAAAABawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: egAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAIgAAAAACaQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAIgAAAAADegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAIgAAAAACawAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAIgAAAAADfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALQAAAAAALQAAAAAAbQAAAAADbQAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAAAaQAAAAAAIgAAAAADIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALQAAAAAALQAAAAAAbQAAAAADbQAAAAACegAAAAAAIgAAAAADIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAAbwAAAAADbwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAABbwAAAAAAawAAAAAAIgAAAAADIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALQAAAAAALQAAAAAAbwAAAAADbwAAAAACfQAAAAAAIgAAAAADIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -559,22 +547,23 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2738: 32,18 + 2641: 32,18 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2713: 27,18 + 2618: 27,18 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2740: 32,16 + 2654: 32,15 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2714: 27,16 + 2619: 27,16 + 2655: 31,15 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN @@ -586,6 +575,11 @@ entities: 385: 27,21 1576: 23,21 1577: 21,21 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 2656: 31,16 - node: color: '#52B4E996' id: BrickTileSteelLineE @@ -607,7 +601,8 @@ entities: decals: 2033: 0,11 2034: 0,10 - 2739: 32,17 + 2642: 32,17 + 2653: 32,16 - node: color: '#52B4E9FF' id: BrickTileSteelLineN @@ -623,21 +618,33 @@ entities: 560: -55,8 580: -49,15 581: -50,15 + - node: + color: '#FF5C5CFF' + id: BrickTileSteelLineN + decals: + 2710: 37,20 + 2711: 36,20 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2716: 28,18 - 2717: 29,18 - 2718: 30,18 - 2741: 31,18 + 2621: 28,18 + 2622: 29,18 + 2623: 30,18 + 2643: 31,18 + - node: + color: '#FF5C5CFF' + id: BrickTileSteelLineS + decals: + 2712: 37,20 + 2713: 36,20 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 2719: 28,16 - 2720: 29,16 - 2721: 30,16 + 2624: 28,16 + 2625: 29,16 + 2626: 30,16 - node: color: '#52B4E9FF' id: BrickTileSteelLineW @@ -658,25 +665,29 @@ entities: 155: -3,42 2025: -2,10 2032: -2,11 - 2715: 27,17 + 2620: 27,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: 189: -48,18 686: -44,11 + 2686: 5,23 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: 187: -50,18 684: -46,11 + 2690: 3,23 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: 186: -48,17 679: -44,8 + 2687: 5,20 + 2689: 5,20 - node: color: '#A4610696' id: BrickTileWhiteCornerSw @@ -688,6 +699,7 @@ entities: decals: 188: -50,17 681: -46,8 + 2688: 3,20 - node: color: '#52DFC4DB' id: BrickTileWhiteInnerNe @@ -763,6 +775,8 @@ entities: decals: 687: -44,10 688: -44,9 + 2695: 5,21 + 2696: 5,22 - node: color: '#9FED5896' id: BrickTileWhiteLineN @@ -782,12 +796,6 @@ entities: 307: 16,16 308: 17,16 314: 7,16 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteLineN - decals: - 2528: 39,7 - 2529: 40,7 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -814,6 +822,7 @@ entities: decals: 191: -49,18 685: -45,11 + 2692: 4,23 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -847,8 +856,6 @@ entities: decals: 269: 8,12 270: 9,12 - 2526: 39,7 - 2527: 40,7 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -866,6 +873,7 @@ entities: decals: 190: -49,17 680: -45,8 + 2691: 4,20 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -913,6 +921,8 @@ entities: decals: 682: -46,9 683: -46,10 + 2693: 3,21 + 2694: 3,22 - node: color: '#9FED580F' id: CheckerNESW @@ -1132,10 +1142,8 @@ entities: color: '#FFFFFFFF' id: Dirt decals: - 2603: 42,18 - 2624: 35,8 - 2625: 35,7 - 2641: 39,8 + 2549: 35,7 + 2728: 43,18 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -1496,88 +1504,84 @@ entities: 2476: -50,3 2477: -53,6 2478: -52,6 - 2593: 36,23 - 2594: 37,22 - 2595: 37,21 - 2596: 36,20 - 2604: 41,18 - 2605: 40,17 - 2606: 41,16 - 2607: 40,16 - 2608: 40,15 - 2609: 43,16 - 2610: 43,15 - 2611: 44,16 - 2612: 45,17 - 2613: 45,18 - 2614: 44,17 - 2615: 44,16 - 2616: 45,15 - 2617: 46,15 - 2618: 46,17 - 2619: 45,18 - 2626: 36,8 - 2627: 36,7 - 2628: 37,8 - 2629: 37,7 - 2630: 36,9 - 2642: 40,8 - 2643: 39,6 - 2644: 45,7 - 2645: 44,9 - 2646: 45,8 - 2647: 46,9 - 2648: 47,8 - 2649: 42,9 - 2650: 43,8 - 2651: 47,10 - 2652: 48,8 - 2653: 26,9 - 2661: 34,21 - 2662: 34,22 - 2663: 32,23 - 2664: 34,23 - 2665: 40,23 - 2666: 39,23 - 2667: 39,22 - 2668: 40,22 - 2669: 45,22 - 2670: 47,22 - 2671: 41,22 - 2672: 42,22 - 2673: 49,22 - 2674: 52,22 - 2675: 53,23 - 2676: 52,23 - 2677: 43,6 - 2678: 46,6 - 2679: 46,6 - 2680: 48,6 - 2681: 47,6 - 2682: 42,6 - 2683: 39,5 - 2684: 37,5 - 2685: 35,5 - 2686: 33,5 - 2687: 31,5 - 2688: 28,5 - 2689: 50,3 - 2690: 51,3 - 2691: 53,3 - 2692: 54,3 - 2693: 56,3 - 2694: 57,3 - 2695: 46,4 - 2696: 47,3 - 2697: 45,6 - 2698: 20,22 - 2722: 27,18 - 2723: 28,18 - 2724: 29,18 - 2725: 29,17 - 2726: 28,16 - 2727: 30,16 - 2728: 30,18 + 2531: 36,23 + 2532: 37,21 + 2533: 36,20 + 2540: 40,17 + 2541: 41,16 + 2542: 40,16 + 2543: 43,16 + 2544: 44,16 + 2545: 45,17 + 2546: 44,17 + 2547: 44,16 + 2550: 36,9 + 2556: 45,7 + 2557: 44,9 + 2558: 45,8 + 2559: 46,9 + 2560: 47,8 + 2561: 42,9 + 2562: 43,8 + 2563: 47,10 + 2564: 48,8 + 2565: 26,9 + 2573: 34,21 + 2574: 34,22 + 2575: 32,23 + 2576: 34,23 + 2577: 40,23 + 2578: 39,23 + 2579: 40,22 + 2580: 45,22 + 2581: 47,22 + 2582: 41,22 + 2583: 42,22 + 2584: 49,22 + 2585: 52,22 + 2586: 53,23 + 2587: 52,23 + 2588: 43,6 + 2589: 46,6 + 2590: 46,6 + 2591: 48,6 + 2592: 47,6 + 2593: 42,6 + 2594: 50,3 + 2595: 51,3 + 2596: 53,3 + 2597: 54,3 + 2598: 56,3 + 2599: 57,3 + 2600: 46,4 + 2601: 47,3 + 2602: 45,6 + 2603: 20,22 + 2627: 27,18 + 2628: 28,18 + 2629: 29,18 + 2630: 29,17 + 2631: 28,16 + 2632: 30,16 + 2633: 30,18 + 2659: 32,16 + 2660: 31,16 + 2661: 28,18 + 2662: 28,18 + 2729: 43,17 + 2730: 38,17 + 2749: 38,5 + 2750: 40,5 + 2786: 45,15 + 2787: 42,15 + 2788: 41,15 + 2789: 44,15 + 2790: 43,15 + 2791: 45,15 + 2792: 45,16 + 2793: 37,17 + 2794: 36,18 + 2795: 37,18 - node: cleanable: True zIndex: 180 @@ -1989,8 +1993,21 @@ entities: 2447: -14,2 2448: -14,4 2449: -13,2 - 2743: 31,17 - 2744: 32,18 + 2645: 31,17 + 2646: 32,18 + 2657: 32,15 + 2658: 31,15 + 2731: 39,17 + 2732: 38,18 + 2733: 36,17 + 2746: 33,5 + 2747: 35,5 + 2748: 37,5 + 2796: 38,18 + 2797: 36,17 + 2798: 37,17 + 2799: 37,22 + 2800: 36,22 - node: cleanable: True zIndex: 180 @@ -2548,34 +2565,53 @@ entities: 2451: -13,4 2452: -11,2 2453: -12,2 - 2597: 36,21 - 2598: 37,20 - 2599: 36,19 - 2600: 37,19 - 2601: 37,18 - 2602: 37,17 - 2620: 39,17 - 2621: 39,16 - 2622: 40,15 - 2623: 40,17 - 2634: 36,10 - 2635: 37,11 - 2636: 39,10 - 2637: 40,9 - 2638: 39,9 - 2639: 39,7 - 2640: 40,7 - 2654: 24,9 - 2655: 7,20 - 2656: 31,20 - 2657: 32,21 - 2658: 32,22 - 2659: 33,23 - 2660: 33,22 - 2729: 28,17 - 2730: 28,17 - 2731: 27,16 - 2742: 32,17 + 2534: 36,21 + 2535: 37,20 + 2536: 36,19 + 2537: 37,19 + 2538: 37,18 + 2539: 37,17 + 2548: 40,17 + 2554: 39,10 + 2555: 39,9 + 2566: 24,9 + 2567: 7,20 + 2568: 31,20 + 2569: 32,21 + 2570: 32,22 + 2571: 33,23 + 2572: 33,22 + 2634: 28,17 + 2635: 28,17 + 2636: 27,16 + 2644: 32,17 + 2734: 36,18 + 2736: 45,16 + 2737: 37,25 + 2738: 46,25 + 2739: 43,22 + 2740: 41,5 + 2741: 39,5 + 2742: 36,5 + 2743: 34,5 + 2744: 32,5 + 2745: 28,5 + 2801: 39,22 + 2802: 40,22 + 2803: 42,22 + 2804: 43,22 + 2805: 37,22 + 2806: 36,22 + 2807: 38,23 + 2808: 38,25 + 2809: 38,26 + 2810: 40,8 + 2811: 38,8 + 2812: 39,8 + 2813: 40,8 + 2814: 40,11 + 2815: 40,10 + 2816: 37,11 - node: cleanable: True zIndex: 180 @@ -2858,13 +2894,12 @@ entities: 2460: -12,1 2461: -13,4 2462: -13,5 - 2631: 37,10 - 2632: 38,9 - 2633: 38,10 - 2745: 31,18 - 2746: 32,16 - 2747: 31,16 - 2748: 32,17 + 2551: 37,10 + 2552: 38,9 + 2553: 38,10 + 2647: 31,18 + 2648: 32,17 + 2735: 42,16 - node: cleanable: True zIndex: 180 @@ -2992,28 +3027,46 @@ entities: decals: 2122: 5,42 2123: 5,46 + - node: + color: '#4B709CFF' + id: MiniTileCheckerAOverlay + decals: + 2663: 3,23 + 2664: 4,23 + 2665: 5,23 + 2666: 5,22 + 2667: 4,22 + 2668: 3,22 + 2669: 3,21 + 2670: 4,21 + 2671: 5,21 + 2672: 5,20 + 2673: 4,20 + 2674: 3,20 - node: color: '#9FED5896' id: MiniTileCheckerAOverlay decals: - 2701: 27,18 - 2702: 27,17 - 2703: 27,16 - 2704: 28,16 - 2705: 28,17 - 2706: 28,18 - 2707: 29,18 - 2708: 29,17 - 2709: 29,16 - 2710: 30,16 - 2711: 30,17 - 2712: 30,18 - 2732: 31,17 - 2733: 31,18 - 2734: 32,18 - 2735: 32,17 - 2736: 32,16 - 2737: 31,16 + 2606: 27,18 + 2607: 27,17 + 2608: 27,16 + 2609: 28,16 + 2610: 28,17 + 2611: 28,18 + 2612: 29,18 + 2613: 29,17 + 2614: 29,16 + 2615: 30,16 + 2616: 30,17 + 2617: 30,18 + 2637: 31,17 + 2638: 31,18 + 2639: 32,18 + 2640: 32,17 + 2649: 31,16 + 2650: 32,16 + 2651: 32,15 + 2652: 31,15 - node: color: '#FFFFFFFF' id: MiniTileCheckerAOverlay @@ -3051,6 +3104,17 @@ entities: 676: -44,8 677: -45,8 678: -46,8 + - node: + color: '#FFFFFFFF' + id: MiniTileCornerOverlayNW + decals: + 2675: 3,23 + - node: + color: '#DE3A3A96' + id: MiniTileLineOverlayW + decals: + 2779: 46,16 + 2780: 46,15 - node: color: '#FFFFFFFF' id: MiniTileOverlay @@ -3067,19 +3131,105 @@ entities: 664: -44,8 665: -45,8 666: -46,8 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerNe + decals: + 2760: 40,11 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerNw + decals: + 2767: 37,11 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerSe + decals: + 2759: 40,8 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerSw + decals: + 2756: 37,8 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineE + decals: + 2765: 40,9 + 2766: 40,10 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineN + decals: + 2761: 39,11 + 2762: 38,11 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineS + decals: + 2763: 39,8 + 2764: 38,8 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineW + decals: + 2757: 37,9 + 2758: 37,10 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerNe + decals: + 2679: 5,23 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerNw + decals: + 2676: 3,23 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerSe + decals: + 2677: 5,20 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteCornerSw + decals: + 2678: 3,20 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineE + decals: + 2680: 5,22 + 2681: 5,21 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineN + decals: + 2682: 4,23 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineS + decals: + 2683: 4,20 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineW + decals: + 2684: 3,21 + 2685: 3,22 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: 212: -31,-28 221: -29,-26 - 2561: 42,6 - 2562: 44,6 - 2563: 43,6 - 2564: 45,6 - 2565: 46,6 - 2566: 47,6 - 2567: 48,6 + 2512: 42,6 + 2513: 44,6 + 2514: 43,6 + 2515: 45,6 + 2516: 46,6 + 2517: 47,6 + 2518: 48,6 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale @@ -3092,29 +3242,6 @@ entities: id: QuarterTileOverlayGreyscale decals: 241: 57,2 - 2546: 41,5 - 2547: 40,5 - 2548: 39,5 - 2549: 38,5 - 2550: 37,5 - 2551: 36,5 - 2552: 35,5 - 2553: 34,5 - 2554: 33,5 - 2555: 32,5 - 2556: 31,5 - 2557: 29,5 - 2558: 30,5 - 2559: 28,5 - 2560: 27,5 - 2568: 35,11 - 2569: 35,10 - 2570: 35,9 - 2571: 36,11 - 2572: 37,11 - 2573: 38,11 - 2574: 39,11 - 2575: 40,11 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3156,6 +3283,35 @@ entities: decals: 222: 27,-26 231: 29,-28 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 2714: 40,22 + 2715: 41,22 + 2716: 42,22 + 2717: 43,22 + 2718: 44,22 + 2719: 45,22 + 2720: 46,22 + 2721: 47,22 + 2722: 36,18 + 2723: 36,17 + 2724: 36,16 + 2725: 36,15 + 2726: 37,15 + 2727: 38,15 + 2768: 40,15 + 2769: 39,15 + 2770: 45,15 + 2771: 44,15 + 2772: 43,15 + 2773: 42,15 + 2774: 41,15 + 2775: 36,22 + 2776: 37,22 + 2777: 38,22 + 2778: 39,22 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -3178,8 +3334,11 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 2576: 40,10 - 2577: 40,9 + 2781: 41,18 + 2782: 40,18 + 2783: 39,18 + 2784: 38,18 + 2785: 41,17 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -3260,11 +3419,11 @@ entities: 2386: -7,3 2390: 11,3 - node: - color: '#DE3A3A96' - id: StandClear + color: '#FF5C5CFF' + id: StandClearGreyscale decals: - 2530: 39,7 - 2531: 40,7 + 2708: 37,20 + 2709: 36,20 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale @@ -3361,9 +3520,11 @@ entities: 1377: -3,17 1378: -3,18 2467: -28,1 - 2532: 35,26 - 2533: 35,25 - 2534: 35,24 + 2506: 35,26 + 2507: 35,25 + 2508: 35,24 + 2822: 35,22 + 2823: 35,23 - node: zIndex: 180 color: '#FFFFFFFF' @@ -3423,16 +3584,19 @@ entities: 2485: -31,-11 2486: -29,-11 2490: 29,-11 - 2538: 39,6 - 2539: 40,6 - 2540: 39,8 - 2541: 40,8 + 2697: 43,17 + 2698: 44,17 + 2699: 45,17 + 2700: 36,19 + 2701: 37,19 + 2702: 36,21 + 2703: 37,21 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineN decals: - 2700: 29,19 + 2605: 29,19 - node: color: '#FFFFFFFF' id: WarnLineS @@ -3492,9 +3656,11 @@ entities: 1381: 1,17 1382: 1,18 2468: -28,1 - 2535: 35,26 - 2536: 35,25 - 2537: 35,24 + 2509: 35,26 + 2510: 35,25 + 2511: 35,24 + 2820: 35,22 + 2821: 35,23 - node: zIndex: 180 color: '#FFFFFFFF' @@ -3559,89 +3725,98 @@ entities: 2487: -31,-11 2488: -29,-11 2489: 29,-11 - 2542: 39,8 - 2543: 40,8 - 2544: 39,6 - 2545: 40,6 - 2578: 35,8 - 2579: 36,8 - 2580: 37,8 + 2704: 36,19 + 2705: 37,19 + 2706: 37,21 + 2707: 36,21 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineW decals: - 2699: 29,19 + 2604: 29,19 - node: color: '#C8C8C8FF' id: WoodTrimThinCornerNe decals: 2495: 26,12 - 2508: 46,18 - 2583: 46,10 + 2521: 46,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 2752: 36,11 - node: color: '#C8C8C8FF' id: WoodTrimThinCornerNw decals: 2492: 24,12 - 2507: 39,18 - 2582: 42,10 + 2520: 42,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 2751: 35,11 - node: color: '#C8C8C8FF' id: WoodTrimThinCornerSe decals: 2493: 26,11 - 2509: 46,15 - 2584: 46,8 + 2522: 46,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 2818: 36,8 - node: color: '#C8C8C8FF' id: WoodTrimThinCornerSw decals: 2494: 24,11 - 2506: 39,15 - 2581: 42,8 + 2519: 42,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 2817: 35,8 - node: color: '#C8C8C8FF' id: WoodTrimThinLineE decals: - 2510: 46,17 - 2511: 46,16 - 2592: 46,9 + 2530: 46,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 2753: 36,9 + 2754: 36,10 - node: color: '#C8C8C8FF' id: WoodTrimThinLineN decals: 2496: 25,12 - 2512: 45,18 - 2513: 44,18 - 2514: 43,18 - 2515: 42,18 - 2516: 41,18 - 2517: 40,18 - 2589: 43,10 - 2590: 44,10 - 2591: 45,10 + 2527: 43,10 + 2528: 44,10 + 2529: 45,10 - node: color: '#C8C8C8FF' id: WoodTrimThinLineS decals: 2497: 25,11 - 2520: 40,15 - 2521: 41,15 - 2522: 42,15 - 2523: 43,15 - 2524: 44,15 - 2525: 45,15 - 2586: 43,8 - 2587: 44,8 - 2588: 45,8 + 2524: 43,8 + 2525: 44,8 + 2526: 45,8 - node: color: '#C8C8C8FF' id: WoodTrimThinLineW decals: - 2518: 39,17 - 2519: 39,16 - 2585: 42,9 + 2523: 42,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 2755: 35,10 + 2819: 35,9 - node: zIndex: 180 color: '#FF00FFFF' @@ -4120,7 +4295,7 @@ entities: 9,4: 0: 65535 9,5: - 0: 65527 + 0: 65535 9,6: 0: 65535 10,4: @@ -4132,7 +4307,7 @@ entities: 11,4: 0: 65535 11,5: - 0: 65532 + 0: 65534 11,6: 0: 65535 12,4: @@ -4163,20 +4338,24 @@ entities: 0: 65535 0,13: 0: 36751 + 1: 24576 0,14: 0: 2184 + 1: 63078 1,12: 0: 65535 1,13: 0: 65535 1,14: 0: 4095 + 1: 61440 2,12: 0: 63483 2,13: 0: 65535 2,14: 0: 2047 + 1: 28672 3,12: 0: 4368 3,13: @@ -4185,10 +4364,12 @@ entities: 0: 17 -2,12: 0: 14 + 1: 17408 -1,12: 0: 39327 -1,13: 0: 2191 + 1: 10000 -12,4: 0: 65535 -11,4: @@ -4233,6 +4414,18 @@ entities: 0: 12288 15,6: 0: 13107 + 0,15: + 1: 128 + 1,15: + 1: 241 + 2,15: + 1: 114 + -2,13: + 1: 1100 + -1,14: + 1: 34823 + -1,15: + 1: 8 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -4303,6 +4496,14 @@ entities: - type: ProtectedGrid - type: StationEmpImmune - type: SpreaderGrid +- proto: ActionToggleLight + entities: + - uid: 2428 + components: + - type: Transform + parent: 1474 + - type: InstantAction + container: 1474 - proto: AirAlarm entities: - uid: 1836 @@ -4367,8 +4568,6 @@ entities: entities: - uid: 4179 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,25.5 parent: 2173 @@ -4417,15 +4616,11 @@ entities: entities: - uid: 4136 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,7.5 parent: 2173 - uid: 4137 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -40.5,7.5 parent: 2173 @@ -4433,14 +4628,18 @@ entities: entities: - uid: 366 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -18.5,14.5 parent: 2173 - proto: AirlockExternalGlass entities: + - uid: 737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,55.5 + parent: 2173 - uid: 950 components: - type: Transform @@ -4699,12 +4898,20 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,54.5 parent: 2173 - - uid: 2717 + - uid: 2822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,55.5 + rot: 1.5707963267948966 rad + pos: 4.5,57.5 parent: 2173 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 4319 + - type: DeviceLinkSource + linkedPorts: + 4319: + - DoorStatus: DoorBolt - uid: 2861 components: - type: Transform @@ -4720,6 +4927,20 @@ entities: - type: Transform pos: -58.5,0.5 parent: 2173 + - uid: 4319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,57.5 + parent: 2173 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 2822 + - type: DeviceLinkSource + linkedPorts: + 2822: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleTransit entities: - uid: 439 @@ -4728,24 +4949,32 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,15.5 parent: 2173 + - type: Docking + name: Bus Dock - uid: 532 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,15.5 parent: 2173 + - type: Docking + name: Bus Dock - uid: 935 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,16.5 parent: 2173 + - type: Docking + name: Bus Dock - uid: 936 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,16.5 parent: 2173 + - type: Docking + name: Bus Dock - proto: AirlockFrontierCommandGlassLocked entities: - uid: 2550 @@ -4784,28 +5013,34 @@ entities: entities: - uid: 2386 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,11.5 parent: 2173 - proto: AirlockGlass entities: - - uid: 2571 + - uid: 529 components: - type: Transform - pos: 37.5,23.5 + rot: 3.141592653589793 rad + pos: 40.5,7.5 parent: 2173 - - uid: 2800 + - uid: 780 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,14.5 + pos: 12.5,25.5 parent: 2173 - - uid: 2986 + - uid: 2787 components: - type: Transform - pos: 36.5,23.5 + rot: 3.141592653589793 rad + pos: 39.5,7.5 + parent: 2173 + - uid: 2800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,14.5 parent: 2173 - uid: 3138 components: @@ -4967,11 +5202,6 @@ entities: - type: Transform pos: 12.5,24.5 parent: 2173 - - uid: 5845 - components: - - type: Transform - pos: 12.5,25.5 - parent: 2173 - uid: 5846 components: - type: Transform @@ -5352,68 +5582,48 @@ entities: entities: - uid: 2754 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,19.5 parent: 2173 - uid: 2755 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,26.5 parent: 2173 -- proto: AirlockMaint +- proto: AirlockMailCarrierLocked entities: - - uid: 383 + - uid: 389 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 33.5,13.5 + rot: 1.5707963267948966 rad + pos: 29.5,19.5 parent: 2173 - - uid: 385 +- proto: AirlockMaint + entities: + - uid: 383 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 35.5,15.5 + pos: 33.5,13.5 parent: 2173 - uid: 386 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 34.5,20.5 parent: 2173 - uid: 3012 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,6.5 parent: 2173 - uid: 4059 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 49.5,12.5 parent: 2173 - - uid: 4926 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 46.5,14.5 - parent: 2173 - proto: AirlockMaintEngiLocked entities: - uid: 4131 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -22.5,13.5 parent: 2173 @@ -5421,22 +5631,16 @@ entities: entities: - uid: 3763 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,14.5 parent: 2173 - uid: 4128 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,17.5 parent: 2173 - uid: 5019 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,19.5 parent: 2173 @@ -5444,30 +5648,22 @@ entities: entities: - uid: 2094 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -19.5,11.5 parent: 2173 - uid: 2597 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 48.5,21.5 parent: 2173 - uid: 4130 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -29.5,6.5 parent: 2173 - uid: 4132 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 52.5,4.5 parent: 2173 @@ -5475,22 +5671,16 @@ entities: entities: - uid: 4133 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,14.5 parent: 2173 - uid: 4134 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -44.5,12.5 parent: 2173 - uid: 4135 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,17.5 parent: 2173 @@ -5548,94 +5738,92 @@ entities: parent: 2173 - proto: AirlockSecurityGlassLocked entities: - - uid: 4206 + - uid: 2976 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,6.5 + rot: 1.5707963267948966 rad + pos: 37.5,21.5 parent: 2173 - type: DeviceLinkSink + invokeCounter: 2 links: - - 4264 - - 4265 + - 3745 + - 3746 - type: DeviceLinkSource linkedPorts: - 4264: + 3746: - DoorStatus: Close - 4265: + 3745: - DoorStatus: Close - - uid: 4264 + - uid: 2982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,8.5 + rot: 1.5707963267948966 rad + pos: 36.5,21.5 parent: 2173 - type: DeviceLinkSink + invokeCounter: 2 links: - - 4280 - - 4206 + - 3745 + - 3746 - type: DeviceLinkSource linkedPorts: - 4206: + 3746: - DoorStatus: Close - 4280: + 3745: - DoorStatus: Close - - uid: 4265 + - uid: 3745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,8.5 + rot: 1.5707963267948966 rad + pos: 37.5,19.5 parent: 2173 - type: DeviceLinkSink + invokeCounter: 2 links: - - 4280 - - 4206 + - 2982 + - 2976 - type: DeviceLinkSource linkedPorts: - 4206: + 2976: - DoorStatus: Close - 4280: + 2982: - DoorStatus: Close - - uid: 4280 + - uid: 3746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,6.5 + rot: 1.5707963267948966 rad + pos: 36.5,19.5 parent: 2173 - type: DeviceLinkSink + invokeCounter: 2 links: - - 4264 - - 4265 + - 2976 + - 2982 - type: DeviceLinkSource linkedPorts: - 4265: + 2976: - DoorStatus: Close - 4264: + 2982: - DoorStatus: Close - proto: AirlockServiceLocked entities: - - uid: 389 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 29.5,19.5 - parent: 2173 - uid: 2562 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 45.5,7.5 parent: 2173 - proto: AltarConvertMaint entities: - - uid: 2483 + - uid: 5452 components: - type: Transform - pos: 37.5,15.5 + rot: 1.5707963267948966 rad + pos: 29.5,14.5 parent: 2173 + missingComponents: + - Anchorable - proto: AntiAnomalyZone200 entities: - uid: 4477 @@ -5679,11 +5867,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,19.5 parent: 2173 - - uid: 2774 - components: - - type: Transform - pos: 19.5,16.5 - parent: 2173 - uid: 2863 components: - type: Transform @@ -5740,6 +5923,17 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,28.5 parent: 2173 + - uid: 3758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2173 + - uid: 5462 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2173 - proto: AtmosDeviceFanTiny entities: - uid: 5 @@ -6024,6 +6218,12 @@ entities: - type: Transform pos: 61.5,24.5 parent: 2173 + - uid: 6024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,57.5 + parent: 2173 - proto: AtmosFixBlockerMarker entities: - uid: 4886 @@ -6149,15 +6349,15 @@ entities: parent: 2173 - proto: BannerSecurity entities: - - uid: 2856 + - uid: 2220 components: - type: Transform - pos: 34.5,5.5 + pos: 38.5,22.5 parent: 2173 - - uid: 3058 + - uid: 3049 components: - type: Transform - pos: 41.5,5.5 + pos: 46.5,22.5 parent: 2173 - proto: Barricade entities: @@ -6169,20 +6369,20 @@ entities: parent: 2173 - proto: Bed entities: - - uid: 399 + - uid: 346 components: - type: Transform - pos: 26.5,12.5 + pos: 45.5,18.5 parent: 2173 - - uid: 2985 + - uid: 399 components: - type: Transform - pos: 37.5,7.5 + pos: 26.5,12.5 parent: 2173 - - uid: 3005 + - uid: 1521 components: - type: Transform - pos: 35.5,7.5 + pos: 43.5,18.5 parent: 2173 - uid: 4172 components: @@ -6198,17 +6398,15 @@ entities: parent: 2173 - proto: BedsheetOrange entities: - - uid: 3004 + - uid: 800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,7.5 + pos: 45.5,18.5 parent: 2173 - - uid: 3010 + - uid: 2148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,7.5 + pos: 43.5,18.5 parent: 2173 - proto: BedsheetPurple entities: @@ -6356,6 +6554,13 @@ entities: parent: 2173 - type: Physics bodyType: Static + - uid: 2838 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2173 + - type: Physics + bodyType: Static - uid: 4161 components: - type: Transform @@ -6440,16 +6645,15 @@ entities: parent: 2173 - type: Physics bodyType: Static - - uid: 5822 +- proto: BenchSteelMiddle + entities: + - uid: 759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,22.5 + pos: 44.5,26.5 parent: 2173 - type: Physics bodyType: Static -- proto: BenchSteelMiddle - entities: - uid: 2456 components: - type: Transform @@ -6552,14 +6756,6 @@ entities: parent: 2173 - type: Physics bodyType: Static - - uid: 5811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,22.5 - parent: 2173 - - type: Physics - bodyType: Static - uid: 5813 components: - type: Transform @@ -6592,6 +6788,13 @@ entities: parent: 2173 - type: Physics bodyType: Static + - uid: 760 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2173 + - type: Physics + bodyType: Static - uid: 2414 components: - type: Transform @@ -6716,14 +6919,6 @@ entities: parent: 2173 - type: Physics bodyType: Static - - uid: 5821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,22.5 - parent: 2173 - - type: Physics - bodyType: Static - uid: 5826 components: - type: Transform @@ -6821,8 +7016,6 @@ entities: entities: - uid: 2725 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,56.5 parent: 2173 @@ -6831,8 +7024,6 @@ entities: - 2735 - uid: 2727 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,56.5 parent: 2173 @@ -6841,8 +7032,6 @@ entities: - 2735 - uid: 2728 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,52.5 parent: 2173 @@ -6851,8 +7040,6 @@ entities: - 2735 - uid: 2729 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,52.5 parent: 2173 @@ -6861,8 +7048,6 @@ entities: - 2735 - uid: 2730 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,46.5 parent: 2173 @@ -6871,8 +7056,6 @@ entities: - 2734 - uid: 2731 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,46.5 parent: 2173 @@ -6881,8 +7064,6 @@ entities: - 2734 - uid: 2732 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,42.5 parent: 2173 @@ -6891,8 +7072,6 @@ entities: - 2734 - uid: 2733 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,42.5 parent: 2173 @@ -6923,8 +7102,6 @@ entities: entities: - uid: 3125 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,12.5 parent: 2173 @@ -6999,13 +7176,6 @@ entities: - type: Transform pos: -49.37637,7.544346 parent: 2173 -- proto: BoxMailCapsulePrimed - entities: - - uid: 4936 - components: - - type: Transform - pos: 28.929081,16.827986 - parent: 2173 - proto: BoxNitrileGloves entities: - uid: 2391 @@ -7034,6 +7204,11 @@ entities: - type: Transform pos: -5.705048,21.793915 parent: 2173 + - uid: 4947 + components: + - type: Transform + pos: -5.5340576,21.663313 + parent: 2173 - proto: CableApcExtension entities: - uid: 355 @@ -7056,21 +7231,11 @@ entities: - type: Transform pos: 33.5,6.5 parent: 2173 - - uid: 387 - components: - - type: Transform - pos: 42.5,18.5 - parent: 2173 - uid: 391 components: - type: Transform pos: 22.5,18.5 parent: 2173 - - uid: 411 - components: - - type: Transform - pos: 35.5,15.5 - parent: 2173 - uid: 431 components: - type: Transform @@ -7166,6 +7331,11 @@ entities: - type: Transform pos: 38.5,24.5 parent: 2173 + - uid: 556 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2173 - uid: 559 components: - type: Transform @@ -7186,11 +7356,6 @@ entities: - type: Transform pos: 34.5,16.5 parent: 2173 - - uid: 563 - components: - - type: Transform - pos: 36.5,15.5 - parent: 2173 - uid: 564 components: - type: Transform @@ -7396,16 +7561,6 @@ entities: - type: Transform pos: 32.5,26.5 parent: 2173 - - uid: 616 - components: - - type: Transform - pos: 36.5,10.5 - parent: 2173 - - uid: 623 - components: - - type: Transform - pos: 37.5,10.5 - parent: 2173 - uid: 624 components: - type: Transform @@ -7496,11 +7651,6 @@ entities: - type: Transform pos: 26.5,24.5 parent: 2173 - - uid: 651 - components: - - type: Transform - pos: 36.5,8.5 - parent: 2173 - uid: 652 components: - type: Transform @@ -8806,31 +8956,11 @@ entities: - type: Transform pos: 18.5,26.5 parent: 2173 - - uid: 2343 - components: - - type: Transform - pos: 38.5,10.5 - parent: 2173 - - uid: 2344 - components: - - type: Transform - pos: 41.5,18.5 - parent: 2173 - uid: 2345 components: - type: Transform pos: 37.5,23.5 parent: 2173 - - uid: 2349 - components: - - type: Transform - pos: 40.5,18.5 - parent: 2173 - - uid: 2350 - components: - - type: Transform - pos: 45.5,16.5 - parent: 2173 - uid: 2377 components: - type: Transform @@ -8966,11 +9096,6 @@ entities: - type: Transform pos: 19.5,15.5 parent: 2173 - - uid: 2737 - components: - - type: Transform - pos: 39.5,7.5 - parent: 2173 - uid: 2762 components: - type: Transform @@ -8981,11 +9106,6 @@ entities: - type: Transform pos: 20.5,15.5 parent: 2173 - - uid: 2768 - components: - - type: Transform - pos: 19.5,16.5 - parent: 2173 - uid: 2778 components: - type: Transform @@ -9024,7 +9144,7 @@ entities: - uid: 3039 components: - type: Transform - pos: 39.5,6.5 + pos: 39.5,8.5 parent: 2173 - uid: 3040 components: @@ -9041,31 +9161,6 @@ entities: - type: Transform pos: 50.5,12.5 parent: 2173 - - uid: 3110 - components: - - type: Transform - pos: 44.5,18.5 - parent: 2173 - - uid: 3112 - components: - - type: Transform - pos: 42.5,17.5 - parent: 2173 - - uid: 3113 - components: - - type: Transform - pos: 39.5,16.5 - parent: 2173 - - uid: 3114 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2173 - - uid: 3116 - components: - - type: Transform - pos: 37.5,18.5 - parent: 2173 - uid: 3121 components: - type: Transform @@ -9081,10 +9176,10 @@ entities: - type: Transform pos: 14.5,18.5 parent: 2173 - - uid: 3135 + - uid: 3132 components: - type: Transform - pos: 39.5,9.5 + pos: 35.5,12.5 parent: 2173 - uid: 3143 components: @@ -9096,11 +9191,6 @@ entities: - type: Transform pos: 33.5,7.5 parent: 2173 - - uid: 3155 - components: - - type: Transform - pos: 39.5,8.5 - parent: 2173 - uid: 3178 components: - type: Transform @@ -11756,11 +11846,6 @@ entities: - type: Transform pos: 48.5,18.5 parent: 2173 - - uid: 3716 - components: - - type: Transform - pos: 36.5,9.5 - parent: 2173 - uid: 3718 components: - type: Transform @@ -11776,25 +11861,10 @@ entities: - type: Transform pos: 31.5,13.5 parent: 2173 - - uid: 3741 - components: - - type: Transform - pos: 42.5,16.5 - parent: 2173 - - uid: 3743 - components: - - type: Transform - pos: 37.5,19.5 - parent: 2173 - - uid: 3744 - components: - - type: Transform - pos: 38.5,18.5 - parent: 2173 - - uid: 3746 + - uid: 3747 components: - type: Transform - pos: 39.5,17.5 + pos: 39.5,7.5 parent: 2173 - uid: 3754 components: @@ -11816,20 +11886,10 @@ entities: - type: Transform pos: 32.5,13.5 parent: 2173 - - uid: 3762 - components: - - type: Transform - pos: 37.5,22.5 - parent: 2173 - - uid: 3781 - components: - - type: Transform - pos: 43.5,18.5 - parent: 2173 - - uid: 3794 + - uid: 3780 components: - type: Transform - pos: 39.5,10.5 + pos: 39.5,6.5 parent: 2173 - uid: 3797 components: @@ -12206,11 +12266,6 @@ entities: - type: Transform pos: 17.5,14.5 parent: 2173 - - uid: 3900 - components: - - type: Transform - pos: 17.5,15.5 - parent: 2173 - uid: 3901 components: - type: Transform @@ -12761,11 +12816,6 @@ entities: - type: Transform pos: 40.5,26.5 parent: 2173 - - uid: 4058 - components: - - type: Transform - pos: 22.5,14.5 - parent: 2173 - uid: 4119 components: - type: Transform @@ -12776,11 +12826,6 @@ entities: - type: Transform pos: 22.5,15.5 parent: 2173 - - uid: 4125 - components: - - type: Transform - pos: 39.5,18.5 - parent: 2173 - uid: 4298 components: - type: Transform @@ -12791,21 +12836,6 @@ entities: - type: Transform pos: 25.5,14.5 parent: 2173 - - uid: 4305 - components: - - type: Transform - pos: 45.5,17.5 - parent: 2173 - - uid: 4404 - components: - - type: Transform - pos: 37.5,21.5 - parent: 2173 - - uid: 4410 - components: - - type: Transform - pos: 45.5,18.5 - parent: 2173 - uid: 4700 components: - type: Transform @@ -12826,11 +12856,81 @@ entities: - type: Transform pos: 12.5,28.5 parent: 2173 + - uid: 4963 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2173 - uid: 4992 components: - type: Transform pos: 60.5,26.5 parent: 2173 + - uid: 5009 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2173 + - uid: 5581 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2173 + - uid: 5592 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2173 + - uid: 5594 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2173 + - uid: 5624 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2173 + - uid: 5627 + components: + - type: Transform + pos: 40.5,16.5 + parent: 2173 + - uid: 5644 + components: + - type: Transform + pos: 41.5,16.5 + parent: 2173 + - uid: 5645 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2173 + - uid: 5648 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2173 + - uid: 5650 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2173 + - uid: 5651 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2173 + - uid: 5654 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2173 + - uid: 5662 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2173 - uid: 5849 components: - type: Transform @@ -12906,6 +13006,16 @@ entities: - type: Transform pos: 22.5,21.5 parent: 2173 + - uid: 6123 + components: + - type: Transform + pos: 4.5,57.5 + parent: 2173 + - uid: 6148 + components: + - type: Transform + pos: 3.5,57.5 + parent: 2173 - proto: CableHV entities: - uid: 440 @@ -13763,6 +13873,16 @@ entities: - type: Transform pos: 10.5,11.5 parent: 2173 + - uid: 5463 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2173 + - uid: 5464 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2173 - uid: 5803 components: - type: Transform @@ -14250,26 +14370,6 @@ entities: - type: Transform pos: 4.5,6.5 parent: 2173 - - uid: 2637 - components: - - type: Transform - pos: 18.5,14.5 - parent: 2173 - - uid: 2656 - components: - - type: Transform - pos: 19.5,14.5 - parent: 2173 - - uid: 2658 - components: - - type: Transform - pos: 19.5,15.5 - parent: 2173 - - uid: 2664 - components: - - type: Transform - pos: 19.5,16.5 - parent: 2173 - uid: 2771 components: - type: Transform @@ -15310,6 +15410,21 @@ entities: - type: Transform pos: 9.5,19.5 parent: 2173 + - uid: 5453 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2173 + - uid: 5465 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2173 + - uid: 5578 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2173 - proto: CableTerminal entities: - uid: 1620 @@ -15474,6 +15589,44 @@ entities: - type: Transform pos: 48.5,10.5 parent: 2173 +- proto: CarpetSBlue + entities: + - uid: 4976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,22.5 + parent: 2173 + - uid: 4988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2173 + - uid: 4989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 2173 + - uid: 4990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 2173 + - uid: 4997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 2173 + - uid: 4998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,22.5 + parent: 2173 - proto: Catwalk entities: - uid: 376 @@ -15487,6 +15640,12 @@ entities: - type: Transform pos: 25.5,14.5 parent: 2173 + - uid: 620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2173 - uid: 740 components: - type: Transform @@ -15523,6 +15682,30 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,45.5 parent: 2173 + - uid: 756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,13.5 + parent: 2173 + - uid: 757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,13.5 + parent: 2173 + - uid: 758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,13.5 + parent: 2173 + - uid: 762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2173 - uid: 764 components: - type: Transform @@ -15553,6 +15736,18 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,44.5 parent: 2173 + - uid: 798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2173 + - uid: 799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,13.5 + parent: 2173 - uid: 808 components: - type: Transform @@ -15619,6 +15814,36 @@ entities: rot: 3.141592653589793 rad pos: -18.5,13.5 parent: 2173 + - uid: 1210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,14.5 + parent: 2173 + - uid: 1487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,13.5 + parent: 2173 + - uid: 1578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,13.5 + parent: 2173 + - uid: 2147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2173 + - uid: 2150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,13.5 + parent: 2173 - uid: 2244 components: - type: Transform @@ -15720,11 +15945,28 @@ entities: - type: Transform pos: 50.5,15.5 parent: 2173 + - uid: 3041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2173 + - uid: 3135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2173 - uid: 3717 components: - type: Transform pos: 23.5,18.5 parent: 2173 + - uid: 3779 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2173 - uid: 3799 components: - type: Transform @@ -15855,6 +16097,12 @@ entities: - type: Transform pos: 13.5,18.5 parent: 2173 + - uid: 4302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,14.5 + parent: 2173 - uid: 4416 components: - type: Transform @@ -15877,21 +16125,232 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,16.5 parent: 2173 -- proto: CelloInstrument - entities: - - uid: 2486 + - uid: 5451 components: - type: Transform - pos: 43.588207,17.833729 + rot: 1.5707963267948966 rad + pos: 28.5,13.5 parent: 2173 -- proto: ChairFolding - entities: - - uid: 758 + - uid: 5845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,54.5 + parent: 2173 + - uid: 5879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,57.5 + parent: 2173 + - uid: 5880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,58.5 + parent: 2173 + - uid: 5881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,59.5 + parent: 2173 + - uid: 5882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,59.5 + parent: 2173 + - uid: 5883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,59.5 + parent: 2173 + - uid: 5884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,59.5 + parent: 2173 + - uid: 5885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,59.5 + parent: 2173 + - uid: 5886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,59.5 + parent: 2173 + - uid: 5895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,59.5 + parent: 2173 + - uid: 5943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,59.5 + parent: 2173 + - uid: 5944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,59.5 + parent: 2173 + - uid: 5945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,59.5 + parent: 2173 + - uid: 5946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,56.5 + parent: 2173 + - uid: 5947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,55.5 + parent: 2173 + - uid: 5954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,54.5 + parent: 2173 + - uid: 5970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,54.5 + parent: 2173 + - uid: 6007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,54.5 + parent: 2173 + - uid: 6008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,54.5 + parent: 2173 + - uid: 6009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,54.5 + parent: 2173 + - uid: 6012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,53.5 + parent: 2173 + - uid: 6020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,52.5 + parent: 2173 + - uid: 6021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,51.5 + parent: 2173 + - uid: 6022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,50.5 + parent: 2173 + - uid: 6118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,57.5 + parent: 2173 + - uid: 6119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,57.5 + parent: 2173 + - uid: 6120 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,18.5 + pos: 4.5,57.5 + parent: 2173 +- proto: Chair + entities: + - uid: 650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,9.5 + parent: 2173 + - uid: 651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,11.5 + parent: 2173 + - uid: 754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,10.5 parent: 2173 + - uid: 755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,11.5 + parent: 2173 + - uid: 2569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2173 + - uid: 3030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,10.5 + parent: 2173 + - uid: 4972 + components: + - type: Transform + anchored: False + rot: 2.9297875483804425 rad + pos: 7.4317293,20.845003 + parent: 2173 + - type: Physics + bodyType: Dynamic + - uid: 4973 + components: + - type: Transform + anchored: False + rot: 2.4314612468057355 rad + pos: 8.224873,20.845003 + parent: 2173 + - type: Physics + bodyType: Dynamic +- proto: ChairFolding + entities: - uid: 834 components: - type: Transform @@ -15926,42 +16385,6 @@ entities: - type: Transform pos: 29.5,12.5 parent: 2173 - - uid: 2477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,15.5 - parent: 2173 - - uid: 2479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,17.5 - parent: 2173 - - uid: 2560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,15.5 - parent: 2173 - - uid: 2763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,17.5 - parent: 2173 - - uid: 2765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,18.5 - parent: 2173 - - uid: 3049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,15.5 - parent: 2173 - proto: ChairFoldingSpawnFolded entities: - uid: 2770 @@ -15971,11 +16394,11 @@ entities: parent: 2173 - proto: ChairOfficeDark entities: - - uid: 2785 + - uid: 2151 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,11.5 + pos: 37.5,16.5 parent: 2173 - uid: 4268 components: @@ -16013,6 +16436,12 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,10.5 parent: 2173 + - uid: 4971 + components: + - type: Transform + rot: -1.2571299031386722 rad + pos: 7.982242,22.264536 + parent: 2173 - uid: 5661 components: - type: Transform @@ -16071,6 +16500,20 @@ entities: rot: 3.141592653589793 rad pos: -3.5,27.5 parent: 2173 +- proto: CigPackRed + entities: + - uid: 3865 + components: + - type: Transform + pos: 28.323841,16.64893 + parent: 2173 +- proto: CleanerDispenser + entities: + - uid: 4945 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2173 - proto: CloningPod entities: - uid: 828 @@ -16095,27 +16538,27 @@ entities: - type: Transform pos: 42.5,12.5 parent: 2173 - - uid: 3865 + - uid: 4377 components: - type: Transform - pos: 31.5,14.5 + pos: 52.5,12.5 parent: 2173 - - uid: 4377 + - uid: 4478 components: - type: Transform - pos: 52.5,12.5 + pos: 31.5,7.5 parent: 2173 - proto: ClosetFireFilled entities: - - uid: 2242 + - uid: 2790 components: - type: Transform - pos: 30.5,14.5 + pos: -28.5,8.5 parent: 2173 - - uid: 2790 + - uid: 4935 components: - type: Transform - pos: -28.5,8.5 + pos: 33.5,11.5 parent: 2173 - proto: ClosetJanitorBombFilled entities: @@ -16143,11 +16586,6 @@ entities: - type: Transform pos: 27.5,7.5 parent: 2173 - - uid: 4478 - components: - - type: Transform - pos: 32.5,14.5 - parent: 2173 - proto: ClosetToolFilled entities: - uid: 951 @@ -16478,6 +16916,12 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,11.5 parent: 2173 + - uid: 3053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,15.5 + parent: 2173 - proto: ComputerTabletopId entities: - uid: 2392 @@ -16564,6 +17008,12 @@ entities: rot: 3.141592653589793 rad pos: 13.5,13.5 parent: 2173 + - uid: 2764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,16.5 + parent: 2173 - proto: ComputerTabletopSurveillanceWirelessCameraMonitor entities: - uid: 2437 @@ -16956,10 +17406,226 @@ entities: - 6145 - proto: CrewMonitoringServer entities: - - uid: 3059 + - uid: 3055 components: - type: Transform - pos: 22.5,15.5 + pos: 20.5,16.5 + parent: 2173 +- proto: DefaultStationBeacon + entities: + - uid: 5775 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2173 + - type: NavMapBeacon + text: Bus Dock + - uid: 5823 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2173 + - type: NavMapBeacon + text: Dock 1 + - uid: 5824 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2173 + - type: NavMapBeacon + text: Dock 6a + - uid: 5830 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2173 + - type: NavMapBeacon + text: Dock 2 + - uid: 5831 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2173 + - type: NavMapBeacon + text: Dock 3 + - uid: 5832 + components: + - type: Transform + pos: 57.5,2.5 + parent: 2173 + - type: NavMapBeacon + text: Dock 4 + - uid: 5833 + components: + - type: Transform + pos: 57.5,25.5 + parent: 2173 + - type: NavMapBeacon + text: Dock 5 + - uid: 5834 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2173 + - type: NavMapBeacon + text: Dock 6b + - uid: 5835 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2173 + - type: NavMapBeacon + text: Dock 7a + - uid: 5836 + components: + - type: Transform + pos: 11.5,54.5 + parent: 2173 + - type: NavMapBeacon + text: Dock 7b +- proto: DefaultStationBeaconBridge + entities: + - uid: 4954 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2173 +- proto: DefaultStationBeaconBrig + entities: + - uid: 2635 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2173 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 5180 + components: + - type: Transform + pos: 2.5,44.5 + parent: 2173 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 2485 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2173 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 2486 + components: + - type: Transform + pos: 51.5,17.5 + parent: 2173 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 2664 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2173 +- proto: DefaultStationBeaconFrontierATM + entities: + - uid: 5838 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2173 + - uid: 5847 + components: + - type: Transform + pos: -54.5,7.5 + parent: 2173 + - uid: 5853 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2173 + - uid: 5855 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2173 + - uid: 5859 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2173 + - uid: 5860 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2173 +- proto: DefaultStationBeaconFrontierShipyard + entities: + - uid: 5861 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2173 + - uid: 5862 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2173 +- proto: DefaultStationBeaconFrontierSROffice + entities: + - uid: 5183 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2173 +- proto: DefaultStationBeaconFrontierSRQuarters + entities: + - uid: 5837 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2173 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 5155 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2173 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 5175 + components: + - type: Transform + pos: -51.5,5.5 + parent: 2173 +- proto: DefaultStationBeaconService + entities: + - uid: 2776 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2173 + - type: NavMapBeacon + text: Breakroom + - uid: 6152 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2173 + - type: NavMapBeacon + text: Mail Office +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 2768 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2173 +- proto: DefaultStationBeaconTheater + entities: + - uid: 3912 + components: + - type: Transform + pos: 37.5,9.5 parent: 2173 - proto: DefibrillatorCabinetFilled entities: @@ -17039,6 +17705,18 @@ entities: - type: Transform pos: 28.5,18.5 parent: 2173 + - uid: 2384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2173 + - uid: 2385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 2173 - uid: 2412 components: - type: Transform @@ -17067,12 +17745,6 @@ entities: - type: Transform pos: 29.5,25.5 parent: 2173 - - uid: 4836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,11.5 - parent: 2173 - uid: 5352 components: - type: Transform @@ -17544,12 +18216,66 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,18.5 parent: 2173 + - uid: 2349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,13.5 + parent: 2173 + - uid: 2350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,13.5 + parent: 2173 + - uid: 2376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2173 + - uid: 2421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2173 + - uid: 2429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,13.5 + parent: 2173 + - uid: 2477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,13.5 + parent: 2173 + - uid: 2479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,13.5 + parent: 2173 + - uid: 2483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,13.5 + parent: 2173 - uid: 2501 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,6.5 parent: 2173 + - uid: 2518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,13.5 + parent: 2173 - uid: 2842 components: - type: Transform @@ -17580,60 +18306,6 @@ entities: rot: 3.141592653589793 rad pos: 29.5,15.5 parent: 2173 - - uid: 4827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,13.5 - parent: 2173 - - uid: 4828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,12.5 - parent: 2173 - - uid: 4829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,11.5 - parent: 2173 - - uid: 4830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,11.5 - parent: 2173 - - uid: 4831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,11.5 - parent: 2173 - - uid: 4832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,11.5 - parent: 2173 - - uid: 4833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,11.5 - parent: 2173 - - uid: 4834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,11.5 - parent: 2173 - - uid: 4835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,11.5 - parent: 2173 - uid: 5353 components: - type: Transform @@ -18875,18 +19547,6 @@ entities: rot: 3.141592653589793 rad pos: 13.5,23.5 parent: 2173 - - uid: 6080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,22.5 - parent: 2173 - - uid: 6081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,21.5 - parent: 2173 - uid: 6085 components: - type: Transform @@ -19159,6 +19819,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,16.5 parent: 2173 + - uid: 1221 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2173 - uid: 1793 components: - type: Transform @@ -19177,11 +19842,11 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,36.5 parent: 2173 - - uid: 4817 + - uid: 5003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,11.5 + rot: 3.141592653589793 rad + pos: 13.5,22.5 parent: 2173 - uid: 5351 components: @@ -19204,12 +19869,6 @@ entities: - type: Transform pos: 5.5,6.5 parent: 2173 - - uid: 5455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,20.5 - parent: 2173 - uid: 5526 components: - type: Transform @@ -19277,6 +19936,11 @@ entities: - type: Transform pos: -6.5,6.5 parent: 2173 + - uid: 2519 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2173 - uid: 2552 components: - type: Transform @@ -19307,11 +19971,6 @@ entities: - type: Transform pos: 4.5,36.5 parent: 2173 - - uid: 5445 - components: - - type: Transform - pos: 13.5,20.5 - parent: 2173 - uid: 5810 components: - type: Transform @@ -19330,7 +19989,7 @@ entities: - uid: 5017 components: - type: Transform - pos: 9.5,20.5 + pos: 9.5,21.5 parent: 2173 - proto: Dresser entities: @@ -19633,6 +20292,11 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight + - uid: 4944 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2173 - proto: EmergencyMedipen entities: - uid: 5720 @@ -19657,7 +20321,7 @@ entities: - uid: 2859 components: - type: Transform - pos: 35.5,11.5 + pos: 41.5,18.5 parent: 2173 - type: FaxMachine name: Frontier Outpost Station Guard @@ -19671,7 +20335,7 @@ entities: - uid: 5660 components: - type: Transform - pos: 6.5,23.5 + pos: 3.5,21.5 parent: 2173 - type: FaxMachine name: Frontier Outpost SR @@ -19693,10 +20357,10 @@ entities: name: Frontier Outpost Administration - proto: filingCabinetRandom entities: - - uid: 5003 + - uid: 3765 components: - type: Transform - pos: 7.5,23.5 + pos: 6.5,23.5 parent: 2173 - proto: FireAlarm entities: @@ -20527,6 +21191,11 @@ entities: - type: Transform pos: 35.5,25.5 parent: 2173 + - uid: 2571 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2173 - uid: 2608 components: - type: Transform @@ -20537,21 +21206,16 @@ entities: - type: Transform pos: 2.5,26.5 parent: 2173 - - uid: 2870 + - uid: 2679 components: - type: Transform - pos: 36.5,23.5 + pos: 35.5,23.5 parent: 2173 - uid: 3027 components: - type: Transform pos: 35.5,24.5 parent: 2173 - - uid: 3063 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2173 - uid: 3144 components: - type: Transform @@ -20662,8 +21326,6 @@ entities: entities: - uid: 4406 components: - - type: MetaData - flags: InContainer - type: Transform parent: 4405 - type: Physics @@ -20680,8 +21342,6 @@ entities: entities: - uid: 4407 components: - - type: MetaData - flags: InContainer - type: Transform parent: 4405 - type: Physics @@ -20776,6 +21436,14 @@ entities: color: '#990000FF' - proto: GasPipeBend entities: + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,15.5 + parent: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1119 components: - type: Transform @@ -20823,53 +21491,61 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2385 + - uid: 2559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,9.5 + pos: -30.5,18.5 parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 2559 + - uid: 2840 components: - type: Transform - pos: -30.5,18.5 + rot: 3.141592653589793 rad + pos: -5.5,15.5 parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 2787 + - uid: 2988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,17.5 + rot: -1.5707963267948966 rad + pos: 14.5,21.5 parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2811 + - uid: 3050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,18.5 + rot: 1.5707963267948966 rad + pos: 5.5,23.5 parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 2840 + - uid: 3057 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,15.5 + pos: 36.5,15.5 parent: 2173 - type: AtmosPipeColor - color: '#990000FF' - - uid: 2988 + color: '#0055CCFF' + - uid: 4125 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,21.5 + pos: 43.5,16.5 parent: 2173 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' + - uid: 4264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,16.5 + parent: 2173 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4520 components: - type: Transform @@ -21125,6 +21801,20 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5445 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2173 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5450 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5940 components: - type: Transform @@ -21211,14 +21901,14 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 464 + - uid: 413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,9.5 + rot: -1.5707963267948966 rad + pos: 41.5,15.5 parent: 2173 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 465 components: - type: Transform @@ -21240,52 +21930,46 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 505 - components: - - type: Transform - pos: 39.5,8.5 - parent: 2173 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 507 + - uid: 526 components: - type: Transform - pos: 39.5,6.5 + rot: 3.141592653589793 rad + pos: 36.5,20.5 parent: 2173 - type: AtmosPipeColor - color: '#990000FF' - - uid: 526 + color: '#0055CCFF' + - uid: 545 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,20.5 + pos: 36.5,19.5 parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 529 + - uid: 563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,18.5 + rot: 1.5707963267948966 rad + pos: 38.5,15.5 parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 545 + - uid: 615 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,19.5 + pos: 36.5,16.5 parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 557 + - uid: 616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,18.5 + rot: 3.141592653589793 rad + pos: 36.5,17.5 parent: 2173 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 646 components: - type: Transform @@ -21294,19 +21978,19 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 754 + - uid: 802 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,17.5 + pos: 42.5,15.5 parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 755 + - uid: 803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,17.5 + rot: 3.141592653589793 rad + pos: 45.5,16.5 parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' @@ -21606,6 +22290,14 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,15.5 + parent: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1792 components: - type: Transform @@ -21614,6 +22306,14 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,10.5 + parent: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2237 components: - type: Transform @@ -21774,19 +22474,26 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 2635 + - uid: 2649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,6.5 + rot: -1.5707963267948966 rad + pos: 44.5,15.5 parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2769 + - uid: 2672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,5.5 + pos: 39.5,16.5 + parent: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,21.5 parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' @@ -21822,14 +22529,14 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2784 + - uid: 2785 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,21.5 + pos: 5.5,25.5 parent: 2173 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 2786 components: - type: Transform @@ -21837,6 +22544,14 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,15.5 + parent: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2823 components: - type: Transform @@ -21861,6 +22576,14 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 2173 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2984 components: - type: Transform @@ -21877,22 +22600,20 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3030 + - uid: 3004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,7.5 + pos: 37.5,18.5 parent: 2173 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3032 + color: '#990000FF' + - uid: 3009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,9.5 + pos: 37.5,17.5 parent: 2173 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 3042 components: - type: Transform @@ -21908,80 +22629,97 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3045 + - uid: 3056 components: - type: Transform - pos: 6.5,23.5 + rot: 3.141592653589793 rad + pos: 37.5,24.5 parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 3053 + - uid: 3060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,9.5 + pos: 8.5,21.5 parent: 2173 - type: AtmosPipeColor - color: '#990000FF' - - uid: 3056 + color: '#0055CCFF' + - uid: 3061 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,24.5 + pos: 37.5,25.5 parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 3057 + - uid: 3100 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2173 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3155 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,8.5 + pos: 36.5,18.5 parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3060 + - uid: 3689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,21.5 + rot: 3.141592653589793 rad + pos: 46.5,6.5 parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3061 + - uid: 3720 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,25.5 + rot: -1.5707963267948966 rad + pos: 41.5,16.5 parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 3100 + - uid: 3725 components: - type: Transform - pos: -30.5,17.5 + rot: -1.5707963267948966 rad + pos: 40.5,16.5 parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 3131 + - uid: 3733 components: - type: Transform - pos: 39.5,7.5 + rot: -1.5707963267948966 rad + pos: -33.5,18.5 parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 3689 + - uid: 3734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,6.5 + rot: -1.5707963267948966 rad + pos: 39.5,16.5 + parent: 2173 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,15.5 parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3733 + - uid: 3781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,18.5 + pos: 39.5,7.5 parent: 2173 - type: AtmosPipeColor color: '#990000FF' @@ -22001,6 +22739,21 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3788 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2173 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2173 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3793 components: - type: Transform @@ -22009,6 +22762,20 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#990000FF' + - uid: 3794 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2173 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3808 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2173 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4126 components: - type: Transform @@ -22017,6 +22784,14 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,16.5 + parent: 2173 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4304 components: - type: Transform @@ -22033,13 +22808,6 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 4409 - components: - - type: Transform - pos: 39.5,5.5 - parent: 2173 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4495 components: - type: Transform @@ -25424,22 +26192,22 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 5262 + - uid: 5263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,25.5 + rot: -1.5707963267948966 rad + pos: 39.5,10.5 parent: 2173 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5263 + color: '#0055CCFF' + - uid: 5265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,25.5 + rot: 3.141592653589793 rad + pos: 40.5,9.5 parent: 2173 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 5266 components: - type: Transform @@ -25447,6 +26215,30 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#990000FF' + - uid: 5267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,8.5 + parent: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,7.5 + parent: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,6.5 + parent: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5270 components: - type: Transform @@ -25629,6 +26421,14 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,5.5 + parent: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5303 components: - type: Transform @@ -26637,14 +27437,6 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,9.5 - parent: 2173 - - type: AtmosPipeColor - color: '#990000FF' - uid: 558 components: - type: Transform @@ -26744,14 +27536,14 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2822 + - uid: 2860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 + rot: -1.5707963267948966 rad + pos: 6.5,23.5 parent: 2173 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 2920 components: - type: Transform @@ -26767,6 +27559,14 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,16.5 + parent: 2173 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3008 components: - type: Transform @@ -26781,6 +27581,14 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#990000FF' + - uid: 3103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,15.5 + parent: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3691 components: - type: Transform @@ -27275,6 +28083,13 @@ entities: parent: 2173 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5864 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5891 components: - type: Transform @@ -27428,29 +28243,29 @@ entities: joinedGrid: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 502 + - uid: 796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,17.5 + pos: 46.5,9.5 parent: 2173 - type: AtmosDevice joinedGrid: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 796 + - uid: 2165 components: - type: Transform - pos: 46.5,9.5 + rot: 1.5707963267948966 rad + pos: 37.5,10.5 parent: 2173 - type: AtmosDevice joinedGrid: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2384 + - uid: 2769 components: - type: Transform - pos: 40.5,10.5 + pos: 39.5,17.5 parent: 2173 - type: AtmosDevice joinedGrid: 2173 @@ -27476,10 +28291,10 @@ entities: joinedGrid: 2173 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3013 + - uid: 3063 components: - type: Transform - pos: 7.5,22.5 + pos: 45.5,17.5 parent: 2173 - type: AtmosDevice joinedGrid: 2173 @@ -27868,6 +28683,16 @@ entities: joinedGrid: 2173 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 2173 + - type: AtmosDevice + joinedGrid: 2173 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5953 components: - type: Transform @@ -27925,21 +28750,20 @@ entities: joinedGrid: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 501 + - uid: 2560 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,8.5 + pos: 5.5,22.5 parent: 2173 - type: AtmosDevice joinedGrid: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 503 + - uid: 2801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,18.5 + pos: 43.5,17.5 parent: 2173 - type: AtmosDevice joinedGrid: 2173 @@ -27964,10 +28788,11 @@ entities: joinedGrid: 2173 - type: AtmosPipeColor color: '#990000FF' - - uid: 3720 + - uid: 3805 components: - type: Transform - pos: 39.5,10.5 + rot: 1.5707963267948966 rad + pos: 37.5,9.5 parent: 2173 - type: AtmosDevice joinedGrid: 2173 @@ -28172,6 +28997,15 @@ entities: joinedGrid: 2173 - type: AtmosPipeColor color: '#990000FF' + - uid: 4926 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2173 + - type: AtmosDevice + joinedGrid: 2173 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5064 components: - type: Transform @@ -28414,6 +29248,11 @@ entities: parent: 2173 - type: PowerSupplier supplyRate: 6000 + - uid: 5455 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2173 - uid: 5802 components: - type: Transform @@ -29402,11 +30241,6 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,21.5 parent: 2173 - - uid: 620 - components: - - type: Transform - pos: 42.5,19.5 - parent: 2173 - uid: 635 components: - type: Transform @@ -29533,11 +30367,6 @@ entities: - type: Transform pos: 4.5,55.5 parent: 2173 - - uid: 780 - components: - - type: Transform - pos: 4.5,56.5 - parent: 2173 - uid: 781 components: - type: Transform @@ -30056,6 +30885,12 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,21.5 parent: 2173 + - uid: 2520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,7.5 + parent: 2173 - uid: 2541 components: - type: Transform @@ -30121,29 +30956,11 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,24.5 parent: 2173 - - uid: 2672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,6.5 - parent: 2173 - - uid: 2679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,6.5 - parent: 2173 - uid: 2753 components: - type: Transform pos: -5.5,19.5 parent: 2173 - - uid: 2764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,6.5 - parent: 2173 - uid: 2799 components: - type: Transform @@ -30161,6 +30978,29 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,27.5 parent: 2173 + - uid: 2979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,7.5 + parent: 2173 + - uid: 2986 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2173 + - uid: 3013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,56.5 + parent: 2173 + - uid: 3045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 2173 - uid: 3106 components: - type: Transform @@ -30203,16 +31043,22 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,21.5 parent: 2173 + - uid: 3716 + components: + - type: Transform + pos: 40.5,19.5 + parent: 2173 - uid: 3774 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,27.5 parent: 2173 - - uid: 4171 + - uid: 3910 components: - type: Transform - pos: -4.5,25.5 + rot: 3.141592653589793 rad + pos: 37.5,7.5 parent: 2173 - uid: 4225 components: @@ -30310,11 +31156,6 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,27.5 parent: 2173 - - uid: 5009 - components: - - type: Transform - pos: 12.5,20.5 - parent: 2173 - uid: 5010 components: - type: Transform @@ -30350,6 +31191,78 @@ entities: - type: Transform pos: 41.5,19.5 parent: 2173 + - uid: 5877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,58.5 + parent: 2173 + - uid: 6025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,50.5 + parent: 2173 + - uid: 6028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,53.5 + parent: 2173 + - uid: 6030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,54.5 + parent: 2173 + - uid: 6050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,56.5 + parent: 2173 + - uid: 6051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,56.5 + parent: 2173 + - uid: 6080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,58.5 + parent: 2173 + - uid: 6081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,59.5 + parent: 2173 + - uid: 6111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,61.5 + parent: 2173 + - uid: 6112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,61.5 + parent: 2173 + - uid: 6113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,61.5 + parent: 2173 + - uid: 6116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,61.5 + parent: 2173 - proto: GrilleBroken entities: - uid: 3105 @@ -30357,13 +31270,64 @@ entities: - type: Transform pos: 32.5,10.5 parent: 2173 + - uid: 6023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,61.5 + parent: 2173 + - uid: 6026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,52.5 + parent: 2173 + - uid: 6027 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2173 + - uid: 6052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,61.5 + parent: 2173 + - uid: 6109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,61.5 + parent: 2173 + - uid: 6114 + components: + - type: Transform + pos: -0.5,60.5 + parent: 2173 + - uid: 6115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,56.5 + parent: 2173 + - uid: 6117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,61.5 + parent: 2173 - proto: GunSafe entities: - uid: 4274 components: - type: Transform - pos: 8.5,19.5 + anchored: True + pos: 7.5,23.5 parent: 2173 + - type: DamageOnHighSpeedImpact + lastHit: 0 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -30415,6 +31379,23 @@ entities: - type: Transform pos: -43.60983,11.692366 parent: 2173 +- proto: HandheldStationMapUnpowered + entities: + - uid: 6149 + components: + - type: Transform + pos: 14.575308,16.57349 + parent: 2173 + - uid: 6150 + components: + - type: Transform + pos: 38.428596,15.708305 + parent: 2173 + - uid: 6151 + components: + - type: Transform + pos: 5.504186,22.699253 + parent: 2173 - proto: Hemostat entities: - uid: 2674 @@ -30426,8 +31407,6 @@ entities: entities: - uid: 2214 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,14.5 parent: 2173 @@ -30435,8 +31414,6 @@ entities: entities: - uid: 4138 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,13.5 parent: 2173 @@ -30444,8 +31421,6 @@ entities: entities: - uid: 4420 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,9.5 parent: 2173 @@ -30594,7 +31569,29 @@ entities: - uid: 1474 components: - type: Transform - pos: 30.099142,17.118307 + pos: 28.352488,17.108114 + parent: 2173 + - type: HandheldLight + toggleActionEntity: 2428 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 2428 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 4975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.592261,22.02486 parent: 2173 - proto: LessLethalVendingMachine entities: @@ -30603,12 +31600,19 @@ entities: - type: Transform pos: 6.5,6.5 parent: 2173 +- proto: Lighter + entities: + - uid: 2475 + components: + - type: Transform + pos: 28.428007,16.513512 + parent: 2173 - proto: LockerEvidence entities: - - uid: 3719 + - uid: 4301 components: - type: Transform - pos: 37.5,9.5 + pos: 46.5,15.5 parent: 2173 - proto: LockerFreezerBase entities: @@ -30651,13 +31655,11 @@ entities: ent: null - proto: LockerHeadOfPersonnelFilled entities: - - uid: 4378 + - uid: 4969 components: - type: Transform - pos: 8.5,18.5 + pos: 8.50093,23.502323 parent: 2173 - - type: Physics - bodyType: Static - proto: LockerJanitorFilled entities: - uid: 4325 @@ -30665,6 +31667,31 @@ entities: - type: Transform pos: -3.5,23.5 parent: 2173 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerMailCarrierFilled + entities: + - uid: 4943 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2173 - proto: LockerMedicineFilled entities: - uid: 2440 @@ -30679,10 +31706,10 @@ entities: parent: 2173 - proto: LockerSecurityFilled entities: - - uid: 3132 + - uid: 387 components: - type: Transform - pos: 39.5,11.5 + pos: 40.502724,18.50681 parent: 2173 - proto: MachineCryoSleepPod entities: @@ -30716,13 +31743,31 @@ entities: - uid: 805 components: - type: Transform - pos: 28.42206,16.847475 + pos: 29.810764,16.661615 parent: 2173 - uid: 807 components: - type: Transform - pos: 28.522831,16.557152 + pos: 29.342014,16.547031 + parent: 2173 +- proto: MailCarrierMothershipComputer + entities: + - uid: 4296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,16.5 parent: 2173 + - type: ContainerContainer + containers: + ShipyardConsole-targetId: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] - proto: MailingUnit entities: - uid: 1084 @@ -30755,22 +31800,19 @@ entities: - type: Configuration config: tag: mailroom - - uid: 2838 + - uid: 2146 components: - type: Transform - pos: 37.5,11.5 + pos: 39.5,15.5 parent: 2173 - type: MailingUnit tag: stationguard - - type: Configuration - config: - tag: stationguard - proto: MailTeleporter entities: - - uid: 3151 + - uid: 5000 components: - type: Transform - pos: 12.5,21.5 + pos: 12.5,20.5 parent: 2173 - proto: MaintenanceFluffSpawner entities: @@ -30871,13 +31913,6 @@ entities: - type: Transform pos: -48.114902,15.427771 parent: 2173 -- proto: MicrophoneInstrument - entities: - - uid: 2485 - components: - - type: Transform - pos: 42.99395,18.07156 - parent: 2173 - proto: MinimoogInstrument entities: - uid: 3688 @@ -30980,6 +32015,13 @@ entities: - type: Transform pos: -49.299927,10.571657 parent: 2173 +- proto: NFAshtray + entities: + - uid: 1753 + components: + - type: Transform + pos: 28.730091,16.628096 + parent: 2173 - proto: NitrogenCanister entities: - uid: 4068 @@ -30999,10 +32041,10 @@ entities: parent: 2173 - proto: NuclearBomb entities: - - uid: 2775 + - uid: 5005 components: - type: Transform - pos: 22.5,14.5 + pos: 23.5,15.5 parent: 2173 - proto: OxygenCanister entities: @@ -31165,6 +32207,12 @@ entities: hard: False restitution: 0 friction: 0.4 + - uid: 4974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.9261327,21.56176 + parent: 2173 - uid: 6043 components: - type: Transform @@ -31187,12 +32235,6 @@ entities: parent: 2173 - proto: PaperBin10 entities: - - uid: 2611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,22.5 - parent: 2173 - uid: 4454 components: - type: Transform @@ -31203,20 +32245,24 @@ entities: - type: Transform pos: 30.5,16.5 parent: 2173 + - uid: 4968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 2173 - proto: PaperBin5 entities: - - uid: 3041 + - uid: 2765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,10.5 + rot: 1.5707963267948966 rad + pos: 36.5,15.5 parent: 2173 - proto: PaperDoor entities: - uid: 3729 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 24.5,10.5 @@ -31291,8 +32337,6 @@ entities: entities: - uid: 2135 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -33.5,5.5 parent: 2173 @@ -31310,13 +32354,6 @@ entities: - type: Transform pos: 51.471947,10.549984 parent: 2173 -- proto: PlushieSpaceLizard - entities: - - uid: 4418 - components: - - type: Transform - pos: 40.59225,20.42348 - parent: 2173 - proto: PortableScrubber entities: - uid: 2749 @@ -31339,10 +32376,17 @@ entities: parent: 2173 - proto: PosterContrabandDonutCorp entities: - - uid: 2860 + - uid: 3058 components: - type: Transform - pos: 37.5,12.5 + pos: 42.5,14.5 + parent: 2173 +- proto: PosterLegitHelpOthers + entities: + - uid: 3739 + components: + - type: Transform + pos: 46.5,21.5 parent: 2173 - proto: PosterLegitMedicate entities: @@ -31353,11 +32397,10 @@ entities: parent: 2173 - proto: PosterLegitObey entities: - - uid: 1521 + - uid: 3131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,8.5 + pos: 42.5,17.5 parent: 2173 - proto: PosterLegitSMEpi entities: @@ -31397,6 +32440,11 @@ entities: - type: Transform pos: -0.5,13.5 parent: 2173 + - uid: 501 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2173 - uid: 2400 components: - type: Transform @@ -31457,6 +32505,11 @@ entities: - type: Transform pos: 0.5,51.5 parent: 2173 + - uid: 3102 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2173 - uid: 4165 components: - type: Transform @@ -31472,11 +32525,6 @@ entities: - type: Transform pos: -23.5,4.5 parent: 2173 - - uid: 4168 - components: - - type: Transform - pos: -19.5,4.5 - parent: 2173 - uid: 4429 components: - type: Transform @@ -31522,6 +32570,11 @@ entities: - type: Transform pos: 2.5,18.5 parent: 2173 + - uid: 4962 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2173 - uid: 5021 components: - type: Transform @@ -31557,11 +32610,6 @@ entities: - type: Transform pos: 11.5,28.5 parent: 2173 - - uid: 5809 - components: - - type: Transform - pos: 39.5,22.5 - parent: 2173 - uid: 5827 components: - type: Transform @@ -31608,49 +32656,31 @@ entities: parent: 2173 - proto: Poweredlight entities: - - uid: 615 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,23.5 - parent: 2173 - uid: 705 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,26.5 parent: 2173 - uid: 763 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 48.5,9.5 parent: 2173 - uid: 1197 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 20.5,20.5 parent: 2173 - uid: 1208 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 57.5,24.5 parent: 2173 - uid: 1244 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 57.5,3.5 parent: 2173 @@ -31658,84 +32688,47 @@ entities: powerLoad: 0 - uid: 1371 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -58.5,3.5 parent: 2173 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2220 + - uid: 2221 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 36.5,11.5 + pos: 21.5,16.5 parent: 2173 - uid: 2238 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 42.5,9.5 parent: 2173 - uid: 2616 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,25.5 parent: 2173 - - uid: 2776 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,15.5 - parent: 2173 - uid: 3111 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 36.5,20.5 parent: 2173 - - uid: 3745 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 46.5,18.5 - parent: 2173 - - uid: 3747 + - uid: 3762 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 40.5,18.5 + rot: 3.141592653589793 rad + pos: 44.5,15.5 parent: 2173 - uid: 3866 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,18.5 parent: 2173 - - uid: 3948 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,9.5 - parent: 2173 - uid: 4192 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -54.5,5.5 @@ -31744,8 +32737,6 @@ entities: powerLoad: 0 - uid: 4193 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -48.5,18.5 parent: 2173 @@ -31753,8 +32744,6 @@ entities: powerLoad: 0 - uid: 4196 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -51.5,16.5 @@ -31763,8 +32752,6 @@ entities: powerLoad: 0 - uid: 4197 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -32.5,1.5 @@ -31773,8 +32760,6 @@ entities: powerLoad: 0 - uid: 4198 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -42.5,1.5 @@ -31783,8 +32768,6 @@ entities: powerLoad: 0 - uid: 4199 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -38.5,8.5 @@ -31793,8 +32776,6 @@ entities: powerLoad: 0 - uid: 4200 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,12.5 parent: 2173 @@ -31802,8 +32783,6 @@ entities: powerLoad: 0 - uid: 4201 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -28.5,11.5 @@ -31812,8 +32791,6 @@ entities: powerLoad: 0 - uid: 4202 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -28.5,14.5 @@ -31822,8 +32799,6 @@ entities: powerLoad: 0 - uid: 4203 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,18.5 parent: 2173 @@ -31831,8 +32806,6 @@ entities: powerLoad: 0 - uid: 4207 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-5.5 @@ -31841,8 +32814,6 @@ entities: powerLoad: 0 - uid: 4208 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-15.5 @@ -31851,8 +32822,6 @@ entities: powerLoad: 0 - uid: 4209 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -32.5,-27.5 @@ -31861,8 +32830,6 @@ entities: powerLoad: 0 - uid: 4210 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -26.5,-27.5 @@ -31871,8 +32838,6 @@ entities: powerLoad: 0 - uid: 4211 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -26.5,-29.5 parent: 2173 @@ -31880,8 +32845,6 @@ entities: powerLoad: 0 - uid: 4212 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -32.5,-29.5 parent: 2173 @@ -31889,8 +32852,6 @@ entities: powerLoad: 0 - uid: 4213 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -13.5,1.5 @@ -31899,8 +32860,6 @@ entities: powerLoad: 0 - uid: 4214 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 21.5,1.5 @@ -31909,8 +32868,6 @@ entities: powerLoad: 0 - uid: 4215 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -22.5,1.5 @@ -31919,8 +32876,6 @@ entities: powerLoad: 0 - uid: 4216 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,6.5 parent: 2173 @@ -31928,8 +32883,6 @@ entities: powerLoad: 0 - uid: 4217 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,6.5 parent: 2173 @@ -31937,8 +32890,6 @@ entities: powerLoad: 0 - uid: 4218 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 12.5,1.5 @@ -31947,8 +32898,6 @@ entities: powerLoad: 0 - uid: 4219 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,14.5 @@ -31957,8 +32906,6 @@ entities: powerLoad: 0 - uid: 4220 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,14.5 @@ -31967,8 +32914,6 @@ entities: powerLoad: 0 - uid: 4221 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,8.5 @@ -31977,8 +32922,6 @@ entities: powerLoad: 0 - uid: 4222 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,8.5 @@ -31987,8 +32930,6 @@ entities: powerLoad: 0 - uid: 4223 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,21.5 @@ -31997,8 +32938,6 @@ entities: powerLoad: 0 - uid: 4224 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,25.5 @@ -32007,8 +32946,6 @@ entities: powerLoad: 0 - uid: 4226 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,15.5 @@ -32017,8 +32954,6 @@ entities: powerLoad: 0 - uid: 4227 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 11.5,10.5 @@ -32027,8 +32962,6 @@ entities: powerLoad: 0 - uid: 4228 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 14.5,16.5 parent: 2173 @@ -32036,8 +32969,6 @@ entities: powerLoad: 0 - uid: 4229 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-5.5 @@ -32046,8 +32977,6 @@ entities: powerLoad: 0 - uid: 4230 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-15.5 @@ -32056,8 +32985,6 @@ entities: powerLoad: 0 - uid: 4231 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 31.5,-27.5 @@ -32066,8 +32993,6 @@ entities: powerLoad: 0 - uid: 4232 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 25.5,-27.5 @@ -32076,8 +33001,6 @@ entities: powerLoad: 0 - uid: 4233 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,-29.5 parent: 2173 @@ -32085,8 +33008,6 @@ entities: powerLoad: 0 - uid: 4234 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,-29.5 parent: 2173 @@ -32094,8 +33015,6 @@ entities: powerLoad: 0 - uid: 4235 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,5.5 parent: 2173 @@ -32103,8 +33022,6 @@ entities: powerLoad: 0 - uid: 4236 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 36.5,1.5 @@ -32113,8 +33030,6 @@ entities: powerLoad: 0 - uid: 4237 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 45.5,1.5 @@ -32123,8 +33038,6 @@ entities: powerLoad: 0 - uid: 4246 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 50.5,15.5 @@ -32133,16 +33046,12 @@ entities: powerLoad: 0 - uid: 4248 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,20.5 parent: 2173 - uid: 4279 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,22.5 @@ -32151,16 +33060,12 @@ entities: powerLoad: 0 - uid: 4291 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 22.5,10.5 parent: 2173 - uid: 4312 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,34.5 parent: 2173 @@ -32168,8 +33073,6 @@ entities: powerLoad: 0 - uid: 4313 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,30.5 @@ -32178,8 +33081,6 @@ entities: powerLoad: 0 - uid: 4314 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,34.5 parent: 2173 @@ -32187,8 +33088,6 @@ entities: powerLoad: 0 - uid: 4315 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,36.5 @@ -32197,8 +33096,6 @@ entities: powerLoad: 0 - uid: 4316 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,41.5 @@ -32207,8 +33104,6 @@ entities: powerLoad: 0 - uid: 4317 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,47.5 parent: 2173 @@ -32216,27 +33111,13 @@ entities: powerLoad: 0 - uid: 4318 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,51.5 parent: 2173 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4319 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,57.5 - parent: 2173 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4320 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,58.5 @@ -32245,8 +33126,6 @@ entities: powerLoad: 0 - uid: 4321 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,50.5 @@ -32255,8 +33134,6 @@ entities: powerLoad: 0 - uid: 4322 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -4.5,40.5 @@ -32265,8 +33142,6 @@ entities: powerLoad: 0 - uid: 4323 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -4.5,48.5 @@ -32275,8 +33150,6 @@ entities: powerLoad: 0 - uid: 4383 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-0.5 parent: 2173 @@ -32284,72 +33157,65 @@ entities: powerLoad: 0 - uid: 4384 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-0.5 parent: 2173 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4423 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,15.5 - parent: 2173 - uid: 4424 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,26.5 parent: 2173 - uid: 4425 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 30.5,20.5 parent: 2173 - uid: 4434 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -43.5,9.5 parent: 2173 - uid: 4437 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -45.5,15.5 parent: 2173 - uid: 4934 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 48.5,6.5 parent: 2173 + - uid: 4951 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2173 - uid: 5011 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,26.5 parent: 2173 + - uid: 5745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,22.5 + parent: 2173 + - uid: 6121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,56.5 + parent: 2173 - proto: PoweredlightColoredRed entities: - uid: 415 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 51.5,9.5 @@ -32358,8 +33224,6 @@ entities: entities: - uid: 4191 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -47.5,11.5 @@ -32373,6 +33237,18 @@ entities: - type: Transform pos: -18.5,16.5 parent: 2173 + - uid: 804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,9.5 + parent: 2173 + - uid: 2153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,11.5 + parent: 2173 - uid: 2613 components: - type: Transform @@ -32402,11 +33278,6 @@ entities: - type: Transform pos: 25.5,12.5 parent: 2173 - - uid: 3780 - components: - - type: Transform - pos: 36.5,15.5 - parent: 2173 - uid: 4123 components: - type: Transform @@ -32502,6 +33373,12 @@ entities: - type: Transform pos: -36.5,6.5 parent: 2173 + - uid: 6122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,58.5 + parent: 2173 - proto: Rack entities: - uid: 1473 @@ -32520,11 +33397,6 @@ entities: - type: Transform pos: 45.5,13.5 parent: 2173 - - uid: 2428 - components: - - type: Transform - pos: 32.5,16.5 - parent: 2173 - uid: 2438 components: - type: Transform @@ -32540,15 +33412,16 @@ entities: - type: Transform pos: -43.5,11.5 parent: 2173 - - uid: 4158 + - uid: 4050 components: - type: Transform - pos: -28.5,14.5 + rot: 1.5707963267948966 rad + pos: 32.5,18.5 parent: 2173 - - uid: 4296 + - uid: 4158 components: - type: Transform - pos: 31.5,16.5 + pos: -28.5,14.5 parent: 2173 - proto: RadioHandheld entities: @@ -32583,6 +33456,18 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,8.5 parent: 2173 + - uid: 2344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,10.5 + parent: 2173 + - uid: 2980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2173 - uid: 3136 components: - type: Transform @@ -32607,6 +33492,12 @@ entities: rot: 3.141592653589793 rad pos: 27.5,17.5 parent: 2173 + - uid: 4950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,11.5 + parent: 2173 - uid: 5647 components: - type: Transform @@ -32761,12 +33652,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,16.5 parent: 2173 - - uid: 2801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,19.5 - parent: 2173 - proto: RandomPosterContraband entities: - uid: 521 @@ -32781,15 +33666,10 @@ entities: rot: 3.141592653589793 rad pos: 24.5,15.5 parent: 2173 - - uid: 2421 - components: - - type: Transform - pos: 38.5,14.5 - parent: 2173 - - uid: 2429 + - uid: 3112 components: - type: Transform - pos: 34.5,14.5 + pos: 37.5,12.5 parent: 2173 - uid: 4492 components: @@ -32847,10 +33727,10 @@ entities: rot: 3.141592653589793 rad pos: 59.5,23.5 parent: 2173 - - uid: 5627 + - uid: 3116 components: - type: Transform - pos: -58.5,4.5 + pos: 38.5,7.5 parent: 2173 - uid: 5628 components: @@ -32932,16 +33812,6 @@ entities: - type: Transform pos: 55.5,0.5 parent: 2173 - - uid: 5644 - components: - - type: Transform - pos: 18.5,15.5 - parent: 2173 - - uid: 5648 - components: - - type: Transform - pos: -0.5,48.5 - parent: 2173 - uid: 5649 components: - type: Transform @@ -32952,6 +33822,11 @@ entities: - type: Transform pos: 23.5,12.5 parent: 2173 + - uid: 5822 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2173 - proto: RandomSoap entities: - uid: 4421 @@ -32961,15 +33836,10 @@ entities: parent: 2173 - proto: RandomVending entities: - - uid: 5823 - components: - - type: Transform - pos: 40.5,22.5 - parent: 2173 - - uid: 5824 + - uid: 4418 components: - type: Transform - pos: 7.5,28.5 + pos: 42.5,26.5 parent: 2173 - proto: RandomVendingDrinks entities: @@ -32981,19 +33851,19 @@ entities: - uid: 2528 components: - type: Transform - pos: -2.5,37.5 + pos: 7.5,28.5 parent: 2173 - proto: RandomVendingSnacks entities: - - uid: 2523 + - uid: 3749 components: - type: Transform - pos: 3.5,51.5 + pos: 43.5,10.5 parent: 2173 - - uid: 3749 + - uid: 4946 components: - type: Transform - pos: 43.5,10.5 + pos: 6.5,28.5 parent: 2173 - proto: ReinforcedPlasmaWindow entities: @@ -33037,6 +33907,12 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,27.5 parent: 2173 + - uid: 507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,7.5 + parent: 2173 - uid: 531 components: - type: Transform @@ -33096,11 +33972,6 @@ entities: - type: Transform pos: 43.5,19.5 parent: 2173 - - uid: 622 - components: - - type: Transform - pos: 41.5,19.5 - parent: 2173 - uid: 666 components: - type: Transform @@ -33503,18 +34374,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,54.5 parent: 2173 - - uid: 928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,55.5 - parent: 2173 - - uid: 929 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,56.5 - parent: 2173 - uid: 930 components: - type: Transform @@ -34622,11 +35481,6 @@ entities: - type: Transform pos: -19.5,15.5 parent: 2173 - - uid: 2165 - components: - - type: Transform - pos: 42.5,19.5 - parent: 2173 - uid: 2500 components: - type: Transform @@ -34697,22 +35551,22 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,27.5 parent: 2173 - - uid: 2681 + - uid: 2828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,6.5 + pos: 18.5,12.5 parent: 2173 - - uid: 2736 + - uid: 2870 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,6.5 + pos: 35.5,7.5 parent: 2173 - - uid: 2828 + - uid: 2985 components: - type: Transform - pos: 18.5,12.5 + rot: 3.141592653589793 rad + pos: 36.5,7.5 parent: 2173 - uid: 3048 components: @@ -34726,10 +35580,10 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,23.5 parent: 2173 - - uid: 3149 + - uid: 3719 components: - type: Transform - pos: 12.5,20.5 + pos: 41.5,19.5 parent: 2173 - uid: 3768 components: @@ -34743,12 +35597,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,27.5 parent: 2173 - - uid: 3792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,6.5 - parent: 2173 - uid: 3915 components: - type: Transform @@ -34791,12 +35639,22 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,27.5 parent: 2173 + - uid: 3987 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2173 - uid: 4040 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,27.5 parent: 2173 + - uid: 4122 + components: + - type: Transform + pos: 40.5,19.5 + parent: 2173 - uid: 4190 components: - type: Transform @@ -34833,6 +35691,12 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,29.5 parent: 2173 + - uid: 4953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 2173 - uid: 4984 components: - type: Transform @@ -34898,6 +35762,24 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,27.5 parent: 2173 + - uid: 5865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,56.5 + parent: 2173 + - uid: 5876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,58.5 + parent: 2173 + - uid: 5878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,55.5 + parent: 2173 - proto: SawElectric entities: - uid: 2673 @@ -34907,31 +35789,31 @@ entities: parent: 2173 - proto: ServiceTechFab entities: - - uid: 1764 + - uid: 4936 components: - type: Transform - pos: 32.5,18.5 + pos: 32.5,17.5 parent: 2173 - proto: SheetGlass entities: - uid: 4819 components: - type: Transform - pos: 32.549232,16.804625 + pos: 32.45495,18.826864 parent: 2173 - proto: SheetPlastic entities: - uid: 4930 components: - type: Transform - pos: 32.007565,16.773375 + pos: 32.61017,18.753946 parent: 2173 - proto: SheetSteel entities: - uid: 4931 components: - type: Transform - pos: 31.476742,16.762957 + pos: 32.39142,18.68103 parent: 2173 - proto: SignalButton entities: @@ -35322,15 +36204,24 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 2173 +- proto: SignPrison + entities: + - uid: 801 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2173 - proto: SignSec entities: - - uid: 2569 + - uid: 2154 components: - - type: MetaData - desc: A sign indicating the Station Guard office. - name: station guard sign - type: Transform - pos: 38.5,6.5 + pos: 35.5,21.5 + parent: 2173 + - uid: 3113 + components: + - type: Transform + pos: 38.5,21.5 parent: 2173 - proto: SignShipDock entities: @@ -35537,11 +36428,14 @@ entities: entities: - uid: 3002 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 50.5,11.5 parent: 2173 + - uid: 3997 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2173 - proto: SpaceCash entities: - uid: 390 @@ -35651,10 +36545,10 @@ entities: parent: 2173 - proto: SpawnPointPassenger entities: - - uid: 413 + - uid: 411 components: - type: Transform - pos: 43.5,22.5 + pos: 43.5,26.5 parent: 2173 - uid: 1504 components: @@ -35693,10 +36587,10 @@ entities: parent: 2173 - proto: SpawnPointSecurityGuard entities: - - uid: 4841 + - uid: 4817 components: - type: Transform - pos: 38.5,10.5 + pos: 38.5,16.5 parent: 2173 - proto: SpawnPointStc entities: @@ -35724,10 +36618,10 @@ entities: parent: 2173 - proto: SpawnVehicleSecway entities: - - uid: 346 + - uid: 2681 components: - type: Transform - pos: 38.5,11.5 + pos: 40.5,15.5 parent: 2173 - proto: SprayBottleSpaceCleaner entities: @@ -35741,19 +36635,13 @@ entities: - type: Transform pos: -5.470902,21.925623 parent: 2173 -- proto: Stairs +- proto: StairStageDark entities: - - uid: 2976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,17.5 - parent: 2173 - - uid: 3009 + - uid: 3743 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,18.5 + pos: 37.5,8.5 parent: 2173 - proto: StationAdminBankATM entities: @@ -35773,6 +36661,114 @@ entities: showEnts: False occludes: True ent: null +- proto: StationMap + entities: + - uid: 3149 + components: + - type: Transform + pos: -58.5,4.5 + parent: 2173 + - uid: 3151 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2173 + - uid: 5190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,6.5 + parent: 2173 + - uid: 5191 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2173 + - uid: 5192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 2173 + - uid: 5193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2173 + - uid: 5194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 2173 + - uid: 5195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2173 + - uid: 5196 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2173 + - uid: 5229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,29.5 + parent: 2173 + - uid: 5230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,50.5 + parent: 2173 + - uid: 5232 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2173 + - uid: 5233 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2173 + - uid: 5234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,23.5 + parent: 2173 + - uid: 5235 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2173 + - uid: 5236 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2173 + - uid: 5237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 2173 + - uid: 5238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 2173 + - uid: 5262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,0.5 + parent: 2173 - proto: Stool entities: - uid: 1545 @@ -35818,20 +36814,389 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,36.5 parent: 2173 + - uid: 2777 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2173 +- proto: SurveillanceCameraCommand + entities: + - uid: 5705 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2173 + - type: SurveillanceCamera + id: SR Office + - uid: 5706 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2173 + - type: SurveillanceCamera + id: Command Antechamber + - uid: 5707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2173 + - type: SurveillanceCamera + id: Bridge + - uid: 5710 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2173 + - type: SurveillanceCamera + id: Server Room +- proto: SurveillanceCameraEngineering + entities: + - uid: 5712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,14.5 + parent: 2173 + - type: SurveillanceCamera + id: Gravity Generator + - uid: 5713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,18.5 + parent: 2173 + - type: SurveillanceCamera + id: Atmospherics + - uid: 5715 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2173 + - type: SurveillanceCamera + id: Engineering Back + - uid: 5716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,12.5 + parent: 2173 + - type: SurveillanceCamera + id: West Enterance + - uid: 5724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,8.5 + parent: 2173 + - type: SurveillanceCamera + id: Engineering Front +- proto: SurveillanceCameraGeneral + entities: + - uid: 505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,3.5 + parent: 2173 + - type: SurveillanceCamera + id: Dock 1 + - uid: 2656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-23.5 + parent: 2173 + - type: SurveillanceCamera + id: Dock 2 + - uid: 5454 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2173 + - type: SurveillanceCamera + id: Dock 6a + - uid: 5747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 2173 + - type: SurveillanceCamera + id: Dock 3 + - uid: 5750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,3.5 + parent: 2173 + - type: SurveillanceCamera + id: Dock 4 + - uid: 5757 + components: + - type: Transform + pos: 57.5,24.5 + parent: 2173 + - type: SurveillanceCamera + id: Dock 5 + - uid: 5759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,56.5 + parent: 2173 + - type: SurveillanceCamera + id: Dock 7b + - uid: 5760 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2173 + - type: SurveillanceCamera + id: Dock 7a + - uid: 5770 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2173 + - type: SurveillanceCamera + id: Hallway SW 1 + - uid: 5771 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2173 + - type: SurveillanceCamera + id: ATMs + - uid: 5772 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2173 + - type: SurveillanceCamera + id: Hallway SE 2 + - uid: 5773 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2173 + - type: SurveillanceCamera + id: Hallway SE 1 + - uid: 5774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-9.5 + parent: 2173 + - type: SurveillanceCamera + id: Pier East + - uid: 5776 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2173 + - type: SurveillanceCamera + id: Hallway SW 2 + - uid: 5809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,24.5 + parent: 2173 + - type: SurveillanceCamera + id: Hallway SR West + - uid: 5811 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2173 + - type: SurveillanceCamera + id: Hallway SR North + - uid: 5812 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2173 + - type: SurveillanceCamera + id: Hallway Mail + - uid: 5817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,27.5 + parent: 2173 + - type: SurveillanceCamera + id: Dock 6b + - uid: 5819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,26.5 + parent: 2173 + - type: SurveillanceCamera + id: Hallway Security + - uid: 5821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-9.5 + parent: 2173 + - type: SurveillanceCamera + id: Pier West +- proto: SurveillanceCameraMedical + entities: + - uid: 5725 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2173 + - type: SurveillanceCamera + id: Cryo and Cloning + - uid: 5727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,8.5 + parent: 2173 + - type: SurveillanceCamera + id: Medical Lobby + - uid: 5731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,9.5 + parent: 2173 + - type: SurveillanceCamera + id: Medical Supply Room + - uid: 5732 + components: + - type: Transform + pos: -45.5,13.5 + parent: 2173 + - type: SurveillanceCamera + id: Morgue +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 2774 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2173 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 4058 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2173 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 2777 + - uid: 3900 components: - type: Transform - pos: 21.5,15.5 + pos: 20.5,14.5 + parent: 2173 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 3756 + components: + - type: Transform + pos: 21.5,14.5 parent: 2173 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 3055 + - uid: 2658 components: - type: Transform - pos: 20.5,15.5 + pos: 22.5,14.5 parent: 2173 +- proto: SurveillanceCameraRouterService + entities: + - uid: 3776 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2173 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 3059 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2173 +- proto: SurveillanceCameraSecurity + entities: + - uid: 5704 + components: + - type: Transform + pos: 43.5,15.5 + parent: 2173 + - type: SurveillanceCamera + id: Brig +- proto: SurveillanceCameraService + entities: + - uid: 398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,22.5 + parent: 2173 + - type: SurveillanceCamera + id: Janitor's Closet + - uid: 2222 + components: + - type: Transform + pos: 51.5,15.5 + parent: 2173 + - type: SurveillanceCamera + id: Disposals + - uid: 2224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 2173 + - type: SurveillanceCamera + id: Mail Office + - uid: 2637 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2173 + - type: SurveillanceCamera + id: Breakroom + - uid: 5711 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2173 + - type: SurveillanceCamera + id: Theater +- proto: SurveillanceCameraSupply + entities: + - uid: 5742 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2173 + - type: SurveillanceCamera + id: Sales Pad + - uid: 5743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,47.5 + parent: 2173 + - type: SurveillanceCamera + id: Cargo Request Pads + - uid: 5744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,51.5 + parent: 2173 + - type: SurveillanceCamera + id: North Cargo - proto: TableCarpet entities: - uid: 1087 @@ -35971,18 +37336,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,10.5 parent: 2173 - - uid: 799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,9.5 - parent: 2173 - - uid: 804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,11.5 - parent: 2173 - uid: 817 components: - type: Transform @@ -36028,12 +37381,6 @@ entities: rot: 3.141592653589793 rad pos: -49.5,7.5 parent: 2173 - - uid: 1210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,23.5 - parent: 2173 - uid: 1214 components: - type: Transform @@ -36076,16 +37423,25 @@ entities: - type: Transform pos: 19.5,20.5 parent: 2173 - - uid: 2563 + - uid: 2576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,10.5 + pos: 27.5,20.5 parent: 2173 - - uid: 2576 + - uid: 2611 components: - type: Transform - pos: 27.5,20.5 + pos: 36.5,15.5 + parent: 2173 + - uid: 2736 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2173 + - uid: 2737 + components: + - type: Transform + pos: 36.5,16.5 parent: 2173 - uid: 2739 components: @@ -36149,6 +37505,18 @@ entities: - type: Transform pos: 21.5,20.5 parent: 2173 + - uid: 3114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,17.5 + parent: 2173 + - uid: 3120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,18.5 + parent: 2173 - uid: 3152 components: - type: Transform @@ -36222,178 +37590,148 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,11.5 parent: 2173 - - uid: 5197 + - uid: 4924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,22.5 + pos: 37.5,15.5 parent: 2173 - - uid: 5755 + - uid: 4952 components: - type: Transform - pos: 6.5,18.5 + rot: 1.5707963267948966 rad + pos: 4.5,20.5 parent: 2173 -- proto: TableWood - entities: - - uid: 4175 + - uid: 4958 components: - type: Transform - pos: -3.5,28.5 + rot: 1.5707963267948966 rad + pos: 5.5,20.5 parent: 2173 - - uid: 4286 + - uid: 4967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,10.5 + rot: 1.5707963267948966 rad + pos: 3.5,21.5 parent: 2173 - - uid: 4287 + - uid: 5197 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,9.5 + pos: 5.5,22.5 parent: 2173 - - uid: 5374 + - uid: 5755 components: - type: Transform - pos: 13.5,16.5 + pos: 6.5,18.5 parent: 2173 - - uid: 5723 +- proto: TableReinforcedGlass + entities: + - uid: 3032 components: - type: Transform - pos: 14.5,16.5 + rot: 1.5707963267948966 rad + pos: 8.5,21.5 parent: 2173 -- proto: TableWoodReinforced - entities: - - uid: 2518 + - uid: 4970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,17.5 + rot: 1.5707963267948966 rad + pos: 7.5,21.5 parent: 2173 - - uid: 2519 +- proto: TableWood + entities: + - uid: 4175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,17.5 + pos: -3.5,28.5 parent: 2173 - - uid: 2520 + - uid: 4286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,18.5 + rot: 3.141592653589793 rad + pos: 22.5,10.5 parent: 2173 - - uid: 3120 + - uid: 4287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,18.5 + rot: 3.141592653589793 rad + pos: 22.5,9.5 parent: 2173 - - uid: 3912 + - uid: 5374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,17.5 + pos: 13.5,16.5 parent: 2173 - - uid: 3987 + - uid: 5723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,18.5 + pos: 14.5,16.5 parent: 2173 - proto: TelecomServerFilled entities: - - uid: 1224 + - uid: 2775 components: - type: Transform - pos: 19.5,15.5 + pos: 19.5,16.5 parent: 2173 - proto: TintedWindow entities: - uid: 1381 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -54.5,11.5 parent: 2173 - uid: 1382 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -54.5,13.5 parent: 2173 - uid: 1383 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -54.5,15.5 parent: 2173 - uid: 1384 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -54.5,17.5 parent: 2173 - uid: 1399 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -53.5,15.5 parent: 2173 - uid: 1400 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -53.5,13.5 parent: 2173 - uid: 1401 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -53.5,11.5 parent: 2173 - uid: 1402 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -53.5,17.5 parent: 2173 - uid: 1411 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,18.5 parent: 2173 - uid: 1652 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -50.5,18.5 parent: 2173 - uid: 2752 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,19.5 parent: 2173 - - uid: 4170 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -4.5,25.5 - parent: 2173 - proto: ToiletEmpty entities: - uid: 2557 @@ -36580,8 +37918,8 @@ entities: - uid: 514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,19.5 + rot: -3.141592653589793 rad + pos: 8.5,18.5 parent: 2173 - proto: VehicleJanicartDestroyed entities: @@ -36600,31 +37938,29 @@ entities: - uid: 4428 components: - type: Transform - pos: 35.457283,11.04653 + pos: 38.428623,15.602282 parent: 2173 - proto: VendingMachineAstroVend entities: - uid: 2756 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -7.5,6.5 parent: 2173 - uid: 5794 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 4.5,51.5 parent: 2173 - proto: VendingMachineAutoTuneVend entities: - - uid: 3102 + - uid: 2343 components: - type: Transform - pos: 39.5,15.5 + pos: 35.5,6.5 parent: 2173 + missingComponents: + - Anchorable - proto: VendingMachineCargoDrobe entities: - uid: 2843 @@ -36636,8 +37972,6 @@ entities: entities: - uid: 1211 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 3.5,20.5 parent: 2173 @@ -36648,21 +37982,10 @@ entities: - type: Transform pos: 49.5,4.5 parent: 2173 -- proto: VendingMachineCircuitVend - entities: - - uid: 4469 - components: - - type: MetaData - flags: SessionSpecific - - type: Transform - pos: -11.5,6.5 - parent: 2173 - proto: VendingMachineClothing entities: - uid: 2433 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -49.5,18.5 parent: 2173 @@ -36684,11 +38007,25 @@ entities: entities: - uid: 2418 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -44.5,5.5 parent: 2173 +- proto: VendingMachineFlatpackVend + entities: + - uid: 4469 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2173 +- proto: VendingMachineGames + entities: + - uid: 4955 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2173 + missingComponents: + - Anchorable - proto: VendingMachineJaniDrobe entities: - uid: 2143 @@ -36705,10 +38042,10 @@ entities: parent: 2173 - proto: VendingMachineMailDrobe entities: - - uid: 2475 + - uid: 4942 components: - type: Transform - pos: 27.5,16.5 + pos: 32.5,15.5 parent: 2173 - proto: VendingMachineMedical entities: @@ -36719,8 +38056,6 @@ entities: parent: 2173 - uid: 2439 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -45.5,7.5 parent: 2173 @@ -36756,40 +38091,51 @@ entities: entities: - uid: 2411 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 16.5,5.5 parent: 2173 - uid: 5795 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -2.5,36.5 parent: 2173 - proto: VendingMachineSec entities: - - uid: 803 + - uid: 502 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2173 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 4170 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2173 + - uid: 4171 components: - type: Transform - pos: 40.5,11.5 + pos: 3.5,51.5 parent: 2173 - proto: VendingMachineTheater entities: - uid: 2434 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -47.5,18.5 parent: 2173 + - uid: 3744 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2173 + missingComponents: + - Anchorable - proto: VendingMachineVendomat entities: - uid: 2670 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -43.5,5.5 parent: 2173 @@ -36797,8 +38143,6 @@ entities: entities: - uid: 2405 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -13.5,5.5 parent: 2173 @@ -36806,11 +38150,17 @@ entities: entities: - uid: 2417 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -45.5,5.5 parent: 2173 +- proto: WallmountTelevision + entities: + - uid: 503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,17.5 + parent: 2173 - proto: WallmountTelevisionFrame entities: - uid: 5622 @@ -36833,3758 +38183,2770 @@ entities: entities: - uid: 1 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,-24.5 parent: 2173 - uid: 2 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-24.5 parent: 2173 - uid: 3 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,-28.5 parent: 2173 - uid: 4 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-28.5 parent: 2173 - uid: 8 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,7.5 parent: 2173 - uid: 9 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-30.5 parent: 2173 - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-30.5 parent: 2173 - uid: 11 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-28.5 parent: 2173 - uid: 12 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -33.5,-28.5 parent: 2173 - uid: 13 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -33.5,-24.5 parent: 2173 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-24.5 parent: 2173 - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -32.5,-28.5 parent: 2173 - uid: 22 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -26.5,-28.5 parent: 2173 - uid: 23 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-20.5 parent: 2173 - uid: 24 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-19.5 parent: 2173 - uid: 25 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-20.5 parent: 2173 - uid: 26 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-19.5 parent: 2173 - uid: 27 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-15.5 parent: 2173 - uid: 28 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-14.5 parent: 2173 - uid: 29 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-15.5 parent: 2173 - uid: 30 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-14.5 parent: 2173 - uid: 31 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-10.5 parent: 2173 - uid: 32 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-9.5 parent: 2173 - uid: 33 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-10.5 parent: 2173 - uid: 34 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-9.5 parent: 2173 - uid: 35 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-5.5 parent: 2173 - uid: 36 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-4.5 parent: 2173 - uid: 37 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-5.5 parent: 2173 - uid: 38 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-4.5 parent: 2173 - uid: 39 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,-0.5 parent: 2173 - uid: 40 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,0.5 parent: 2173 - uid: 41 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -26.5,0.5 parent: 2173 - uid: 42 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,-0.5 parent: 2173 - uid: 43 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,0.5 parent: 2173 - uid: 44 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -32.5,0.5 parent: 2173 - uid: 45 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -22.5,0.5 parent: 2173 - uid: 46 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -21.5,0.5 parent: 2173 - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,0.5 parent: 2173 - uid: 48 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,0.5 parent: 2173 - uid: 49 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,0.5 parent: 2173 - uid: 50 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,0.5 parent: 2173 - uid: 51 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,0.5 parent: 2173 - uid: 52 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,0.5 parent: 2173 - uid: 53 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,0.5 parent: 2173 - uid: 54 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,0.5 parent: 2173 - uid: 55 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-0.5 parent: 2173 - uid: 56 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-0.5 parent: 2173 - uid: 57 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,0.5 parent: 2173 - uid: 58 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,0.5 parent: 2173 - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-4.5 parent: 2173 - uid: 60 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-5.5 parent: 2173 - uid: 61 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-4.5 parent: 2173 - uid: 62 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-5.5 parent: 2173 - uid: 63 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-9.5 parent: 2173 - uid: 64 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-10.5 parent: 2173 - uid: 65 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-10.5 parent: 2173 - uid: 66 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-9.5 parent: 2173 - uid: 67 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-15.5 parent: 2173 - uid: 68 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-14.5 parent: 2173 - uid: 69 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-15.5 parent: 2173 - uid: 70 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-14.5 parent: 2173 - uid: 71 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-19.5 parent: 2173 - uid: 72 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-20.5 parent: 2173 - uid: 73 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-19.5 parent: 2173 - uid: 74 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-20.5 parent: 2173 - uid: 75 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-24.5 parent: 2173 - uid: 76 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-24.5 parent: 2173 - uid: 77 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,-24.5 parent: 2173 - uid: 78 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,-28.5 parent: 2173 - uid: 79 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,-28.5 parent: 2173 - uid: 80 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-28.5 parent: 2173 - uid: 81 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,-30.5 parent: 2173 - uid: 82 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-30.5 parent: 2173 - uid: 83 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,-28.5 parent: 2173 - uid: 84 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,-28.5 parent: 2173 - uid: 85 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,-28.5 parent: 2173 - uid: 86 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,-24.5 parent: 2173 - uid: 87 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,0.5 parent: 2173 - uid: 88 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,0.5 parent: 2173 - uid: 89 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 16.5,0.5 parent: 2173 - uid: 90 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 15.5,0.5 parent: 2173 - uid: 91 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,0.5 parent: 2173 - uid: 92 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,0.5 parent: 2173 - uid: 93 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,0.5 parent: 2173 - uid: 94 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,0.5 parent: 2173 - uid: 200 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 55.5,-1.5 parent: 2173 - uid: 201 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 55.5,0.5 parent: 2173 - uid: 202 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 59.5,-1.5 parent: 2173 - uid: 203 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 59.5,0.5 parent: 2173 - uid: 204 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 61.5,0.5 parent: 2173 - uid: 205 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 61.5,4.5 parent: 2173 - uid: 206 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 59.5,4.5 parent: 2173 - uid: 208 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,5.5 parent: 2173 - uid: 210 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,5.5 parent: 2173 - uid: 211 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,5.5 parent: 2173 - uid: 212 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,5.5 parent: 2173 - uid: 213 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,5.5 parent: 2173 - uid: 217 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,5.5 parent: 2173 - uid: 218 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,5.5 parent: 2173 - uid: 219 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,6.5 parent: 2173 - uid: 220 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 16.5,6.5 parent: 2173 - uid: 224 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,6.5 parent: 2173 - uid: 225 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,6.5 parent: 2173 - uid: 226 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,7.5 parent: 2173 - uid: 227 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,7.5 parent: 2173 - uid: 231 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,13.5 parent: 2173 - uid: 232 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,14.5 parent: 2173 - uid: 233 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,7.5 parent: 2173 - uid: 237 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,7.5 parent: 2173 - uid: 238 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,6.5 parent: 2173 - uid: 239 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,6.5 parent: 2173 - uid: 240 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,6.5 parent: 2173 - uid: 244 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -18.5,6.5 parent: 2173 - uid: 245 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -18.5,5.5 parent: 2173 - uid: 246 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -19.5,5.5 parent: 2173 - uid: 251 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -26.5,5.5 parent: 2173 - uid: 252 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -27.5,5.5 parent: 2173 - uid: 253 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -23.5,5.5 parent: 2173 - uid: 254 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -24.5,5.5 parent: 2173 - uid: 255 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,5.5 parent: 2173 - uid: 258 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,14.5 parent: 2173 - uid: 262 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,9.5 parent: 2173 - uid: 263 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,8.5 parent: 2173 - uid: 264 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,7.5 parent: 2173 - uid: 265 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,8.5 parent: 2173 - uid: 270 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,14.5 parent: 2173 - uid: 274 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 35.5,0.5 parent: 2173 - uid: 275 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 36.5,0.5 parent: 2173 - uid: 276 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 40.5,0.5 parent: 2173 - uid: 277 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 41.5,0.5 parent: 2173 - uid: 278 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 51.5,0.5 parent: 2173 - uid: 279 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 50.5,0.5 parent: 2173 - uid: 280 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 46.5,0.5 parent: 2173 - uid: 281 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 45.5,0.5 parent: 2173 - uid: 282 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,0.5 parent: 2173 - uid: 283 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,0.5 parent: 2173 - uid: 284 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,0.5 parent: 2173 - uid: 285 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,0.5 parent: 2173 - uid: 286 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,0.5 parent: 2173 - uid: 287 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -47.5,0.5 parent: 2173 - uid: 288 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -51.5,0.5 parent: 2173 - uid: 289 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -52.5,0.5 parent: 2173 - uid: 290 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -56.5,0.5 parent: 2173 - uid: 291 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -56.5,-1.5 parent: 2173 - uid: 292 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -60.5,-1.5 parent: 2173 - uid: 293 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -60.5,0.5 parent: 2173 - uid: 294 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -62.5,0.5 parent: 2173 - uid: 295 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -62.5,4.5 parent: 2173 - uid: 296 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -60.5,4.5 parent: 2173 - uid: 297 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -56.5,4.5 parent: 2173 - uid: 298 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,4.5 parent: 2173 - uid: 299 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,5.5 parent: 2173 - uid: 301 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -58.5,4.5 parent: 2173 - uid: 339 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 57.5,4.5 parent: 2173 - uid: 341 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 55.5,4.5 parent: 2173 - uid: 342 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,4.5 parent: 2173 - uid: 343 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,5.5 parent: 2173 - uid: 351 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,13.5 parent: 2173 - uid: 352 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,7.5 parent: 2173 - uid: 353 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,7.5 parent: 2173 - uid: 354 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,7.5 parent: 2173 - uid: 356 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,9.5 parent: 2173 - uid: 357 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,9.5 parent: 2173 - uid: 358 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,7.5 parent: 2173 - uid: 359 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,14.5 parent: 2173 - uid: 361 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,13.5 parent: 2173 - uid: 362 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,14.5 parent: 2173 - uid: 363 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,9.5 parent: 2173 - uid: 364 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 11.5,9.5 parent: 2173 - uid: 365 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 12.5,9.5 parent: 2173 - uid: 367 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,17.5 parent: 2173 - uid: 370 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2173 - uid: 371 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,9.5 parent: 2173 - uid: 372 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2173 - uid: 373 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 22.5,8.5 parent: 2173 - uid: 374 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 23.5,8.5 parent: 2173 - uid: 377 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,9.5 parent: 2173 - uid: 378 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,8.5 parent: 2173 - uid: 379 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -23.5,8.5 parent: 2173 - uid: 380 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -24.5,8.5 parent: 2173 - uid: 382 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,14.5 parent: 2173 - uid: 388 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,13.5 parent: 2173 - uid: 392 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 41.5,10.5 parent: 2173 - uid: 394 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,11.5 + rot: 1.5707963267948966 rad + pos: 46.5,14.5 parent: 2173 - uid: 396 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,17.5 parent: 2173 - uid: 397 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 18.5,16.5 parent: 2173 - - uid: 398 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 2173 - uid: 402 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 27.5,8.5 parent: 2173 - uid: 403 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 24.5,8.5 parent: 2173 - uid: 404 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 25.5,8.5 parent: 2173 - uid: 405 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 26.5,8.5 parent: 2173 - uid: 406 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 27.5,9.5 parent: 2173 - uid: 407 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 27.5,10.5 parent: 2173 - uid: 408 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 27.5,11.5 parent: 2173 - uid: 409 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 27.5,12.5 parent: 2173 - uid: 410 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 27.5,13.5 parent: 2173 - uid: 423 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 2173 - uid: 429 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -16.5,17.5 parent: 2173 - uid: 433 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -16.5,14.5 parent: 2173 - uid: 434 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,17.5 parent: 2173 - uid: 438 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,17.5 parent: 2173 - uid: 441 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,17.5 parent: 2173 - uid: 448 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -25.5,8.5 parent: 2173 - uid: 449 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -26.5,8.5 parent: 2173 - uid: 450 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -27.5,8.5 parent: 2173 - uid: 451 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -27.5,7.5 parent: 2173 - uid: 452 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -27.5,6.5 parent: 2173 - uid: 453 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 26.5,7.5 parent: 2173 - uid: 454 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 26.5,6.5 parent: 2173 - uid: 469 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 21.5,27.5 parent: 2173 - uid: 479 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 47.5,21.5 parent: 2173 - uid: 486 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,29.5 parent: 2173 - uid: 487 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,29.5 parent: 2173 - uid: 489 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,28.5 parent: 2173 - uid: 494 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,27.5 parent: 2173 - uid: 506 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,19.5 parent: 2173 - uid: 517 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,28.5 parent: 2173 - uid: 518 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,29.5 parent: 2173 - uid: 519 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,29.5 parent: 2173 - uid: 520 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,23.5 parent: 2173 - uid: 523 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,29.5 parent: 2173 - uid: 527 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,29.5 parent: 2173 - uid: 528 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,29.5 parent: 2173 - uid: 533 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -18.5,17.5 parent: 2173 - uid: 534 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,11.5 parent: 2173 - uid: 536 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,9.5 parent: 2173 - uid: 537 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,19.5 parent: 2173 - uid: 538 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,14.5 parent: 2173 - uid: 539 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,13.5 parent: 2173 - uid: 540 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,10.5 parent: 2173 - uid: 541 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -22.5,14.5 parent: 2173 - uid: 542 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -17.5,12.5 parent: 2173 - uid: 543 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,18.5 parent: 2173 - uid: 546 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -18.5,9.5 parent: 2173 - uid: 548 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,20.5 parent: 2173 - uid: 549 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,22.5 parent: 2173 - uid: 550 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,21.5 parent: 2173 - uid: 553 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,25.5 parent: 2173 - uid: 554 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,26.5 parent: 2173 - uid: 555 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,27.5 parent: 2173 - uid: 573 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 46.5,21.5 parent: 2173 - uid: 618 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,51.5 parent: 2173 + - uid: 622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,15.5 + parent: 2173 + - uid: 623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,14.5 + parent: 2173 - uid: 648 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 38.5,20.5 parent: 2173 - uid: 649 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 38.5,19.5 parent: 2173 - - uid: 650 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 40.5,19.5 - parent: 2173 - uid: 664 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 46.5,19.5 parent: 2173 - uid: 670 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 49.5,19.5 parent: 2173 - uid: 671 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 50.5,19.5 parent: 2173 - uid: 672 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,19.5 parent: 2173 - uid: 673 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,18.5 parent: 2173 - uid: 674 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,14.5 parent: 2173 - uid: 675 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,13.5 parent: 2173 - uid: 676 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,9.5 parent: 2173 - uid: 677 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 54.5,10.5 parent: 2173 - uid: 678 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,29.5 parent: 2173 - uid: 679 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,29.5 parent: 2173 - uid: 680 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,30.5 parent: 2173 - uid: 681 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,29.5 parent: 2173 - uid: 682 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,29.5 parent: 2173 - uid: 683 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,28.5 parent: 2173 - uid: 685 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,30.5 parent: 2173 - uid: 686 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,34.5 parent: 2173 - uid: 687 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,34.5 parent: 2173 - uid: 688 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,35.5 parent: 2173 - uid: 689 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,35.5 parent: 2173 - uid: 690 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,35.5 parent: 2173 - uid: 691 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,36.5 parent: 2173 - uid: 692 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,41.5 parent: 2173 - uid: 693 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,47.5 parent: 2173 - uid: 694 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,40.5 parent: 2173 - uid: 695 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,41.5 parent: 2173 - uid: 696 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,47.5 parent: 2173 - uid: 697 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,48.5 parent: 2173 - uid: 710 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,57.5 parent: 2173 - uid: 720 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,35.5 parent: 2173 - uid: 721 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,39.5 parent: 2173 - uid: 722 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,40.5 parent: 2173 - uid: 723 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,40.5 parent: 2173 - uid: 724 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,40.5 parent: 2173 - uid: 725 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,44.5 parent: 2173 - uid: 726 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,45.5 parent: 2173 - uid: 727 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,49.5 parent: 2173 - uid: 728 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,50.5 parent: 2173 - uid: 729 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,51.5 parent: 2173 - uid: 730 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,57.5 parent: 2173 - uid: 731 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,58.5 parent: 2173 - uid: 732 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,48.5 parent: 2173 - uid: 733 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,52.5 parent: 2173 - uid: 734 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,52.5 parent: 2173 - uid: 735 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,52.5 parent: 2173 - uid: 736 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,53.5 parent: 2173 - - uid: 737 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,57.5 - parent: 2173 - uid: 738 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,58.5 parent: 2173 - uid: 739 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,58.5 parent: 2173 - - uid: 756 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,12.5 - parent: 2173 - - uid: 757 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,12.5 - parent: 2173 - - uid: 759 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,12.5 - parent: 2173 - - uid: 760 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,11.5 - parent: 2173 - - uid: 762 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,12.5 - parent: 2173 - uid: 831 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,14.5 parent: 2173 - uid: 837 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -24.5,14.5 parent: 2173 - uid: 838 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,14.5 parent: 2173 - uid: 839 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,18.5 parent: 2173 - uid: 840 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,19.5 parent: 2173 - uid: 841 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -26.5,19.5 parent: 2173 - uid: 851 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -25.5,13.5 parent: 2173 - uid: 859 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -20.5,14.5 parent: 2173 + - uid: 928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,56.5 + parent: 2173 + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,58.5 + parent: 2173 - uid: 959 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -21.5,14.5 parent: 2173 - uid: 960 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,17.5 parent: 2173 - uid: 982 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -28.5,19.5 parent: 2173 - uid: 983 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -29.5,19.5 parent: 2173 - uid: 985 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -29.5,18.5 parent: 2173 - uid: 1005 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -29.5,14.5 parent: 2173 - uid: 1010 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -29.5,13.5 parent: 2173 - uid: 1011 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -26.5,13.5 parent: 2173 - uid: 1012 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -28.5,13.5 parent: 2173 - uid: 1025 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,13.5 parent: 2173 - uid: 1026 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,13.5 parent: 2173 - uid: 1027 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,13.5 parent: 2173 - uid: 1028 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,13.5 parent: 2173 - uid: 1029 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,14.5 parent: 2173 - uid: 1030 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,15.5 parent: 2173 - uid: 1031 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,16.5 parent: 2173 - uid: 1032 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,19.5 parent: 2173 - uid: 1033 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,19.5 parent: 2173 - uid: 1034 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -35.5,19.5 parent: 2173 - uid: 1035 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -34.5,19.5 parent: 2173 - uid: 1036 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -33.5,19.5 parent: 2173 - uid: 1037 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -32.5,19.5 parent: 2173 - uid: 1038 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -31.5,19.5 parent: 2173 - uid: 1039 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -30.5,19.5 parent: 2173 - uid: 1040 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,17.5 parent: 2173 - uid: 1042 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -39.5,19.5 parent: 2173 - uid: 1043 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,19.5 parent: 2173 - uid: 1044 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,15.5 parent: 2173 - uid: 1045 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,15.5 parent: 2173 - uid: 1046 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,15.5 parent: 2173 - uid: 1047 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -35.5,15.5 parent: 2173 - uid: 1048 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -35.5,13.5 parent: 2173 - uid: 1049 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -35.5,17.5 parent: 2173 - uid: 1050 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,17.5 parent: 2173 - uid: 1051 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,17.5 parent: 2173 - uid: 1052 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,17.5 parent: 2173 - uid: 1053 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -34.5,13.5 parent: 2173 - uid: 1054 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -33.5,13.5 parent: 2173 - uid: 1060 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -40.5,19.5 parent: 2173 - uid: 1061 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,19.5 parent: 2173 - uid: 1062 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,18.5 parent: 2173 - uid: 1063 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,17.5 parent: 2173 - uid: 1064 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,16.5 parent: 2173 - uid: 1065 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,15.5 parent: 2173 - uid: 1066 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,14.5 parent: 2173 - uid: 1113 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,13.5 parent: 2173 - uid: 1114 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,13.5 parent: 2173 - uid: 1205 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 35.5,27.5 parent: 2173 - uid: 1209 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,13.5 parent: 2173 + - uid: 1213 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2173 - uid: 1216 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,22.5 parent: 2173 + - uid: 1224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2173 - uid: 1309 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 13.5,9.5 parent: 2173 - uid: 1373 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,9.5 parent: 2173 - uid: 1374 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,11.5 parent: 2173 - uid: 1375 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,13.5 parent: 2173 - uid: 1376 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,15.5 parent: 2173 - uid: 1377 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,17.5 parent: 2173 - uid: 1378 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -55.5,19.5 parent: 2173 - uid: 1379 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -54.5,19.5 parent: 2173 - uid: 1380 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -53.5,19.5 parent: 2173 - uid: 1407 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -50.5,19.5 parent: 2173 - uid: 1416 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,19.5 parent: 2173 - uid: 1511 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,14.5 parent: 2173 - uid: 1559 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 50.5,21.5 parent: 2173 - uid: 1579 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,0.5 parent: 2173 - uid: 1580 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,0.5 parent: 2173 - uid: 1581 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,0.5 parent: 2173 - uid: 1582 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,0.5 parent: 2173 - uid: 1583 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,1.5 parent: 2173 - uid: 1584 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,1.5 parent: 2173 - uid: 1585 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-0.5 parent: 2173 - uid: 1586 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-0.5 parent: 2173 - uid: 2139 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,18.5 parent: 2173 - - uid: 2151 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,10.5 - parent: 2173 - - uid: 2153 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,12.5 - parent: 2173 - - uid: 2154 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,12.5 - parent: 2173 - - uid: 2221 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 21.5,16.5 - parent: 2173 - - uid: 2222 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 22.5,16.5 - parent: 2173 - uid: 2223 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,17.5 parent: 2173 - - uid: 2224 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,16.5 - parent: 2173 - uid: 2230 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 22.5,17.5 parent: 2173 - uid: 2236 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,17.5 parent: 2173 - uid: 2243 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,16.5 parent: 2173 - uid: 2346 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 42.5,11.5 parent: 2173 - uid: 2351 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 25.5,13.5 parent: 2173 - uid: 2394 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 45.5,11.5 parent: 2173 - uid: 2543 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,25.5 parent: 2173 - uid: 2556 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 26.5,13.5 parent: 2173 - uid: 2595 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 25.5,27.5 parent: 2173 - uid: 2596 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,26.5 parent: 2173 - uid: 2599 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 43.5,27.5 parent: 2173 - uid: 2600 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 51.5,27.5 parent: 2173 - uid: 2601 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,27.5 parent: 2173 - uid: 2602 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 61.5,23.5 parent: 2173 - uid: 2603 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 55.5,27.5 parent: 2173 - uid: 2604 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,24.5 parent: 2173 - uid: 2646 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,20.5 parent: 2173 - - uid: 2649 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,21.5 - parent: 2173 - uid: 2657 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 47.5,19.5 parent: 2173 - uid: 2759 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,11.5 parent: 2173 - uid: 2760 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 47.5,11.5 parent: 2173 - uid: 2761 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 44.5,11.5 parent: 2173 - uid: 2766 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 41.5,9.5 parent: 2173 + - uid: 2784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,56.5 + parent: 2173 - uid: 2788 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 38.5,27.5 parent: 2173 - uid: 2791 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 30.5,27.5 parent: 2173 - uid: 2826 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 46.5,11.5 parent: 2173 - uid: 2981 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 48.5,7.5 parent: 2173 - uid: 3101 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 39.5,21.5 parent: 2173 - - uid: 3103 + - uid: 3108 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 38.5,8.5 + pos: 41.5,8.5 parent: 2173 - - uid: 3108 + - uid: 3110 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,8.5 + rot: 1.5707963267948966 rad + pos: 42.5,17.5 + parent: 2173 + - uid: 3123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,14.5 parent: 2173 - uid: 3130 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,15.5 parent: 2173 - uid: 3142 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,22.5 parent: 2173 - uid: 3148 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,27.5 parent: 2173 - uid: 3687 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 42.5,7.5 parent: 2173 - - uid: 3725 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,12.5 - parent: 2173 - - uid: 3726 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,12.5 - parent: 2173 - uid: 3727 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,16.5 parent: 2173 - uid: 3728 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,13.5 parent: 2173 - uid: 3737 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 41.5,7.5 parent: 2173 - - uid: 3739 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,7.5 - parent: 2173 - uid: 3748 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,15.5 parent: 2173 - uid: 3750 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 27.5,15.5 parent: 2173 - uid: 3752 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 39.5,19.5 parent: 2173 - - uid: 3756 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,15.5 - parent: 2173 - - uid: 3758 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 23.5,14.5 - parent: 2173 - uid: 3759 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 24.5,14.5 parent: 2173 - uid: 3760 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 46.5,7.5 parent: 2173 - uid: 3766 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 43.5,7.5 parent: 2173 - uid: 3771 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 30.5,26.5 parent: 2173 - uid: 3772 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 30.5,28.5 parent: 2173 - uid: 3773 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 31.5,27.5 parent: 2173 - uid: 3775 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 21.5,17.5 parent: 2173 - - uid: 3776 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 20.5,16.5 - parent: 2173 - uid: 3777 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 20.5,17.5 parent: 2173 - uid: 3778 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 19.5,17.5 parent: 2173 - - uid: 3779 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 19.5,16.5 - parent: 2173 - uid: 3785 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 43.5,11.5 parent: 2173 - uid: 3798 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 48.5,11.5 parent: 2173 - - uid: 3805 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 2173 - - uid: 3808 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,6.5 - parent: 2173 - uid: 3810 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 15.5,19.5 parent: 2173 - uid: 3860 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 16.5,19.5 parent: 2173 - uid: 3861 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 14.5,19.5 parent: 2173 - uid: 3862 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 18.5,19.5 parent: 2173 - uid: 3863 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 17.5,19.5 parent: 2173 - uid: 3864 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 13.5,19.5 parent: 2173 - uid: 3868 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 19.5,19.5 parent: 2173 - uid: 3869 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 20.5,19.5 parent: 2173 - uid: 3870 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 21.5,19.5 parent: 2173 - uid: 3871 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 22.5,19.5 parent: 2173 - uid: 3872 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 23.5,19.5 parent: 2173 - uid: 3873 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 25.5,19.5 parent: 2173 - uid: 3874 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 24.5,19.5 parent: 2173 - uid: 3875 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 26.5,19.5 parent: 2173 - uid: 3929 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 59.5,29.5 parent: 2173 - uid: 3930 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 59.5,27.5 parent: 2173 - uid: 3931 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 61.5,27.5 parent: 2173 - uid: 3932 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 59.5,23.5 parent: 2173 - uid: 3933 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 55.5,29.5 parent: 2173 - - uid: 3989 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,6.5 - parent: 2173 - - uid: 3997 + - uid: 3948 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,8.5 + pos: 41.5,11.5 parent: 2173 - uid: 4039 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 42.5,27.5 parent: 2173 - uid: 4041 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 54.5,22.5 parent: 2173 - - uid: 4043 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,9.5 - parent: 2173 - uid: 4048 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 54.5,21.5 parent: 2173 - uid: 4049 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 47.5,20.5 parent: 2173 - uid: 4060 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,7.5 parent: 2173 - uid: 4113 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,10.5 parent: 2173 - - uid: 4122 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,7.5 - parent: 2173 - uid: 4244 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,8.5 parent: 2173 - uid: 4245 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,9.5 parent: 2173 - uid: 4247 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 44.5,7.5 parent: 2173 - uid: 4250 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 55.5,23.5 parent: 2173 - uid: 4251 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 57.5,23.5 parent: 2173 - uid: 4259 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,27.5 parent: 2173 - uid: 4260 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 17.5,27.5 parent: 2173 - uid: 4262 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 47.5,7.5 parent: 2173 + - uid: 4265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,17.5 + parent: 2173 + - uid: 4280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,18.5 + parent: 2173 + - uid: 4303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,18.5 + parent: 2173 + - uid: 4305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,14.5 + parent: 2173 - uid: 4327 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,17.5 parent: 2173 - uid: 4328 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,17.5 parent: 2173 - uid: 4329 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,17.5 parent: 2173 - uid: 4349 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,18.5 parent: 2173 - uid: 4354 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 2173 - uid: 4359 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,14.5 parent: 2173 - uid: 4365 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,19.5 parent: 2173 - uid: 4374 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 11.5,17.5 parent: 2173 + - uid: 4378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,14.5 + parent: 2173 - uid: 4382 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 12.5,17.5 parent: 2173 - uid: 4386 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 13.5,17.5 parent: 2173 - uid: 4387 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 14.5,17.5 parent: 2173 - uid: 4388 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 16.5,17.5 parent: 2173 - uid: 4389 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 17.5,17.5 parent: 2173 - uid: 4390 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 10.5,17.5 parent: 2173 - uid: 4391 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,17.5 parent: 2173 - uid: 4392 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 11.5,19.5 parent: 2173 - uid: 4393 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,19.5 parent: 2173 - uid: 4394 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 parent: 2173 - uid: 4395 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,19.5 parent: 2173 - uid: 4396 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,18.5 parent: 2173 - uid: 4397 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,19.5 parent: 2173 - uid: 4399 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,13.5 parent: 2173 - uid: 4400 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,13.5 parent: 2173 + - uid: 4404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,14.5 + parent: 2173 + - uid: 4409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,14.5 + parent: 2173 + - uid: 4410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,14.5 + parent: 2173 + - uid: 4423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,14.5 + parent: 2173 + - uid: 4827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,14.5 + parent: 2173 + - uid: 4828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,14.5 + parent: 2173 + - uid: 4829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,14.5 + parent: 2173 + - uid: 4830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,17.5 + parent: 2173 + - uid: 4832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,17.5 + parent: 2173 + - uid: 4833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,18.5 + parent: 2173 + - uid: 4834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,16.5 + parent: 2173 + - uid: 4835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,19.5 + parent: 2173 + - uid: 4836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,18.5 + parent: 2173 + - uid: 4841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,20.5 + parent: 2173 + - uid: 4941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,14.5 + parent: 2173 + - uid: 4948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,16.5 + parent: 2173 + - uid: 4949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,15.5 + parent: 2173 + - uid: 4964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 2173 - uid: 4980 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 49.5,21.5 parent: 2173 - uid: 5001 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,24.5 parent: 2173 - uid: 5004 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,20.5 parent: 2173 - uid: 5014 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,22.5 parent: 2173 - uid: 5016 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,22.5 parent: 2173 + - uid: 5456 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2173 - uid: 6124 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 38.5,21.5 parent: 2173 @@ -40592,1243 +40954,836 @@ entities: entities: - uid: 256 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -28.5,6.5 parent: 2173 - uid: 257 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -30.5,7.5 parent: 2173 - uid: 348 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -30.5,8.5 parent: 2173 - uid: 349 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -30.5,9.5 parent: 2173 - uid: 350 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -30.5,6.5 parent: 2173 - uid: 445 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,19.5 parent: 2173 - uid: 446 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,19.5 parent: 2173 - uid: 447 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,19.5 parent: 2173 - uid: 455 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 27.5,6.5 parent: 2173 - uid: 473 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,20.5 parent: 2173 - uid: 474 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,21.5 parent: 2173 - uid: 481 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,22.5 parent: 2173 - uid: 482 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,23.5 parent: 2173 - uid: 483 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,24.5 parent: 2173 - uid: 484 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,25.5 parent: 2173 - uid: 485 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,25.5 parent: 2173 - uid: 488 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,28.5 parent: 2173 - uid: 492 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,19.5 parent: 2173 - - uid: 798 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,22.5 - parent: 2173 - - uid: 800 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 35.5,21.5 - parent: 2173 - - uid: 801 + - uid: 557 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 35.5,23.5 + rot: 3.141592653589793 rad + pos: 38.5,7.5 parent: 2173 - uid: 842 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -30.5,10.5 parent: 2173 - uid: 843 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -29.5,10.5 parent: 2173 - uid: 844 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -28.5,10.5 parent: 2173 - uid: 845 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -27.5,10.5 parent: 2173 - uid: 846 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -26.5,10.5 parent: 2173 - uid: 847 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -25.5,10.5 parent: 2173 - uid: 848 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -24.5,10.5 parent: 2173 - uid: 849 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -23.5,10.5 parent: 2173 - uid: 850 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -22.5,10.5 parent: 2173 - uid: 852 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -25.5,11.5 parent: 2173 - uid: 853 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -22.5,11.5 parent: 2173 - uid: 854 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -22.5,12.5 parent: 2173 - uid: 855 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,10.5 parent: 2173 - uid: 856 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,12.5 parent: 2173 - uid: 857 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -19.5,13.5 parent: 2173 - uid: 993 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -30.5,5.5 parent: 2173 - uid: 996 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -34.5,5.5 parent: 2173 - uid: 997 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,7.5 parent: 2173 - uid: 998 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -34.5,6.5 parent: 2173 - uid: 999 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,7.5 parent: 2173 - uid: 1000 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,7.5 parent: 2173 - uid: 1001 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -36.5,7.5 parent: 2173 - uid: 1003 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -34.5,7.5 parent: 2173 - uid: 1004 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,6.5 parent: 2173 - uid: 1006 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,7.5 parent: 2173 - uid: 1007 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -43.5,7.5 parent: 2173 - uid: 1008 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,12.5 parent: 2173 - uid: 1009 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,13.5 parent: 2173 - uid: 1013 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,8.5 parent: 2173 - uid: 1014 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,9.5 parent: 2173 - uid: 1015 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,10.5 parent: 2173 - uid: 1016 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -42.5,11.5 parent: 2173 - uid: 1017 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,8.5 parent: 2173 - uid: 1018 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,9.5 parent: 2173 - uid: 1019 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -37.5,10.5 parent: 2173 - uid: 1020 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -38.5,10.5 parent: 2173 - uid: 1021 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,10.5 parent: 2173 - uid: 1022 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -43.5,6.5 parent: 2173 - uid: 1023 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -41.5,13.5 parent: 2173 - uid: 1024 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -40.5,13.5 parent: 2173 - uid: 1159 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -44.5,6.5 parent: 2173 - uid: 1160 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -45.5,6.5 parent: 2173 - uid: 1161 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -46.5,6.5 parent: 2173 - uid: 1162 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -46.5,1.5 parent: 2173 - uid: 1163 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -46.5,5.5 parent: 2173 - uid: 1169 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -46.5,9.5 parent: 2173 - uid: 1172 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -49.5,9.5 parent: 2173 - uid: 1175 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,7.5 parent: 2173 - uid: 1176 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,11.5 parent: 2173 - uid: 1177 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,12.5 parent: 2173 - uid: 1178 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -50.5,9.5 parent: 2173 - uid: 1179 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -54.5,9.5 parent: 2173 - uid: 1180 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -53.5,9.5 parent: 2173 - uid: 1408 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -50.5,10.5 parent: 2173 - uid: 1409 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -49.5,16.5 parent: 2173 - uid: 1412 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -50.5,16.5 parent: 2173 - uid: 1414 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,10.5 parent: 2173 - uid: 1415 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -43.5,12.5 parent: 2173 - uid: 1417 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,16.5 parent: 2173 - uid: 1418 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -47.5,16.5 parent: 2173 - uid: 1419 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -48.5,16.5 parent: 2173 - uid: 1421 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -46.5,13.5 parent: 2173 - uid: 1467 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -45.5,12.5 parent: 2173 - uid: 1486 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 33.5,14.5 parent: 2173 - - uid: 1487 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,14.5 - parent: 2173 - uid: 1488 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 32.5,12.5 parent: 2173 - uid: 1489 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 33.5,12.5 parent: 2173 - uid: 1533 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 53.5,4.5 parent: 2173 - uid: 1538 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 51.5,4.5 parent: 2173 - uid: 1539 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 50.5,6.5 parent: 2173 - uid: 1540 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 49.5,6.5 parent: 2173 - uid: 1541 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 50.5,5.5 parent: 2173 - uid: 1542 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 50.5,4.5 parent: 2173 - uid: 1598 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -35.5,7.5 parent: 2173 - - uid: 1751 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,23.5 - parent: 2173 - uid: 1752 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,15.5 parent: 2173 - - uid: 1753 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 31.5,15.5 - parent: 2173 - uid: 1754 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,15.5 parent: 2173 - uid: 1763 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,18.5 parent: 2173 + - uid: 1764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,14.5 + parent: 2173 - uid: 1765 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 32.5,15.5 + rot: 1.5707963267948966 rad + pos: 31.5,14.5 parent: 2173 - uid: 1784 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,27.5 parent: 2173 - uid: 2087 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 18.5,10.5 parent: 2173 - uid: 2088 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,9.5 parent: 2173 - uid: 2089 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,10.5 parent: 2173 - - uid: 2146 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,14.5 - parent: 2173 - - uid: 2147 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,14.5 - parent: 2173 - - uid: 2148 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,14.5 - parent: 2173 - - uid: 2150 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,14.5 - parent: 2173 - - uid: 2152 + - uid: 2242 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,14.5 + pos: 30.5,14.5 parent: 2173 - uid: 2431 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,17.5 parent: 2173 - uid: 2507 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 52.5,6.5 parent: 2173 - uid: 2508 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 52.5,7.5 parent: 2173 - uid: 2509 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 52.5,8.5 parent: 2173 - uid: 2510 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 52.5,9.5 parent: 2173 - uid: 2511 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 52.5,10.5 parent: 2173 - uid: 2512 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 50.5,8.5 parent: 2173 - uid: 2513 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 51.5,8.5 parent: 2173 - - uid: 2568 + - uid: 2523 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,16.5 + pos: -4.5,25.5 parent: 2173 - uid: 2758 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 23.5,12.5 parent: 2173 - uid: 2793 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 51.5,12.5 parent: 2173 - uid: 2794 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 51.5,11.5 parent: 2173 - uid: 2795 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 52.5,11.5 parent: 2173 - uid: 2796 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 50.5,14.5 parent: 2173 - uid: 2797 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 51.5,14.5 parent: 2173 - - uid: 2979 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,14.5 - parent: 2173 - - uid: 2980 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,15.5 - parent: 2173 - - uid: 2982 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,14.5 - parent: 2173 - - uid: 3050 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,14.5 - parent: 2173 - uid: 3104 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,7.5 parent: 2173 - uid: 3107 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,6.5 parent: 2173 - uid: 3109 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,6.5 parent: 2173 - uid: 3119 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,19.5 parent: 2173 - uid: 3122 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 31.5,19.5 parent: 2173 - uid: 3690 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 33.5,20.5 parent: 2173 - - uid: 3734 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,14.5 - parent: 2173 - uid: 3735 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,15.5 parent: 2173 - uid: 3738 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,6.5 parent: 2173 - uid: 3740 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 30.5,6.5 parent: 2173 - uid: 3751 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 28.5,15.5 parent: 2173 - - uid: 3765 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,17.5 - parent: 2173 - uid: 3806 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,8.5 parent: 2173 - uid: 3809 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 32.5,9.5 parent: 2173 - uid: 3907 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 28.5,19.5 parent: 2173 - - uid: 3910 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 38.5,22.5 - parent: 2173 - uid: 3913 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 30.5,19.5 parent: 2173 - uid: 3988 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 29.5,6.5 parent: 2173 + - uid: 3989 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2173 + - uid: 4043 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2173 + - uid: 4054 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2173 + - uid: 4055 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2173 + - uid: 4056 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2173 - uid: 4118 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 47.5,17.5 + pos: 36.5,12.5 parent: 2173 - uid: 4120 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 47.5,18.5 + pos: 38.5,12.5 + parent: 2173 + - uid: 4168 + components: + - type: Transform + pos: 40.5,12.5 parent: 2173 - uid: 4195 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 49.5,14.5 parent: 2173 - - uid: 4238 + - uid: 4206 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,16.5 + pos: 41.5,12.5 parent: 2173 - - uid: 4239 + - uid: 4238 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,19.5 + pos: 34.5,7.5 parent: 2173 - uid: 4240 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,18.5 + pos: 41.5,6.5 parent: 2173 - uid: 4241 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,20.5 + pos: 34.5,6.5 parent: 2173 - uid: 4242 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 48.5,14.5 parent: 2173 - uid: 4243 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 49.5,13.5 parent: 2173 - uid: 4252 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,16.5 + pos: 34.5,8.5 parent: 2173 - uid: 4263 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,16.5 + pos: 34.5,9.5 parent: 2173 - uid: 4281 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 27.5,19.5 parent: 2173 - - uid: 4301 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 47.5,14.5 - parent: 2173 - - uid: 4302 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 47.5,16.5 - parent: 2173 - - uid: 4303 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 47.5,15.5 - parent: 2173 - uid: 4402 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 25.5,10.5 parent: 2173 - uid: 4403 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 26.5,10.5 parent: 2173 - uid: 4427 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -46.5,15.5 parent: 2173 - uid: 4927 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 33.5,16.5 parent: 2173 @@ -41853,10 +41808,10 @@ entities: parent: 2173 - proto: WardrobePrisonFilled entities: - - uid: 802 + - uid: 4831 components: - type: Transform - pos: 38.5,9.5 + pos: 46.5,16.5 parent: 2173 - proto: WarpPoint entities: @@ -41889,24 +41844,16 @@ entities: parent: 2173 - proto: WeaponCapacitorRecharger entities: - - uid: 4924 - components: - - type: Transform - pos: 35.5,9.5 - parent: 2173 -- proto: WeaponMailLake - entities: - - uid: 4935 + - uid: 2763 components: - type: Transform - pos: 29.456926,16.560009 + rot: 3.141592653589793 rad + pos: 41.5,17.5 parent: 2173 - proto: WeaponPistolMk58 entities: - uid: 4380 components: - - type: MetaData - flags: InContainer - type: Transform parent: 4274 - type: Physics @@ -41985,12 +41932,6 @@ entities: parent: 2173 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 1221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,21.5 - parent: 2173 - uid: 2642 components: - type: Transform @@ -42003,28 +41944,35 @@ entities: linkedPorts: 2643: - DoorStatus: Close - - uid: 4056 + - uid: 3726 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,21.5 + pos: 12.5,20.5 parent: 2173 -- proto: WindoorSecureSecurityLocked - entities: - - uid: 3123 + - uid: 4966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,8.5 + rot: 1.5707963267948966 rad + pos: 5.5,21.5 parent: 2173 -- proto: WindoorServiceLocked +- proto: WindoorSecureMailLocked entities: - - uid: 4050 + - uid: 3010 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,21.5 + pos: 12.5,20.5 parent: 2173 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 385 + components: + - type: Transform + pos: 44.5,17.5 + parent: 2173 +- proto: WindoorServiceLocked + entities: - uid: 5739 components: - type: Transform @@ -42051,12 +41999,6 @@ entities: parent: 2173 - proto: WindowDirectional entities: - - uid: 1213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,22.5 - parent: 2173 - uid: 2225 components: - type: Transform @@ -42093,18 +42035,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,20.5 parent: 2173 - - uid: 4054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 2173 - - uid: 4055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 2173 - uid: 4472 components: - type: Transform @@ -42135,12 +42065,6 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,20.5 parent: 2173 - - uid: 5005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,23.5 - parent: 2173 - uid: 5740 components: - type: Transform @@ -42235,11 +42159,15 @@ entities: rot: 3.141592653589793 rad pos: -36.5,10.5 parent: 2173 - - uid: 2376 + - uid: 2563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,8.5 + pos: 43.5,17.5 + parent: 2173 + - uid: 2568 + components: + - type: Transform + pos: 45.5,17.5 parent: 2173 - uid: 2802 components: @@ -42333,12 +42261,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,10.5 parent: 2173 - - uid: 3788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,8.5 - parent: 2173 - uid: 4707 components: - type: Transform @@ -42354,4 +42276,27 @@ entities: - type: Transform pos: 12.5,12.5 parent: 2173 + - uid: 4956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 2173 + - uid: 4957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,23.5 + parent: 2173 + - uid: 4959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,20.5 + parent: 2173 + - uid: 4965 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2173 ... diff --git a/Resources/Maps/_NF/POI/anomalouslab.yml b/Resources/Maps/_NF/POI/anomalouslab.yml index 57c279e13d2..bdfb9c67dd7 100644 --- a/Resources/Maps/_NF/POI/anomalouslab.yml +++ b/Resources/Maps/_NF/POI/anomalouslab.yml @@ -10471,7 +10471,7 @@ entities: parent: 1 - type: Anchorable delay: 999999 -- proto: VendingMachineCircuitVend +- proto: VendingMachineFlatpackVend entities: - uid: 318 components: diff --git a/Resources/Maps/_NF/POI/grifty.yml b/Resources/Maps/_NF/POI/grifty.yml index fcc17110319..9061254a08d 100644 --- a/Resources/Maps/_NF/POI/grifty.yml +++ b/Resources/Maps/_NF/POI/grifty.yml @@ -6,10 +6,10 @@ tilemap: 30: FloorDark 62: FloorLaundry 71: FloorOldConcrete - 106: FloorTechMaint2 - 107: FloorTechMaint3 - 121: Lattice - 122: Plating + 109: FloorTechMaint3 + 115: FloorWhiteMini + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -24,19 +24,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: PgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADawAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAA + tiles: PgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADbQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAawAAAAADawAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAawAAAAAAawAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbQAAAAADbQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAbQAAAAAAbQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAACawAAAAACawAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAABRwAAAAAARwAAAAABawAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAABRwAAAAAARwAAAAACawAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAACRwAAAAABRwAAAAACawAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAAARwAAAAACRwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAABRwAAAAACRwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACawAAAAABawAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbQAAAAACbQAAAAACbQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAARwAAAAABRwAAAAAARwAAAAABbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAARwAAAAABRwAAAAAARwAAAAACbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAARwAAAAACRwAAAAABRwAAAAACbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAARwAAAAAARwAAAAACRwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAARwAAAAABRwAAAAACRwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbQAAAAACbQAAAAABbQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAADawAAAAABawAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAARwAAAAACRwAAAAACRwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAABRwAAAAABRwAAAAABRwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAARwAAAAADRwAAAAADRwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAACRwAAAAABRwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAARwAAAAACRwAAAAACRwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAACawAAAAADawAAAAABegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAARwAAAAAARwAAAAAARwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAARwAAAAAARwAAAAAARwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAARwAAAAAARwAAAAAARwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAARwAAAAAARwAAAAAARwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAARwAAAAAARwAAAAAARwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAARwAAAAAARwAAAAAARwAAAAAAfQAAAAAAbQAAAAADbQAAAAABfQAAAAAAfQAAAAAA version: 6 - type: Broadphase - type: Physics @@ -81,165 +81,213 @@ entities: id: DirtHeavy decals: 4: -5,-6 - 5: -3,-5 - 6: -3,-4 - 7: -4,-3 - 8: -5,-2 - 9: -3,-2 - 10: -5,-4 - 11: 5,-2 - 12: 6,-3 - 13: 5,-5 - 14: 6,-5 - 15: 7,-6 - 16: 7,-4 - 17: 7,-2 - 18: 5,-6 - 19: 7,0 - 20: 4,0 - 21: 3,1 - 22: 4,2 - 23: -1,2 - 24: 0,2 - 25: 0,1 - 26: -3,1 - 27: -3,0 - 28: 0,0 - 29: -6,2 - 30: -7,1 - 31: -5,1 - 32: -4,3 - 33: -2,5 - 34: -2,6 - 35: 0,6 - 36: 1,5 - 37: 2,6 - 38: 6,6 - 39: 5,6 - 40: 7,6 - 41: 7,7 - 42: 9,4 - 43: 8,2 - 44: 7,3 - 45: 5,1 - 46: 8,1 - 47: 6,2 - 48: 6,4 - 49: 8,4 - 50: 2,2 - 51: -7,3 - 52: -6,5 - 53: -4,8 - 54: 4,1 + 5: -5,-2 + 6: -5,-4 + 7: 5,-2 + 8: 6,-3 + 9: 5,-5 + 10: 6,-5 + 11: 7,-6 + 12: 7,-4 + 13: 7,-2 + 14: 5,-6 + 15: 7,0 + 16: 4,0 + 17: 3,1 + 18: 4,2 + 19: -1,2 + 20: 0,2 + 21: 0,1 + 22: -3,1 + 23: -3,0 + 24: 0,0 + 25: -6,2 + 26: -7,1 + 27: -5,1 + 28: -4,3 + 29: -2,5 + 30: -2,6 + 31: 0,6 + 32: 1,5 + 33: 2,6 + 34: 6,6 + 35: 5,6 + 36: 7,6 + 37: 7,7 + 38: 9,4 + 39: 8,2 + 40: 7,3 + 41: 5,1 + 42: 8,1 + 43: 6,2 + 44: 6,4 + 45: 8,4 + 46: 2,2 + 47: -6,5 + 48: -4,8 + 49: 4,1 - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 138: -8,2 + 139: -9,1 + 140: -8,3 + 141: -9,2 + 145: -9,5 + 146: -8,8 + 147: -9,8 + 148: -10,6 + 150: -7,8 + 151: -8,-2 + 152: -7,-1 + 153: -6,-2 + 154: -6,-1 + 159: -7,-2 + 160: -8,-4 + 161: -8,-6 + 162: -6,-6 + 163: -6,-5 + 169: -7,0 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 50: -3,0 + 51: -4,1 + 52: 0,2 + 53: 0,1 + 54: 1,1 + 55: 3,2 + 56: 7,1 + 57: 6,5 + 58: 8,7 + 59: 8,6 + 60: 6,8 + 61: 3,5 + 62: 2,6 + 63: -3,5 + 64: -3,5 + 65: -5,5 + 66: -6,5 + 67: -7,1 + 68: -6,1 + - node: + cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 55: -3,-2 - 56: -4,-4 - 57: -3,-5 - 58: -3,0 - 59: -4,1 - 60: 0,2 - 61: 0,1 - 62: 1,1 - 63: 3,2 - 64: 7,1 - 65: 6,5 - 66: 8,7 - 67: 8,6 - 68: 6,8 - 69: 3,5 - 70: 2,6 - 71: -3,5 - 72: -3,5 - 73: -5,5 - 74: -6,5 - 75: -7,1 - 76: -6,1 + 132: -10,3 + 133: -8,1 + 134: -7,3 + 143: -9,6 + 144: -9,7 + 149: -6,8 + 155: -8,-1 + 156: -8,-3 + 157: -7,-4 + 158: -7,-3 + 164: -8,-5 + 165: -7,-5 + 166: -6,-4 + 167: -7,-6 + 168: -8,0 + 170: -6,0 + 171: -8,-1 + 172: -7,-1 + 173: -6,-1 - node: color: '#FFFFFFFF' id: DirtLight decals: - 77: -4,-5 - 78: -3,-6 - 79: -4,-5 - 80: -5,-1 - 81: -4,-2 - 82: -4,1 - 83: -2,2 - 84: -1,1 - 85: -2,1 - 86: 1,2 - 87: 2,0 - 88: 3,1 - 89: 4,1 - 90: 6,-1 - 91: 6,0 - 92: 7,2 - 93: 7,2 - 94: 5,2 - 95: 7,2 - 96: 8,2 - 97: 8,4 - 98: 7,5 - 99: 8,6 - 100: 8,7 - 101: 7,8 - 102: 7,8 - 103: 6,8 - 104: 5,7 - 105: 5,6 - 106: 6,-3 - 107: 7,-5 - 108: 7,-6 - 109: 7,-6 - 110: 6,-5 - 111: 5,-6 - 112: -2,1 + 69: -5,-1 + 70: -4,1 + 71: -2,2 + 72: -1,1 + 73: -2,1 + 74: 1,2 + 75: 2,0 + 76: 3,1 + 77: 4,1 + 78: 6,-1 + 79: 6,0 + 80: 7,2 + 81: 7,2 + 82: 5,2 + 83: 7,2 + 84: 8,2 + 85: 8,4 + 86: 7,5 + 87: 8,6 + 88: 8,7 + 89: 7,8 + 90: 7,8 + 91: 6,8 + 92: 5,7 + 93: 5,6 + 94: 6,-3 + 95: 7,-5 + 96: 7,-6 + 97: 7,-6 + 98: 6,-5 + 99: 5,-6 + 100: -2,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 142: -10,5 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 101: -7,4 + 102: -6,3 + 103: -4,5 + 104: -4,5 + 105: -2,5 + 106: -2,6 + 107: 0,6 + 108: 0,5 + 109: -4,8 + 110: -5,8 + 111: 6,2 + 112: 9,1 + 113: 9,3 + 114: 8,4 + 115: 8,6 + 116: 8,7 + 117: 5,6 + 118: 7,2 + 119: 8,3 + 120: 5,4 + 121: 6,3 + 122: 7,-5 + 123: 7,-5 + 124: 6,-5 + 125: 6,-4 + 126: 6,-4 + 127: -3,3 + 128: 1,1 + 129: -1,0 + 130: -1,1 + 131: 6,7 - node: + cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 113: -7,2 - 114: -7,4 - 115: -6,3 - 116: -4,5 - 117: -4,5 - 118: -2,5 - 119: -2,6 - 120: 0,6 - 121: 0,5 - 122: -4,8 - 123: -5,8 - 124: 6,2 - 125: 9,1 - 126: 9,3 - 127: 8,4 - 128: 8,6 - 129: 8,7 - 130: 5,6 - 131: 7,2 - 132: 8,3 - 133: 5,4 - 134: 6,3 - 135: 7,-5 - 136: 7,-5 - 137: 6,-5 - 138: 6,-4 - 139: 6,-4 - 140: -3,3 - 141: 1,1 - 142: -1,0 - 143: -1,1 - 144: 6,7 + 135: -10,2 + 136: -7,2 + 137: -9,3 - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 49151 - 1: 16384 + 0: 65535 0,1: 0: 65535 1,0: @@ -247,27 +295,25 @@ entities: 1,1: 0: 65535 1,2: - 0: 64755 - 1: 12 + 0: 65535 2,0: 0: 30583 2,1: 0: 30583 2,2: - 0: 61491 + 0: 62259 -2,0: 0: 65535 -2,1: - 0: 64511 - 2: 1024 + 0: 65535 -2,2: - 0: 35054 + 0: 36607 -1,0: 0: 65535 -1,1: 0: 65535 -1,2: - 0: 39423 + 0: 40959 0,-1: 0: 61440 1,-2: @@ -279,15 +325,15 @@ entities: 2,-1: 0: 12561 -2,-1: - 0: 60620 + 0: 65535 -2,-2: - 0: 52416 + 0: 65520 -1,-2: 0: 30576 -1,-1: 0: 63351 0,2: - 0: 50431 + 0: 53247 0,3: 0: 65535 1,3: @@ -299,13 +345,21 @@ entities: 3,3: 0: 65535 -3,1: - 0: 2048 + 0: 61166 -3,3: 0: 128 -2,3: 0: 36863 -1,3: 0: 36863 + -3,0: + 0: 61166 + -3,2: + 0: 204 + -3,-2: + 0: 34944 + -3,-1: + 0: 34952 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -322,41 +376,26 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: BecomesStation id: Grifty +- proto: AirAlarm + entities: + - uid: 704 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 17 + - 342 + - 771 + - 396 + - type: AtmosDevice + joinedGrid: 1 - proto: AirCanister entities: - uid: 233 @@ -377,24 +416,23 @@ entities: entities: - uid: 200 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,4.5 parent: 1 - uid: 297 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,6.5 parent: 1 + - uid: 578 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 - proto: AirlockExternal entities: - uid: 403 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -4.5,9.5 @@ -408,8 +446,6 @@ entities: - DoorStatus: InputA - uid: 404 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 @@ -423,8 +459,6 @@ entities: - DoorStatus: InputB - uid: 405 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -4.5,7.5 @@ -438,8 +472,6 @@ entities: - DoorStatus: InputB - uid: 406 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 @@ -453,20 +485,20 @@ entities: - DoorStatus: InputA - proto: AirlockGlass entities: - - uid: 375 + - uid: 7 components: - type: Transform - pos: -4.5,-0.5 + pos: -5.5,-0.5 parent: 1 - - uid: 376 + - uid: 18 components: - type: Transform - pos: -3.5,-0.5 + pos: -7.5,-0.5 parent: 1 - - uid: 377 + - uid: 34 components: - type: Transform - pos: -2.5,-0.5 + pos: -6.5,-0.5 parent: 1 - uid: 378 components: @@ -485,27 +517,10 @@ entities: parent: 1 - proto: AirlockGlassShuttle entities: - - uid: 605 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 1 - uid: 606 components: - type: Transform - pos: -4.5,-6.5 - parent: 1 - - uid: 607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 1 - - uid: 608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 + pos: -5.5,-6.5 parent: 1 - uid: 610 components: @@ -517,17 +532,6 @@ entities: - type: Transform pos: 5.5,-6.5 parent: 1 - - uid: 613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 1 - - uid: 614 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 1 - uid: 620 components: - type: Transform @@ -551,6 +555,34 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 1 + - uid: 794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 1 + - uid: 795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + - uid: 796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 - proto: APCBasic entities: - uid: 414 @@ -565,6 +597,11 @@ entities: parent: 1 - proto: AtmosDeviceFanTiny entities: + - uid: 8 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 - uid: 734 components: - type: Transform @@ -595,35 +632,30 @@ entities: - type: Transform pos: 5.5,-6.5 parent: 1 - - uid: 747 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 1 - - uid: 748 + - uid: 803 components: - type: Transform - pos: -3.5,-6.5 + pos: -6.5,-6.5 parent: 1 - - uid: 749 + - uid: 804 components: - type: Transform - pos: -4.5,-6.5 + pos: -7.5,-6.5 parent: 1 - - uid: 750 + - uid: 805 components: - type: Transform - pos: -5.5,-5.5 + pos: -8.5,-5.5 parent: 1 - - uid: 751 + - uid: 806 components: - type: Transform - pos: -5.5,-4.5 + pos: -8.5,-4.5 parent: 1 - - uid: 752 + - uid: 807 components: - type: Transform - pos: -5.5,-3.5 + pos: -8.5,-3.5 parent: 1 - proto: BarSignEngineChange entities: @@ -634,12 +666,25 @@ entities: parent: 1 - type: ApcPowerReceiver needsPower: False +- proto: BarSignSpacebucks + entities: + - uid: 608 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 +- proto: BlockGameArcade + entities: + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 - proto: BookAurora entities: - uid: 680 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -648,40 +693,30 @@ entities: entities: - uid: 674 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics canCollide: False - uid: 675 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics canCollide: False - uid: 676 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics canCollide: False - uid: 677 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics canCollide: False - uid: 678 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -690,8 +725,6 @@ entities: entities: - uid: 694 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -700,8 +733,6 @@ entities: entities: - uid: 682 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -710,8 +741,6 @@ entities: entities: - uid: 673 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -720,8 +749,6 @@ entities: entities: - uid: 671 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -730,8 +757,6 @@ entities: entities: - uid: 226 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -740,8 +765,6 @@ entities: entities: - uid: 683 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -750,8 +773,6 @@ entities: entities: - uid: 681 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -760,8 +781,6 @@ entities: entities: - uid: 571 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -770,8 +789,6 @@ entities: entities: - uid: 686 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -780,8 +797,6 @@ entities: entities: - uid: 693 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -790,8 +805,6 @@ entities: entities: - uid: 688 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -800,8 +813,6 @@ entities: entities: - uid: 690 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -810,8 +821,6 @@ entities: entities: - uid: 689 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -820,8 +829,6 @@ entities: entities: - uid: 687 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -830,8 +837,6 @@ entities: entities: - uid: 685 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -840,8 +845,6 @@ entities: entities: - uid: 679 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -850,8 +853,6 @@ entities: entities: - uid: 684 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -860,8 +861,6 @@ entities: entities: - uid: 530 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,8.5 parent: 1 @@ -904,8 +903,6 @@ entities: entities: - uid: 697 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -914,8 +911,6 @@ entities: entities: - uid: 695 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -924,8 +919,6 @@ entities: entities: - uid: 696 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -934,8 +927,6 @@ entities: entities: - uid: 692 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -944,8 +935,6 @@ entities: entities: - uid: 691 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -959,10 +948,35 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 2 + - uid: 43 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 185 components: - type: Transform - pos: -3.5,-1.5 + pos: -3.5,0.5 parent: 1 - uid: 424 components: @@ -1152,7 +1166,7 @@ entities: - uid: 461 components: - type: Transform - pos: -7.5,2.5 + pos: -6.5,-4.5 parent: 1 - uid: 462 components: @@ -1232,7 +1246,7 @@ entities: - uid: 477 components: - type: Transform - pos: -2.5,-0.5 + pos: -6.5,-3.5 parent: 1 - uid: 478 components: @@ -1302,17 +1316,7 @@ entities: - uid: 491 components: - type: Transform - pos: -3.5,-0.5 - parent: 1 - - uid: 492 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 1 - - uid: 493 - components: - - type: Transform - pos: -5.5,-0.5 + pos: -6.5,-2.5 parent: 1 - uid: 494 components: @@ -1324,25 +1328,10 @@ entities: - type: Transform pos: -6.5,0.5 parent: 1 - - uid: 496 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 1 - - uid: 497 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 1 - uid: 498 components: - type: Transform - pos: -3.5,-3.5 - parent: 1 - - uid: 499 - components: - - type: Transform - pos: -3.5,-5.5 + pos: -4.5,0.5 parent: 1 - uid: 500 components: @@ -1389,6 +1378,11 @@ entities: - type: Transform pos: 6.5,-5.5 parent: 1 + - uid: 605 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 - uid: 634 components: - type: Transform @@ -1789,7 +1783,7 @@ entities: - uid: 409 components: - type: Transform - pos: -3.5,7.5 + pos: -2.5,6.5 parent: 1 - uid: 410 components: @@ -1811,6 +1805,16 @@ entities: - type: Transform pos: -6.5,6.5 parent: 1 + - uid: 702 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 - proto: CableMV entities: - uid: 416 @@ -1863,18 +1867,6 @@ entities: parent: 1 - proto: Catwalk entities: - - uid: 105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - - uid: 106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 1 - uid: 108 components: - type: Transform @@ -2031,27 +2023,15 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,11.5 parent: 1 - - uid: 134 + - uid: 199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,10.5 + pos: -3.5,11.5 parent: 1 - - uid: 135 + - uid: 281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,10.5 - parent: 1 - - uid: 199 - components: - - type: Transform - pos: -3.5,11.5 - parent: 1 - - uid: 281 - components: - - type: Transform - pos: 11.5,13.5 + pos: 11.5,13.5 parent: 1 - uid: 282 components: @@ -2123,6 +2103,14 @@ entities: - type: Transform pos: -1.624001,3.1678529 parent: 1 +- proto: ClosetWallWhite + entities: + - uid: 788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 - proto: ComputerBroken entities: - uid: 631 @@ -2137,7 +2125,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,8.5 + pos: -6.5,8.5 parent: 1 - proto: ComputerWithdrawBankATM entities: @@ -2170,6 +2158,18 @@ entities: parent: 1 - proto: DisposalPipe entities: + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 - uid: 287 components: - type: Transform @@ -2236,18 +2236,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,3.5 parent: 1 - - uid: 396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - - uid: 398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,1.5 - parent: 1 - uid: 399 components: - type: Transform @@ -2260,6 +2248,11 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 1 + - uid: 701 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 - proto: DisposalTrunk entities: - uid: 401 @@ -2279,8 +2272,6 @@ entities: entities: - uid: 590 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2288,8 +2279,6 @@ entities: - type: InsideEntityStorage - uid: 591 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2297,8 +2286,6 @@ entities: - type: InsideEntityStorage - uid: 592 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2308,8 +2295,6 @@ entities: entities: - uid: 587 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2317,8 +2302,6 @@ entities: - type: InsideEntityStorage - uid: 589 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2326,8 +2309,6 @@ entities: - type: InsideEntityStorage - uid: 593 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2337,8 +2318,6 @@ entities: entities: - uid: 602 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2355,8 +2334,6 @@ entities: entities: - uid: 515 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2394,8 +2371,6 @@ entities: entities: - uid: 594 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2405,8 +2380,6 @@ entities: entities: - uid: 596 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2414,8 +2387,6 @@ entities: - type: InsideEntityStorage - uid: 598 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2423,8 +2394,6 @@ entities: - type: InsideEntityStorage - uid: 600 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2441,8 +2410,6 @@ entities: entities: - uid: 516 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2469,8 +2436,6 @@ entities: entities: - uid: 517 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2487,8 +2452,6 @@ entities: entities: - uid: 597 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2496,8 +2459,6 @@ entities: - type: InsideEntityStorage - uid: 599 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2505,8 +2466,6 @@ entities: - type: InsideEntityStorage - uid: 601 components: - - type: MetaData - flags: InContainer - type: Transform parent: 595 - type: Physics @@ -2523,8 +2482,6 @@ entities: entities: - uid: 514 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2534,8 +2491,6 @@ entities: entities: - uid: 588 components: - - type: MetaData - flags: InContainer - type: Transform parent: 586 - type: Physics @@ -2545,8 +2500,6 @@ entities: entities: - uid: 519 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2560,16 +2513,16 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,0.5 parent: 1 - - uid: 769 + - uid: 770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 + pos: -1.5,6.5 parent: 1 - - uid: 770 + - uid: 814 components: - type: Transform - pos: -1.5,6.5 + rot: 1.5707963267948966 rad + pos: -7.5,0.5 parent: 1 - proto: ExtinguisherCabinetOpen entities: @@ -2701,15 +2654,23 @@ entities: parent: 1 - proto: FirelockGlass entities: - - uid: 757 + - uid: 37 components: - type: Transform - pos: -3.5,-0.5 + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 parent: 1 - - uid: 758 + - uid: 355 components: - type: Transform - pos: -2.5,-0.5 + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 parent: 1 - uid: 759 components: @@ -2726,11 +2687,6 @@ entities: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 765 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 1 - proto: FoodBoxDonkpocket entities: - uid: 556 @@ -2752,13 +2708,6 @@ entities: - type: Transform pos: 5.264295,3.5900216 parent: 1 -- proto: FoodBoxDonkpocketGondola - entities: - - uid: 557 - components: - - type: Transform - pos: -5.766955,2.745686 - parent: 1 - proto: FoodBoxDonkpocketHonk entities: - uid: 553 @@ -2768,6 +2717,11 @@ entities: parent: 1 - proto: FoodBoxDonkpocketPizza entities: + - uid: 557 + components: + - type: Transform + pos: -5.766955,2.745686 + parent: 1 - uid: 558 components: - type: Transform @@ -2787,6 +2741,82 @@ entities: - type: Transform pos: -5.266955,2.4329686 parent: 1 +- proto: FoodBoxDonut + entities: + - uid: 812 + components: + - type: Transform + pos: -7.6037674,3.8322606 + parent: 1 + - type: Storage + storedItems: + 818: + position: 0,0 + _rotation: South + 819: + position: 1,0 + _rotation: South + 820: + position: 2,0 + _rotation: South + 821: + position: 3,0 + _rotation: South + 822: + position: 4,0 + _rotation: South + 823: + position: 5,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 818 + - 819 + - 820 + - 821 + - 822 + - 823 + - uid: 824 + components: + - type: Transform + pos: -7.385018,3.4416356 + parent: 1 + - type: Storage + storedItems: + 825: + position: 0,0 + _rotation: South + 826: + position: 1,0 + _rotation: South + 827: + position: 2,0 + _rotation: South + 828: + position: 3,0 + _rotation: South + 829: + position: 4,0 + _rotation: South + 830: + position: 5,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 825 + - 826 + - 827 + - 828 + - 829 + - 830 - proto: FoodBoxPizzaFilled entities: - uid: 550 @@ -2798,8 +2828,6 @@ entities: entities: - uid: 513 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2812,12 +2840,84 @@ entities: - type: Transform pos: -0.22007972,5.7634063 parent: 1 +- proto: FoodDonutPink + entities: + - uid: 818 + components: + - type: Transform + parent: 812 + - type: Physics + canCollide: False + - uid: 819 + components: + - type: Transform + parent: 812 + - type: Physics + canCollide: False + - uid: 820 + components: + - type: Transform + parent: 812 + - type: Physics + canCollide: False + - uid: 821 + components: + - type: Transform + parent: 812 + - type: Physics + canCollide: False + - uid: 822 + components: + - type: Transform + parent: 812 + - type: Physics + canCollide: False + - uid: 823 + components: + - type: Transform + parent: 812 + - type: Physics + canCollide: False + - uid: 825 + components: + - type: Transform + parent: 824 + - type: Physics + canCollide: False + - uid: 826 + components: + - type: Transform + parent: 824 + - type: Physics + canCollide: False + - uid: 827 + components: + - type: Transform + parent: 824 + - type: Physics + canCollide: False + - uid: 828 + components: + - type: Transform + parent: 824 + - type: Physics + canCollide: False + - uid: 829 + components: + - type: Transform + parent: 824 + - type: Physics + canCollide: False + - uid: 830 + components: + - type: Transform + parent: 824 + - type: Physics + canCollide: False - proto: FoodMeatRotten entities: - uid: 518 components: - - type: MetaData - flags: InContainer - type: Transform parent: 512 - type: Physics @@ -2921,16 +3021,13 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 311 + - uid: 730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,6.5 + pos: -5.5,10.5 parent: 1 - type: AtmosDevice joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - proto: GasPipeBend entities: - uid: 244 @@ -2964,21 +3061,29 @@ entities: parent: 1 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 333 + - uid: 334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 + pos: 5.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 334 + - uid: 335 components: - type: Transform - pos: 5.5,1.5 + rot: 1.5707963267948966 rad + pos: -5.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 359 components: - type: Transform @@ -2986,6 +3091,22 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 317 @@ -3004,6 +3125,51 @@ entities: color: '#0055CCFF' - proto: GasPipeStraight entities: + - uid: 9 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 202 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 236 components: - type: Transform @@ -3321,31 +3487,18 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 335 + - uid: 337 components: - type: Transform - pos: -2.5,0.5 + rot: 1.5707963267948966 rad + pos: -2.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 336 + - uid: 338 components: - type: Transform - pos: -2.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 337 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 338 - components: - - type: Transform - pos: 5.5,0.5 + pos: 5.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -3363,35 +3516,25 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 343 + - uid: 341 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-1.5 + rot: 1.5707963267948966 rad + pos: -3.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 344 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-0.5 + pos: -5.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,1.5 + pos: -8.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -3459,22 +3602,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,3.5 + pos: -5.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 357 components: - type: Transform @@ -3531,6 +3665,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 366 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 367 components: - type: Transform @@ -3563,14 +3704,28 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 373 + - uid: 375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,6.5 + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1 + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,7.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 381 components: - type: Transform @@ -3600,14 +3755,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 617 components: - type: Transform @@ -3616,6 +3763,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 767 components: - type: Transform @@ -3626,6 +3781,13 @@ entities: color: '#0055CCFF' - proto: GasPipeTJunction entities: + - uid: 35 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 318 components: - type: Transform @@ -3759,11 +3921,11 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 326 + - uid: 343 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-2.5 + pos: -5.5,-2.5 parent: 1 - type: AtmosDevice joinedGrid: 1 @@ -3771,12 +3933,15 @@ entities: color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 341 + - uid: 17 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-2.5 + pos: -7.5,-2.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 704 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor @@ -3787,6 +3952,11 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-2.5 parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 704 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor @@ -3801,22 +3971,37 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 396 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 704 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 771 components: - type: Transform pos: 6.5,7.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 704 - type: AtmosDevice joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasVolumePump entities: - - uid: 366 + - uid: 336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,6.5 + rot: 3.141592653589793 rad + pos: -5.5,8.5 parent: 1 - type: AtmosDevice joinedGrid: 1 @@ -3831,24 +4016,6 @@ entities: parent: 1 - proto: Grille entities: - - uid: 7 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 1 - - uid: 8 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - - uid: 9 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 1 - uid: 10 components: - type: Transform @@ -3903,18 +4070,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,9.5 parent: 1 - - uid: 190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - - uid: 191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 1 - uid: 192 components: - type: Transform @@ -3951,11 +4106,54 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,7.5 parent: 1 + - uid: 333 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 - uid: 565 components: - type: Transform pos: 3.5,9.5 parent: 1 + - uid: 607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 - proto: GrilleBroken entities: - uid: 55 @@ -4009,12 +4207,20 @@ entities: showEnts: False occludes: True ent: null +- proto: HospitalCurtains + entities: + - uid: 492 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - type: Door + secondsUntilStateChange: -643.5483 + state: Opening - proto: HyperlinkBookSupernanny entities: - uid: 672 components: - - type: MetaData - flags: InContainer - type: Transform parent: 530 - type: Physics @@ -4035,6 +4241,12 @@ entities: rot: -1.5707963267948966 rad pos: 1.89151,6.8016806 parent: 1 + - uid: 816 + components: + - type: Transform + parent: 815 + - type: Physics + canCollide: False - proto: LightTubeBroken entities: - uid: 632 @@ -4208,6 +4420,14 @@ entities: - type: Physics canCollide: False bodyType: Static +- proto: Mirror + entities: + - uid: 757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 1 - proto: PaintingSkeletonCigarette entities: - uid: 619 @@ -4264,12 +4484,13 @@ entities: The crack in the plasma chamber's gettin' bigger, and I'm worried about the containment unit. What happens if the glass breaks? -- proto: PosterBroken +- proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 509 + - uid: 44 components: - type: Transform - pos: -5.5,-2.5 + rot: -1.5707963267948966 rad + pos: -8.5,-1.5 parent: 1 - proto: PosterContrabandBorgFancy entities: @@ -4280,10 +4501,18 @@ entities: parent: 1 - proto: PosterContrabandBreadLies entities: - - uid: 568 + - uid: 809 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 +- proto: PosterContrabandClown + entities: + - uid: 811 components: - type: Transform - pos: -1.5,-2.5 + rot: 1.5707963267948966 rad + pos: -10.5,1.5 parent: 1 - proto: PosterContrabandDonk entities: @@ -4371,10 +4600,34 @@ entities: parent: 1 - proto: PosterLegitCohibaRobustoAd entities: - - uid: 578 + - uid: 810 components: - type: Transform - pos: -1.5,-0.5 + pos: -4.5,-0.5 + parent: 1 +- proto: PosterLegitEatMeat + entities: + - uid: 758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 +- proto: PosterLegitEnlist + entities: + - uid: 793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,6.5 parent: 1 - proto: PosterLegitHotDonkExplosion entities: @@ -4408,8 +4661,6 @@ entities: entities: - uid: 732 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,5.5 @@ -4425,8 +4676,6 @@ entities: entities: - uid: 618 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 @@ -4450,16 +4699,16 @@ entities: parent: 1 - proto: PoweredSmallLight entities: - - uid: 580 + - uid: 48 components: - type: Transform - pos: -5.5,3.5 + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 parent: 1 - - uid: 730 + - uid: 580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-2.5 + pos: -5.5,3.5 parent: 1 - uid: 731 components: @@ -4474,8 +4723,27 @@ entities: - type: Transform pos: 1.5,6.5 parent: 1 + - uid: 815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 816 + - type: ApcPowerReceiver + powerLoad: 0 - proto: Rack entities: + - uid: 191 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 - uid: 208 components: - type: Transform @@ -4520,9 +4788,16 @@ entities: - type: Transform pos: -4.5,4.5 parent: 1 -- proto: RandomSpawner +- proto: RandomSoap entities: - - uid: 107 + - uid: 765 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 107 components: - type: Transform pos: 8.5,3.5 @@ -4537,6 +4812,11 @@ entities: - type: Transform pos: 4.5,0.5 parent: 1 + - uid: 311 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 - uid: 616 components: - type: Transform @@ -4552,6 +4832,11 @@ entities: - type: Transform pos: -6.5,1.5 parent: 1 + - uid: 817 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 - proto: RandomVending entities: - uid: 218 @@ -4683,35 +4968,11 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-5.5 parent: 1 - - uid: 34 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 1 - - uid: 35 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - - uid: 36 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 1 - - uid: 201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - - uid: 202 + - uid: 184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,2.5 + rot: 3.141592653589793 rad + pos: -2.5,-0.5 parent: 1 - uid: 203 components: @@ -4742,11 +5003,38 @@ entities: - type: Transform pos: 6.5,9.5 parent: 1 + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 - uid: 700 components: - type: Transform pos: 7.5,9.5 parent: 1 + - uid: 725 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 - proto: ShardGlassPlasma entities: - uid: 95 @@ -4761,6 +5049,14 @@ entities: rot: 1.5707963267948966 rad pos: 0.2400167,7.0461235 parent: 1 +- proto: SignDirectionalWash + entities: + - uid: 188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 1 - proto: SignSmoking entities: - uid: 706 @@ -4768,6 +5064,13 @@ entities: - type: Transform pos: -1.5,7.5 parent: 1 +- proto: SinkEmpty + entities: + - uid: 189 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 - proto: SMESBasic entities: - uid: 70 @@ -4982,8 +5285,6 @@ entities: entities: - uid: 296 components: - - type: MetaData - flags: InContainer - type: Transform parent: 563 - type: Physics @@ -4991,8 +5292,6 @@ entities: - type: InsideEntityStorage - uid: 388 components: - - type: MetaData - flags: InContainer - type: Transform parent: 563 - type: Physics @@ -5000,8 +5299,6 @@ entities: - type: InsideEntityStorage - uid: 528 components: - - type: MetaData - flags: InContainer - type: Transform parent: 563 - type: Physics @@ -5024,6 +5321,11 @@ entities: - type: Transform pos: -0.5,1.5 parent: 1 + - uid: 813 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 - proto: SpawnMobCarpHolo entities: - uid: 729 @@ -5130,6 +5432,13 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 1 +- proto: ToiletDirtyWater + entities: + - uid: 326 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 - proto: VendingMachineBooze entities: - uid: 523 @@ -5144,6 +5453,13 @@ entities: - type: Transform pos: 9.5,3.5 parent: 1 +- proto: VendingMachineCoffee + entities: + - uid: 780 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 - proto: VendingMachineCondiments entities: - uid: 521 @@ -5163,19 +5479,19 @@ entities: - type: Transform pos: 3.5447173,5.482584 parent: 1 -- proto: VendingMachineRestockCircuitVend +- proto: VendingMachineRestockDiscountDans entities: - - uid: 626 + - uid: 627 components: - type: Transform - pos: 2.7009673,5.7640285 + pos: 2.4822173,5.513855 parent: 1 -- proto: VendingMachineRestockDiscountDans +- proto: VendingMachineRestockFlatpackVend entities: - - uid: 627 + - uid: 626 components: - type: Transform - pos: 2.4822173,5.513855 + pos: 2.7009673,5.7640285 parent: 1 - proto: VendingMachineRestockGetmoreChocolateCorp entities: @@ -5200,511 +5516,438 @@ entities: parent: 1 - proto: WallReinforced entities: - - uid: 13 + - uid: 2 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 + pos: -4.5,-0.5 parent: 1 - - uid: 14 + - uid: 3 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-6.5 + pos: -3.5,-0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: -2.5,-0.5 parent: 1 - uid: 15 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-6.5 parent: 1 - uid: 16 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 1 - - uid: 17 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 1 - - uid: 18 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - uid: 19 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-0.5 parent: 1 - uid: 20 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-0.5 parent: 1 - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - uid: 22 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 1 - uid: 23 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 1 - uid: 24 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 1 - - uid: 37 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 - parent: 1 - uid: 38 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 1 - uid: 39 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 - uid: 40 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-2.5 parent: 1 - uid: 41 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - uid: 42 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 1 - - uid: 43 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 1 - - uid: 44 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 1 - - uid: 45 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,0.5 - parent: 1 - uid: 46 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,0.5 parent: 1 - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -6.5,7.5 parent: 1 - - uid: 48 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 1 - uid: 49 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -6.5,9.5 parent: 1 - uid: 50 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -5.5,9.5 parent: 1 - uid: 51 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 parent: 1 - uid: 52 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,9.5 parent: 1 - uid: 53 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,8.5 parent: 1 - uid: 54 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - uid: 57 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - uid: 58 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - uid: 60 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,9.5 parent: 1 - uid: 61 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 1 - uid: 62 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,9.5 parent: 1 - uid: 63 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,8.5 parent: 1 - uid: 64 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,7.5 parent: 1 - uid: 181 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 1.5,9.5 parent: 1 - uid: 183 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -0.5,9.5 parent: 1 - - uid: 184 + - uid: 186 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,6.5 + pos: 10.5,1.5 parent: 1 - - uid: 185 + - uid: 187 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,1.5 + pos: 10.5,6.5 parent: 1 - - uid: 186 + - uid: 196 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,1.5 + pos: 2.5,9.5 parent: 1 - - uid: 187 + - uid: 197 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,6.5 + pos: 1.5,7.5 parent: 1 - - uid: 188 + - uid: 198 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,4.5 + rot: 1.5707963267948966 rad + pos: 1.5,8.5 parent: 1 - - uid: 189 + - uid: 568 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,5.5 + pos: -7.5,8.5 parent: 1 - - uid: 196 + - uid: 752 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 + - uid: 772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + - uid: 777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 781 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,9.5 + pos: -9.5,9.5 parent: 1 - - uid: 197 + - uid: 782 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,7.5 + pos: -9.5,8.5 parent: 1 - - uid: 198 + - uid: 783 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,8.5 + pos: -9.5,7.5 + parent: 1 + - uid: 784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + - uid: 785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + - uid: 786 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + - uid: 790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - uid: 808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-6.5 parent: 1 - proto: WallSolid entities: - uid: 67 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -5.5,7.5 parent: 1 - uid: 68 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 1 - uid: 298 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,4.5 parent: 1 - uid: 299 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,5.5 parent: 1 - uid: 300 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,4.5 parent: 1 - uid: 301 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,4.5 parent: 1 - uid: 302 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,4.5 parent: 1 - uid: 303 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,4.5 parent: 1 - uid: 304 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,4.5 parent: 1 - uid: 305 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,4.5 parent: 1 - uid: 306 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,4.5 parent: 1 - uid: 307 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,4.5 parent: 1 - uid: 308 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,4.5 parent: 1 - uid: 309 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,4.5 parent: 1 -- proto: WallSolidDiagonal - entities: - - uid: 3 + - uid: 493 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 748 components: - type: Transform pos: -7.5,7.5 parent: 1 - - uid: 4 + - uid: 749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,0.5 + pos: -7.5,4.5 parent: 1 + - uid: 750 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 +- proto: WallSolidDiagonal + entities: - uid: 5 components: - type: Transform @@ -5717,6 +5960,17 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,7.5 parent: 1 + - uid: 791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 - proto: WarningAir entities: - uid: 211 @@ -5747,7 +6001,6 @@ entities: - uid: 219 components: - type: MetaData - flags: InContainer name: Customer Service Resolver - type: Transform parent: 563 @@ -5761,6 +6014,18 @@ entities: - type: Transform pos: 5.5,-3.5 parent: 1 +- proto: Window + entities: + - uid: 751 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 - proto: Wrench entities: - uid: 718 diff --git a/Resources/Maps/_NF/POI/lodge.yml b/Resources/Maps/_NF/POI/lodge.yml index dbde66c3c64..95e62eb9f85 100644 --- a/Resources/Maps/_NF/POI/lodge.yml +++ b/Resources/Maps/_NF/POI/lodge.yml @@ -10028,7 +10028,7 @@ entities: - type: Transform pos: 9.5,10.5 parent: 1 -- proto: VendingMachineCircuitVend +- proto: VendingMachineFlatpackVend entities: - uid: 512 components: diff --git a/Resources/Maps/_NF/Shuttles/Security/whiskey.yml b/Resources/Maps/_NF/Shuttles/Security/whiskey.yml new file mode 100644 index 00000000000..b88121c1ee5 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/Security/whiskey.yml @@ -0,0 +1,3814 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 36: FloorDarkOffset + 46: FloorGlass + 92: FloorSteel + 111: FloorWhite + 120: FloorWhitePlastic + 124: Lattice + 125: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5156326,-0.46875 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: JAAAAAAAJAAAAAAAJAAAAAAAfQAAAAAAJAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAABeAAAAAACeAAAAAADeAAAAAAAeAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAADeAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAADeAAAAAACeAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAADeAAAAAACeAAAAAABeAAAAAADeAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAABXAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJAAAAAAAfQAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAbwAAAAADeAAAAAAAeAAAAAAAeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeAAAAAAAeAAAAAABeAAAAAAAeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAeAAAAAADfQAAAAAAeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeAAAAAADeAAAAAABeAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeAAAAAADeAAAAAABeAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeAAAAAAAeAAAAAADeAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: fQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#EFB34196' + id: BrickTileWhiteBox + decals: + 56: 2,3 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 2: 0,15 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 23: -1,6 + 24: 0,6 + 25: 1,6 + 26: 0,7 + 27: 0,5 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 36: 0,8 + 37: 0,9 + 38: 0,10 + 39: 0,11 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 3: 0,14 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 76: 0,3 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 9: -3,11 + 10: 3,11 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 29: -3,7 + 30: 3,7 + 63: -2,7 + 64: -1,7 + 65: 1,7 + 66: 2,7 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 55: 0,-5 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 4: 0,13 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 75: 0,-3 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 17: -3,9 + 18: 3,9 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 33: 3,5 + 58: -3,5 + 59: -2,5 + 60: -1,5 + 61: 1,5 + 62: 2,5 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 54: 0,-7 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 15: -4,10 + 16: 2,10 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 57: -4,6 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 53: -1,-6 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 21: -2,10 + 22: 4,10 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 35: 4,6 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 52: 1,-6 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 78: -1,2 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 80: 1,-2 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 79: -1,-2 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 77: 1,2 + - node: + color: '#EFB34196' + id: StandClearGreyscale + decals: + 81: -4,1 + 82: -4,-1 + 83: 4,-1 + 84: 4,1 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale + decals: + 0: -1,14 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 69: -2,2 + 70: -1,3 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 13: -4,11 + 14: 2,11 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 31: -4,7 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 46: -4,-5 + 47: 3,-5 + 48: -1,-5 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 5: 1,13 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 73: 2,-2 + 74: 1,-3 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 19: -2,9 + 20: 4,9 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 34: 4,5 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 49: -3,-6 + 50: 1,-7 + 51: 4,-6 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1: -1,13 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 67: -2,-2 + 68: -1,-3 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 11: -4,9 + 12: 2,9 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 32: -4,5 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 43: -1,-7 + 44: -4,-6 + 45: 3,-6 + - node: + color: '#334E6DC8' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 6: 1,14 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 71: 1,3 + 72: 2,2 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 7: -2,11 + 8: 4,11 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 28: 4,7 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 40: 1,-5 + 41: 4,-5 + 42: -3,-5 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 30719 + 1,0: + 0: 4915 + 1,1: + 0: 13107 + 1,2: + 0: 13107 + 1,3: + 0: 19 + 0,-3: + 0: 4096 + 0,-2: + 0: 65535 + 1,-2: + 0: 13105 + 1,-1: + 0: 13075 + -2,-2: + 0: 34944 + -2,-1: + 0: 34824 + -1,-2: + 0: 65535 + -2,0: + 0: 2184 + -2,1: + 0: 34952 + -2,2: + 0: 34952 + -2,3: + 0: 8 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 52479 + 0,4: + 0: 19 + -1,4: + 0: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Whiskey +- proto: AirlockExternalGlass + entities: + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 485 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 485 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 485 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 485 +- proto: AirlockGlassShuttle + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 2 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 +- proto: AirlockSecurityLocked + entities: + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - type: Apc + hasAccess: True + lastExternalState: Good + lastChargeState: Full + - uid: 191 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 434 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 +- proto: BedsheetBrigmedic + entities: + - uid: 53 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 +- proto: BenchSteelWhiteLeft + entities: + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSteelWhiteMiddle + entities: + - uid: 395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSteelWhiteRight + entities: + - uid: 479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BookSecurity + entities: + - uid: 477 + components: + - type: Transform + pos: 0.47616482,-2.4413009 + parent: 1 +- proto: BookshelfFilled + entities: + - uid: 468 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: BoxBodyBag + entities: + - uid: 46 + components: + - type: Transform + pos: 3.4799356,11.539728 + parent: 1 +- proto: BoxLighttube + entities: + - uid: 103 + components: + - type: Transform + pos: -2.2566786,-5.673751 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 39 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: CableHV + entities: + - uid: 99 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 +- proto: CableMV + entities: + - uid: 35 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 +- proto: CandyBowl + entities: + - uid: 489 + components: + - type: Transform + pos: -0.50640726,7.557986 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 +- proto: chem_master + entities: + - uid: 272 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,14.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 83 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 +- proto: ComputerStationRecords + entities: + - uid: 266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 1 +- proto: CrateMaterialPlasma + entities: + - uid: 107 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CryoPod + entities: + - uid: 246 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 447 + components: + - type: Transform + pos: -3.7510986,5.7831163 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 472 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 483 + components: + - type: Transform + pos: -1.6133347,10.464858 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + - uid: 454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 52 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 181 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 +- proto: FireAlarm + entities: + - uid: 482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 446 + - 445 + - 111 + - 444 + - 443 + - 449 + - type: AtmosDevice + joinedGrid: 1 + - uid: 484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 442 + - 440 + - 439 + - 441 + - 437 + - 436 + - 435 + - 438 + - type: AtmosDevice + joinedGrid: 1 +- proto: FirelockEdge + entities: + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - uid: 449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 +- proto: FoodBoxDonut + entities: + - uid: 467 + components: + - type: Transform + pos: 0.5319689,1.4083452 + parent: 1 +- proto: FoodGumball + entities: + - uid: 493 + components: + - type: Transform + pos: -0.7008517,7.4746523 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: -0.33974057,7.4468746 + parent: 1 +- proto: FoodLollipop + entities: + - uid: 490 + components: + - type: Transform + pos: -0.72862947,7.669097 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: -0.50640726,7.669097 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: -0.31196284,7.6413193 + parent: 1 +- proto: GasAnalyzer + entities: + - uid: 406 + components: + - type: Transform + pos: -3.2785935,5.6706004 + parent: 1 +- proto: GasFilter + entities: + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' +- proto: GasMixerFlipped + entities: + - uid: 391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasOutletInjector + entities: + - uid: 497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 251 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 258 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 377 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 417 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 378 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 380 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 382 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 383 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 384 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 385 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 397 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 401 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 402 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 403 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 414 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 415 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 416 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 418 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 419 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 420 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 421 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 422 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 424 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 425 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 426 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 427 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 428 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 430 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 413 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 306 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 361 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' +- proto: GasThermoMachineFreezer + entities: + - uid: 334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#00FFFFFF' + - type: AtmosDevice + joinedGrid: 1 +- proto: GasVentPump + entities: + - uid: 358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 404 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 102 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: Grille + entities: + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,17.5 + parent: 1 +- proto: GyroscopeSecurity + entities: + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 +- proto: HyperlinkBookChemistry + entities: + - uid: 277 + components: + - type: Transform + pos: -3.711504,9.562804 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 280 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 +- proto: LargeBeaker + entities: + - uid: 281 + components: + - type: Transform + pos: -3.3368373,9.550544 + parent: 1 +- proto: LightReplacer + entities: + - uid: 104 + components: + - type: Transform + pos: -2.7254286,-5.267501 + parent: 1 +- proto: LockerBrigmedicFilled + entities: + - uid: 355 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 356 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerChemistryFilled + entities: + - uid: 274 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 +- proto: LockerEvidence + entities: + - uid: 192 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 78 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 +- proto: MedicalTechFab + entities: + - uid: 473 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: MedkitOxygenFilled + entities: + - uid: 353 + components: + - type: Transform + pos: 2.5716128,5.7559834 + parent: 1 +- proto: MedkitRadiationFilled + entities: + - uid: 351 + components: + - type: Transform + pos: 2.5438352,5.2907057 + parent: 1 +- proto: MedkitToxinFilled + entities: + - uid: 352 + components: + - type: Transform + pos: 2.5368907,5.5545945 + parent: 1 +- proto: NetworkConfigurator + entities: + - uid: 393 + components: + - type: Transform + pos: -3.5754685,5.4206004 + parent: 1 + - type: NetworkConfigurator + linkModeActive: False +- proto: NitrogenCanister + entities: + - uid: 62 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: OxygenCanister + entities: + - uid: 40 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: PaperBin5 + entities: + - uid: 47 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - uid: 324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + - uid: 325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1 + - uid: 326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + - uid: 327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1 + - uid: 328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,16.5 + parent: 1 + - uid: 329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 +- proto: PlushieTrystan + entities: + - uid: 520 + components: + - type: Transform + pos: 0.52549624,-0.3086419 + parent: 1 +- proto: PortableGeneratorPacmanShuttle + entities: + - uid: 381 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static + - uid: 390 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 486 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: PosterLegitSMEpi + entities: + - uid: 354 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 +- proto: PosterLegitSMFires + entities: + - uid: 494 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 +- proto: PosterLegitSMMeth + entities: + - uid: 487 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 +- proto: PosterLegitSMPiping + entities: + - uid: 495 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 +- proto: PosterLegitSMPoisoning + entities: + - uid: 108 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 +- proto: PottedPlant11 + entities: + - uid: 478 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 105 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + - uid: 464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 1 +- proto: RollerBedSpawnFolded + entities: + - uid: 475 + components: + - type: Transform + pos: -3.535509,0.65760666 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: 4.4758663,0.65760666 + parent: 1 +- proto: SignalButton + entities: + - uid: 485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 178: + - Pressed: DoorBolt + 179: + - Pressed: DoorBolt + 176: + - Pressed: DoorBolt + 177: + - Pressed: DoorBolt +- proto: SignChemistry2 + entities: + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 1 +- proto: SinkStemlessWater + entities: + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 63 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: SpawnPointBrigmedic + entities: + - uid: 267 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 471 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 309 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 +- proto: SuitStorageBrigmedic + entities: + - uid: 268 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 +- proto: TableCounterMetal + entities: + - uid: 180 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + - uid: 279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + - uid: 466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 +- proto: ThrusterSecurity + entities: + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 +- proto: VendingMachineChemicals + entities: + - uid: 273 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 208 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 +- proto: VendingMachineWallMedical + entities: + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 +... diff --git a/Resources/Maps/_NF/Shuttles/anchor.yml b/Resources/Maps/_NF/Shuttles/anchor.yml index e29c0042bbd..1633bf44778 100644 --- a/Resources/Maps/_NF/Shuttles/anchor.yml +++ b/Resources/Maps/_NF/Shuttles/anchor.yml @@ -4480,8 +4480,6 @@ entities: - type: Transform pos: -2.5,7.5 parent: 1 - - type: RadarConsole - maxRange: 768 - proto: ComputerSalvageExpedition entities: - uid: 669 diff --git a/Resources/Maps/_NF/Shuttles/canister.yml b/Resources/Maps/_NF/Shuttles/canister.yml new file mode 100644 index 00000000000..8c56737c9f6 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/canister.yml @@ -0,0 +1,787 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 124: Lattice + 125: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.52213657,-0.49262553 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: fQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2: -1,1 + 11: -2,0 + 12: -1,0 + 13: 0,0 + 14: 1,0 + 15: 0,1 + 16: -1,-1 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 3: 0,1 + 4: -1,0 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 5: 0,0 + 6: -1,-1 + 7: -2,0 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 8: 0,-1 + 9: 1,0 + 10: 2,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 0: 0,2 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1: -1,2 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 4983 + 1: 9216 + -1,0: + 1: 16898 + 0: 36076 + 0,-1: + 0: 28928 + 1: 544 + -1,-1: + 0: 59392 + 1: 1088 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Canister +- proto: AirAlarm + entities: + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 35 + - 36 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 29 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 15 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 28 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: CableHV + entities: + - uid: 17 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 9 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: Chair + entities: + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 +- proto: CigarSpent + entities: + - uid: 89 + components: + - type: Transform + pos: -0.71816957,1.9718587 + parent: 1 +- proto: ClosetWall + entities: + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.8978093 + - 7.139378 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 56 + - 82 + - 83 +- proto: ClothingOuterCoatJensen + entities: + - uid: 56 + components: + - type: Transform + parent: 81 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Cobweb1 + entities: + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 26 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 40 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 36 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 35 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 62 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 27 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: Grille + entities: + - uid: 48 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 +- proto: PortableGeneratorPacmanShuttle + entities: + - uid: 50 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: Poweredlight + entities: + - uid: 33 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 13 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 +- proto: SheetPlasma1 + entities: + - uid: 83 + components: + - type: Transform + parent: 81 + - type: Stack + count: 5 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SmallGyroscope + entities: + - uid: 18 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 54 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 +- proto: Table + entities: + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: Thruster + entities: + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 +- proto: ToyFigurineAtmosTech + entities: + - uid: 53 + components: + - type: Transform + pos: -0.061842978,2.0317187 + parent: 1 +- proto: WallSolid + entities: + - uid: 5 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 +- proto: WallSolidDiagonal + entities: + - uid: 64 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 +- proto: WallSolidRust + entities: + - uid: 3 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 10 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: Window + entities: + - uid: 19 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: WindowDiagonal + entities: + - uid: 7 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 +- proto: WindowDirectional + entities: + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 82 + components: + - type: Transform + parent: 81 + - type: Physics + canCollide: False + - type: InsideEntityStorage +... diff --git a/Resources/Maps/_NF/Shuttles/ceres.yml b/Resources/Maps/_NF/Shuttles/ceres.yml index f4342f5a2ac..63740289471 100644 --- a/Resources/Maps/_NF/Shuttles/ceres.yml +++ b/Resources/Maps/_NF/Shuttles/ceres.yml @@ -10,17 +10,17 @@ tilemap: 46: FloorGlass 51: FloorGrassLight 63: FloorLino - 90: FloorSteel - 92: FloorSteelCheckerDark - 100: FloorSteelMini - 101: FloorSteelMono - 105: FloorTechMaint - 109: FloorWhite - 110: FloorWhiteDiagonal - 114: FloorWhiteMono - 119: FloorWood - 121: Lattice - 122: Plating + 92: FloorSteel + 94: FloorSteelCheckerDark + 102: FloorSteelMini + 103: FloorSteelMono + 107: FloorTechMaint + 111: FloorWhite + 112: FloorWhiteDiagonal + 116: FloorWhiteMono + 121: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -35,27 +35,27 @@ entities: chunks: 0,0: ind: 0,0 - tiles: egAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADegAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAACXAAAAAACPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAACXAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAZQAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAACegAAAAAALgAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIgAAAAADIgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIwAAAAABIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABIgAAAAABIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAIgAAAAACIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABIgAAAAABIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAIwAAAAADIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAAAfQAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAADPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAADfQAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXgAAAAAAXgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACfQAAAAAAfQAAAAAAZwAAAAADfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAADeQAAAAAAeQAAAAADfQAAAAAAawAAAAAAawAAAAAAawAAAAAAZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAABeQAAAAADeQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAADeQAAAAABfQAAAAAALgAAAAADAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIgAAAAAAIgAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAIwAAAAADIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABIgAAAAABIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACIgAAAAADIgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAIgAAAAABIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABfQAAAAAAIwAAAAADIgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: XAAAAAABbQAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAADbQAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAbQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAcgAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAADbQAAAAAAbQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAcgAAAAACcgAAAAABegAAAAAAcgAAAAAAcgAAAAACcgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAACWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAACIgAAAAADHgAAAAADHgAAAAACIwAAAAABIwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADLgAAAAABLgAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADegAAAAAAeQAAAAAAAAAAAAAALgAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAABIgAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAIgAAAAABIgAAAAAAHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABIgAAAAAAIgAAAAADHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAABIwAAAAABegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: PwAAAAAAfQAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAADbwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAdAAAAAACcAAAAAAAcAAAAAABcAAAAAAAcAAAAAACcAAAAAACbwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAfQAAAAAAbwAAAAADbwAAAAADbwAAAAADbwAAAAADbwAAAAACbwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAdAAAAAADdAAAAAABfQAAAAAAdAAAAAADdAAAAAAAdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAABIgAAAAAAHgAAAAADHgAAAAABIwAAAAACIwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABLgAAAAABLgAAAAACIwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACfQAAAAAAfAAAAAAAAAAAAAAALgAAAAABfQAAAAAAHgAAAAADHgAAAAADHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAACHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADIgAAAAABIwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAABIgAAAAACHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAIgAAAAABIgAAAAACHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAACIgAAAAABHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAABIwAAAAAAfQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAIwAAAAADIwAAAAAAIwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAABHgAAAAADHgAAAAADHgAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAHgAAAAABegAAAAAAZQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAACHgAAAAAAZQAAAAABXAAAAAACXAAAAAABXAAAAAACXAAAAAACXAAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAABXAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADfQAAAAAAIwAAAAAAIwAAAAABIwAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAADHgAAAAABHgAAAAADHgAAAAACfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAABHgAAAAABfQAAAAAAZwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAAAHgAAAAACZwAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACfQAAAAAAfQAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAC version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABegAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAABcgAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACcgAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAADegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADbQAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAAAbQAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABbQAAAAADbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAALQAAAAAALQAAAAAALQAAAAAAfQAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALQAAAAAALQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACZwAAAAADbwAAAAACbwAAAAACbwAAAAADbwAAAAAAbwAAAAACdAAAAAAALQAAAAAALQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACfQAAAAAAbwAAAAADbwAAAAADbwAAAAAAbwAAAAACbwAAAAABfQAAAAAAfQAAAAAAfQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACbwAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABbwAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABbwAAAAABcAAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAADbwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -83,8 +83,15 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 110: 8,-11 - 111: 7,-11 + 162: 8,-10 + 163: 8,-11 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 159: 7,-11 + 168: -3,-12 + 169: -2,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -421,20 +428,21 @@ entities: color: '#791500FF' id: MiniTileWhiteInnerNe decals: - 126: -3,-16 + 157: -3,-17 - node: color: '#791500FF' id: MiniTileWhiteLineE decals: 124: -3,-14 - 125: -3,-15 + 152: -3,-15 + 153: -3,-16 - node: color: '#791500FF' id: MiniTileWhiteLineN decals: - 127: -2,-16 - 128: -1,-16 - 129: 0,-16 + 154: -2,-17 + 155: -1,-17 + 156: 0,-17 - node: color: '#FFFFFFFF' id: WarnLineN @@ -644,7 +652,7 @@ entities: - 775 - 419 - 382 - - 167 + - 677 - 566 - 417 - 418 @@ -669,7 +677,7 @@ entities: devices: - 241 - 301 - - 770 + - 458 - type: AtmosDevice joinedGrid: 2 - uid: 495 @@ -692,7 +700,7 @@ entities: parent: 2 - type: DeviceList devices: - - 266 + - 283 - 265 - 299 - 769 @@ -707,7 +715,7 @@ entities: devices: - 180 - 382 - - 167 + - 422 - 416 - 415 - 419 @@ -718,14 +726,15 @@ entities: - 529 - 496 - 396 + - 677 - type: AtmosDevice joinedGrid: 2 - proto: AirCanister entities: - - uid: 339 + - uid: 802 components: - type: Transform - pos: -1.5,-11.5 + pos: 7.5,-10.5 parent: 2 - type: AtmosDevice joinedGrid: 2 @@ -733,8 +742,6 @@ entities: entities: - uid: 130 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-10.5 parent: 2 @@ -742,8 +749,6 @@ entities: entities: - uid: 268 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-10.5 parent: 2 @@ -763,28 +768,25 @@ entities: entities: - uid: 694 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-19.5 parent: 2 - proto: AirlockGlass entities: - - uid: 303 + - uid: 497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-13.5 + pos: 0.5,-7.5 parent: 2 - - uid: 358 + - uid: 546 components: - type: Transform - pos: 1.5,-18.5 + pos: 1.5,-19.5 parent: 2 - - uid: 497 + - uid: 671 components: - type: Transform - pos: 0.5,-7.5 + pos: 1.5,-14.5 parent: 2 - proto: AirlockGlassShuttle entities: @@ -832,11 +834,6 @@ entities: - type: Transform pos: 8.5,-9.5 parent: 2 - - uid: 770 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - uid: 771 components: - type: Transform @@ -959,11 +956,6 @@ entities: - type: Transform pos: 2.5,-21.5 parent: 2 - - uid: 509 - components: - - type: Transform - pos: -3.5,-21.5 - parent: 2 - uid: 531 components: - type: Transform @@ -977,32 +969,32 @@ entities: - uid: 573 components: - type: Transform - pos: 4.5,-21.5 + pos: -3.5,-21.5 parent: 2 - uid: 580 components: - type: Transform - pos: 5.5,-23.5 + pos: 4.5,-21.5 parent: 2 - uid: 581 components: - type: Transform - pos: -4.5,-23.5 + pos: 5.5,-23.5 parent: 2 - uid: 582 components: - type: Transform - pos: -8.5,-23.5 + pos: -4.5,-23.5 parent: 2 - uid: 583 components: - type: Transform - pos: -9.5,-22.5 + pos: -8.5,-23.5 parent: 2 - uid: 589 components: - type: Transform - pos: -9.5,-18.5 + pos: -9.5,-22.5 parent: 2 - uid: 624 components: @@ -1017,7 +1009,7 @@ entities: - uid: 676 components: - type: Transform - pos: 9.5,-23.5 + pos: -9.5,-18.5 parent: 2 - uid: 696 components: @@ -1047,103 +1039,115 @@ entities: - uid: 707 components: - type: Transform - pos: 10.5,-22.5 + pos: 9.5,-23.5 parent: 2 - uid: 747 components: - type: Transform - pos: 10.5,-18.5 + pos: 10.5,-22.5 parent: 2 - uid: 748 components: - type: Transform - pos: 9.5,-11.5 + pos: 10.5,-18.5 parent: 2 - uid: 749 components: - type: Transform - pos: 9.5,-6.5 + pos: 9.5,-11.5 parent: 2 - uid: 776 components: - type: Transform - pos: -8.5,-11.5 + pos: 9.5,-6.5 parent: 2 - uid: 777 components: - type: Transform - pos: -8.5,-6.5 + pos: -8.5,-11.5 parent: 2 - uid: 778 components: - type: Transform - pos: -5.5,-6.5 + pos: -8.5,-6.5 parent: 2 - uid: 779 components: - type: Transform - pos: -4.5,-7.5 + pos: -5.5,-6.5 parent: 2 - uid: 780 components: - type: Transform - pos: -3.5,-8.5 + pos: -4.5,-7.5 parent: 2 - uid: 781 components: - type: Transform - pos: -1.5,-7.5 + pos: -3.5,-8.5 parent: 2 - uid: 782 components: - type: Transform - pos: 2.5,-7.5 + pos: -1.5,-7.5 parent: 2 - uid: 783 components: - type: Transform - pos: 4.5,-8.5 + pos: 2.5,-7.5 parent: 2 - uid: 784 components: - type: Transform - pos: 5.5,-7.5 + pos: 4.5,-8.5 parent: 2 - uid: 785 components: - type: Transform - pos: 6.5,-6.5 + pos: 5.5,-7.5 parent: 2 - uid: 786 components: - type: Transform - pos: -3.5,-5.5 + pos: 6.5,-6.5 parent: 2 - uid: 787 components: - type: Transform - pos: 4.5,-5.5 + pos: -3.5,-5.5 parent: 2 - uid: 788 components: - type: Transform - pos: 4.5,-1.5 + pos: 4.5,-5.5 parent: 2 - uid: 789 components: - type: Transform - pos: 2.5,0.5 + pos: 4.5,-1.5 parent: 2 - uid: 790 components: - type: Transform - pos: -1.5,0.5 + pos: 2.5,0.5 parent: 2 - uid: 791 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 792 components: - type: Transform pos: -3.5,-1.5 parent: 2 +- proto: BoozeDispenser + entities: + - uid: 228 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 - proto: Bucket entities: - uid: 574 @@ -1178,11 +1182,41 @@ entities: - type: Transform pos: -7.5,-19.5 parent: 2 + - uid: 127 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 - uid: 148 components: - type: Transform pos: -4.5,-13.5 parent: 2 + - uid: 149 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 - uid: 184 components: - type: Transform @@ -1208,11 +1242,6 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 2 - - uid: 226 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 2 - uid: 456 components: - type: Transform @@ -1293,11 +1322,6 @@ entities: - type: Transform pos: -5.5,-13.5 parent: 2 - - uid: 510 - components: - - type: Transform - pos: -4.5,-14.5 - parent: 2 - uid: 511 components: - type: Transform @@ -1408,31 +1432,11 @@ entities: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 539 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 2 - uid: 543 components: - type: Transform pos: -5.5,-18.5 parent: 2 - - uid: 545 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 2 - - uid: 546 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 2 - - uid: 547 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 2 - uid: 548 components: - type: Transform @@ -1640,67 +1644,52 @@ entities: parent: 2 - proto: CableHV entities: - - uid: 234 + - uid: 119 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 235 + - uid: 229 components: - type: Transform - pos: -3.5,-10.5 + pos: -1.5,-11.5 parent: 2 - - uid: 236 + - uid: 237 components: - type: Transform - pos: -2.5,-11.5 + pos: -1.5,-11.5 parent: 2 - - uid: 237 + - uid: 539 components: - type: Transform - pos: -1.5,-11.5 + pos: -3.5,-10.5 parent: 2 - - uid: 238 + - uid: 709 components: - type: Transform - pos: -1.5,-12.5 + pos: -2.5,-11.5 parent: 2 - proto: CableMV entities: - - uid: 149 + - uid: 168 components: - type: Transform - pos: -2.5,-15.5 + pos: -2.5,-10.5 parent: 2 - uid: 227 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 228 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 2 - uid: 231 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 394 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 2 - - uid: 459 - components: - - type: Transform - pos: -1.5,-12.5 - parent: 2 - - uid: 460 + - uid: 238 components: - type: Transform - pos: -1.5,-11.5 + pos: -3.5,-10.5 parent: 2 - uid: 461 components: @@ -1717,11 +1706,6 @@ entities: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 464 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 2 - uid: 467 components: - type: Transform @@ -1780,15 +1764,40 @@ entities: - uid: 570 components: - type: Transform - pos: -0.5,-15.5 + pos: 2.5,-16.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: -3.5,-16.5 parent: 2 - proto: CableTerminal entities: - - uid: 472 + - uid: 179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 parent: 2 - proto: CarpetGreen entities: @@ -1877,11 +1886,11 @@ entities: parent: 2 - proto: ChairFolding entities: - - uid: 709 + - uid: 460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-19.5 + rot: -1.5707963267948966 rad + pos: 6.5,-18.5 parent: 2 - proto: ChairOfficeDark entities: @@ -1997,14 +2006,14 @@ entities: parent: 2 - proto: ClosetChefFilled entities: - - uid: 662 + - uid: 799 components: - type: Transform - pos: 3.5,-19.5 + pos: 4.5,-18.5 parent: 2 - proto: ComputerShuttle entities: - - uid: 168 + - uid: 437 components: - type: Transform pos: 7.5,-7.5 @@ -2019,10 +2028,10 @@ entities: parent: 2 - proto: ComputerWallmountWithdrawBankATM entities: - - uid: 466 + - uid: 338 components: - type: Transform - pos: 1.5,-14.5 + pos: 1.5,-15.5 parent: 2 - type: Physics canCollide: False @@ -2049,7 +2058,7 @@ entities: - uid: 64 components: - type: Transform - pos: 1.5527847,-15.358986 + pos: 1.5,-16.2 parent: 2 - type: Physics canCollide: False @@ -2147,13 +2156,27 @@ entities: parent: 2 - proto: DrinkShaker entities: - - uid: 378 + - uid: 379 components: - type: Transform pos: 5.537535,-15.421177 parent: 2 +- proto: Dropper + entities: + - uid: 472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5348911,-3.6397347 + parent: 2 - proto: EmergencyLight entities: + - uid: 1 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-19.5 + parent: 2 - uid: 186 components: - type: Transform @@ -2202,7 +2225,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-14.5 + pos: 2.5,-15.5 parent: 2 - uid: 738 components: @@ -2274,12 +2297,7 @@ entities: parent: 2 - proto: FirelockGlass entities: - - uid: 167 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 2 - - uid: 180 + - uid: 180 components: - type: Transform pos: -5.5,-11.5 @@ -2292,12 +2310,12 @@ entities: - uid: 415 components: - type: Transform - pos: -0.5,-14.5 + pos: -0.5,-15.5 parent: 2 - uid: 416 components: - type: Transform - pos: 0.5,-14.5 + pos: 0.5,-15.5 parent: 2 - uid: 417 components: @@ -2312,7 +2330,7 @@ entities: - uid: 419 components: - type: Transform - pos: 1.5,-18.5 + pos: 1.5,-19.5 parent: 2 - uid: 465 components: @@ -2323,8 +2341,17 @@ entities: - uid: 566 components: - type: Transform - pos: 1.5,-13.5 + pos: 1.5,-14.5 parent: 2 + - uid: 677 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 588 + - 65 - proto: Fireplace entities: - uid: 331 @@ -2366,24 +2393,24 @@ entities: parent: 2 - proto: FoodShakerPepper entities: - - uid: 405 + - uid: 406 components: - type: Transform pos: 3.3708684,-16.52611 parent: 2 - - uid: 406 + - uid: 407 components: - type: Transform pos: 3.6000352,-16.484415 parent: 2 - proto: FoodShakerSalt entities: - - uid: 233 + - uid: 378 components: - type: Transform pos: 3.5062852,-16.28636 parent: 2 - - uid: 407 + - uid: 409 components: - type: Transform pos: 3.297952,-16.33848 @@ -2408,14 +2435,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 256 components: - type: Transform @@ -2432,22 +2451,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 267 + - uid: 284 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-11.5 + pos: 5.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 274 + - uid: 297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 + rot: 3.141592653589793 rad + pos: 2.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 315 components: - type: Transform @@ -2456,34 +2475,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 454 + - uid: 394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-19.5 + pos: -3.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 626 + - uid: 411 components: - type: Transform - pos: 5.5,-18.5 + rot: 3.141592653589793 rad + pos: -1.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 685 + color: '#0055CCFF' + - uid: 454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-19.5 + rot: -1.5707963267948966 rad + pos: -3.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -2504,37 +2515,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeStraight - entities: - - uid: 73 + - uid: 547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-19.5 + pos: 2.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 127 +- proto: GasPipeStraight + entities: + - uid: 3 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-13.5 + rot: 3.141592653589793 rad + pos: -5.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 128 + - uid: 73 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-15.5 + pos: 7.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -2546,14 +2548,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 162 components: - type: Transform @@ -2562,14 +2556,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 178 components: - type: Transform @@ -2726,14 +2712,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 281 components: - type: Transform @@ -2741,14 +2719,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 283 + - uid: 282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-13.5 + pos: 2.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 288 components: - type: Transform @@ -2770,6 +2747,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 308 components: - type: Transform @@ -2801,6 +2802,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 317 components: - type: Transform @@ -2836,6 +2845,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 342 components: - type: Transform @@ -2848,15 +2873,31 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-15.5 + pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-13.5 + rot: -1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -2864,47 +2905,54 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-13.5 + pos: 4.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 352 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-15.5 + pos: 0.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 355 + - uid: 358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-13.5 + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 402 + - uid: 383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-18.5 + pos: 3.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 423 + color: '#0055CCFF' + - uid: 402 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-13.5 + pos: -3.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 437 + - uid: 403 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-15.5 + pos: 1.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -2946,13 +2994,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 671 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 672 components: - type: Transform @@ -2967,13 +3008,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 677 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 678 components: - type: Transform @@ -3054,21 +3088,6 @@ entities: color: '#0055CCFF' - proto: GasPipeTJunction entities: - - uid: 179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 182 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 206 components: - type: Transform @@ -3107,30 +3126,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 292 + - uid: 273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-15.5 + rot: 1.5707963267948966 rad + pos: -5.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 316 + color: '#0055CCFF' + - uid: 287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-16.5 + rot: 3.141592653589793 rad + pos: 3.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 347 + color: '#0055CCFF' + - uid: 339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-13.5 + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 359 components: - type: Transform @@ -3139,10 +3166,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 422 + - uid: 513 components: - type: Transform - pos: -1.5,-15.5 + pos: -0.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -3156,11 +3183,21 @@ entities: color: '#0055CCFF' - proto: GasPort entities: - - uid: 240 + - uid: 412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-11.5 + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasPressurePump + entities: + - uid: 267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 parent: 2 - type: AtmosDevice joinedGrid: 2 @@ -3168,11 +3205,14 @@ entities: color: '#0055CCFF' - proto: GasVentPump entities: - - uid: 266 + - uid: 283 components: - type: Transform - pos: 6.5,-10.5 + pos: 5.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 585 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -3196,6 +3236,18 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 458 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 494 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 496 components: - type: Transform @@ -3295,12 +3347,15 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 353 + - uid: 422 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-16.5 + pos: -0.5,-17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 588 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -3476,7 +3531,6 @@ entities: - uid: 98 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-12.5 parent: 2 - uid: 123 @@ -3494,16 +3548,15 @@ entities: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 276 + - uid: 274 components: - type: Transform - pos: 8.5,-23.5 + pos: -1.5,-15.5 parent: 2 - - uid: 298 + - uid: 276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-14.5 + pos: 8.5,-23.5 parent: 2 - uid: 302 components: @@ -3513,13 +3566,11 @@ entities: - uid: 330 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 - uid: 398 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-17.5 parent: 2 - uid: 623 @@ -3574,10 +3625,10 @@ entities: parent: 2 - proto: Gyroscope entities: - - uid: 403 + - uid: 266 components: - type: Transform - pos: 7.5,-10.5 + pos: 8.5,-9.5 parent: 2 - proto: HospitalCurtainsOpen entities: @@ -3650,7 +3701,7 @@ entities: parent: 2 - proto: KitchenKnife entities: - - uid: 380 + - uid: 405 components: - type: Transform pos: 5.541848,-15.96916 @@ -3678,12 +3729,12 @@ entities: parent: 2 - proto: LargeBeaker entities: - - uid: 1 + - uid: 232 components: - type: Transform pos: 4.6986766,-15.301495 parent: 2 - - uid: 379 + - uid: 380 components: - type: Transform pos: 4.9903436,-15.44743 @@ -3735,21 +3786,21 @@ entities: - uid: 377 components: - type: Transform - pos: 2.665164,-19.025154 + pos: 2.665164,-18.025154 parent: 2 - proto: OilJarGhee entities: - uid: 376 components: - type: Transform - pos: 2.3039377,-19.24173 + pos: 2.3039377,-18.24173 parent: 2 - proto: OilJarOlive entities: - uid: 365 components: - type: Transform - pos: 2.6987016,-19.387365 + pos: 2.6987016,-18.387365 parent: 2 - proto: PaperBin10 entities: @@ -3760,19 +3811,19 @@ entities: parent: 2 - proto: PortableGeneratorPacmanShuttle entities: - - uid: 409 + - uid: 176 components: - type: Transform - pos: -3.5,-10.5 + pos: -2.5,-11.5 parent: 2 - type: FuelGenerator on: False - type: Physics bodyType: Static - - uid: 411 + - uid: 234 components: - type: Transform - pos: -3.5,-11.5 + pos: -1.5,-11.5 parent: 2 - type: FuelGenerator on: False @@ -3790,6 +3841,11 @@ entities: - type: Transform pos: -8.5,-20.5 parent: 2 + - uid: 226 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 - uid: 455 components: - type: Transform @@ -3800,119 +3856,86 @@ entities: - type: Transform pos: -6.5,-22.5 parent: 2 - - uid: 571 - components: - - type: Transform - pos: 0.5,-19.5 - parent: 2 - proto: Poweredlight entities: - uid: 106 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 2 - uid: 201 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-17.5 parent: 2 - uid: 258 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-21.5 parent: 2 - uid: 389 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-6.5 parent: 2 - uid: 390 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 2 - uid: 391 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-1.5 parent: 2 - uid: 392 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 2 - uid: 393 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-8.5 parent: 2 - uid: 395 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-13.5 parent: 2 - - uid: 397 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-17.5 - parent: 2 - uid: 400 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-9.5 parent: 2 - uid: 408 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-13.5 parent: 2 - uid: 430 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-12.5 parent: 2 - uid: 578 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,-19.5 + pos: 9.5,-19.5 + parent: 2 + - uid: 662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-18.5 parent: 2 - proto: PoweredSmallLight entities: @@ -3984,6 +4007,12 @@ entities: parent: 2 - proto: RandomPainting entities: + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-20.5 + parent: 2 - uid: 664 components: - type: Transform @@ -3994,11 +4023,6 @@ entities: - type: Transform pos: -4.5,-12.5 parent: 2 - - uid: 697 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 2 - proto: RandomPosterAny entities: - uid: 62 @@ -4028,10 +4052,10 @@ entities: parent: 2 - proto: SheetPlasma entities: - - uid: 341 + - uid: 697 components: - type: Transform - pos: -2.5199935,-10.448381 + pos: -2,-10.5 parent: 2 - proto: ShuttersNormalOpen entities: @@ -4316,37 +4340,36 @@ entities: - type: DeviceLinkSink links: - 744 - - uid: 383 + - uid: 385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-15.5 + pos: -0.5,-15.5 parent: 2 - type: DeviceLinkSink links: - - 744 - - uid: 385 + - 387 + - uid: 386 components: - type: Transform - pos: -0.5,-14.5 + pos: 0.5,-15.5 parent: 2 - type: DeviceLinkSink links: - 387 - - uid: 386 + - uid: 466 components: - type: Transform - pos: 0.5,-14.5 + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 parent: 2 - type: DeviceLinkSink links: - - 387 + - 744 - proto: ShuttleWindow entities: - uid: 85 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 - uid: 187 @@ -4489,27 +4512,24 @@ entities: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 297 + - uid: 362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-14.5 + pos: 8.5,-16.5 parent: 2 - - uid: 362 + - uid: 401 components: - type: Transform - pos: 8.5,-16.5 + pos: -1.5,-15.5 parent: 2 - uid: 431 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-12.5 parent: 2 - uid: 432 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-17.5 parent: 2 - uid: 542 @@ -4692,14 +4712,31 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-17.5 + pos: 1.5,-18.5 parent: 2 - type: DeviceLinkSource linkedPorts: 313: - Pressed: Toggle - 383: + 466: - Pressed: Toggle +- proto: SignBar + entities: + - uid: 545 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 - proto: SignDirectionalFood entities: - uid: 607 @@ -4715,6 +4752,13 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-12.5 parent: 2 +- proto: SignElectricalMed + entities: + - uid: 801 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 - proto: SinkWide entities: - uid: 221 @@ -4725,10 +4769,17 @@ entities: parent: 2 - proto: SMESBasic entities: - - uid: 474 + - uid: 459 components: - type: Transform - pos: -2.5,-11.5 + pos: -3.5,-11.5 + parent: 2 +- proto: soda_dispenser + entities: + - uid: 235 + components: + - type: Transform + pos: 0.5,-13.5 parent: 2 - proto: SpawnMobAlexander entities: @@ -4774,10 +4825,10 @@ entities: parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 412 + - uid: 626 components: - type: Transform - pos: 0.5,-13.5 + pos: 0.5,-14.5 parent: 2 - proto: SprayBottleSpaceCleaner entities: @@ -4786,38 +4837,24 @@ entities: - type: Transform pos: 9.812354,-21.703634 parent: 2 -- proto: SubstationWallBasic +- proto: SubstationBasic entities: - - uid: 338 + - uid: 510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-12.5 + pos: -3.5,-10.5 parent: 2 - proto: SuitStorageWallmountEVA entities: - - uid: 458 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 2 - - type: Physics - canCollide: False - uid: 493 components: - type: Transform - pos: 3.5,-9.5 + pos: 2.5,-9.5 parent: 2 - type: Physics canCollide: False - proto: Table entities: - - uid: 3 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-19.5 - parent: 2 - uid: 169 components: - type: Transform @@ -4828,6 +4865,16 @@ entities: - type: Transform pos: 8.5,-8.5 parent: 2 + - uid: 182 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 - uid: 363 components: - type: Transform @@ -4875,29 +4922,28 @@ entities: parent: 2 - proto: TableCounterMetal entities: - - uid: 304 + - uid: 305 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-15.5 + pos: 1.5,-16.5 parent: 2 - - uid: 305 + - uid: 464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-16.5 + pos: 1.5,-17.5 parent: 2 - proto: TableCounterWood entities: - - uid: 287 + - uid: 770 components: - type: Transform - pos: 0.5,-14.5 + pos: 0.5,-15.5 parent: 2 - - uid: 350 + - uid: 793 components: - type: Transform - pos: -0.5,-14.5 + pos: -0.5,-15.5 parent: 2 - proto: TableReinforcedGlass entities: @@ -4918,6 +4964,11 @@ entities: - type: Transform pos: -6.5,-9.5 parent: 2 + - uid: 397 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 - uid: 424 components: - type: Transform @@ -4953,6 +5004,11 @@ entities: - type: Transform pos: -3.5,-14.5 parent: 2 + - uid: 509 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 - proto: Thruster entities: - uid: 105 @@ -5003,7 +5059,7 @@ entities: parent: 2 - proto: VariantCubeBox entities: - - uid: 232 + - uid: 233 components: - type: Transform pos: 4.6436033,-16.34774 @@ -5031,10 +5087,10 @@ entities: parent: 2 - proto: VendingMachineCondiments entities: - - uid: 513 + - uid: 571 components: - type: Transform - pos: -0.5,-14.5 + pos: -0.5,-15.5 parent: 2 - proto: VendingMachineDinnerware entities: @@ -5068,506 +5124,366 @@ entities: entities: - uid: 4 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-0.5 parent: 2 - uid: 5 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-0.5 parent: 2 - uid: 6 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-6.5 parent: 2 - uid: 8 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-0.5 parent: 2 - uid: 9 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-6.5 parent: 2 - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-0.5 parent: 2 - uid: 13 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-1.5 parent: 2 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-5.5 parent: 2 - uid: 16 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-6.5 parent: 2 - uid: 19 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-6.5 parent: 2 - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-5.5 parent: 2 - uid: 23 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-1.5 parent: 2 - uid: 33 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-7.5 parent: 2 - uid: 34 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-7.5 parent: 2 - uid: 41 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-11.5 parent: 2 - uid: 42 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-11.5 parent: 2 - uid: 43 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-11.5 parent: 2 - uid: 44 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-10.5 parent: 2 - uid: 45 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-9.5 parent: 2 - uid: 46 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-8.5 parent: 2 - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-7.5 parent: 2 - uid: 53 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-7.5 parent: 2 - uid: 56 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-10.5 parent: 2 - uid: 57 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-8.5 parent: 2 - uid: 58 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-9.5 parent: 2 - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-9.5 parent: 2 - uid: 60 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-9.5 parent: 2 - uid: 61 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-9.5 parent: 2 - uid: 66 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-12.5 parent: 2 - uid: 67 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-12.5 parent: 2 - uid: 68 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-12.5 parent: 2 - uid: 69 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-12.5 parent: 2 - uid: 70 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-12.5 parent: 2 - uid: 71 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-11.5 parent: 2 - uid: 72 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-12.5 parent: 2 + - uid: 74 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 - uid: 75 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-12.5 parent: 2 - uid: 76 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-11.5 parent: 2 - uid: 77 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-11.5 parent: 2 - uid: 78 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-11.5 parent: 2 - uid: 79 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-11.5 parent: 2 - uid: 80 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-11.5 parent: 2 - uid: 81 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-12.5 parent: 2 - uid: 89 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-7.5 parent: 2 - uid: 112 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-20.5 parent: 2 - uid: 117 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-20.5 parent: 2 - - uid: 119 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-19.5 - parent: 2 - uid: 121 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-18.5 parent: 2 - uid: 122 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-17.5 parent: 2 - uid: 157 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-20.5 parent: 2 - uid: 159 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-20.5 parent: 2 - uid: 166 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-20.5 parent: 2 - - uid: 282 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-14.5 - parent: 2 - - uid: 284 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 1.5,-17.5 - parent: 2 - uid: 285 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-12.5 parent: 2 - uid: 286 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-21.5 parent: 2 + - uid: 298 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 - uid: 307 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-22.5 parent: 2 - uid: 356 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-9.5 parent: 2 - uid: 357 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-22.5 parent: 2 - uid: 381 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-18.5 parent: 2 - uid: 384 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-20.5 parent: 2 + - uid: 474 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 - uid: 489 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-9.5 parent: 2 - uid: 491 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-9.5 parent: 2 - uid: 541 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-22.5 parent: 2 - uid: 579 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-20.5 parent: 2 - uid: 627 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-18.5 parent: 2 - uid: 630 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-20.5 parent: 2 - uid: 631 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-20.5 parent: 2 - uid: 658 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-20.5 parent: 2 - uid: 660 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-20.5 parent: 2 - uid: 675 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,-19.5 parent: 2 + - uid: 685 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 - uid: 693 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-21.5 parent: 2 - uid: 725 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-18.5 parent: 2 @@ -5756,17 +5672,17 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 74 + - uid: 423 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-13.5 + pos: -1.5,-14.5 parent: 2 - proto: Wrench entities: - - uid: 340 + - uid: 804 components: - type: Transform - pos: -2.5408268,-10.469231 + pos: 7.5,-10.5 parent: 2 ... diff --git a/Resources/Maps/Shuttles/condor.yml b/Resources/Maps/_NF/Shuttles/condor.yml similarity index 53% rename from Resources/Maps/Shuttles/condor.yml rename to Resources/Maps/_NF/Shuttles/condor.yml index d6c3743da23..92d492d1f95 100644 --- a/Resources/Maps/Shuttles/condor.yml +++ b/Resources/Maps/_NF/Shuttles/condor.yml @@ -3,63 +3,64 @@ meta: postmapinit: false tilemap: 0: Space - 27: FloorDark - 84: FloorSteel - 92: FloorSteelMono - 96: FloorTechMaint - 112: Lattice - 113: Plating + 30: FloorDark + 92: FloorSteel + 103: FloorSteelMono + 107: FloorTechMaint + 124: Lattice + 125: Plating entities: - proto: "" entities: - uid: 281 components: - type: MetaData - - pos: 0.22312418,1.0179756 + - type: Transform + pos: 0.22312418,1.0179756 parent: invalid - type: Transform - - chunks: + - type: MapGrid + chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAA version: 6 0,0: ind: 0,0 - tiles: cQAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAGwAAAAADGwAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAfQAAAAAAHgAAAAADHgAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABXAAAAAAAXAAAAAADfQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADXAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAACfQAAAAAAXAAAAAABZwAAAAAAZwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAACXAAAAAACXAAAAAABfQAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAABfQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAABfQAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAACXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAACXAAAAAADfQAAAAAAXAAAAAAAXAAAAAABXAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAACXAAAAAADfQAAAAAAXAAAAAAAXAAAAAADZwAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAACfQAAAAAAHgAAAAADHgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAABHgAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: MapGrid - type: Broadphase - - bodyStatus: InAir + - type: Physics + bodyStatus: InAir angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - type: OccluderTree - type: Shuttle - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: + - type: DecalGrid + chunkCollection: version: 2 nodes: - node: @@ -183,8 +184,8 @@ entities: decals: 59: 6,-9 60: 7,-4 - type: DecalGrid - - version: 2 + - type: GridAtmosphere + version: 2 data: tiles: -1,-1: @@ -359,21 +360,21 @@ entities: - 0 - 0 chunkSize: 4 - type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - - id: Condor - type: BecomesStation + - type: BecomesStation + id: Condor - type: SpreaderGrid - proto: AirAlarm entities: - uid: 717 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,4.5 parent: 281 - type: Transform - - devices: + - type: DeviceList + devices: - 184 - 718 - 719 @@ -383,1850 +384,1862 @@ entities: - 723 - 722 - 721 - type: DeviceList + - type: AtmosDevice + joinedGrid: 281 - proto: AirCanister entities: - uid: 650 components: - - pos: 7.5,-8.5 + - type: Transform + pos: 7.5,-8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - proto: AirlockAtmosphericsGlass entities: - uid: 632 components: - - pos: 4.5,4.5 + - type: Transform + pos: 4.5,4.5 parent: 281 - type: Transform - proto: AirlockCommandGlass entities: - uid: 697 components: - - pos: 8.5,-0.5 + - type: Transform + pos: 8.5,-0.5 parent: 281 - type: Transform - proto: AirlockEngineeringGlass entities: - uid: 633 components: - - pos: 4.5,1.5 + - type: Transform + pos: 4.5,1.5 parent: 281 - type: Transform - uid: 634 components: - - pos: 5.5,-2.5 + - type: Transform + pos: 5.5,-2.5 parent: 281 - type: Transform - proto: AirlockExternalGlass entities: - uid: 119 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 281 - type: Transform - uid: 123 components: - - pos: 4.5,10.5 + - type: Transform + pos: 4.5,10.5 parent: 281 - type: Transform - uid: 253 components: - - pos: 5.5,-9.5 + - type: Transform + pos: 5.5,-9.5 parent: 281 - type: Transform - uid: 341 components: - - pos: 3.5,-9.5 + - type: Transform + pos: 3.5,-9.5 parent: 281 - type: Transform - proto: AirlockGlassShuttle entities: - uid: 320 components: - - pos: 3.5,-11.5 + - type: Transform + pos: 3.5,-11.5 parent: 281 - type: Transform - uid: 635 components: - - pos: 5.5,-11.5 + - type: Transform + pos: 5.5,-11.5 parent: 281 - type: Transform - proto: AirlockScienceGlass entities: - uid: 352 components: - - pos: 4.5,-6.5 + - type: Transform + pos: 4.5,-6.5 parent: 281 - type: Transform - uid: 355 components: - - pos: 4.5,-7.5 + - type: Transform + pos: 4.5,-7.5 parent: 281 - type: Transform - uid: 629 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 281 - type: Transform - uid: 630 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 281 - type: Transform - proto: AirSensor entities: - uid: 721 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,3.5 parent: 281 - type: Transform - uid: 722 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-0.5 parent: 281 - type: Transform - uid: 723 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 281 - type: Transform - proto: APCBasic entities: - uid: 575 components: - - pos: 5.5,8.5 + - type: Transform + pos: 5.5,8.5 parent: 281 - type: Transform - uid: 616 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 281 - type: Transform - uid: 764 components: - - pos: 6.5,-2.5 + - type: Transform + pos: 6.5,-2.5 parent: 281 - type: Transform - uid: 765 components: - - pos: 2.5,-2.5 + - type: Transform + pos: 2.5,-2.5 parent: 281 - type: Transform - proto: AtmosDeviceFanTiny entities: - uid: 628 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-0.5 parent: 281 - type: Transform - uid: 651 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-11.5 parent: 281 - type: Transform - uid: 652 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-11.5 parent: 281 - type: Transform - proto: AtmosFixBlockerMarker entities: - uid: 734 components: - - pos: 9.5,14.5 + - type: Transform + pos: 9.5,14.5 parent: 281 - type: Transform - uid: 735 components: - - pos: 9.5,13.5 + - type: Transform + pos: 9.5,13.5 parent: 281 - type: Transform - proto: AtmosFixShuttleNitrogenMarker entities: - - uid: 730 + - uid: 278 components: - - pos: -0.5,14.5 + - type: Transform + pos: -0.5,13.5 parent: 281 - type: Transform - - uid: 731 + - uid: 279 components: - - pos: -0.5,13.5 + - type: Transform + pos: -0.5,14.5 parent: 281 - type: Transform - proto: AtmosFixShuttleOxygenMarker entities: - - uid: 728 + - uid: 325 components: - - pos: 1.5,14.5 + - type: Transform + pos: 1.5,14.5 parent: 281 - type: Transform - - uid: 729 + - uid: 535 components: - - pos: 1.5,13.5 + - type: Transform + pos: 1.5,13.5 parent: 281 - type: Transform - proto: AtmosFixShuttlePlasmaMarker entities: - - uid: 732 + - uid: 536 components: - - pos: 7.5,14.5 + - type: Transform + pos: 7.5,13.5 parent: 281 - type: Transform - - uid: 733 + - uid: 668 components: - - pos: 7.5,13.5 + - type: Transform + pos: 7.5,14.5 parent: 281 - type: Transform - proto: Autolathe entities: - uid: 357 components: - - pos: 9.5,-5.5 + - type: Transform + pos: 9.5,-5.5 parent: 281 - type: Transform - proto: BlastDoorOpen entities: - uid: 16 components: - - pos: -2.5,-0.5 - parent: 281 - type: Transform - - state: Closed - type: Door - - enabled: True - type: Occluder - - canCollide: True - type: Physics - - airBlocked: True - type: Airtight - - links: + - type: Transform + pos: -2.5,-0.5 + parent: 281 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - type: Airtight + airBlocked: True + - type: DeviceLinkSink + links: - 736 - type: DeviceLinkSink - proto: BoxFolderBase entities: - uid: 618 components: - - pos: 1.4059263,-4.0083656 + - type: Transform + pos: 1.4059263,-4.0083656 parent: 281 - type: Transform - uid: 619 components: - - pos: 1.7182992,-4.363144 + - type: Transform + pos: 1.7182992,-4.363144 parent: 281 - type: Transform - proto: BoxLatexGloves entities: - uid: 713 components: - - pos: 2.279059,-8.298996 + - type: Transform + pos: 2.279059,-8.298996 parent: 281 - type: Transform - proto: BoxMouthSwab entities: - uid: 676 components: - - pos: 0.2698599,-5.259469 + - type: Transform + pos: 0.2698599,-5.259469 parent: 281 - type: Transform - uid: 710 components: - - pos: 1.3595983,-4.3783197 + - type: Transform + pos: 1.3595983,-4.3783197 parent: 281 - type: Transform - proto: BoxSterileMask entities: - uid: 714 components: - - pos: 2.6198297,-8.398334 + - type: Transform + pos: 2.6198297,-8.398334 parent: 281 - type: Transform - proto: CableApcExtension entities: - uid: 576 components: - - pos: 5.5,8.5 + - type: Transform + pos: 5.5,8.5 parent: 281 - type: Transform - uid: 577 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 281 - type: Transform - uid: 578 components: - - pos: 4.5,9.5 + - type: Transform + pos: 4.5,9.5 parent: 281 - type: Transform - uid: 579 components: - - pos: 4.5,10.5 + - type: Transform + pos: 4.5,10.5 parent: 281 - type: Transform - uid: 580 components: - - pos: 4.5,11.5 + - type: Transform + pos: 4.5,11.5 parent: 281 - type: Transform - uid: 581 components: - - pos: 4.5,12.5 + - type: Transform + pos: 4.5,12.5 parent: 281 - type: Transform - uid: 582 components: - - pos: 4.5,13.5 + - type: Transform + pos: 4.5,13.5 parent: 281 - type: Transform - uid: 583 components: - - pos: 4.5,14.5 + - type: Transform + pos: 4.5,14.5 parent: 281 - type: Transform - uid: 584 components: - - pos: 4.5,15.5 + - type: Transform + pos: 4.5,15.5 parent: 281 - type: Transform - uid: 585 components: - - pos: 4.5,16.5 + - type: Transform + pos: 4.5,16.5 parent: 281 - type: Transform - uid: 586 components: - - pos: 4.5,17.5 + - type: Transform + pos: 4.5,17.5 parent: 281 - type: Transform - uid: 587 components: - - pos: 3.5,11.5 + - type: Transform + pos: 3.5,11.5 parent: 281 - type: Transform - uid: 588 components: - - pos: 2.5,11.5 + - type: Transform + pos: 2.5,11.5 parent: 281 - type: Transform - uid: 589 components: - - pos: 1.5,11.5 + - type: Transform + pos: 1.5,11.5 parent: 281 - type: Transform - uid: 590 components: - - pos: 0.5,11.5 + - type: Transform + pos: 0.5,11.5 parent: 281 - type: Transform - uid: 591 components: - - pos: -0.5,11.5 + - type: Transform + pos: -0.5,11.5 parent: 281 - type: Transform - uid: 592 components: - - pos: -1.5,11.5 + - type: Transform + pos: -1.5,11.5 parent: 281 - type: Transform - uid: 593 components: - - pos: -2.5,11.5 + - type: Transform + pos: -2.5,11.5 parent: 281 - type: Transform - uid: 594 components: - - pos: 5.5,11.5 + - type: Transform + pos: 5.5,11.5 parent: 281 - type: Transform - uid: 595 components: - - pos: 6.5,11.5 + - type: Transform + pos: 6.5,11.5 parent: 281 - type: Transform - uid: 596 components: - - pos: 7.5,11.5 + - type: Transform + pos: 7.5,11.5 parent: 281 - type: Transform - uid: 597 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 281 - type: Transform - uid: 598 components: - - pos: 9.5,11.5 + - type: Transform + pos: 9.5,11.5 parent: 281 - type: Transform - uid: 599 components: - - pos: 10.5,11.5 + - type: Transform + pos: 10.5,11.5 parent: 281 - type: Transform - uid: 600 components: - - pos: 11.5,11.5 + - type: Transform + pos: 11.5,11.5 parent: 281 - type: Transform - uid: 601 components: - - pos: 3.5,17.5 + - type: Transform + pos: 3.5,17.5 parent: 281 - type: Transform - uid: 602 components: - - pos: 2.5,17.5 + - type: Transform + pos: 2.5,17.5 parent: 281 - type: Transform - uid: 603 components: - - pos: 1.5,17.5 + - type: Transform + pos: 1.5,17.5 parent: 281 - type: Transform - uid: 604 components: - - pos: 0.5,17.5 + - type: Transform + pos: 0.5,17.5 parent: 281 - type: Transform - uid: 605 components: - - pos: -0.5,17.5 + - type: Transform + pos: -0.5,17.5 parent: 281 - type: Transform - uid: 606 components: - - pos: -1.5,17.5 + - type: Transform + pos: -1.5,17.5 parent: 281 - type: Transform - uid: 607 components: - - pos: -2.5,17.5 + - type: Transform + pos: -2.5,17.5 parent: 281 - type: Transform - uid: 608 components: - - pos: 5.5,17.5 + - type: Transform + pos: 5.5,17.5 parent: 281 - type: Transform - uid: 609 components: - - pos: 6.5,17.5 + - type: Transform + pos: 6.5,17.5 parent: 281 - type: Transform - uid: 610 components: - - pos: 7.5,17.5 + - type: Transform + pos: 7.5,17.5 parent: 281 - type: Transform - uid: 611 components: - - pos: 8.5,17.5 + - type: Transform + pos: 8.5,17.5 parent: 281 - type: Transform - uid: 612 components: - - pos: 9.5,17.5 + - type: Transform + pos: 9.5,17.5 parent: 281 - type: Transform - uid: 613 components: - - pos: 10.5,17.5 + - type: Transform + pos: 10.5,17.5 parent: 281 - type: Transform - uid: 614 components: - - pos: 11.5,17.5 + - type: Transform + pos: 11.5,17.5 parent: 281 - type: Transform - uid: 681 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 281 - type: Transform - uid: 682 components: - - pos: 3.5,0.5 + - type: Transform + pos: 3.5,0.5 parent: 281 - type: Transform - uid: 767 components: - - pos: 6.5,-2.5 + - type: Transform + pos: 6.5,-2.5 parent: 281 - type: Transform - uid: 768 components: - - pos: 6.5,-3.5 + - type: Transform + pos: 6.5,-3.5 parent: 281 - type: Transform - uid: 769 components: - - pos: 6.5,-4.5 + - type: Transform + pos: 6.5,-4.5 parent: 281 - type: Transform - uid: 770 components: - - pos: 6.5,-5.5 + - type: Transform + pos: 6.5,-5.5 parent: 281 - type: Transform - uid: 771 components: - - pos: 6.5,-6.5 + - type: Transform + pos: 6.5,-6.5 parent: 281 - type: Transform - uid: 772 components: - - pos: 6.5,-7.5 + - type: Transform + pos: 6.5,-7.5 parent: 281 - type: Transform - uid: 773 components: - - pos: 6.5,-8.5 + - type: Transform + pos: 6.5,-8.5 parent: 281 - type: Transform - uid: 774 components: - - pos: 7.5,-6.5 + - type: Transform + pos: 7.5,-6.5 parent: 281 - type: Transform - uid: 775 components: - - pos: 8.5,-6.5 + - type: Transform + pos: 8.5,-6.5 parent: 281 - type: Transform - uid: 776 components: - - pos: 9.5,-6.5 + - type: Transform + pos: 9.5,-6.5 parent: 281 - type: Transform - uid: 777 components: - - pos: 9.5,-7.5 + - type: Transform + pos: 9.5,-7.5 parent: 281 - type: Transform - uid: 778 components: - - pos: 5.5,-8.5 + - type: Transform + pos: 5.5,-8.5 parent: 281 - type: Transform - uid: 779 components: - - pos: 5.5,-9.5 + - type: Transform + pos: 5.5,-9.5 parent: 281 - type: Transform - uid: 780 components: - - pos: 5.5,-10.5 + - type: Transform + pos: 5.5,-10.5 parent: 281 - type: Transform - uid: 781 components: - - pos: 2.5,-2.5 + - type: Transform + pos: 2.5,-2.5 parent: 281 - type: Transform - uid: 782 components: - - pos: 2.5,-3.5 + - type: Transform + pos: 2.5,-3.5 parent: 281 - type: Transform - uid: 783 components: - - pos: 2.5,-4.5 + - type: Transform + pos: 2.5,-4.5 parent: 281 - type: Transform - uid: 784 components: - - pos: 2.5,-5.5 + - type: Transform + pos: 2.5,-5.5 parent: 281 - type: Transform - uid: 785 components: - - pos: 2.5,-6.5 + - type: Transform + pos: 2.5,-6.5 parent: 281 - type: Transform - uid: 786 components: - - pos: 2.5,-7.5 + - type: Transform + pos: 2.5,-7.5 parent: 281 - type: Transform - uid: 787 components: - - pos: 2.5,-8.5 + - type: Transform + pos: 2.5,-8.5 parent: 281 - type: Transform - uid: 788 components: - - pos: 3.5,-8.5 + - type: Transform + pos: 3.5,-8.5 parent: 281 - type: Transform - uid: 789 components: - - pos: 3.5,-9.5 + - type: Transform + pos: 3.5,-9.5 parent: 281 - type: Transform - uid: 790 components: - - pos: 3.5,-10.5 + - type: Transform + pos: 3.5,-10.5 parent: 281 - type: Transform - uid: 791 components: - - pos: 1.5,-6.5 + - type: Transform + pos: 1.5,-6.5 parent: 281 - type: Transform - uid: 792 components: - - pos: 0.5,-6.5 + - type: Transform + pos: 0.5,-6.5 parent: 281 - type: Transform - uid: 793 components: - - pos: -0.5,-6.5 + - type: Transform + pos: -0.5,-6.5 parent: 281 - type: Transform - uid: 794 components: - - pos: -0.5,-7.5 + - type: Transform + pos: -0.5,-7.5 parent: 281 - type: Transform - uid: 795 components: - - pos: -0.5,-5.5 + - type: Transform + pos: -0.5,-5.5 parent: 281 - type: Transform - uid: 797 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 parent: 281 - type: Transform - uid: 798 components: - - pos: 1.5,-0.5 + - type: Transform + pos: 1.5,-0.5 parent: 281 - type: Transform - uid: 799 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 281 - type: Transform - uid: 800 components: - - pos: -0.5,-0.5 + - type: Transform + pos: -0.5,-0.5 parent: 281 - type: Transform - uid: 801 components: - - pos: -1.5,-0.5 + - type: Transform + pos: -1.5,-0.5 parent: 281 - type: Transform - uid: 802 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 281 - type: Transform - uid: 803 components: - - pos: 6.5,-2.5 + - type: Transform + pos: 6.5,-2.5 parent: 281 - type: Transform - uid: 804 components: - - pos: 6.5,-1.5 + - type: Transform + pos: 6.5,-1.5 parent: 281 - type: Transform - uid: 805 components: - - pos: 6.5,-0.5 + - type: Transform + pos: 6.5,-0.5 parent: 281 - type: Transform - uid: 806 components: - - pos: 6.5,0.5 + - type: Transform + pos: 6.5,0.5 parent: 281 - type: Transform - uid: 807 components: - - pos: 7.5,-0.5 + - type: Transform + pos: 7.5,-0.5 parent: 281 - type: Transform - uid: 808 components: - - pos: 8.5,-0.5 + - type: Transform + pos: 8.5,-0.5 parent: 281 - type: Transform - uid: 809 components: - - pos: 9.5,-0.5 + - type: Transform + pos: 9.5,-0.5 parent: 281 - type: Transform - uid: 810 components: - - pos: 10.5,-0.5 + - type: Transform + pos: 10.5,-0.5 parent: 281 - type: Transform - uid: 811 components: - - pos: 3.5,-0.5 + - type: Transform + pos: 3.5,-0.5 parent: 281 - type: Transform - uid: 812 components: - - pos: 5.5,-0.5 + - type: Transform + pos: 5.5,-0.5 parent: 281 - type: Transform - uid: 813 components: - - pos: 5.5,8.5 + - type: Transform + pos: 5.5,8.5 parent: 281 - type: Transform - uid: 814 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 281 - type: Transform - uid: 815 components: - - pos: 4.5,7.5 + - type: Transform + pos: 4.5,7.5 parent: 281 - type: Transform - uid: 816 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 281 - type: Transform - uid: 817 components: - - pos: 4.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 281 - type: Transform - uid: 818 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 281 - type: Transform - uid: 819 components: - - pos: 2.5,5.5 + - type: Transform + pos: 2.5,5.5 parent: 281 - type: Transform - uid: 820 components: - - pos: 1.5,5.5 + - type: Transform + pos: 1.5,5.5 parent: 281 - type: Transform - uid: 821 components: - - pos: 1.5,4.5 + - type: Transform + pos: 1.5,4.5 parent: 281 - type: Transform - uid: 822 components: - - pos: 0.5,4.5 + - type: Transform + pos: 0.5,4.5 parent: 281 - type: Transform - uid: 823 components: - - pos: -0.5,4.5 + - type: Transform + pos: -0.5,4.5 parent: 281 - type: Transform - uid: 824 components: - - pos: -1.5,4.5 + - type: Transform + pos: -1.5,4.5 parent: 281 - type: Transform - uid: 825 components: - - pos: 5.5,5.5 + - type: Transform + pos: 5.5,5.5 parent: 281 - type: Transform - uid: 826 components: - - pos: 6.5,5.5 + - type: Transform + pos: 6.5,5.5 parent: 281 - type: Transform - uid: 827 components: - - pos: 7.5,5.5 + - type: Transform + pos: 7.5,5.5 parent: 281 - type: Transform - uid: 828 components: - - pos: 7.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 281 - type: Transform - uid: 829 components: - - pos: 8.5,4.5 + - type: Transform + pos: 8.5,4.5 parent: 281 - type: Transform - uid: 830 components: - - pos: 9.5,4.5 + - type: Transform + pos: 9.5,4.5 parent: 281 - type: Transform - uid: 831 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 281 - type: Transform - uid: 832 components: - - pos: 10.5,5.5 + - type: Transform + pos: 10.5,5.5 parent: 281 - type: Transform - uid: 833 components: - - pos: 10.5,6.5 + - type: Transform + pos: 10.5,6.5 parent: 281 - type: Transform - uid: 834 components: - - pos: 10.5,7.5 + - type: Transform + pos: 10.5,7.5 parent: 281 - type: Transform - uid: 835 components: - - pos: 10.5,8.5 + - type: Transform + pos: 10.5,8.5 parent: 281 - type: Transform - uid: 836 components: - - pos: -1.5,5.5 + - type: Transform + pos: -1.5,5.5 parent: 281 - type: Transform - uid: 837 components: - - pos: -1.5,6.5 + - type: Transform + pos: -1.5,6.5 parent: 281 - type: Transform - uid: 838 components: - - pos: -1.5,7.5 + - type: Transform + pos: -1.5,7.5 parent: 281 - type: Transform - uid: 839 components: - - pos: -1.5,8.5 + - type: Transform + pos: -1.5,8.5 parent: 281 - type: Transform - uid: 840 components: - - pos: -0.5,8.5 + - type: Transform + pos: -0.5,8.5 parent: 281 - type: Transform - uid: 841 components: - - pos: 0.5,8.5 + - type: Transform + pos: 0.5,8.5 parent: 281 - type: Transform - uid: 842 components: - - pos: 1.5,8.5 + - type: Transform + pos: 1.5,8.5 parent: 281 - type: Transform - uid: 843 components: - - pos: 2.5,8.5 + - type: Transform + pos: 2.5,8.5 parent: 281 - type: Transform - uid: 844 components: - - pos: 9.5,8.5 + - type: Transform + pos: 9.5,8.5 parent: 281 - type: Transform - uid: 845 components: - - pos: 8.5,8.5 + - type: Transform + pos: 8.5,8.5 parent: 281 - type: Transform - uid: 846 components: - - pos: 7.5,8.5 + - type: Transform + pos: 7.5,8.5 parent: 281 - type: Transform - uid: 847 components: - - pos: 6.5,8.5 + - type: Transform + pos: 6.5,8.5 parent: 281 - type: Transform - proto: CableHV entities: - uid: 451 components: - - pos: -3.5,19.5 + - type: Transform + pos: -3.5,19.5 parent: 281 - type: Transform - uid: 452 components: - - pos: -2.5,19.5 + - type: Transform + pos: -2.5,19.5 parent: 281 - type: Transform - uid: 453 components: - - pos: -1.5,19.5 + - type: Transform + pos: -1.5,19.5 parent: 281 - type: Transform - uid: 454 components: - - pos: -0.5,19.5 + - type: Transform + pos: -0.5,19.5 parent: 281 - type: Transform - uid: 455 components: - - pos: 0.5,19.5 + - type: Transform + pos: 0.5,19.5 parent: 281 - type: Transform - uid: 456 components: - - pos: 1.5,19.5 + - type: Transform + pos: 1.5,19.5 parent: 281 - type: Transform - uid: 457 components: - - pos: 2.5,19.5 + - type: Transform + pos: 2.5,19.5 parent: 281 - type: Transform - uid: 458 components: - - pos: 3.5,19.5 + - type: Transform + pos: 3.5,19.5 parent: 281 - type: Transform - uid: 459 components: - - pos: -3.5,17.5 + - type: Transform + pos: -3.5,17.5 parent: 281 - type: Transform - uid: 460 components: - - pos: -2.5,17.5 + - type: Transform + pos: -2.5,17.5 parent: 281 - type: Transform - uid: 461 components: - - pos: -1.5,17.5 + - type: Transform + pos: -1.5,17.5 parent: 281 - type: Transform - uid: 462 components: - - pos: -0.5,17.5 + - type: Transform + pos: -0.5,17.5 parent: 281 - type: Transform - uid: 463 components: - - pos: 0.5,17.5 + - type: Transform + pos: 0.5,17.5 parent: 281 - type: Transform - uid: 464 components: - - pos: 1.5,17.5 + - type: Transform + pos: 1.5,17.5 parent: 281 - type: Transform - uid: 465 components: - - pos: 2.5,17.5 + - type: Transform + pos: 2.5,17.5 parent: 281 - type: Transform - uid: 466 components: - - pos: 3.5,17.5 + - type: Transform + pos: 3.5,17.5 parent: 281 - type: Transform - uid: 467 components: - - pos: 5.5,19.5 + - type: Transform + pos: 5.5,19.5 parent: 281 - type: Transform - uid: 468 components: - - pos: 6.5,19.5 + - type: Transform + pos: 6.5,19.5 parent: 281 - type: Transform - uid: 469 components: - - pos: 7.5,19.5 + - type: Transform + pos: 7.5,19.5 parent: 281 - type: Transform - uid: 470 components: - - pos: 8.5,19.5 + - type: Transform + pos: 8.5,19.5 parent: 281 - type: Transform - uid: 471 components: - - pos: 9.5,19.5 + - type: Transform + pos: 9.5,19.5 parent: 281 - type: Transform - uid: 472 components: - - pos: 10.5,19.5 + - type: Transform + pos: 10.5,19.5 parent: 281 - type: Transform - uid: 473 components: - - pos: 11.5,19.5 + - type: Transform + pos: 11.5,19.5 parent: 281 - type: Transform - uid: 474 components: - - pos: 12.5,19.5 + - type: Transform + pos: 12.5,19.5 parent: 281 - type: Transform - uid: 475 components: - - pos: 5.5,17.5 + - type: Transform + pos: 5.5,17.5 parent: 281 - type: Transform - uid: 476 components: - - pos: 6.5,17.5 + - type: Transform + pos: 6.5,17.5 parent: 281 - type: Transform - uid: 477 components: - - pos: 7.5,17.5 + - type: Transform + pos: 7.5,17.5 parent: 281 - type: Transform - uid: 478 components: - - pos: 8.5,17.5 + - type: Transform + pos: 8.5,17.5 parent: 281 - type: Transform - uid: 479 components: - - pos: 9.5,17.5 + - type: Transform + pos: 9.5,17.5 parent: 281 - type: Transform - uid: 480 components: - - pos: 10.5,17.5 + - type: Transform + pos: 10.5,17.5 parent: 281 - type: Transform - uid: 481 components: - - pos: 11.5,17.5 + - type: Transform + pos: 11.5,17.5 parent: 281 - type: Transform - uid: 482 components: - - pos: 12.5,17.5 + - type: Transform + pos: 12.5,17.5 parent: 281 - type: Transform - uid: 483 components: - - pos: 4.5,19.5 + - type: Transform + pos: 4.5,19.5 parent: 281 - type: Transform - uid: 484 components: - - pos: 4.5,18.5 + - type: Transform + pos: 4.5,18.5 parent: 281 - type: Transform - uid: 485 components: - - pos: 4.5,17.5 + - type: Transform + pos: 4.5,17.5 parent: 281 - type: Transform - uid: 486 components: - - pos: 4.5,16.5 + - type: Transform + pos: 4.5,16.5 parent: 281 - type: Transform - uid: 487 components: - - pos: 4.5,15.5 + - type: Transform + pos: 4.5,15.5 parent: 281 - type: Transform - uid: 488 components: - - pos: 4.5,14.5 + - type: Transform + pos: 4.5,14.5 parent: 281 - type: Transform - uid: 489 components: - - pos: 4.5,13.5 + - type: Transform + pos: 4.5,13.5 parent: 281 - type: Transform - uid: 490 components: - - pos: 4.5,12.5 + - type: Transform + pos: 4.5,12.5 parent: 281 - type: Transform - uid: 491 components: - - pos: 4.5,11.5 + - type: Transform + pos: 4.5,11.5 parent: 281 - type: Transform - uid: 492 components: - - pos: 4.5,10.5 + - type: Transform + pos: 4.5,10.5 parent: 281 - type: Transform - uid: 493 components: - - pos: 4.5,9.5 + - type: Transform + pos: 4.5,9.5 parent: 281 - type: Transform - uid: 494 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 281 - type: Transform - uid: 495 components: - - pos: 4.5,7.5 + - type: Transform + pos: 4.5,7.5 parent: 281 - type: Transform - uid: 496 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 281 - type: Transform - uid: 497 components: - - pos: 4.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 281 - type: Transform - uid: 498 components: - - pos: 5.5,5.5 + - type: Transform + pos: 5.5,5.5 parent: 281 - type: Transform - uid: 499 components: - - pos: 6.5,5.5 + - type: Transform + pos: 6.5,5.5 parent: 281 - type: Transform - uid: 500 components: - - pos: 7.5,5.5 + - type: Transform + pos: 7.5,5.5 parent: 281 - type: Transform - uid: 501 components: - - pos: 7.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 281 - type: Transform - uid: 510 components: - - pos: -2.5,16.5 + - type: Transform + pos: -2.5,16.5 parent: 281 - type: Transform - uid: 511 components: - - pos: -2.5,15.5 + - type: Transform + pos: -2.5,15.5 parent: 281 - type: Transform - uid: 512 components: - - pos: -2.5,14.5 + - type: Transform + pos: -2.5,14.5 parent: 281 - type: Transform - uid: 513 components: - - pos: -2.5,13.5 + - type: Transform + pos: -2.5,13.5 parent: 281 - type: Transform - uid: 514 components: - - pos: -2.5,12.5 + - type: Transform + pos: -2.5,12.5 parent: 281 - type: Transform - uid: 515 components: - - pos: 11.5,16.5 + - type: Transform + pos: 11.5,16.5 parent: 281 - type: Transform - uid: 516 components: - - pos: 11.5,15.5 + - type: Transform + pos: 11.5,15.5 parent: 281 - type: Transform - uid: 517 components: - - pos: 11.5,14.5 + - type: Transform + pos: 11.5,14.5 parent: 281 - type: Transform - uid: 518 components: - - pos: 11.5,13.5 + - type: Transform + pos: 11.5,13.5 parent: 281 - type: Transform - uid: 519 components: - - pos: 11.5,12.5 + - type: Transform + pos: 11.5,12.5 parent: 281 - type: Transform - uid: 520 components: - - pos: 11.5,11.5 + - type: Transform + pos: 11.5,11.5 parent: 281 - type: Transform - uid: 521 components: - - pos: 10.5,11.5 + - type: Transform + pos: 10.5,11.5 parent: 281 - type: Transform - uid: 522 components: - - pos: 9.5,11.5 + - type: Transform + pos: 9.5,11.5 parent: 281 - type: Transform - uid: 523 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 281 - type: Transform - uid: 524 components: - - pos: 7.5,11.5 + - type: Transform + pos: 7.5,11.5 parent: 281 - type: Transform - uid: 525 components: - - pos: 6.5,11.5 + - type: Transform + pos: 6.5,11.5 parent: 281 - type: Transform - uid: 526 components: - - pos: 5.5,11.5 + - type: Transform + pos: 5.5,11.5 parent: 281 - type: Transform - uid: 527 components: - - pos: 3.5,11.5 + - type: Transform + pos: 3.5,11.5 parent: 281 - type: Transform - uid: 528 components: - - pos: 2.5,11.5 + - type: Transform + pos: 2.5,11.5 parent: 281 - type: Transform - uid: 529 components: - - pos: 1.5,11.5 + - type: Transform + pos: 1.5,11.5 parent: 281 - type: Transform - uid: 530 components: - - pos: 0.5,11.5 + - type: Transform + pos: 0.5,11.5 parent: 281 - type: Transform - uid: 531 components: - - pos: -0.5,11.5 + - type: Transform + pos: -0.5,11.5 parent: 281 - type: Transform - uid: 532 components: - - pos: -1.5,11.5 + - type: Transform + pos: -1.5,11.5 parent: 281 - type: Transform - uid: 533 components: - - pos: -2.5,11.5 + - type: Transform + pos: -2.5,11.5 parent: 281 - type: Transform - uid: 537 components: - - pos: 8.5,4.5 + - type: Transform + pos: 8.5,4.5 parent: 281 - type: Transform - uid: 538 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 281 - type: Transform - uid: 539 components: - - pos: 2.5,5.5 + - type: Transform + pos: 2.5,5.5 parent: 281 - type: Transform - uid: 540 components: - - pos: 1.5,5.5 + - type: Transform + pos: 1.5,5.5 parent: 281 - type: Transform - uid: 541 components: - - pos: 1.5,4.5 + - type: Transform + pos: 1.5,4.5 parent: 281 - type: Transform - uid: 546 components: - - pos: 9.5,4.5 + - type: Transform + pos: 9.5,4.5 parent: 281 - type: Transform - uid: 547 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 281 - type: Transform - proto: CableMV entities: - uid: 548 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 281 - type: Transform - uid: 549 components: - - pos: 10.5,5.5 + - type: Transform + pos: 10.5,5.5 parent: 281 - type: Transform - uid: 550 components: - - pos: 9.5,5.5 + - type: Transform + pos: 9.5,5.5 parent: 281 - type: Transform - uid: 551 components: - - pos: 8.5,5.5 + - type: Transform + pos: 8.5,5.5 parent: 281 - type: Transform - uid: 552 components: - - pos: 7.5,5.5 + - type: Transform + pos: 7.5,5.5 parent: 281 - type: Transform - uid: 553 components: - - pos: 6.5,5.5 + - type: Transform + pos: 6.5,5.5 parent: 281 - type: Transform - uid: 554 components: - - pos: 5.5,5.5 + - type: Transform + pos: 5.5,5.5 parent: 281 - type: Transform - uid: 555 components: - - pos: 4.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 281 - type: Transform - uid: 556 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 281 - type: Transform - uid: 557 components: - - pos: 4.5,7.5 + - type: Transform + pos: 4.5,7.5 parent: 281 - type: Transform - uid: 558 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 281 - type: Transform - uid: 559 components: - - pos: 5.5,8.5 + - type: Transform + pos: 5.5,8.5 parent: 281 - type: Transform - uid: 560 components: - - pos: 4.5,4.5 + - type: Transform + pos: 4.5,4.5 parent: 281 - type: Transform - uid: 561 components: - - pos: 4.5,3.5 + - type: Transform + pos: 4.5,3.5 parent: 281 - type: Transform - uid: 562 components: - - pos: 4.5,2.5 + - type: Transform + pos: 4.5,2.5 parent: 281 - type: Transform - uid: 563 components: - - pos: 4.5,1.5 + - type: Transform + pos: 4.5,1.5 parent: 281 - type: Transform - uid: 564 components: - - pos: 4.5,0.5 + - type: Transform + pos: 4.5,0.5 parent: 281 - type: Transform - uid: 565 components: - - pos: 4.5,-0.5 + - type: Transform + pos: 4.5,-0.5 parent: 281 - type: Transform - uid: 566 components: - - pos: 4.5,-1.5 + - type: Transform + pos: 4.5,-1.5 parent: 281 - type: Transform - uid: 567 components: - - pos: 3.5,-1.5 + - type: Transform + pos: 3.5,-1.5 parent: 281 - type: Transform - uid: 568 components: - - pos: 2.5,-1.5 + - type: Transform + pos: 2.5,-1.5 parent: 281 - type: Transform - uid: 569 components: - - pos: 1.5,-1.5 + - type: Transform + pos: 1.5,-1.5 parent: 281 - type: Transform - uid: 570 components: - - pos: 1.5,-2.5 + - type: Transform + pos: 1.5,-2.5 parent: 281 - type: Transform - uid: 571 components: - - pos: 5.5,-1.5 + - type: Transform + pos: 5.5,-1.5 parent: 281 - type: Transform - uid: 572 components: - - pos: 6.5,-1.5 + - type: Transform + pos: 6.5,-1.5 parent: 281 - type: Transform - uid: 573 components: - - pos: 6.5,-2.5 + - type: Transform + pos: 6.5,-2.5 parent: 281 - type: Transform - uid: 574 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 281 - type: Transform - uid: 622 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 281 - type: Transform - uid: 742 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 281 - type: Transform - uid: 766 components: - - pos: 2.5,-2.5 + - type: Transform + pos: 2.5,-2.5 parent: 281 - type: Transform - uid: 796 components: - - pos: 3.5,0.5 + - type: Transform + pos: 3.5,0.5 parent: 281 - type: Transform - proto: CableTerminal entities: - uid: 545 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,4.5 parent: 281 - type: Transform - proto: Catwalk entities: - uid: 231 components: - - pos: -3.5,18.5 + - type: Transform + pos: -3.5,18.5 parent: 281 - type: Transform - uid: 373 components: - - pos: -2.5,18.5 + - type: Transform + pos: -2.5,18.5 parent: 281 - type: Transform - uid: 374 components: - - pos: -1.5,18.5 + - type: Transform + pos: -1.5,18.5 parent: 281 - type: Transform - uid: 375 components: - - pos: -0.5,18.5 + - type: Transform + pos: -0.5,18.5 parent: 281 - type: Transform - uid: 376 components: - - pos: 0.5,18.5 + - type: Transform + pos: 0.5,18.5 parent: 281 - type: Transform - uid: 377 components: - - pos: 1.5,18.5 + - type: Transform + pos: 1.5,18.5 parent: 281 - type: Transform - uid: 378 components: - - pos: 2.5,18.5 + - type: Transform + pos: 2.5,18.5 parent: 281 - type: Transform - uid: 379 components: - - pos: 3.5,18.5 + - type: Transform + pos: 3.5,18.5 parent: 281 - type: Transform - uid: 380 components: - - pos: 4.5,18.5 + - type: Transform + pos: 4.5,18.5 parent: 281 - type: Transform - uid: 381 components: - - pos: 5.5,18.5 + - type: Transform + pos: 5.5,18.5 parent: 281 - type: Transform - uid: 382 components: - - pos: 6.5,18.5 + - type: Transform + pos: 6.5,18.5 parent: 281 - type: Transform - uid: 383 components: - - pos: 7.5,18.5 + - type: Transform + pos: 7.5,18.5 parent: 281 - type: Transform - uid: 384 components: - - pos: 8.5,18.5 + - type: Transform + pos: 8.5,18.5 parent: 281 - type: Transform - uid: 385 components: - - pos: 9.5,18.5 + - type: Transform + pos: 9.5,18.5 parent: 281 - type: Transform - uid: 386 components: - - pos: 10.5,18.5 + - type: Transform + pos: 10.5,18.5 parent: 281 - type: Transform - uid: 387 components: - - pos: 11.5,18.5 + - type: Transform + pos: 11.5,18.5 parent: 281 - type: Transform - uid: 388 components: - - pos: 12.5,18.5 + - type: Transform + pos: 12.5,18.5 parent: 281 - type: Transform - uid: 389 components: - - pos: 4.5,19.5 + - type: Transform + pos: 4.5,19.5 parent: 281 - type: Transform - uid: 390 components: - - pos: 4.5,17.5 + - type: Transform + pos: 4.5,17.5 parent: 281 - type: Transform - uid: 391 components: - - pos: 4.5,16.5 + - type: Transform + pos: 4.5,16.5 parent: 281 - type: Transform - uid: 392 components: - - pos: 4.5,15.5 + - type: Transform + pos: 4.5,15.5 parent: 281 - type: Transform - uid: 393 components: - - pos: 4.5,14.5 + - type: Transform + pos: 4.5,14.5 parent: 281 - type: Transform - uid: 394 components: - - pos: 4.5,13.5 + - type: Transform + pos: 4.5,13.5 parent: 281 - type: Transform - uid: 395 components: - - pos: 4.5,12.5 + - type: Transform + pos: 4.5,12.5 parent: 281 - type: Transform - uid: 396 components: - - pos: 4.5,11.5 + - type: Transform + pos: 4.5,11.5 parent: 281 - type: Transform - uid: 397 components: - - pos: 3.5,11.5 + - type: Transform + pos: 3.5,11.5 parent: 281 - type: Transform - uid: 398 components: - - pos: 2.5,11.5 + - type: Transform + pos: 2.5,11.5 parent: 281 - type: Transform - uid: 399 components: - - pos: 2.5,10.5 + - type: Transform + pos: 2.5,10.5 parent: 281 - type: Transform - uid: 400 components: - - pos: 1.5,10.5 + - type: Transform + pos: 1.5,10.5 parent: 281 - type: Transform - uid: 401 components: - - pos: 0.5,10.5 + - type: Transform + pos: 0.5,10.5 parent: 281 - type: Transform - uid: 403 components: - - pos: -1.5,11.5 + - type: Transform + pos: -1.5,11.5 parent: 281 - type: Transform - uid: 404 components: - - pos: 0.5,11.5 + - type: Transform + pos: 0.5,11.5 parent: 281 - type: Transform - uid: 405 components: - - pos: 1.5,11.5 + - type: Transform + pos: 1.5,11.5 parent: 281 - type: Transform - uid: 406 components: - - pos: 5.5,11.5 + - type: Transform + pos: 5.5,11.5 parent: 281 - type: Transform - uid: 407 components: - - pos: 6.5,11.5 + - type: Transform + pos: 6.5,11.5 parent: 281 - type: Transform - uid: 408 components: - - pos: 6.5,10.5 + - type: Transform + pos: 6.5,10.5 parent: 281 - type: Transform - uid: 409 components: - - pos: 7.5,11.5 + - type: Transform + pos: 7.5,11.5 parent: 281 - type: Transform - uid: 410 components: - - pos: 7.5,10.5 + - type: Transform + pos: 7.5,10.5 parent: 281 - type: Transform - uid: 411 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 281 - type: Transform - uid: 412 components: - - pos: 8.5,10.5 + - type: Transform + pos: 8.5,10.5 parent: 281 - type: Transform - uid: 413 components: - - pos: 9.5,11.5 + - type: Transform + pos: 9.5,11.5 parent: 281 - type: Transform - uid: 414 components: - - pos: 9.5,10.5 + - type: Transform + pos: 9.5,10.5 parent: 281 - type: Transform - uid: 415 components: - - pos: 10.5,11.5 + - type: Transform + pos: 10.5,11.5 parent: 281 - type: Transform - uid: 416 components: - - pos: 10.5,10.5 + - type: Transform + pos: 10.5,10.5 parent: 281 - type: Transform - uid: 417 components: - - pos: -0.5,11.5 + - type: Transform + pos: -0.5,11.5 parent: 281 - type: Transform - uid: 418 components: - - pos: -1.5,10.5 + - type: Transform + pos: -1.5,10.5 parent: 281 - type: Transform - uid: 419 components: - - pos: -0.5,10.5 + - type: Transform + pos: -0.5,10.5 parent: 281 - type: Transform - uid: 656 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 281 - type: Transform - uid: 657 components: - - pos: 3.5,6.5 + - type: Transform + pos: 3.5,6.5 parent: 281 - type: Transform - uid: 658 components: - - pos: 3.5,7.5 + - type: Transform + pos: 3.5,7.5 parent: 281 - type: Transform - uid: 659 components: - - pos: 4.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 281 - type: Transform - uid: 660 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 281 - type: Transform - uid: 661 components: - - pos: 4.5,7.5 + - type: Transform + pos: 4.5,7.5 parent: 281 - type: Transform - uid: 662 components: - - pos: 5.5,5.5 + - type: Transform + pos: 5.5,5.5 parent: 281 - type: Transform - uid: 663 components: - - pos: 5.5,6.5 + - type: Transform + pos: 5.5,6.5 parent: 281 - type: Transform - uid: 664 components: - - pos: 5.5,7.5 + - type: Transform + pos: 5.5,7.5 parent: 281 - type: Transform - proto: ChairOfficeLight entities: - uid: 647 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 281 - type: Transform - uid: 649 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-0.5 parent: 281 - type: Transform - proto: ChairPilotSeat entities: - uid: 366 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 281 - type: Transform - proto: CircuitImprinter entities: - uid: 358 components: - - pos: 8.5,-7.5 + - type: Transform + pos: 8.5,-7.5 parent: 281 - type: Transform - proto: ClosetRadiationSuitFilled entities: - uid: 854 components: - - pos: 3.5,0.5 + - type: Transform + pos: 3.5,0.5 parent: 281 - type: Transform - proto: ClothingHandsGlovesColorYellow entities: - uid: 860 components: - - pos: -1.5744241,8.588845 + - type: Transform + pos: -1.5744241,8.588845 parent: 281 - type: Transform - proto: ComputerAnalysisConsole entities: - uid: 361 components: - - pos: 1.5,0.5 + - type: Transform + pos: 1.5,0.5 parent: 281 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 372: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - type: DeviceLinkSource - proto: ComputerResearchAndDevelopment entities: - uid: 371 components: - - pos: 2.5,0.5 - parent: 281 - type: Transform -- proto: ComputerShuttle - entities: - - uid: 278 - components: - - pos: 9.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 281 - type: Transform - proto: ComputerSolarControl entities: - uid: 542 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 281 - type: Transform -- proto: ComputerStationRecords +- proto: ComputerTabletopShuttle entities: - - uid: 325 + - uid: 733 + components: + - type: Transform + pos: 9.5,0.5 + parent: 281 +- proto: ComputerTabletopStationRecords + entities: + - uid: 732 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 281 - type: Transform - proto: DefibrillatorCabinetFilled entities: - uid: 857 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-4.5 parent: 281 - type: Transform - proto: EngineeringTechFab entities: - uid: 727 components: - - pos: 0.5,4.5 + - type: Transform + pos: 0.5,4.5 + parent: 281 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 parent: 281 - type: Transform - proto: FaxMachineShip entities: - uid: 617 components: - - pos: 1.5,-3.5 + - type: Transform + pos: 1.5,-3.5 parent: 281 - type: Transform - proto: FireAlarm entities: - uid: 724 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 281 - type: Transform - - devices: + - type: DeviceList + devices: - 701 - 690 - 699 @@ -2237,1448 +2250,1515 @@ entities: - 707 - 706 - 705 - type: DeviceList + - type: AtmosDevice + joinedGrid: 281 - proto: FireAxeCabinetFilled entities: - uid: 716 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,4.5 parent: 281 - type: Transform - proto: FirelockEdge entities: - uid: 690 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 281 - type: Transform - uid: 699 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,6.5 parent: 281 - type: Transform - uid: 700 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 281 - type: Transform - uid: 701 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,7.5 parent: 281 - type: Transform - uid: 702 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 281 - type: Transform - uid: 703 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,5.5 parent: 281 - type: Transform - uid: 868 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-1.5 parent: 281 - type: Transform - uid: 869 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 281 - type: Transform - uid: 870 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 281 - type: Transform - uid: 871 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 281 - type: Transform - uid: 872 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-0.5 parent: 281 - type: Transform - uid: 873 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-1.5 parent: 281 - type: Transform - proto: FirelockGlass entities: - uid: 704 components: - - pos: 4.5,4.5 + - type: Transform + pos: 4.5,4.5 parent: 281 - type: Transform - uid: 705 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 281 - type: Transform - uid: 706 components: - - pos: 5.5,-2.5 + - type: Transform + pos: 5.5,-2.5 parent: 281 - type: Transform - uid: 707 components: - - pos: 4.5,1.5 + - type: Transform + pos: 4.5,1.5 parent: 281 - type: Transform - proto: GasAnalyzer entities: - uid: 740 components: - - pos: -1.412372,8.422175 + - type: Transform + pos: -1.412372,8.422175 parent: 281 - type: Transform - proto: GasFilterFlipped entities: - uid: 171 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,6.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - uid: 187 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,6.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 193 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,6.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 194 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,6.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - proto: GasMixerFlipped entities: - uid: 180 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,5.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasOutletInjector entities: - uid: 224 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,14.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 225 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,14.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 226 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 227 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,14.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - proto: GasPassiveVent entities: - uid: 192 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,6.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 220 components: - - pos: -0.5,13.5 + - type: Transform + pos: -0.5,13.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 221 components: - - pos: 1.5,13.5 + - type: Transform + pos: 1.5,13.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 222 components: - - pos: 7.5,13.5 + - type: Transform + pos: 7.5,13.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 223 components: - - pos: 9.5,13.5 + - type: Transform + pos: 9.5,13.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 623 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - uid: 624 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-1.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - proto: GasPipeBend entities: - uid: 173 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 174 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,6.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 178 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 281 - type: Transform - uid: 216 components: - - pos: 8.5,14.5 + - type: Transform + pos: 8.5,14.5 parent: 281 - type: Transform - uid: 217 components: - - pos: 10.5,14.5 + - type: Transform + pos: 10.5,14.5 parent: 281 - type: Transform - uid: 218 components: - - pos: 2.5,14.5 + - type: Transform + pos: 2.5,14.5 parent: 281 - type: Transform - uid: 219 components: - - pos: 0.5,14.5 + - type: Transform + pos: 0.5,14.5 parent: 281 - type: Transform - uid: 256 components: - - pos: 5.5,4.5 + - type: Transform + pos: 5.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 264 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 344 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 638 components: - - pos: 7.5,-6.5 + - type: Transform + pos: 7.5,-6.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 251 components: - - pos: 4.5,-4.5 + - type: Transform + pos: 4.5,-4.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeStraight entities: - uid: 104 components: - - pos: 1.5,11.5 + - type: Transform + pos: 1.5,11.5 parent: 281 - type: Transform - uid: 108 components: - - pos: -0.5,11.5 + - type: Transform + pos: -0.5,11.5 parent: 281 - type: Transform - uid: 114 components: - - pos: -0.5,12.5 + - type: Transform + pos: -0.5,12.5 parent: 281 - type: Transform - uid: 130 components: - - pos: -0.5,10.5 + - type: Transform + pos: -0.5,10.5 parent: 281 - type: Transform - uid: 133 components: - - pos: -0.5,9.5 + - type: Transform + pos: -0.5,9.5 parent: 281 - type: Transform - uid: 134 components: - - pos: 1.5,12.5 + - type: Transform + pos: 1.5,12.5 parent: 281 - type: Transform - uid: 143 components: - - pos: 1.5,10.5 + - type: Transform + pos: 1.5,10.5 parent: 281 - type: Transform - uid: 144 components: - - pos: 1.5,9.5 + - type: Transform + pos: 1.5,9.5 parent: 281 - type: Transform - uid: 145 components: - - pos: 7.5,12.5 + - type: Transform + pos: 7.5,12.5 parent: 281 - type: Transform - uid: 146 components: - - pos: 7.5,11.5 + - type: Transform + pos: 7.5,11.5 parent: 281 - type: Transform - uid: 147 components: - - pos: 7.5,10.5 + - type: Transform + pos: 7.5,10.5 parent: 281 - type: Transform - uid: 148 components: - - pos: 7.5,9.5 + - type: Transform + pos: 7.5,9.5 parent: 281 - type: Transform - uid: 149 components: - - pos: 9.5,12.5 + - type: Transform + pos: 9.5,12.5 parent: 281 - type: Transform - uid: 150 components: - - pos: 9.5,11.5 + - type: Transform + pos: 9.5,11.5 parent: 281 - type: Transform - uid: 151 components: - - pos: 9.5,10.5 + - type: Transform + pos: 9.5,10.5 parent: 281 - type: Transform - uid: 152 components: - - pos: 9.5,9.5 + - type: Transform + pos: 9.5,9.5 parent: 281 - type: Transform - uid: 156 components: - - pos: -1.5,5.5 + - type: Transform + pos: -1.5,5.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 157 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,8.5 parent: 281 - type: Transform - uid: 158 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,9.5 parent: 281 - type: Transform - uid: 159 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,10.5 parent: 281 - type: Transform - uid: 160 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,11.5 parent: 281 - type: Transform - uid: 161 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 281 - type: Transform - uid: 162 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,13.5 parent: 281 - type: Transform - uid: 163 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,13.5 parent: 281 - type: Transform - uid: 164 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,12.5 parent: 281 - type: Transform - uid: 165 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,11.5 parent: 281 - type: Transform - uid: 166 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,10.5 parent: 281 - type: Transform - uid: 167 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,9.5 parent: 281 - type: Transform - uid: 168 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,8.5 parent: 281 - type: Transform - uid: 172 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,6.5 parent: 281 - type: Transform - uid: 175 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,6.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 176 components: - - pos: -0.5,6.5 + - type: Transform + pos: -0.5,6.5 parent: 281 - type: Transform - uid: 177 components: - - pos: 1.5,6.5 + - type: Transform + pos: 1.5,6.5 parent: 281 - type: Transform - uid: 179 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 281 - type: Transform - uid: 181 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,5.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 182 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 185 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,6.5 parent: 281 - type: Transform - uid: 186 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,6.5 parent: 281 - type: Transform - uid: 188 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,6.5 parent: 281 - type: Transform - uid: 189 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,6.5 parent: 281 - type: Transform - uid: 190 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 281 - type: Transform - uid: 191 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,6.5 parent: 281 - type: Transform - uid: 201 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,6.5 parent: 281 - type: Transform - uid: 202 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,6.5 parent: 281 - type: Transform - uid: 203 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,6.5 parent: 281 - type: Transform - uid: 204 components: - - pos: 10.5,8.5 + - type: Transform + pos: 10.5,8.5 parent: 281 - type: Transform - uid: 205 components: - - pos: 10.5,9.5 + - type: Transform + pos: 10.5,9.5 parent: 281 - type: Transform - uid: 206 components: - - pos: 10.5,10.5 + - type: Transform + pos: 10.5,10.5 parent: 281 - type: Transform - uid: 207 components: - - pos: 10.5,11.5 + - type: Transform + pos: 10.5,11.5 parent: 281 - type: Transform - uid: 208 components: - - pos: 10.5,12.5 + - type: Transform + pos: 10.5,12.5 parent: 281 - type: Transform - uid: 209 components: - - pos: 10.5,13.5 + - type: Transform + pos: 10.5,13.5 parent: 281 - type: Transform - uid: 210 components: - - pos: 8.5,13.5 + - type: Transform + pos: 8.5,13.5 parent: 281 - type: Transform - uid: 211 components: - - pos: 8.5,12.5 + - type: Transform + pos: 8.5,12.5 parent: 281 - type: Transform - uid: 212 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 281 - type: Transform - uid: 213 components: - - pos: 8.5,10.5 + - type: Transform + pos: 8.5,10.5 parent: 281 - type: Transform - uid: 214 components: - - pos: 8.5,9.5 + - type: Transform + pos: 8.5,9.5 parent: 281 - type: Transform - uid: 215 components: - - pos: 8.5,8.5 + - type: Transform + pos: 8.5,8.5 parent: 281 - type: Transform - uid: 228 components: - - pos: -0.5,3.5 + - type: Transform + pos: -0.5,3.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 230 components: - - pos: -0.5,1.5 + - type: Transform + pos: -0.5,1.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 241 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 242 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 243 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,2.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 244 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,1.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 245 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,0.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 247 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-1.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 248 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 249 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 257 components: - - pos: 5.5,3.5 + - type: Transform + pos: 5.5,3.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 258 components: - - pos: 5.5,2.5 + - type: Transform + pos: 5.5,2.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 259 components: - - pos: 5.5,1.5 + - type: Transform + pos: 5.5,1.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 260 components: - - pos: 5.5,0.5 + - type: Transform + pos: 5.5,0.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 262 components: - - pos: 5.5,-1.5 + - type: Transform + pos: 5.5,-1.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 263 components: - - pos: 5.5,-2.5 + - type: Transform + pos: 5.5,-2.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 270 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 271 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 272 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 273 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 274 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 321 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 343 components: - - pos: 4.5,-5.5 + - type: Transform + pos: 4.5,-5.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 625 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 281 - type: Transform - uid: 636 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-6.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 637 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-6.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 641 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-6.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 720 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-0.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 154 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,7.5 parent: 281 - type: Transform - uid: 155 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,7.5 parent: 281 - type: Transform - uid: 169 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,7.5 parent: 281 - type: Transform - uid: 170 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 281 - type: Transform - uid: 183 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 197 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,7.5 parent: 281 - type: Transform - uid: 198 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 281 - type: Transform - uid: 199 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,7.5 parent: 281 - type: Transform - uid: 200 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,7.5 parent: 281 - type: Transform - uid: 229 components: - - pos: -0.5,4.5 + - type: Transform + pos: -0.5,4.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 246 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 261 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-0.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 265 components: - - pos: 6.5,-3.5 + - type: Transform + pos: 6.5,-3.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 267 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPort entities: - uid: 63 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,5.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 266 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-3.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - uid: 276 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,5.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 627 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-1.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 642 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 643 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - proto: GasPressurePump entities: - uid: 626 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-1.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 639 components: - - pos: 7.5,-7.5 + - type: Transform + pos: 7.5,-7.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 640 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-7.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasRecyclerMachineCircuitboard entities: - uid: 737 components: - - pos: -1.6286558,7.590664 + - type: Transform + pos: -1.6286558,7.590664 parent: 281 - type: Transform - proto: GasValve entities: - uid: 115 components: - - pos: -0.5,2.5 + - type: Transform + pos: -0.5,2.5 parent: 281 - type: Transform - - open: False - type: GasValve - - color: '#990000FF' - type: AtmosPipeColor + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVentPump entities: - uid: 184 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 252 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 715 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-4.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 719 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 281 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 644 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-5.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - uid: 718 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 281 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 281 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePump entities: - uid: 66 components: - - pos: 1.5,8.5 + - type: Transform + pos: 1.5,8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 153 components: - - pos: -0.5,8.5 + - type: Transform + pos: -0.5,8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 195 components: - - pos: 7.5,8.5 + - type: Transform + pos: 7.5,8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - uid: 196 components: - - pos: 9.5,8.5 + - type: Transform + pos: 9.5,8.5 parent: 281 - type: Transform + - type: AtmosDevice + joinedGrid: 281 - proto: GravityGeneratorMini entities: - uid: 620 components: - - pos: -1.5,4.5 + - type: Transform + pos: -1.5,4.5 parent: 281 - type: Transform - proto: Grille entities: - uid: 10 components: - - pos: -2.5,-1.5 + - type: Transform + pos: -2.5,-1.5 parent: 281 - type: Transform - uid: 11 components: - - pos: -2.5,0.5 + - type: Transform + pos: -2.5,0.5 parent: 281 - type: Transform - uid: 12 components: - - pos: -0.5,1.5 + - type: Transform + pos: -0.5,1.5 parent: 281 - type: Transform - uid: 13 components: - - pos: -0.5,-2.5 + - type: Transform + pos: -0.5,-2.5 parent: 281 - type: Transform - uid: 14 components: - - pos: 0.5,0.5 + - type: Transform + pos: 0.5,0.5 parent: 281 - type: Transform - uid: 15 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 281 - type: Transform - uid: 25 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 281 - type: Transform - uid: 29 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,4.5 parent: 281 - type: Transform - uid: 30 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 281 - type: Transform - uid: 32 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 281 - type: Transform - uid: 42 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 281 - type: Transform - uid: 43 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 281 - type: Transform - uid: 46 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,9.5 parent: 281 - type: Transform - uid: 47 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,9.5 parent: 281 - type: Transform - uid: 48 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,9.5 parent: 281 - type: Transform - uid: 51 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,1.5 parent: 281 - type: Transform - uid: 52 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,4.5 parent: 281 - type: Transform - uid: 62 components: - - pos: 5.5,4.5 + - type: Transform + pos: 5.5,4.5 parent: 281 - type: Transform - uid: 71 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 281 - type: Transform - uid: 72 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 281 - type: Transform - uid: 73 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,9.5 parent: 281 - type: Transform - uid: 79 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 281 - type: Transform - uid: 80 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 281 - type: Transform - uid: 88 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,5.5 parent: 281 - type: Transform - uid: 89 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,4.5 parent: 281 - type: Transform - uid: 94 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,2.5 parent: 281 - type: Transform - uid: 97 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 281 - type: Transform - uid: 139 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,12.5 parent: 281 - type: Transform - uid: 140 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,12.5 parent: 281 - type: Transform - uid: 141 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,12.5 parent: 281 - type: Transform - uid: 142 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,12.5 parent: 281 - type: Transform - uid: 254 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 281 - type: Transform - uid: 255 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-5.5 parent: 281 - type: Transform - uid: 268 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 281 - type: Transform - uid: 269 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 281 - type: Transform - uid: 277 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,1.5 parent: 281 - type: Transform - uid: 280 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,3.5 parent: 281 - type: Transform - uid: 288 components: - - pos: 11.5,0.5 + - type: Transform + pos: 11.5,0.5 parent: 281 - type: Transform - uid: 289 components: - - pos: 11.5,-1.5 + - type: Transform + pos: 11.5,-1.5 parent: 281 - type: Transform - uid: 290 components: - - pos: 9.5,-2.5 + - type: Transform + pos: 9.5,-2.5 parent: 281 - type: Transform - uid: 297 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 281 - type: Transform - uid: 298 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 281 - type: Transform - uid: 314 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-8.5 parent: 281 - type: Transform - uid: 319 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-4.5 parent: 281 - type: Transform - uid: 326 components: - - pos: 11.5,-0.5 + - type: Transform + pos: 11.5,-0.5 parent: 281 - type: Transform - uid: 327 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-6.5 parent: 281 - type: Transform - uid: 328 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-7.5 parent: 281 - type: Transform - uid: 335 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 281 - type: Transform - uid: 336 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-10.5 parent: 281 - type: Transform - uid: 337 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-10.5 parent: 281 - type: Transform - uid: 345 components: - - pos: 8.5,0.5 + - type: Transform + pos: 8.5,0.5 parent: 281 - type: Transform - uid: 346 components: - - pos: 4.5,-4.5 + - type: Transform + pos: 4.5,-4.5 parent: 281 - type: Transform - uid: 348 components: - - pos: 8.5,-1.5 + - type: Transform + pos: 8.5,-1.5 parent: 281 - type: Transform - uid: 349 components: - - pos: 4.5,-3.5 + - type: Transform + pos: 4.5,-3.5 parent: 281 - type: Transform - proto: Gyroscope entities: - uid: 621 components: - - pos: -0.5,4.5 - parent: 281 - type: Transform -- proto: HolofanProjector - entities: - - uid: 739 - components: - - pos: 5.4176764,2.5590343 + - type: Transform + pos: -0.5,4.5 parent: 281 - type: Transform - proto: IntercomScience entities: - uid: 367 components: - - pos: 10.5,1.5 + - type: Transform + pos: 10.5,1.5 parent: 281 - type: Transform - uid: 369 components: - - pos: 3.5,8.5 + - type: Transform + pos: 3.5,8.5 parent: 281 - type: Transform - uid: 370 components: - - pos: 4.5,-5.5 + - type: Transform + pos: 4.5,-5.5 parent: 281 - type: Transform - proto: LockerAtmosphericsFilled entities: - uid: 354 components: - - pos: 3.5,3.5 + - type: Transform + pos: 3.5,3.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3695,40 +3775,15 @@ entities: - 0 - 0 - 0 - type: EntityStorage -- proto: LockerCaptainFilledHardsuit - entities: - - uid: 668 - components: - - pos: 9.5,-1.5 - parent: 281 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: LockerChiefEngineerFilled entities: - uid: 667 components: - - pos: 7.5,-1.5 + - type: Transform + pos: 7.5,-1.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3745,15 +3800,15 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: LockerEngineerFilled entities: - uid: 353 components: - - pos: 3.5,2.5 + - type: Transform + pos: 3.5,2.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3770,15 +3825,22 @@ entities: - 0 - 0 - 0 - type: EntityStorage +- proto: LockerPilotFilled + entities: + - uid: 672 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 281 - proto: LockerResearchDirectorFilled entities: - uid: 364 components: - - pos: 6.5,-1.5 + - type: Transform + pos: 6.5,-1.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3795,967 +3857,946 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: LockerScienceFilled entities: - uid: 631 components: - - pos: 1.5,-8.5 + - type: Transform + pos: 1.5,-8.5 parent: 281 - type: Transform - proto: MachineArtifactAnalyzer entities: - uid: 372 components: - - pos: -1.5,-0.5 + - type: Transform + pos: -1.5,-0.5 parent: 281 - type: Transform - - links: + - type: DeviceLinkSink + links: - 361 - type: DeviceLinkSink -- proto: MonkeyCubeBox - entities: - - uid: 368 - components: - - pos: 1.6604456,-4.181382 - parent: 281 - type: Transform - proto: PartRodMetal entities: - uid: 726 components: - - pos: 5.455698,3.631572 + - type: Transform + pos: 5.455698,3.631572 parent: 281 - type: Transform - proto: PlasmaReinforcedWindowDirectional entities: - uid: 17 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,-1.5 parent: 281 - type: Transform - uid: 18 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 281 - type: Transform - uid: 250 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 281 - type: Transform - uid: 282 components: - - pos: -0.5,2.5 + - type: Transform + pos: -0.5,2.5 parent: 281 - type: Transform -- proto: PortableGeneratorPacman +- proto: PortableGeneratorPacmanShuttle entities: - - uid: 535 + - uid: 673 components: - - anchored: True - pos: 7.5,4.5 + - type: Transform + pos: 8.5,4.5 parent: 281 - type: Transform - - storage: - Plasma: 1500 - type: MaterialStorage - - bodyType: Static - type: Physics - - type: InsertingMaterialStorage - - uid: 536 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static + - uid: 674 components: - - anchored: True - pos: 8.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 281 - type: Transform - - storage: - Plasma: 1500 - type: MaterialStorage - - bodyType: Static - type: Physics - - type: InsertingMaterialStorage + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static - proto: PortableScrubber entities: - uid: 645 components: - - pos: 7.5,-3.5 + - type: Transform + pos: 7.5,-3.5 parent: 281 - type: Transform - proto: PowerCellRecharger entities: - uid: 689 components: - - pos: 9.5,-7.5 + - type: Transform + pos: 9.5,-7.5 parent: 281 - type: Transform - proto: Poweredlight entities: - uid: 745 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 746 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,3.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 747 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-3.5 parent: 281 - type: Transform - uid: 748 components: - - pos: 6.5,-3.5 + - type: Transform + pos: 6.5,-3.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 749 components: - - pos: 2.5,-3.5 + - type: Transform + pos: 2.5,-3.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 750 components: - - pos: 1.5,-10.5 + - type: Transform + pos: 1.5,-10.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 751 components: - - pos: 7.5,-10.5 + - type: Transform + pos: 7.5,-10.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 752 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 753 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 754 components: - - pos: 0.5,11.5 + - type: Transform + pos: 0.5,11.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 755 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 756 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 757 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 758 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 759 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,6.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 760 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,15.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 761 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,15.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 762 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,14.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - proto: PoweredlightLED entities: - uid: 744 components: - - pos: -1.5,0.5 + - type: Transform + pos: -1.5,0.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - proto: PoweredSmallLight entities: - uid: 763 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 862 components: - - pos: 1.5,14.5 + - type: Transform + pos: 1.5,14.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 863 components: - - pos: -0.5,14.5 + - type: Transform + pos: -0.5,14.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 864 components: - - pos: 7.5,14.5 + - type: Transform + pos: 7.5,14.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - uid: 865 components: - - pos: 9.5,14.5 + - type: Transform + pos: 9.5,14.5 parent: 281 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - type: ApcPowerReceiver + powerLoad: 0 - proto: Protolathe entities: - uid: 653 components: - - pos: 8.5,-5.5 + - type: Transform + pos: 8.5,-5.5 parent: 281 - type: Transform - proto: Rack entities: - uid: 687 components: - - pos: 5.5,3.5 + - type: Transform + pos: 5.5,3.5 parent: 281 - type: Transform - uid: 688 components: - - pos: 5.5,2.5 + - type: Transform + pos: 5.5,2.5 parent: 281 - type: Transform -- proto: RCD - entities: - - uid: 858 - components: - - pos: 10.386675,0.5819994 - parent: 281 - type: Transform -- proto: RCDAmmo - entities: - - uid: 859 - components: - - pos: 10.606187,0.5966339 - parent: 281 - type: Transform - proto: ReinforcedPlasmaWindow entities: - uid: 19 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 281 - type: Transform - uid: 20 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 281 - type: Transform - uid: 21 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-2.5 parent: 281 - type: Transform - uid: 22 components: - - pos: -0.5,1.5 + - type: Transform + pos: -0.5,1.5 parent: 281 - type: Transform - uid: 135 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,12.5 parent: 281 - type: Transform - uid: 136 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,12.5 parent: 281 - type: Transform - uid: 137 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,12.5 parent: 281 - type: Transform - uid: 138 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,12.5 parent: 281 - type: Transform - proto: ReinforcedWindow entities: - uid: 23 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 281 - type: Transform - uid: 24 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 281 - type: Transform - uid: 26 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 281 - type: Transform - uid: 33 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 281 - type: Transform - uid: 38 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 281 - type: Transform - uid: 39 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 281 - type: Transform - uid: 44 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 281 - type: Transform - uid: 45 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,4.5 parent: 281 - type: Transform - uid: 53 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,4.5 parent: 281 - type: Transform - uid: 54 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,1.5 parent: 281 - type: Transform - uid: 61 components: - - pos: 5.5,4.5 + - type: Transform + pos: 5.5,4.5 parent: 281 - type: Transform - uid: 67 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,9.5 parent: 281 - type: Transform - uid: 68 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,9.5 parent: 281 - type: Transform - uid: 70 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,9.5 parent: 281 - type: Transform - uid: 74 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 281 - type: Transform - uid: 75 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,9.5 parent: 281 - type: Transform - uid: 76 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,9.5 parent: 281 - type: Transform - uid: 77 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 281 - type: Transform - uid: 78 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 281 - type: Transform - uid: 90 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,3.5 parent: 281 - type: Transform - uid: 91 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,5.5 parent: 281 - type: Transform - uid: 92 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,4.5 parent: 281 - type: Transform - uid: 93 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,1.5 parent: 281 - type: Transform - uid: 96 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 281 - type: Transform - uid: 98 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,2.5 parent: 281 - type: Transform - uid: 286 components: - - pos: 11.5,-0.5 + - type: Transform + pos: 11.5,-0.5 parent: 281 - type: Transform - uid: 287 components: - - pos: 11.5,-1.5 + - type: Transform + pos: 11.5,-1.5 parent: 281 - type: Transform - uid: 299 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 281 - type: Transform - uid: 304 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 281 - type: Transform - uid: 316 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 281 - type: Transform - uid: 318 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 281 - type: Transform - uid: 324 components: - - pos: 11.5,0.5 + - type: Transform + pos: 11.5,0.5 parent: 281 - type: Transform - uid: 329 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-8.5 parent: 281 - type: Transform - uid: 330 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-4.5 parent: 281 - type: Transform - uid: 331 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-5.5 parent: 281 - type: Transform - uid: 332 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-6.5 parent: 281 - type: Transform - uid: 333 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-7.5 parent: 281 - type: Transform - uid: 334 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-8.5 parent: 281 - type: Transform - uid: 338 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 281 - type: Transform - uid: 339 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-10.5 parent: 281 - type: Transform - uid: 340 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-10.5 parent: 281 - type: Transform - uid: 350 components: - - pos: 8.5,0.5 + - type: Transform + pos: 8.5,0.5 parent: 281 - type: Transform - uid: 351 components: - - pos: 8.5,-1.5 + - type: Transform + pos: 8.5,-1.5 parent: 281 - type: Transform - uid: 365 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-2.5 parent: 281 - type: Transform - proto: ResearchAndDevelopmentServer entities: - uid: 356 components: - - pos: -0.5,-5.5 + - type: Transform + pos: -0.5,-5.5 parent: 281 - type: Transform - proto: ScienceTechFab entities: - uid: 359 components: - - pos: -0.5,-6.5 + - type: Transform + pos: -0.5,-6.5 parent: 281 - type: Transform - proto: SheetPlasma entities: - uid: 360 components: - - pos: -1.574004,8.16611 + - type: Transform + pos: -1.574004,8.16611 + parent: 281 +- proto: SheetSteel + entities: + - uid: 671 + components: + - type: Transform + pos: 5.512085,2.6151545 parent: 281 - type: Transform - proto: SignalButton entities: - uid: 648 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 281 - type: Transform - uid: 736 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 281 - type: Transform - - state: True - type: SignalSwitch - - linkedPorts: + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: 16: - Pressed: Toggle - type: DeviceLinkSource - - proto: SignFlammable entities: - uid: 852 components: - - pos: -1.5,12.5 + - type: Transform + pos: -1.5,12.5 parent: 281 - type: Transform - uid: 853 components: - - pos: 10.5,12.5 + - type: Transform + pos: 10.5,12.5 parent: 281 - type: Transform - proto: SMESBasic entities: - uid: 544 components: - - pos: 9.5,4.5 + - type: Transform + pos: 9.5,4.5 parent: 281 - type: Transform - proto: SolarPanel entities: - uid: 402 components: - - pos: -3.5,19.5 + - type: Transform + pos: -3.5,19.5 parent: 281 - type: Transform - uid: 420 components: - - pos: -2.5,19.5 + - type: Transform + pos: -2.5,19.5 parent: 281 - type: Transform - uid: 421 components: - - pos: -1.5,19.5 + - type: Transform + pos: -1.5,19.5 parent: 281 - type: Transform - uid: 422 components: - - pos: -0.5,19.5 + - type: Transform + pos: -0.5,19.5 parent: 281 - type: Transform - uid: 423 components: - - pos: 0.5,19.5 + - type: Transform + pos: 0.5,19.5 parent: 281 - type: Transform - uid: 424 components: - - pos: 1.5,19.5 + - type: Transform + pos: 1.5,19.5 parent: 281 - type: Transform - uid: 425 components: - - pos: 2.5,19.5 + - type: Transform + pos: 2.5,19.5 parent: 281 - type: Transform - uid: 426 components: - - pos: 3.5,19.5 + - type: Transform + pos: 3.5,19.5 parent: 281 - type: Transform - uid: 427 components: - - pos: -3.5,17.5 + - type: Transform + pos: -3.5,17.5 parent: 281 - type: Transform - uid: 428 components: - - pos: -2.5,17.5 + - type: Transform + pos: -2.5,17.5 parent: 281 - type: Transform - uid: 429 components: - - pos: -1.5,17.5 + - type: Transform + pos: -1.5,17.5 parent: 281 - type: Transform - uid: 430 components: - - pos: -0.5,17.5 + - type: Transform + pos: -0.5,17.5 parent: 281 - type: Transform - uid: 431 components: - - pos: 0.5,17.5 + - type: Transform + pos: 0.5,17.5 parent: 281 - type: Transform - uid: 432 components: - - pos: 1.5,17.5 + - type: Transform + pos: 1.5,17.5 parent: 281 - type: Transform - uid: 433 components: - - pos: 2.5,17.5 + - type: Transform + pos: 2.5,17.5 parent: 281 - type: Transform - uid: 434 components: - - pos: 3.5,17.5 + - type: Transform + pos: 3.5,17.5 parent: 281 - type: Transform - uid: 435 components: - - pos: 5.5,19.5 + - type: Transform + pos: 5.5,19.5 parent: 281 - type: Transform - uid: 436 components: - - pos: 6.5,19.5 + - type: Transform + pos: 6.5,19.5 parent: 281 - type: Transform - uid: 437 components: - - pos: 7.5,19.5 + - type: Transform + pos: 7.5,19.5 parent: 281 - type: Transform - uid: 438 components: - - pos: 8.5,19.5 + - type: Transform + pos: 8.5,19.5 parent: 281 - type: Transform - uid: 439 components: - - pos: 9.5,19.5 + - type: Transform + pos: 9.5,19.5 parent: 281 - type: Transform - uid: 440 components: - - pos: 10.5,19.5 + - type: Transform + pos: 10.5,19.5 parent: 281 - type: Transform - uid: 441 components: - - pos: 11.5,19.5 + - type: Transform + pos: 11.5,19.5 parent: 281 - type: Transform - uid: 442 components: - - pos: 12.5,19.5 + - type: Transform + pos: 12.5,19.5 parent: 281 - type: Transform - uid: 443 components: - - pos: 5.5,17.5 + - type: Transform + pos: 5.5,17.5 parent: 281 - type: Transform - uid: 444 components: - - pos: 6.5,17.5 + - type: Transform + pos: 6.5,17.5 parent: 281 - type: Transform - uid: 445 components: - - pos: 7.5,17.5 + - type: Transform + pos: 7.5,17.5 parent: 281 - type: Transform - uid: 446 components: - - pos: 8.5,17.5 + - type: Transform + pos: 8.5,17.5 parent: 281 - type: Transform - uid: 447 components: - - pos: 9.5,17.5 + - type: Transform + pos: 9.5,17.5 parent: 281 - type: Transform - uid: 448 components: - - pos: 10.5,17.5 + - type: Transform + pos: 10.5,17.5 parent: 281 - type: Transform - uid: 449 components: - - pos: 11.5,17.5 + - type: Transform + pos: 11.5,17.5 parent: 281 - type: Transform - uid: 450 components: - - pos: 12.5,17.5 + - type: Transform + pos: 12.5,17.5 parent: 281 - type: Transform - uid: 502 components: - - pos: -2.5,15.5 + - type: Transform + pos: -2.5,15.5 parent: 281 - type: Transform - uid: 503 components: - - pos: -2.5,14.5 + - type: Transform + pos: -2.5,14.5 parent: 281 - type: Transform - uid: 504 components: - - pos: -2.5,13.5 + - type: Transform + pos: -2.5,13.5 parent: 281 - type: Transform - uid: 505 components: - - pos: -2.5,12.5 + - type: Transform + pos: -2.5,12.5 parent: 281 - type: Transform - uid: 506 components: - - pos: 11.5,15.5 + - type: Transform + pos: 11.5,15.5 parent: 281 - type: Transform - uid: 507 components: - - pos: 11.5,14.5 + - type: Transform + pos: 11.5,14.5 parent: 281 - type: Transform - uid: 508 components: - - pos: 11.5,13.5 + - type: Transform + pos: 11.5,13.5 parent: 281 - type: Transform - uid: 509 components: - - pos: 11.5,12.5 + - type: Transform + pos: 11.5,12.5 parent: 281 - type: Transform - proto: SolarTracker entities: - uid: 534 components: - - pos: 4.5,19.5 + - type: Transform + pos: 4.5,19.5 parent: 281 - type: Transform - proto: SpawnPointAtmos entities: - uid: 867 components: - - pos: 4.5,3.5 + - type: Transform + pos: 4.5,3.5 parent: 281 - type: Transform - proto: SpawnPointChiefEngineer entities: - uid: 874 components: - - pos: 6.5,-0.5 + - type: Transform + pos: 6.5,-0.5 parent: 281 - type: Transform - proto: SpawnPointLatejoin entities: - uid: 678 components: - - pos: 3.5,-0.5 + - type: Transform + pos: 3.5,-0.5 parent: 281 - type: Transform - uid: 679 components: - - pos: 4.5,-0.5 + - type: Transform + pos: 4.5,-0.5 parent: 281 - type: Transform - uid: 680 components: - - pos: 5.5,-0.5 + - type: Transform + pos: 5.5,-0.5 parent: 281 - type: Transform - proto: SpawnPointResearchDirector entities: - uid: 866 components: - - pos: 7.5,-0.5 + - type: Transform + pos: 7.5,-0.5 parent: 281 - type: Transform - proto: SpawnPointScientist entities: - uid: 875 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 parent: 281 - type: Transform - proto: SpawnPointStationEngineer entities: - uid: 876 components: - - pos: 4.5,2.5 + - type: Transform + pos: 4.5,2.5 parent: 281 - type: Transform - proto: SubstationBasic entities: - uid: 543 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 281 - type: Transform - proto: SuitStorageAtmos entities: - uid: 709 components: - - pos: -1.5,6.5 + - type: Transform + pos: -1.5,6.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -4772,15 +4813,15 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: SuitStorageCE entities: - uid: 712 components: - - pos: 7.5,0.5 + - type: Transform + pos: 7.5,0.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -4797,15 +4838,15 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: SuitStorageEngi entities: - uid: 711 components: - - pos: -1.5,5.5 + - type: Transform + pos: -1.5,5.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -4822,15 +4863,15 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: SuitStorageRD entities: - uid: 363 components: - - pos: 6.5,0.5 + - type: Transform + pos: 6.5,0.5 parent: 281 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -4847,808 +4888,844 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: Syringe entities: - uid: 856 components: - - pos: 0.5918114,-5.4350786 + - type: Transform + pos: 0.5918114,-5.4350786 parent: 281 - type: Transform - proto: TableGlass entities: - uid: 285 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 281 - type: Transform - uid: 291 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 281 - type: Transform - uid: 665 components: - - pos: 2.5,-8.5 + - type: Transform + pos: 2.5,-8.5 parent: 281 - type: Transform - uid: 677 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-5.5 parent: 281 - type: Transform - proto: TableReinforced entities: - uid: 283 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-1.5 parent: 281 - type: Transform - uid: 284 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,0.5 parent: 281 - type: Transform - uid: 654 components: - - pos: 9.5,-7.5 + - type: Transform + pos: 9.5,-7.5 + parent: 281 + - uid: 669 + components: + - type: Transform + pos: 9.5,0.5 + parent: 281 + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 parent: 281 - type: Transform - uid: 691 components: - - pos: -1.5,8.5 + - type: Transform + pos: -1.5,8.5 parent: 281 - type: Transform - uid: 692 components: - - pos: -1.5,7.5 + - type: Transform + pos: -1.5,7.5 parent: 281 - type: Transform - proto: ThermomachineHeaterMachineCircuitBoard entities: - uid: 738 components: - - pos: -1.4440717,7.789339 + - type: Transform + pos: -1.4440717,7.789339 parent: 281 - type: Transform - proto: Thruster entities: - uid: 684 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-3.5 parent: 281 - type: Transform - uid: 685 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-9.5 parent: 281 - type: Transform - uid: 686 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-9.5 parent: 281 - type: Transform - uid: 693 components: - - pos: 12.5,3.5 + - type: Transform + pos: 12.5,3.5 parent: 281 - type: Transform - uid: 694 components: - - pos: -3.5,3.5 + - type: Transform + pos: -3.5,3.5 parent: 281 - type: Transform - uid: 695 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-10.5 parent: 281 - type: Transform - uid: 696 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-10.5 parent: 281 - type: Transform - uid: 698 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 281 - type: Transform +- proto: VariantCubeBox + entities: + - uid: 368 + components: + - type: Transform + pos: 1.6604456,-4.181382 + parent: 281 - proto: VendingMachineAtmosDrobe entities: - uid: 708 components: - - flags: SessionSpecific - type: MetaData - - pos: 10.5,8.5 + - type: Transform + pos: 10.5,8.5 parent: 281 - type: Transform - proto: VendingMachineEngiDrobe entities: - uid: 743 components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,8.5 + - type: Transform + pos: 9.5,8.5 parent: 281 - type: Transform - proto: VendingMachineEngivend entities: - uid: 683 components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,-3.5 + - type: Transform + pos: 6.5,-3.5 parent: 281 - type: Transform - proto: VendingMachineSciDrobe entities: - uid: 855 components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,-3.5 + - type: Transform + pos: 2.5,-3.5 parent: 281 - type: Transform - proto: VendingMachineTankDispenserEVA entities: - uid: 655 components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,8.5 + - type: Transform + pos: 6.5,8.5 parent: 281 - type: Transform - proto: VendingMachineVendomat entities: - uid: 615 components: - - flags: SessionSpecific - type: MetaData - - pos: 9.5,-6.5 + - type: Transform + pos: 9.5,-6.5 parent: 281 - type: Transform - proto: WallReinforced entities: - uid: 1 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,14.5 parent: 281 - type: Transform - uid: 2 components: - - pos: -2.5,1.5 + - type: Transform + pos: -2.5,1.5 parent: 281 - type: Transform - uid: 3 components: - - pos: -2.5,-2.5 + - type: Transform + pos: -2.5,-2.5 parent: 281 - type: Transform - uid: 4 components: - - pos: -1.5,-2.5 + - type: Transform + pos: -1.5,-2.5 parent: 281 - type: Transform - uid: 5 components: - - pos: 0.5,-2.5 + - type: Transform + pos: 0.5,-2.5 parent: 281 - type: Transform - uid: 6 components: - - pos: 1.5,-2.5 + - type: Transform + pos: 1.5,-2.5 parent: 281 - type: Transform - uid: 7 components: - - pos: 1.5,1.5 + - type: Transform + pos: 1.5,1.5 parent: 281 - type: Transform - uid: 8 components: - - pos: 0.5,1.5 + - type: Transform + pos: 0.5,1.5 parent: 281 - type: Transform - uid: 9 components: - - pos: -1.5,1.5 + - type: Transform + pos: -1.5,1.5 parent: 281 - type: Transform - uid: 27 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,3.5 parent: 281 - type: Transform - uid: 28 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,3.5 parent: 281 - type: Transform - uid: 31 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,6.5 parent: 281 - type: Transform - uid: 34 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 281 - type: Transform - uid: 35 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,3.5 parent: 281 - type: Transform - uid: 36 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 281 - type: Transform - uid: 37 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,3.5 parent: 281 - type: Transform - uid: 40 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,9.5 parent: 281 - type: Transform - uid: 41 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,9.5 parent: 281 - type: Transform - uid: 49 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,9.5 parent: 281 - type: Transform - uid: 50 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,4.5 parent: 281 - type: Transform - uid: 55 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,9.5 parent: 281 - type: Transform - uid: 56 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 281 - type: Transform - uid: 57 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,10.5 parent: 281 - type: Transform - uid: 58 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 281 - type: Transform - uid: 59 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,9.5 parent: 281 - type: Transform - uid: 60 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,8.5 parent: 281 - type: Transform - uid: 64 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,3.5 parent: 281 - type: Transform - uid: 69 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,9.5 parent: 281 - type: Transform - uid: 81 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,9.5 parent: 281 - type: Transform - uid: 82 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,9.5 parent: 281 - type: Transform - uid: 83 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,6.5 parent: 281 - type: Transform - uid: 84 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,3.5 parent: 281 - type: Transform - uid: 85 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,3.5 parent: 281 - type: Transform - uid: 86 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 281 - type: Transform - uid: 87 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,3.5 parent: 281 - type: Transform - uid: 95 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 281 - type: Transform - uid: 99 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,15.5 parent: 281 - type: Transform - uid: 100 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,15.5 parent: 281 - type: Transform - uid: 101 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,15.5 parent: 281 - type: Transform - uid: 102 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,15.5 parent: 281 - type: Transform - uid: 103 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,15.5 parent: 281 - type: Transform - uid: 105 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,14.5 parent: 281 - type: Transform - uid: 106 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,13.5 parent: 281 - type: Transform - uid: 107 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,12.5 parent: 281 - type: Transform - uid: 109 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,14.5 parent: 281 - type: Transform - uid: 110 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,13.5 parent: 281 - type: Transform - uid: 111 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 281 - type: Transform - uid: 112 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,13.5 parent: 281 - type: Transform - uid: 113 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,12.5 parent: 281 - type: Transform - uid: 116 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,14.5 parent: 281 - type: Transform - uid: 117 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,13.5 parent: 281 - type: Transform - uid: 118 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,12.5 parent: 281 - type: Transform - uid: 120 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,14.5 parent: 281 - type: Transform - uid: 121 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,13.5 parent: 281 - type: Transform - uid: 122 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,12.5 parent: 281 - type: Transform - uid: 124 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,14.5 parent: 281 - type: Transform - uid: 125 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,13.5 parent: 281 - type: Transform - uid: 126 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,12.5 parent: 281 - type: Transform - uid: 127 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,15.5 parent: 281 - type: Transform - uid: 128 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,15.5 parent: 281 - type: Transform - uid: 129 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,15.5 parent: 281 - type: Transform - uid: 131 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,15.5 parent: 281 - type: Transform - uid: 132 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,15.5 parent: 281 - type: Transform - uid: 232 components: - - pos: 7.5,1.5 + - type: Transform + pos: 7.5,1.5 parent: 281 - type: Transform - uid: 233 components: - - pos: 8.5,1.5 + - type: Transform + pos: 8.5,1.5 parent: 281 - type: Transform - uid: 234 components: - - pos: 10.5,1.5 + - type: Transform + pos: 10.5,1.5 parent: 281 - type: Transform - uid: 235 components: - - pos: 11.5,1.5 + - type: Transform + pos: 11.5,1.5 parent: 281 - type: Transform - uid: 236 components: - - pos: 11.5,-2.5 + - type: Transform + pos: 11.5,-2.5 parent: 281 - type: Transform - uid: 237 components: - - pos: 10.5,-2.5 + - type: Transform + pos: 10.5,-2.5 parent: 281 - type: Transform - uid: 238 components: - - pos: 8.5,-2.5 + - type: Transform + pos: 8.5,-2.5 parent: 281 - type: Transform - uid: 239 components: - - pos: 7.5,-2.5 + - type: Transform + pos: 7.5,-2.5 parent: 281 - type: Transform - uid: 275 components: - - pos: 6.5,4.5 + - type: Transform + pos: 6.5,4.5 parent: 281 - type: Transform - uid: 292 components: - - pos: 0.5,-3.5 + - type: Transform + pos: 0.5,-3.5 parent: 281 - type: Transform - uid: 293 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-8.5 parent: 281 - type: Transform - uid: 294 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 281 - type: Transform - uid: 295 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-3.5 parent: 281 - type: Transform - uid: 296 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-4.5 parent: 281 - type: Transform - uid: 300 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-4.5 parent: 281 - type: Transform - uid: 301 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 281 - type: Transform - uid: 302 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-4.5 parent: 281 - type: Transform - uid: 303 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-8.5 parent: 281 - type: Transform - uid: 305 components: - - pos: 1.5,-9.5 + - type: Transform + pos: 1.5,-9.5 parent: 281 - type: Transform - uid: 306 components: - - pos: 2.5,-9.5 + - type: Transform + pos: 2.5,-9.5 parent: 281 - type: Transform - uid: 307 components: - - pos: 2.5,-11.5 + - type: Transform + pos: 2.5,-11.5 parent: 281 - type: Transform - uid: 308 components: - - pos: 6.5,-11.5 + - type: Transform + pos: 6.5,-11.5 parent: 281 - type: Transform - uid: 309 components: - - pos: 4.5,-11.5 + - type: Transform + pos: 4.5,-11.5 parent: 281 - type: Transform - uid: 310 components: - - pos: 4.5,-9.5 + - type: Transform + pos: 4.5,-9.5 parent: 281 - type: Transform - uid: 311 components: - - pos: 6.5,-9.5 + - type: Transform + pos: 6.5,-9.5 parent: 281 - type: Transform - uid: 312 components: - - pos: 7.5,-9.5 + - type: Transform + pos: 7.5,-9.5 parent: 281 - type: Transform - uid: 313 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-9.5 parent: 281 - type: Transform - uid: 315 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-8.5 parent: 281 - type: Transform - uid: 317 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-9.5 parent: 281 - type: Transform - proto: WallSolid entities: - uid: 65 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 281 - type: Transform - uid: 240 components: - - pos: 6.5,-2.5 + - type: Transform + pos: 6.5,-2.5 parent: 281 - type: Transform - uid: 323 components: - - pos: 4.5,-2.5 + - type: Transform + pos: 4.5,-2.5 parent: 281 - type: Transform - uid: 347 components: - - pos: 4.5,-5.5 + - type: Transform + pos: 4.5,-5.5 parent: 281 - type: Transform - uid: 666 components: - - pos: 4.5,-8.5 + - type: Transform + pos: 4.5,-8.5 parent: 281 - type: Transform - proto: WarningN2 entities: - uid: 849 components: - - pos: -0.5,12.5 + - type: Transform + pos: -0.5,12.5 parent: 281 - type: Transform - proto: WarningO2 entities: - uid: 848 components: - - pos: 1.5,12.5 + - type: Transform + pos: 1.5,12.5 parent: 281 - type: Transform - proto: WarningPlasma entities: - uid: 850 components: - - pos: 7.5,12.5 + - type: Transform + pos: 7.5,12.5 parent: 281 - type: Transform - proto: WarningWaste entities: - uid: 851 components: - - pos: 9.5,12.5 + - type: Transform + pos: 9.5,12.5 parent: 281 - type: Transform - proto: WarpPointShip entities: - uid: 861 components: - - pos: 4.5,0.5 + - type: Transform + pos: 4.5,0.5 parent: 281 - type: Transform - - location: Condor - type: WarpPoint + - type: WarpPoint + location: Condor - proto: WaterCooler entities: - uid: 741 components: - - pos: 7.5,8.5 + - type: Transform + pos: 7.5,8.5 parent: 281 - type: Transform - proto: WeaponCapacitorRecharger entities: - uid: 362 components: - - pos: 10.5,-1.5 + - type: Transform + pos: 10.5,-1.5 parent: 281 - type: Transform - proto: WelderIndustrial entities: - uid: 877 components: - - pos: -1.6056741,8.182595 + - type: Transform + pos: -1.6056741,8.182595 parent: 281 - type: Transform - proto: WeldingFuelTankFull entities: - uid: 646 components: - - pos: 2.5,8.5 + - type: Transform + pos: 2.5,8.5 parent: 281 - type: Transform - proto: Window entities: - uid: 322 components: - - pos: 4.5,-3.5 + - type: Transform + pos: 4.5,-3.5 parent: 281 - type: Transform - uid: 342 components: - - pos: 4.5,-4.5 + - type: Transform + pos: 4.5,-4.5 + parent: 281 +- proto: WindowFrostedDirectional + entities: + - uid: 675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 281 + - uid: 725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 281 + - uid: 728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 281 + - uid: 729 + components: + - type: Transform + pos: 9.5,2.5 + parent: 281 + - uid: 730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-3.5 parent: 281 - type: Transform ... diff --git a/Resources/Maps/_NF/Shuttles/disciple.yml b/Resources/Maps/_NF/Shuttles/disciple.yml index 993bbeeb788..7504c286eb5 100644 --- a/Resources/Maps/_NF/Shuttles/disciple.yml +++ b/Resources/Maps/_NF/Shuttles/disciple.yml @@ -5,9 +5,9 @@ tilemap: 0: Space 20: FloorBrokenWood 46: FloorGlass - 119: FloorWood - 121: Lattice - 122: Plating + 121: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -22,19 +22,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: dwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAFAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAdwAAAAABFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAdwAAAAACdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAFAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAeQAAAAABFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAeQAAAAACeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 - type: Broadphase - type: Physics @@ -60,58 +60,80 @@ entities: color: '#FFFFFFFF' id: Dirt decals: - 0: -1,2 - 1: -2,2 - 2: -1,3 - 3: 0,4 - 4: 2,4 - 5: 1,4 - 6: 3,2 - 7: 2,-1 - 8: -1,-1 - 9: -1,-2 - 10: 0,-2 - 11: -2,-2 - 12: -2,-1 - 13: -3,1 - 14: -1,4 - 15: -2,4 - 26: 0,-3 - 27: 4,-2 - 32: -2,6 - 33: -2,5 - 34: -3,5 - 35: 3,-2 36: 2,5 40: 1,0 - 41: -2,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 72: -2,2 + 73: -1,2 + 74: -1,3 + 75: 0,2 + 76: 0,4 + 77: 0,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 78: 1,4 + 79: -4,1 + 80: -4,1 + 81: -2,-1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 82: -3,-1 + 83: -3,-1 + 84: 0,-2 + 85: 0,-3 - node: color: '#FFFFFFFF' id: Rust decals: - 16: -2,-1 - 17: -3,0 - 18: -3,-2 - 19: -3,-1 - 20: 0,-2 - 21: 0,-1 - 22: 2,2 - 23: 3,4 24: 2,5 - 25: -4,1 - 28: 4,-1 - 29: -2,4 - 30: -3,5 - 31: -2,6 38: -1,5 39: 1,0 - 42: 2,-2 - 43: 0,3 + 44: 0,1 + 45: 0,-1 + 46: 3,-2 + 47: 2,-1 + 48: -4,1 + 49: -3,-1 + 50: -2,-2 + 51: -2,-1 + 52: -2,5 + 53: -2,4 + 54: 1,3 + 55: 1,4 + 56: 2,4 + 57: -3,5 + 58: -1,0 + 59: 2,-2 + 60: 0,-2 + 61: 1,-2 + 62: 0,-3 + 63: 2,0 + 64: 2,1 + 65: 3,1 + 66: 3,2 + 67: 2,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnEndN + decals: + 86: -2,6 - node: + cleanable: True color: '#FFFFFFFF' - id: WarnBox + id: WarnEndS decals: - 37: -2,6 + 87: -2,5 - type: GridAtmosphere version: 2 data: @@ -131,7 +153,7 @@ entities: 0: 1 1: 272 -2,0: - 0: 2184 + 0: 34952 -2,1: 1: 136 -1,1: @@ -187,8 +209,6 @@ entities: entities: - uid: 112 components: - - type: MetaData - flags: InContainer - type: Transform parent: 156 - type: InstantAction @@ -366,8 +386,6 @@ entities: entities: - uid: 97 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,4.5 parent: 1 @@ -628,15 +646,15 @@ entities: - uid: 131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 + pos: 2.5,2.5 parent: 1 - proto: ComputerTabletopStationRecords entities: - uid: 130 components: - type: Transform - pos: 2.5,2.5 + rot: -1.5707963267948966 rad + pos: 3.5,1.5 parent: 1 - proto: Crematorium entities: @@ -720,7 +738,7 @@ entities: - uid: 86 components: - type: Transform - pos: -1.4739913,5.6859937 + pos: -1.522803,5.701881 parent: 1 - proto: FoodBreadMoldy entities: @@ -846,6 +864,11 @@ entities: - type: Transform pos: 1.5,3.5 parent: 1 + - uid: 176 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 - proto: Grille entities: - uid: 24 @@ -964,7 +987,7 @@ entities: - uid: 156 components: - type: Transform - pos: -1.5916386,5.548739 + pos: -2.5866327,5.701881 parent: 1 - type: HandheldLight toggleActionEntity: 112 @@ -1018,22 +1041,16 @@ entities: entities: - uid: 40 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,4.5 parent: 1 - uid: 110 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,2.5 parent: 1 - uid: 111 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 @@ -1042,8 +1059,6 @@ entities: entities: - uid: 109 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 @@ -1152,8 +1167,6 @@ entities: entities: - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,0.5 parent: 1 @@ -1252,15 +1265,11 @@ entities: entities: - uid: 41 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,1.5 parent: 1 - uid: 42 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,2.5 parent: 1 @@ -1268,116 +1277,86 @@ entities: entities: - uid: 3 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,6.5 parent: 1 - uid: 4 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - uid: 5 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 1 - uid: 9 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-2.5 parent: 1 - uid: 11 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 1 - uid: 25 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,5.5 parent: 1 - uid: 26 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,5.5 parent: 1 - uid: 28 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,3.5 parent: 1 - uid: 36 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,5.5 parent: 1 - uid: 39 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 1 - uid: 45 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,3.5 parent: 1 - uid: 89 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-0.5 parent: 1 - uid: 143 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,5.5 parent: 1 - uid: 146 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,4.5 parent: 1 @@ -1417,151 +1396,109 @@ entities: entities: - uid: 2 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-1.5 parent: 1 - uid: 6 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-2.5 parent: 1 - uid: 8 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-3.5 parent: 1 - uid: 12 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-2.5 parent: 1 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-1.5 parent: 1 - uid: 15 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-0.5 parent: 1 - uid: 16 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,0.5 parent: 1 - uid: 17 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 1 - uid: 19 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,3.5 parent: 1 - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,5.5 parent: 1 - uid: 23 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,6.5 parent: 1 - uid: 30 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,2.5 parent: 1 - uid: 32 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,0.5 parent: 1 - uid: 33 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-0.5 parent: 1 - uid: 35 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,5.5 parent: 1 - uid: 43 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,3.5 parent: 1 - uid: 90 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,0.5 parent: 1 - uid: 92 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-1.5 parent: 1 - uid: 140 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 1 - uid: 141 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,6.5 parent: 1 - uid: 145 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,4.5 parent: 1 diff --git a/Resources/Maps/_NF/Shuttles/eagle.yml b/Resources/Maps/_NF/Shuttles/eagle.yml index 78c6bd2f6b3..03c013a53dc 100644 --- a/Resources/Maps/_NF/Shuttles/eagle.yml +++ b/Resources/Maps/_NF/Shuttles/eagle.yml @@ -4071,20 +4071,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,6.5 parent: 1 -- proto: RCD - entities: - - uid: 632 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 1 -- proto: RCDAmmo - entities: - - uid: 633 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 1 - proto: SheetPlasma entities: - uid: 73 diff --git a/Resources/Maps/_NF/Shuttles/hauler.yml b/Resources/Maps/_NF/Shuttles/hauler.yml new file mode 100644 index 00000000000..b46e5417fc2 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/hauler.yml @@ -0,0 +1,7233 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 14: FloorBar + 30: FloorDark + 39: FloorDarkPlastic + 59: FloorHydro + 61: FloorKitchen + 77: FloorRGlass + 81: FloorShowroom + 82: FloorShuttleBlue + 90: FloorSteel + 97: FloorSteelDirty + 101: FloorSteelMono + 105: FloorTechMaint + 106: FloorTechMaint2 + 119: FloorWood + 121: Lattice + 122: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.5104167,-0.44269943 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: HgAAAAAAHgAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAABagAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABegAAAAAAagAAAAAAagAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABegAAAAAAegAAAAAAWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADegAAAAAAZQAAAAACWgAAAAADYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABZQAAAAABZQAAAAADWgAAAAABWgAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAAAZQAAAAACZQAAAAADZQAAAAADZQAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAegAAAAAAZQAAAAACZQAAAAACZQAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAegAAAAAAegAAAAAAZQAAAAACZQAAAAACZQAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAADWgAAAAAAZQAAAAAAZQAAAAABZQAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAAAWgAAAAAAZQAAAAAAZQAAAAABZQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABYQAAAAAAWgAAAAACZQAAAAACZQAAAAABZQAAAAADegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACYQAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAPQAAAAAAegAAAAAAJwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAACDgAAAAACDgAAAAABDgAAAAABJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAADHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAACJwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAADDgAAAAABDgAAAAADDgAAAAACJwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAZQAAAAAAZQAAAAABZQAAAAABWgAAAAAAegAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAZQAAAAADZQAAAAABZQAAAAAAZQAAAAADWgAAAAADWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAADZQAAAAABZQAAAAABWgAAAAACWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAABZQAAAAACZQAAAAADegAAAAAAYQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAWgAAAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYQAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAABagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAABagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACYQAAAAAAWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAOwAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAABTQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: WgAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAADYQAAAAAAYQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAWgAAAAACWgAAAAACWgAAAAAAYQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAWgAAAAADWgAAAAAAegAAAAAAUgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAWgAAAAADegAAAAAAUQAAAAAAUgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADYQAAAAAAegAAAAAAUgAAAAAAUgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAUgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABegAAAAAAdwAAAAACdwAAAAACdwAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABdwAAAAAAdwAAAAACdwAAAAACdwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACegAAAAAAdwAAAAABdwAAAAADdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACTQAAAAACHgAAAAAAHgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAACegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 129: -5,14 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 84: 0.020836413,0.39276934 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 131: 5,12 + 132: 5,10 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Bot + decals: + 1: 4,11 + 2: 4,12 + 3: 4,10 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 18: -3,13 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 15: 5,15 + 16: 4,15 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 83: 0,0 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 130: 5,11 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 17: -5,13 + 57: -4,15 + - node: + color: '#1B3C7DFF' + id: HalfTileOverlayGreyscale + decals: + 103: -1,30 + 104: 0,30 + 105: 1,30 + - node: + color: '#795200FF' + id: HalfTileOverlayGreyscale + decals: + 10: 5,8 + 11: 4,8 + - node: + color: '#1B3C7DFF' + id: HalfTileOverlayGreyscale270 + decals: + 106: -3,28 + - node: + color: '#795200FF' + id: HalfTileOverlayGreyscale270 + decals: + 12: 4,8 + 13: 4,7 + - node: + color: '#7C5300FF' + id: HalfTileOverlayGreyscale270 + decals: + 53: -2,14 + 54: -2,13 + - node: + color: '#1B3C7DFF' + id: HalfTileOverlayGreyscale90 + decals: + 107: 3,28 + - node: + angle: -3.141592653589793 rad + color: '#2B6C9BFF' + id: HalfTileOverlayGreyscale90 + decals: + 4: -5,24 + 5: -5,25 + 6: -5,26 + - node: + angle: 1.5707963267948966 rad + color: '#795200FF' + id: HalfTileOverlayGreyscale90 + decals: + 7: 3,15 + 8: 4,15 + 9: 5,15 + - node: + color: '#7C5300FF' + id: HalfTileOverlayGreyscale90 + decals: + 55: 2,14 + 56: 2,13 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 0: 4,13 + 14: 4,9 + - node: + color: '#417CA4FF' + id: MiniTileCheckerBOverlay + decals: + 90: 4,21 + 91: 4,22 + 92: 3,22 + 93: 4,20 + 94: 4,23 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerNe + decals: + 21: 1,10 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerNw + decals: + 22: -1,10 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerSe + decals: + 81: 1,0 + 88: 1,24 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerSw + decals: + 82: 0,0 + 87: -1,24 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 19: 1,2 + 20: 1,7 + 29: 1,6 + 30: 1,4 + 31: 1,3 + 32: 1,8 + 33: 1,9 + 35: 1,1 + 85: 1,25 + 86: 1,26 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 34: 0,10 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 47: 0,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 89: 0,24 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 48: 1,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 23: -1,9 + 24: -1,8 + 25: -1,7 + 26: 0,2 + 27: 0,3 + 28: 0,4 + 36: 0,1 + 95: -1,25 + 96: -1,26 + - node: + color: '#1B3C7DFF' + id: QuarterTileOverlayGreyscale + decals: + 98: -2,29 + - node: + color: '#1B3C7DFF' + id: QuarterTileOverlayGreyscale90 + decals: + 97: 2,29 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Remains + decals: + 114: 3.7627063,26.05393 + - node: + color: '#1B3C7DFF' + id: ThreeQuarterTileOverlayGreyscale + decals: + 99: -3,29 + 100: -2,30 + - node: + angle: 1.5707963267948966 rad + color: '#7F5600FF' + id: ThreeQuarterTileOverlayGreyscale + decals: + 46: 4,6 + - node: + color: '#1B3C7DFF' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 101: 2,30 + 102: 3,29 + - node: + color: '#FFFFFFFF' + id: WarnBoxGreyscale + decals: + 133: 1,-2 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 66: 4,2 + 138: 5,-1 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 65: 3,2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 137: 5,-2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 136: 3,-2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 112: -4,17 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 111: 1,17 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 71: -4,22 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 70: 1,22 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 67: -4,19 + 68: -4,20 + 69: -4,21 + 110: -4,18 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 77: -3,22 + 78: -1,22 + 79: -2,22 + 80: 0,22 + 119: 7,9 + 120: 8,9 + 121: 8,13 + 122: 7,13 + 123: -8,12 + 127: -7,12 + 128: -6,12 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnLineN + decals: + 49: -3,15 + 51: -3,16 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 37: 2,3 + 38: 2,4 + 39: 2,6 + 58: 2,5 + 74: 1,19 + 75: 1,20 + 76: 1,21 + 113: 1,18 + 134: 3,0 + 135: 3,-1 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnLineW + decals: + 59: 6,13 + 60: 5,13 + 61: 5,9 + 62: 6,9 + 63: -5,12 + 64: -4,12 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 40: 6,13 + 41: 5,13 + 42: 5,9 + 43: 6,9 + 44: -5,12 + 45: -4,12 + 72: -2,17 + 73: 0,17 + 108: -1,17 + 109: -3,17 + 115: 8,13 + 116: 8,9 + 117: 7,9 + 118: 7,13 + 124: -8,12 + 125: -7,12 + 126: -6,12 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnLineW + decals: + 50: -3,15 + 52: -3,16 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 30583 + 1,1: + 0: 30583 + 1,2: + 0: 65535 + 1,3: + 0: 32767 + -2,2: + 0: 64716 + -2,3: + 0: 65535 + -2,0: + 0: 52428 + -2,1: + 0: 52428 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + -2,-1: + 0: 52428 + 1,-1: + 0: 30583 + -2,4: + 0: 52431 + -2,5: + 0: 60620 + -2,6: + 0: 52462 + -2,7: + 0: 76 + -1,4: + 0: 65535 + -1,5: + 0: 65535 + -1,6: + 0: 65535 + -1,7: + 0: 61439 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,4: + 0: 30583 + 1,5: + 0: 63351 + 1,6: + 0: 30719 + 1,7: + 0: 343 + 0,8: + 0: 136 + -1,8: + 0: 34 + 2,2: + 0: 4369 + 2,3: + 0: 273 + -2,-2: + 0: 16384 + -1,-2: + 0: 16384 + 0,-2: + 0: 16384 + 1,-2: + 0: 16384 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Hauler + - type: NavMap +- proto: AirAlarm + entities: + - uid: 644 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - type: DeviceList + devices: + - 643 + - 546 + - 574 + - 573 + - type: AtmosDevice + joinedGrid: 1 + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,27.5 + parent: 1 + - type: DeviceList + devices: + - 607 + - 608 + - 640 + - 639 + - type: AtmosDevice + joinedGrid: 1 + - uid: 646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,26.5 + parent: 1 + - type: DeviceList + devices: + - 641 + - 619 + - 618 + - type: AtmosDevice + joinedGrid: 1 + - uid: 647 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - type: DeviceList + devices: + - 772 + - 771 + - 780 + - 718 + - 591 + - 605 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirCanister + entities: + - uid: 541 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - type: GasCanister + releasePressure: 10.1325 + - type: AtmosDevice + joinedGrid: 1 +- proto: Airlock + entities: + - uid: 60 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 66 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - uid: 68 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 92 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 396 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,25.5 + parent: 1 + - uid: 397 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,23.5 + parent: 1 + - uid: 440 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,20.5 + parent: 1 +- proto: AirlockCommand + entities: + - uid: 326 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,23.5 + parent: 1 +- proto: AirlockEngineering + entities: + - uid: 69 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,1.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 2 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 933 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 +- proto: AirlockExternalGlass + entities: + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,14.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + - uid: 898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1 +- proto: AirlockMedical + entities: + - uid: 443 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,25.5 + parent: 1 + - uid: 483 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,23.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 605 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,26.5 + parent: 1 + - uid: 641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,25.5 + parent: 1 + - uid: 643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - uid: 772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,19.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,26.5 + parent: 1 +- proto: AppraisalTool + entities: + - uid: 788 + components: + - type: Transform + pos: 3.0475066,17.720606 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 3.1619523,17.606943 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,13.5 + parent: 1 + - uid: 900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + - uid: 906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 +- proto: Bed + entities: + - uid: 21 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: BedsheetBlack + entities: + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,24.5 + parent: 1 +- proto: BenchSofaCorpLeft + entities: + - uid: 510 + components: + - type: Transform + pos: 4.5,26.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BenchSofaCorpRight + entities: + - uid: 509 + components: + - type: Transform + pos: 3.5,26.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BoozeDispenser + entities: + - uid: 527 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 +- proto: BoxFolderClipboard + entities: + - uid: 851 + components: + - type: Transform + pos: 2.29522,30.456247 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 26 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -5.5,26.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 0.5,29.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 3.5,28.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 2.5,29.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 1.5,29.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -2.5,28.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 2.5,26.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 1.5,25.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: -0.5,29.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: -2.5,26.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 5.5,25.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 4.5,25.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 3.5,25.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 2.5,25.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 0.5,27.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 0.5,28.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 0.5,24.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: -0.5,21.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: -2.5,21.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: -0.5,25.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: -1.5,25.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: -3.5,25.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: -2.5,25.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 3.5,33.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: -3.5,21.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: -1.5,29.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: -2.5,33.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: -4.5,25.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: 4.5,24.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 4.5,23.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 4.5,21.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: -3.5,19.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: -4.5,19.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: -5.5,19.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 5.5,18.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: 5.5,19.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: -6.5,25.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: 7.5,25.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: 6.5,27.5 + parent: 1 + - uid: 794 + components: + - type: Transform + pos: 6.5,28.5 + parent: 1 + - uid: 795 + components: + - type: Transform + pos: 6.5,29.5 + parent: 1 + - uid: 796 + components: + - type: Transform + pos: 3.5,29.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: 3.5,30.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: 3.5,32.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: -2.5,32.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: -2.5,31.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: -2.5,30.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: -2.5,29.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: -5.5,25.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: -5.5,27.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: -5.5,28.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: -5.5,29.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 923 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 924 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - uid: 926 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 45 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 17 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 0.5,24.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 2.5,25.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 2.5,26.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 1.5,25.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - uid: 722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - uid: 726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: -2.5,20.5 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: -2.5,21.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1 + - uid: 834 + components: + - type: Transform + pos: -1.5,19.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: -0.5,20.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: -0.5,21.5 + parent: 1 + - uid: 840 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,29.5 + parent: 1 + - uid: 460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,29.5 + parent: 1 + - uid: 461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,29.5 + parent: 1 +- proto: CigarCase + entities: + - uid: 890 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 67 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CigPackBlack + entities: + - uid: 891 + components: + - type: Transform + pos: 5.616037,24.840385 + parent: 1 +- proto: ClosetToolFilled + entities: + - uid: 454 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 669 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetWallBlack + entities: + - uid: 64 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 889 + - 888 + - 887 + - 886 + - 58 + - 129 + - 525 + - 662 + - 789 + - 883 + - 884 + - 885 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 790 + components: + - type: Transform + pos: -6.5,16.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 506 + components: + - type: Transform + pos: -2.5,23.5 + parent: 1 +- proto: ClothingOuterCoatBomber + entities: + - uid: 525 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterCoatPlaid + entities: + - uid: 883 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsSalvage + entities: + - uid: 885 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsWinter + entities: + - uid: 887 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsWork + entities: + - uid: 58 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitTshirtJeans + entities: + - uid: 129 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitTshirtJeansGray + entities: + - uid: 888 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Cobweb1 + entities: + - uid: 472 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 438 + components: + - type: Transform + pos: -0.5,30.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 462 + components: + - type: Transform + pos: 0.5,30.5 + parent: 1 +- proto: ComputerStationRecords + entities: + - uid: 874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,28.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 504 + components: + - type: Transform + pos: 1.5,30.5 + parent: 1 +- proto: ComputerTelevision + entities: + - uid: 547 + components: + - type: Transform + pos: 3.5,24.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 473 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 1 + - type: DeviceLinkSink + links: + - 473 + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 1 + - type: DeviceLinkSink + links: + - 473 + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 473 + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 473 + - uid: 153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 473 + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 1 + - type: DeviceLinkSink + links: + - 812 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 61 + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + - type: DeviceLinkSink + links: + - 473 + - uid: 328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 61 + - uid: 383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 61 + - uid: 475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 61 + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 61 + - uid: 505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 1 + - type: DeviceLinkSink + links: + - 812 + - uid: 606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,13.5 + parent: 1 + - type: DeviceLinkSink + links: + - 473 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 491 + components: + - type: Transform + pos: -3.5,27.5 + parent: 1 +- proto: DiceBag + entities: + - uid: 731 + components: + - type: Transform + pos: 5.7514534,24.527668 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,17.5 + parent: 1 +- proto: DisposalPipeBroken + entities: + - uid: 766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,17.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 764 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 +- proto: DrinkGlass + entities: + - uid: 325 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -4.6430964,8.365763 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -4.298491,8.274176 + parent: 1 + - uid: 526 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -4.4330277,8.531198 + parent: 1 +- proto: DrinkMugOne + entities: + - uid: 823 + components: + - type: Transform + pos: -2.8954983,4.4661846 + parent: 1 +- proto: DrinkShaker + entities: + - uid: 156 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -4.753172,8.794132 + parent: 1 +- proto: DrinkShotGlass + entities: + - uid: 63 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -4.2428718,8.671741 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -4.386254,8.892044 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 34 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: 0.5,30.5 + parent: 1 + - uid: 700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,17.5 + parent: 1 + - uid: 701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 1 + - uid: 702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: -0.5,22.5 + parent: 1 + - uid: 709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,24.5 + parent: 1 + - uid: 710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 1 + - uid: 711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,22.5 + parent: 1 + - uid: 712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - uid: 951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,27.5 + parent: 1 + - uid: 719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 469 + components: + - type: Transform + pos: -1.5,30.5 + parent: 1 +- proto: filingCabinet + entities: + - uid: 529 + components: + - type: Transform + pos: 3.5,29.5 + parent: 1 +- proto: FireAlarm + entities: + - uid: 177 + components: + - type: Transform + pos: -1.5,23.5 + parent: 1 + - type: DeviceList + devices: + - 441 + - 466 + - 649 + - 467 + - 468 + - 512 + - type: AtmosDevice + joinedGrid: 1 + - uid: 185 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - type: DeviceList + devices: + - 512 + - 468 + - 467 + - 471 + - 291 + - 319 + - 414 + - type: AtmosDevice + joinedGrid: 1 + - uid: 864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: DeviceList + devices: + - 868 + - 862 + - 457 + - 869 + - 414 + - 319 + - 291 + - 471 + - type: AtmosDevice + joinedGrid: 1 +- proto: Firelock + entities: + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,25.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 1 + - uid: 319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,25.5 + parent: 1 + - uid: 414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: -3.5,23.5 + parent: 1 + - uid: 457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,15.5 + parent: 1 + - uid: 468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 1 + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 4.5,23.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1 + - uid: 649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,20.5 + parent: 1 + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - uid: 869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 +- proto: FlashlightLantern + entities: + - uid: 886 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSnackChips + entities: + - uid: 662 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSnackChocolate + entities: + - uid: 789 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSnackRaisins + entities: + - uid: 889 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodSnackSus + entities: + - uid: 884 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 64 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GasPassiveVent + entities: + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeBend + entities: + - uid: 521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 565 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 587 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 627 + components: + - type: Transform + pos: 0.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeFourway + entities: + - uid: 612 + components: + - type: Transform + pos: 1.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeStraight + entities: + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 449 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 450 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 451 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 555 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 557 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 558 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 559 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 560 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 561 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 562 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 566 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 567 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 568 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 586 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 592 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 593 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 594 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 601 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 602 + components: + - type: Transform + pos: 1.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 603 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 604 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 609 + components: + - type: Transform + pos: 1.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 610 + components: + - type: Transform + pos: 1.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 611 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 613 + components: + - type: Transform + pos: 1.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 1 + - uid: 717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeTJunction + entities: + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPort + entities: + - uid: 517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPressurePump + entities: + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasValve + entities: + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasVentPump + entities: + - uid: 573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 574 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 607 + components: + - type: Transform + pos: 1.5,27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 618 + components: + - type: Transform + pos: -2.5,26.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 780 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 608 + components: + - type: Transform + pos: -0.5,27.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 619 + components: + - type: Transform + pos: -3.5,26.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,19.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GravityGeneratorMini + entities: + - uid: 226 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: Grille + entities: + - uid: 6 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - uid: 320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -5.5,25.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: -3.5,29.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -3.5,30.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -2.5,30.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -0.5,31.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 4.5,30.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 4.5,29.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: -3.5,28.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: -5.5,26.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 4.5,28.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 0.5,31.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: -2.5,31.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: 3.5,30.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: -1.5,31.5 + parent: 1 + - uid: 903 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 1 + - uid: 922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,15.5 + parent: 1 + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 +- proto: HandheldHealthAnalyzer + entities: + - uid: 518 + components: + - type: Transform + pos: -4.5921063,26.629984 + parent: 1 +- proto: HandLabeler + entities: + - uid: 787 + components: + - type: Transform + pos: 3.5742939,17.409733 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 91 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 +- proto: Lighter + entities: + - uid: 892 + components: + - type: Transform + pos: 5.6577034,24.74657 + parent: 1 +- proto: LockerBoozeFilled + entities: + - uid: 147 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 +- proto: LockerCaptainFilled + entities: + - uid: 67 + components: + - type: Transform + pos: 3.5,28.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 890 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezer + entities: + - uid: 81 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 +- proto: LockerQuarterMasterFilled + entities: + - uid: 811 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 314 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 487 + components: + - type: Transform + pos: -2.5,24.5 + parent: 1 +- proto: MedkitAdvancedFilled + entities: + - uid: 520 + components: + - type: Transform + pos: -4.5700297,24.630707 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 773 + components: + - type: Transform + pos: -4.6656375,25.021152 + parent: 1 +- proto: OreBox + entities: + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 1 +- proto: OreProcessor + entities: + - uid: 507 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 +- proto: Paper + entities: + - uid: 952 + components: + - type: MetaData + desc: A list of essential tasks that should be completed before launching your ship. + name: Preflight Checklist + - type: Transform + pos: 3.4781604,-1.371451 + parent: 1 + - type: Paper + stampState: paper_stamp-ce + stampedBy: + - stampedBorderless: False + stampedColor: '#C69B17FF' + stampedName: stamp-component-stamped-name-ce + - stampedBorderless: False + stampedColor: '#00BE00FF' + stampedName: stamp-component-stamped-name-approved + content: >- + [head=1] =======================[/head] + + [head=1] Hauler-class Salvage Ship[/head] + + [head=1] [/head] + + [head=1] PREFLIGHT CHECKLIST[/head] + + [head=1] =======================[/head] + + + [head=2]1. Power supply.[/head] + + [head=3]1.1. Battery units.[/head] + + [bullet/][ ] Check if the substation unit is anchored to the floor. + + [bullet/][ ] Check if all APC units Main Breakers are toggled on. + + [bullet/][ ] Check the APC units current Loads[bold]*[/bold] (W). + + [head=3]1.2. S.U.P.E.R.P.A.C.K.M.A.N. generator unit.[/head] + + [bullet/][ ] Check if the S.U.P.E.R.P.A.C.K.M.A.N. generator unit is anchored to the floor. + + [bullet/][ ] Check if the S.U.P.E.R.P.A.C.K.M.A.N. generator unit has fuel. For extended flights make sure that you have enough fuel stockpiled to sustain prolonged power generation. + + [bullet/][ ] Check if the S.U.P.E.R.P.A.C.K.M.A.N. generator unit is set to HV output. + + [bullet/][ ] Set Target Power for 30-35[bold]**[/bold] [bold]k[/bold]W. + + [bullet/][ ] Start the S.U.P.E.R.P.A.C.K.M.A.N. generator unit. + + + [head=2]2. Atmospherics.[/head] + + [head=3]2.1. Distribution Loop.[/head] + + [bullet/][ ] Check if the air canister is anchored to connector port. + + [bullet/][ ] Check if the distribution pump is set to normal pressure. + + [bullet/][ ] Enable distribution pump. + + [head=3]2.2. Waste Loop.[/head] + + [bullet/][ ] Locate the release valve leading to the passive ventilation duct located on the back exterior of the ship and make sure it is open. The release valve can be found inside the back airlock leading up to the ship exterior. + + + [head=2]3. Other checks.[/head] + + [bullet/][ ] Check if the gyroscope is anchored, powered, and enabled. It can be found adjacent to your engine. + + [bullet/][ ] Check if the mini gravity generator is anchored, powered, and enabled inside the engine room. + + + __________________________________________________________________ + + [bold]*[/bold] - Hauler-class salvage ships are equipped with three APC units that can be used to appraise the ship's total power consumption. One can check the ship's total power consumption against the S.U.P.E.R.P.A.C.K.M.A.N. generator unit Target Power output: to keep substation and APCs fully charged, S.U.P.E.R.P.A.C.K.M.A.N. generator unit Target Power output should exceed the combined load of all APCs. Remember to check APC Loads and adjust the generator unit Target Power after connecting new power-consuming machines. The average combined load of all APCs on a stock model Hauler-class ship is 27'000W when idle. + + [bold]**[/bold] - Hauler-class salvage ships have high power demand meaning that the S.U.P.E.R.P.A.C.K.M.A.N. generator unit's Target Power value should be kept no lower than 30 kW for optimal performance. Please note, that recommended Target Power value to avoid blackouts during Gravity Generator charging sequence and extensive power use is 35 kW. + + [bold]Note:[/bold] Without a working generator, fully charged battery units (SMES and substation) in unmodified Hauler-class salvage ships can provide power for approximately 5 minutes before fully depleting their charge. +- proto: PaperBin10 + entities: + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,30.5 + parent: 1 +- proto: Pen + entities: + - uid: 356 + components: + - type: Transform + pos: 2.7118866,30.643877 + parent: 1 + - type: Stamp + stampedName: Unknown +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 100 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 102 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 805 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 905 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 907 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 912 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,13.5 + parent: 1 +- proto: PlushieLamp + entities: + - uid: 494 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 5.332034,24.693924 + parent: 1 +- proto: PlushieMoffRandom + entities: + - uid: 530 + components: + - type: Transform + pos: -1.5415592,10.635274 + parent: 1 +- proto: PortableGeneratorSuperPacmanShuttle + entities: + - uid: 871 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: PosterLegitAnatomyPoster + entities: + - uid: 522 + components: + - type: Transform + pos: -5.5,24.5 + parent: 1 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 495 + components: + - type: Transform + pos: 5.5,27.5 + parent: 1 +- proto: PosterLegitSafetyInternals + entities: + - uid: 497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 819 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1 +- proto: PosterLegitSMFires + entities: + - uid: 78 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 783 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 36 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 105 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 186 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,26.5 + parent: 1 + - uid: 210 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,15.5 + parent: 1 + - uid: 236 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 269 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,26.5 + parent: 1 + - uid: 502 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,24.5 + parent: 1 + - uid: 524 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,30.5 + parent: 1 + - uid: 537 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,24.5 + parent: 1 + - uid: 675 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,18.5 + parent: 1 + - uid: 676 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,21.5 + parent: 1 + - uid: 677 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 1 + - uid: 678 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 1 + - uid: 680 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 1 + - uid: 681 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + - uid: 682 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - uid: 683 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 684 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 685 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 686 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - uid: 687 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 688 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,30.5 + parent: 1 + - uid: 690 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,22.5 + parent: 1 + - uid: 695 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1 + - uid: 778 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 1 + - uid: 779 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 847 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,24.5 + parent: 1 + - uid: 897 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 +- proto: PoweredlightColoredRed + entities: + - uid: 203 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 455 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 679 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 848 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,19.5 + parent: 1 + - uid: 849 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,19.5 + parent: 1 + - uid: 850 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - uid: 852 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,25.5 + parent: 1 + - uid: 853 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,25.5 + parent: 1 + - uid: 909 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 938 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,-3.5 + parent: 1 +- proto: PoweredLightPostSmallRed + entities: + - uid: 144 + components: + - type: Transform + pos: 6.5,29.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: -5.5,29.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: -2.5,33.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 3.5,33.5 + parent: 1 +- proto: Rack + entities: + - uid: 698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 +- proto: RagItem + entities: + - uid: 896 + components: + - type: Transform + pos: -1.6294281,7.673573 + parent: 1 +- proto: Railing + entities: + - uid: 212 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 820 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 940 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: Recycler + entities: + - uid: 777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 1 + - type: DeviceLinkSink + links: + - 812 +- proto: SheetUranium + entities: + - uid: 227 + components: + - type: Transform + pos: 5.476827,-1.4915609 + parent: 1 +- proto: ShuttersNormal + entities: + - uid: 224 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 901 + - uid: 234 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 8.5,13.5 + parent: 1 + - type: DeviceLinkSink + links: + - 901 + - uid: 333 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 878 + - uid: 503 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 539 + - uid: 666 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,8.5 + parent: 1 + - type: DeviceLinkSink + links: + - 539 + - uid: 844 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 539 +- proto: ShuttersNormalOpen + entities: + - uid: 338 + components: + - type: Transform + pos: -2.5,30.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 352 + components: + - type: Transform + pos: 4.5,28.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 362 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 363 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 436 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 478 + components: + - type: Transform + pos: -5.5,25.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 528 + components: + - type: Transform + pos: -0.5,31.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 552 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 650 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 651 + components: + - type: Transform + pos: 0.5,31.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 652 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 653 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 655 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 663 + components: + - type: Transform + pos: -1.5,31.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 664 + components: + - type: Transform + pos: -2.5,31.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 667 + components: + - type: Transform + pos: -3.5,30.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 670 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 671 + components: + - type: Transform + pos: -5.5,26.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 672 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 699 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 715 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 727 + components: + - type: Transform + pos: -3.5,28.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 728 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 729 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 750 + components: + - type: Transform + pos: 4.5,29.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 825 + components: + - type: Transform + pos: 4.5,30.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 865 + components: + - type: Transform + pos: 3.5,30.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 870 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 + - uid: 872 + components: + - type: Transform + pos: -3.5,29.5 + parent: 1 + - type: DeviceLinkSink + links: + - 875 +- proto: ShuttleSecretDoor + entities: + - uid: 902 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-0.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 20 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,15.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -0.5,31.5 + parent: 1 + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - uid: 297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -5.5,25.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 4.5,28.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 1.5,31.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -1.5,31.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 3.5,30.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -2.5,31.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: -2.5,30.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 4.5,29.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: -3.5,30.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -3.5,29.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: -3.5,28.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: -5.5,26.5 + parent: 1 + - uid: 493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: 4.5,30.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 2.5,31.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: 3.5,31.5 + parent: 1 + - uid: 757 + components: + - type: Transform + pos: 0.5,31.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 913 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - uid: 914 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 +- proto: SignalButton + entities: + - uid: 539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 844: + - Pressed: Toggle + 666: + - Pressed: Toggle + 503: + - Pressed: Toggle + - uid: 875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 727: + - Pressed: Toggle + 872: + - Pressed: Toggle + 667: + - Pressed: Toggle + 338: + - Pressed: Toggle + 664: + - Pressed: Toggle + 663: + - Pressed: Toggle + 528: + - Pressed: Toggle + 651: + - Pressed: Toggle + 650: + - Pressed: Toggle + 552: + - Pressed: Toggle + 870: + - Pressed: Toggle + 865: + - Pressed: Toggle + 825: + - Pressed: Toggle + 750: + - Pressed: Toggle + 352: + - Pressed: Toggle + 729: + - Pressed: Toggle + 362: + - Pressed: Toggle + 671: + - Pressed: Toggle + 478: + - Pressed: Toggle + 653: + - Pressed: Toggle + 363: + - Pressed: Toggle + 655: + - Pressed: Toggle + 670: + - Pressed: Toggle + 728: + - Pressed: Toggle + 436: + - Pressed: Toggle + 699: + - Pressed: Toggle + 715: + - Pressed: Toggle + 672: + - Pressed: Toggle + 652: + - Pressed: Toggle + - uid: 878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 333: + - Pressed: Toggle + - uid: 901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 234: + - Pressed: Toggle + 224: + - Pressed: Toggle +- proto: SignBridge + entities: + - uid: 648 + components: + - type: Transform + pos: 1.5,23.5 + parent: 1 +- proto: SignCargoDock + entities: + - uid: 55 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 +- proto: SignDisposalSpace + entities: + - uid: 765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,17.5 + parent: 1 +- proto: SignLastIdiot + entities: + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 1 +- proto: SignNosmoking + entities: + - uid: 523 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: Sink + entities: + - uid: 895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,21.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 225 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 +- proto: Soap + entities: + - uid: 551 + components: + - type: Transform + pos: 3.4578516,21.501606 + parent: 1 +- proto: soda_dispenser + entities: + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 +- proto: SpawnPointBartender + entities: + - uid: 786 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: SpawnPointCargoTechnician + entities: + - uid: 657 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 496 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 +- proto: SpawnPointQuartermaster + entities: + - uid: 810 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 845 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 44 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 +- proto: SuitStorageSalv + entities: + - uid: 221 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 222 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1 +- proto: SurveillanceCameraGeneral + entities: + - uid: 822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,21.5 + parent: 1 + - uid: 858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1 + - uid: 859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + - uid: 949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 370 + components: + - type: Transform + pos: -2.5,29.5 + parent: 1 +- proto: Table + entities: + - uid: 511 + components: + - type: Transform + pos: 5.5,24.5 + parent: 1 +- proto: TableGlass + entities: + - uid: 89 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: -4.5,26.5 + parent: 1 + - uid: 486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,25.5 + parent: 1 + - uid: 488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,24.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,30.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: -1.5,30.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 545 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 781 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 +- proto: TableWood + entities: + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 +- proto: Thruster + entities: + - uid: 863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - uid: 879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,19.5 + parent: 1 + - uid: 880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 1 + - uid: 881 + components: + - type: Transform + pos: -6.5,25.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 7.5,25.5 + parent: 1 + - uid: 943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1 +- proto: ToiletEmpty + entities: + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,22.5 + parent: 1 +- proto: ToyAmongPequeno + entities: + - uid: 785 + components: + - type: Transform + pos: 4.5992947,26.41875 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 61 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 328: + - Left: Reverse + - Right: Forward + - Middle: Off + 208: + - Right: Forward + - Left: Reverse + - Middle: Off + 501: + - Right: Forward + - Left: Reverse + - Middle: Off + 383: + - Middle: Off + - Right: Forward + - Left: Reverse + 475: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 473 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 12: + - Middle: Off + - Right: Forward + - Left: Reverse + 137: + - Right: Forward + - Middle: Off + - Left: Reverse + 138: + - Middle: Off + - Right: Forward + - Left: Reverse + 153: + - Middle: Off + - Right: Forward + - Left: Reverse + 133: + - Middle: Off + - Right: Forward + - Left: Reverse + 124: + - Middle: Off + - Right: Forward + - Left: Reverse + 219: + - Middle: Off + - Right: Forward + - Left: Reverse + 606: + - Middle: Off + - Right: Forward + - Left: Reverse + - uid: 812 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 505: + - Left: Reverse + - Middle: Off + - Right: Forward + 200: + - Left: Reverse + - Right: Forward + - Middle: Off + 777: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: VendingMachineBooze + entities: + - uid: 155 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: VendingMachineCargoDrobe + entities: + - uid: 213 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 +- proto: VendingMachineSalvage + entities: + - uid: 223 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 +- proto: VendingMachineSustenance + entities: + - uid: 447 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 827 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 3 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - uid: 4 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 10 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 11 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 13 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 14 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - uid: 15 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - uid: 16 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 18 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 31 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 38 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 40 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 41 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 42 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 49 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 62 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,16.5 + parent: 1 + - uid: 71 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 82 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 83 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 87 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 88 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 108 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 109 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 110 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 113 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 114 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 117 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + - uid: 118 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 125 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + - uid: 126 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1 + - uid: 128 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 130 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,16.5 + parent: 1 + - uid: 135 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 5.5,16.5 + parent: 1 + - uid: 136 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,15.5 + parent: 1 + - uid: 139 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,14.5 + parent: 1 + - uid: 140 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 1 + - uid: 143 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 148 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 149 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,18.5 + parent: 1 + - uid: 152 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,11.5 + parent: 1 + - uid: 157 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,19.5 + parent: 1 + - uid: 158 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 1 + - uid: 161 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,23.5 + parent: 1 + - uid: 163 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,23.5 + parent: 1 + - uid: 164 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,23.5 + parent: 1 + - uid: 166 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,24.5 + parent: 1 + - uid: 167 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,23.5 + parent: 1 + - uid: 168 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,23.5 + parent: 1 + - uid: 170 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,23.5 + parent: 1 + - uid: 171 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,23.5 + parent: 1 + - uid: 172 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,22.5 + parent: 1 + - uid: 173 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,21.5 + parent: 1 + - uid: 174 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,20.5 + parent: 1 + - uid: 175 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,19.5 + parent: 1 + - uid: 176 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,18.5 + parent: 1 + - uid: 187 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,23.5 + parent: 1 + - uid: 188 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,24.5 + parent: 1 + - uid: 189 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 1 + - uid: 190 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,24.5 + parent: 1 + - uid: 192 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + - uid: 198 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 1 + - uid: 215 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 216 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 1 + - uid: 217 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 + - uid: 235 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 323 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + - uid: 337 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,27.5 + parent: 1 + - uid: 353 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,27.5 + parent: 1 + - uid: 357 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 1 + - uid: 371 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,26.5 + parent: 1 + - uid: 373 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,27.5 + parent: 1 + - uid: 379 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,24.5 + parent: 1 + - uid: 380 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,24.5 + parent: 1 + - uid: 384 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,23.5 + parent: 1 + - uid: 385 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 421 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,22.5 + parent: 1 + - uid: 422 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 1 + - uid: 446 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 459 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 470 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 479 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 1 + - uid: 489 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,27.5 + parent: 1 + - uid: 492 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,27.5 + parent: 1 + - uid: 535 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 1 + - uid: 536 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,17.5 + parent: 1 + - uid: 538 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 1 + - uid: 548 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,20.5 + parent: 1 + - uid: 549 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 4.5,27.5 + parent: 1 + - uid: 658 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,26.5 + parent: 1 + - uid: 673 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 704 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 1 + - uid: 752 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 753 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 754 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 755 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 756 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 759 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 774 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + - uid: 776 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 1 + - uid: 816 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 817 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + - uid: 818 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 824 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 854 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + - uid: 855 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,16.5 + parent: 1 + - uid: 857 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + - uid: 894 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 915 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 1 + - uid: 917 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + - uid: 918 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 1 + - uid: 920 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 921 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 925 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 927 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 929 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 930 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 932 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 939 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 941 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 942 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,18.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,16.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -5.5,20.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,22.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,27.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: -5.5,27.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,27.5 + parent: 1 + - uid: 375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,23.5 + parent: 1 + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 1 + - uid: 386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 2.5,27.5 + parent: 1 + - uid: 476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 1 + - uid: 760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,18.5 + parent: 1 + - uid: 784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 1 + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,28.5 + parent: 1 + - uid: 911 + components: + - type: Transform + pos: -4.5,28.5 + parent: 1 + - uid: 919 + components: + - type: Transform + pos: -7.5,16.5 + parent: 1 + - uid: 928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 +- proto: WarningAir + entities: + - uid: 456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 191 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 485 + components: + - type: Transform + pos: 5.5,26.5 + parent: 1 +- proto: WeaponGrapplingGun + entities: + - uid: 782 + components: + - type: Transform + pos: 3.510675,17.514425 + parent: 1 +- proto: WindowFrostedDirectional + entities: + - uid: 697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 1 +- proto: Wrench + entities: + - uid: 669 + components: + - type: MetaData + flags: InContainer + - type: Transform + parent: 454 + - type: Physics + canCollide: False + - type: InsideEntityStorage +... diff --git a/Resources/Maps/_NF/Shuttles/knuckleverse.yml b/Resources/Maps/_NF/Shuttles/knuckleverse.yml new file mode 100644 index 00000000000..4286d5d87fe --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/knuckleverse.yml @@ -0,0 +1,4645 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 19: FloorBoxing + 20: FloorBrokenWood + 30: FloorDark + 32: FloorDarkDiagonalMini + 37: FloorDarkPavement + 46: FloorGlass + 71: FloorOldConcrete + 109: FloorWhite + 115: FloorWhiteOffset + 118: FloorWhitePlastic + 119: FloorWood + 121: Lattice + 122: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -38.49696,-16.659546 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: egAAAAAAeQAAAAAAeQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAFAAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAFAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: eQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAegAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAegAAAAAAegAAAAAAbQAAAAAAdgAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAARwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAbQAAAAAAHgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAAdwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAAdwAAAAABdwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAAdwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAAdwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAAdwAAAAAAdwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAARwAAAAAARwAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAARwAAAAAARwAAAAABRwAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAAAeQAAAAAAegAAAAAAcwAAAAAAcwAAAAAAcwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAcwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAegAAAAAAegAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#00AAFFFF' + id: BrickTileWhiteLineS + decals: + 77: -14,3 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 78: -13,7 + 79: -14,7 + 80: -14,4 + 81: -14,3 + 82: -13,3 + 83: -6,-2 + 84: -17,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 8: -3,0 + 9: -3,7 + 10: -2,7 + 11: -1,7 + 12: -1,8 + 13: -3,8 + 14: -3,4 + 15: -3,5 + 16: -5,0 + 17: -5,-1 + 18: -4,-2 + 19: -4,-1 + 20: -4,0 + 27: -3,-2 + 28: -9,-1 + 29: -15,5 + 30: -14,5 + 31: -17,3 + 32: -14,8 + 34: -15,4 + 35: -15,3 + 36: -16,4 + 37: -17,4 + 38: -17,5 + 39: -16,5 + 40: -13,5 + 41: -15,6 + 42: -14,6 + 43: -16,6 + 44: -17,6 + 45: -13,8 + 46: -15,7 + 47: -16,7 + 53: -2,6 + 54: 0,6 + 55: 1,6 + 56: 1,5 + 57: 0,5 + 58: -1,5 + 59: -2,5 + 60: -2,4 + 61: -1,4 + 62: 0,4 + 63: 1,4 + 64: 1,3 + 65: -2,2 + 66: -1,2 + 67: 0,2 + 68: 1,2 + 69: 2,2 + 70: 2,3 + 71: 2,4 + 72: 2,5 + 73: 2,7 + 74: 2,6 + 75: 1,7 + 76: 0,7 + 85: -5,15 + 86: -6,15 + 87: -7,15 + 88: -8,15 + 89: -9,15 + 90: -10,15 + 91: -10,16 + 92: -9,16 + 93: -8,16 + 94: -7,16 + 95: -6,16 + 96: -5,16 + 97: -13,0 + 98: -14,0 + 99: -14,1 + 100: -14,2 + 101: -11,-2 + 102: -11,-1 + 103: -12,-2 + 104: -9,-5 + 105: -8,-5 + 106: -7,-5 + 107: -6,-5 + 108: -10,12 + 109: -10,13 + 110: -11,12 + 111: -11,13 + 113: -1,1 + 114: -2,1 + 115: -11,10 + 116: -9,10 + 117: -8,10 + 118: -7,10 + 119: -6,10 + 120: -5,10 + 121: -2,10 + 122: -8,11 + 123: -8,12 + 124: -8,13 + 125: -4,12 + 126: -6,12 + 127: -5,12 + 128: -5,13 + 129: -6,13 + 130: -13,10 + 131: -12,10 + 132: -10,10 + 133: -7,11 + 134: -7,12 + 135: -7,13 + 136: -9,12 + 137: -8,12 + 138: -4,10 + 139: -3,10 + 143: -2,3 + 144: -1,3 + 145: 0,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 26: -3,-2 + 48: -14,5 + 49: -16,5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 21: -3,3 + 33: -15,3 + 50: -15,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 22: -3,5 + 25: -9,-1 + 51: -15,5 + 140: -2,0 + 142: -9,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 23: -3,2 + 24: -5,-1 + 52: -13,8 + 141: -1,0 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimLineE + decals: + 0: -4,4 + 1: -4,5 + 2: -4,6 + 3: -4,7 + 4: -4,8 + 5: -4,3 + 6: -4,2 + 7: -4,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 112: -2,1 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65521 + 1: 14 + -2,0: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 31 + 1: 288 + -4,0: + 1: 1 + 0: 65534 + -4,1: + 0: 65535 + -4,2: + 0: 52463 + 1: 528 + -4,3: + 1: 132 + 0: 8 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 61439 + 1: 4096 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 4919 + 1: 8264 + -5,0: + 1: 12 + 0: 52416 + -5,1: + 0: 52428 + -5,2: + 0: 12 + -4,-1: + 1: 1536 + 0: 59520 + -3,-1: + 0: 65532 + 1: 2 + -3,-2: + 0: 52224 + -2,-2: + 0: 65280 + -2,-1: + 0: 65535 + -1,-1: + 1: 2049 + 0: 63344 + 0,-1: + 1: 256 + 0: 4096 + -3,4: + 0: 3822 + -2,4: + 0: 4095 + -1,4: + 0: 273 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 367 + - 366 + - 368 + - 363 + - 270 + - 269 + - 362 + - 271 + - type: AtmosDevice + joinedGrid: 1 + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,13.5 + parent: 1 + - type: DeviceList + devices: + - 272 + - 365 + - 361 + - 364 + - 269 + - 270 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirCanister + entities: + - uid: 4 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: Airlock + entities: + - uid: 5 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 6 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 7 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 104 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,9.5 + parent: 1 +- proto: AirlockCommand + entities: + - uid: 8 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 1 + - type: Door + secondsUntilStateChange: -6957.07 + state: Opening +- proto: AirlockEngineering + entities: + - uid: 9 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 10 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 11 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -8.5,-3.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 12 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 +- proto: AirlockMaint + entities: + - uid: 15 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,12.5 + parent: 1 + - type: Door + secondsUntilStateChange: -2498.8562 + state: Opening +- proto: APCBasic + entities: + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 19 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 22 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -14.5,10.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 +- proto: BarSignTheBirdCage + entities: + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,0.5 + parent: 1 +- proto: BoozeDispenser + entities: + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 +- proto: BoxingBell + entities: + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 +- proto: BrokenBottle + entities: + - uid: 49 + components: + - type: Transform + pos: -2.2459297,3.7117987 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 50 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -8.5,15.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 +- proto: CableHV + entities: + - uid: 138 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -10.5,12.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 +- proto: CableMV + entities: + - uid: 145 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -12.5,10.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -10.5,14.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,13.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,16.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,16.5 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 188 + components: + - type: Transform + pos: -10.277779,-0.80158806 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.168404,-1.442213 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -8.349766,-0.039014816 + parent: 1 +- proto: CigarGoldSpent + entities: + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.634842,-1.6467209 + parent: 1 +- proto: CigarSpent + entities: + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.840279,-1.770338 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.039795,15.324729 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -4.0433273,0.110946655 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.9914474,5.9788036 + parent: 1 +- proto: CigPackRed + entities: + - uid: 196 + components: + - type: Transform + pos: -5.179821,16.692709 + parent: 1 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.815319,7.6857004 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.799694,7.2482004 + parent: 1 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.487194,7.6700754 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.346569,7.2794504 + parent: 1 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.248817,5.6701593 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.186317,5.2482843 + parent: 1 +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.764442,5.7014093 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.764442,5.3264093 + parent: 1 +- proto: ClothingUniformJumpsuitCasualBlue + entities: + - uid: 205 + components: + - type: Transform + pos: -16.80597,4.705227 + parent: 1 +- proto: ClothingUniformJumpsuitPsychologist + entities: + - uid: 206 + components: + - type: Transform + pos: -16.852844,4.408352 + parent: 1 +- proto: Cobweb2 + entities: + - uid: 207 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 +- proto: ComputerTabletopRadar + entities: + - uid: 208 + components: + - type: Transform + pos: -7.5,17.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 209 + components: + - type: Transform + pos: -6.5,17.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,1.5 + parent: 1 +- proto: DrinkBeerBottleFull + entities: + - uid: 212 + components: + - type: Transform + pos: -10.958,-0.6096668 + parent: 1 +- proto: DrinkEnergyDrinkCan + entities: + - uid: 213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.283836,2.7889214 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.283836,2.6014214 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.283836,2.3514214 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.283836,2.1951714 + parent: 1 +- proto: DrinkGoldenCup + entities: + - uid: 217 + components: + - type: Transform + pos: -16.315453,4.7543736 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -16.355827,4.4262486 + parent: 1 +- proto: DrinkShaker + entities: + - uid: 219 + components: + - type: Transform + pos: 2.500061,5.4633293 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,15.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,5.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,4.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 240 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1 +- proto: FenceMetalCorner + entities: + - uid: 241 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 +- proto: FenceMetalGate + entities: + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + - type: Door + secondsUntilStateChange: -30112.76 + state: Opening +- proto: FenceMetalStraight + entities: + - uid: 247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - uid: 257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,8.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 +- proto: Firelock + entities: + - uid: 269 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 270 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - uid: 271 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 +- proto: FoodSnackEnergy + entities: + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.728836,2.6801424 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.744461,2.3207674 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.367756,2.6951714 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.352131,2.1951714 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 278 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 285 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 287 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 290 + components: + - type: Transform + pos: -12.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 295 + components: + - type: Transform + pos: -7.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 300 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 302 + components: + - type: Transform + pos: -16.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 303 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 304 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 311 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 312 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 313 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 314 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 315 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 321 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 322 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 323 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 331 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 332 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 337 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 338 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 356 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 360 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,15.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,12.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,15.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 3 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,4.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 369 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1 +- proto: Grille + entities: + - uid: 370 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: -9.5,18.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: -10.5,17.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: -7.5,18.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 386 + components: + - type: Transform + pos: -9.5,17.5 + parent: 1 +- proto: HospitalCurtains + entities: + - uid: 387 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 1 + - uid: 388 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,6.5 + parent: 1 + - type: Door + secondsUntilStateChange: -24811.93 + state: Opening + - uid: 389 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,4.5 + parent: 1 +- proto: LightBulbBroken + entities: + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5251389,0.63520813 + parent: 1 +- proto: LockerBoozeFilled + entities: + - uid: 391 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: LockerPilotFilled + entities: + - uid: 141 + components: + - type: Transform + pos: -9.5,16.5 + parent: 1 +- proto: LuxuryPen + entities: + - uid: 487 + components: + - type: Transform + pos: -8.579712,17.084736 + parent: 1 +- proto: Matchbox + entities: + - uid: 393 + components: + - type: Transform + pos: -5.632946,16.645834 + parent: 1 +- proto: MatchstickSpent + entities: + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.61792,16.60598 + parent: 1 + - uid: 395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.96167,15.746604 + parent: 1 + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.0452156,7.3168955 + parent: 1 + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.6449776,-1.0814991 + parent: 1 +- proto: MedicalBed + entities: + - uid: 398 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 +- proto: MedkitBruteFilled + entities: + - uid: 143 + components: + - type: Transform + pos: -12.270641,1.615612 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 401 + components: + - type: Transform + pos: -12.80164,1.6445293 + parent: 1 +- proto: Mirror + entities: + - uid: 402 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 +- proto: MopBucketFull + entities: + - uid: 403 + components: + - type: Transform + pos: -3.4354095,12.454241 + parent: 1 +- proto: MopItem + entities: + - uid: 404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.8171577,13.529375 + parent: 1 +- proto: PaperBin20 + entities: + - uid: 405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 1 +- proto: PortableGeneratorPacmanShuttle + entities: + - uid: 407 + components: + - type: Transform + pos: -10.5,12.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static + - uid: 408 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: PosterContrabandPunchShit + entities: + - uid: 409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,7.5 + parent: 1 + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,6.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1 + - uid: 416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,3.5 + parent: 1 + - uid: 417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 1 + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,15.5 + parent: 1 + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-1.5 + parent: 1 + - uid: 425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,7.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 1 + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 +- proto: PoweredSmallLightEmpty + entities: + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 +- proto: Rack + entities: + - uid: 434 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,5.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,4.5 + parent: 1 + - uid: 437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,7.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,13.5 + parent: 1 +- proto: RandomDrinkGlass + entities: + - uid: 442 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 443 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: -15.5,8.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 448 + components: + - type: Transform + pos: -10.5,17.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: -9.5,18.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: -7.5,18.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1 +- proto: ShardGlass + entities: + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.91503906,5.5988417 + parent: 1 +- proto: SignEngine + entities: + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 466 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 467 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1 +- proto: SoapHomemade + entities: + - uid: 468 + components: + - type: Transform + pos: -3.7077827,13.274853 + parent: 1 +- proto: soda_dispenser + entities: + - uid: 469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 +- proto: SpawnPointBartender + entities: + - uid: 470 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: SpawnPointBoxer + entities: + - uid: 471 + components: + - type: Transform + pos: -16.5,6.5 + parent: 1 +- proto: SpawnPointJanitor + entities: + - uid: 472 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 473 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 +- proto: SpawnPointPilot + entities: + - uid: 474 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 +- proto: SprayBottleWater + entities: + - uid: 475 + components: + - type: Transform + pos: -3.2234077,13.649853 + parent: 1 +- proto: Stairs + entities: + - uid: 476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,4.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 1 +- proto: SteelBench + entities: + - uid: 478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,5.5 + parent: 1 + - uid: 479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,4.5 + parent: 1 + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 1 + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,5.5 + parent: 1 +- proto: Stool + entities: + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 1 + - uid: 484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + - uid: 486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 495 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 +- proto: SuitStorageWallmountEVA + entities: + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + - type: Physics + canCollide: False +- proto: Table + entities: + - uid: 497 + components: + - type: Transform + pos: -8.5,17.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: -7.5,17.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: -6.5,17.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1 + - uid: 501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,16.5 + parent: 1 + - uid: 502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,16.5 + parent: 1 +- proto: TableWood + entities: + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - uid: 503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - uid: 504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - uid: 507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 +- proto: Thruster + entities: + - uid: 512 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1 + - uid: 514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 1 + - uid: 515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 1 + - uid: 516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1 + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - uid: 519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 +- proto: ToiletDirtyWater + entities: + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 1 +- proto: ToyFigurineBoxer + entities: + - uid: 523 + components: + - type: Transform + pos: 0.43748474,6.684057 + parent: 1 +- proto: TrashBag + entities: + - uid: 524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.539795,13.533486 + parent: 1 + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.461155,13.317894 + parent: 1 +- proto: UniformShortsRed + entities: + - uid: 526 + components: + - type: Transform + pos: -14.737095,7.6867657 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: -14.75272,7.3586407 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: -14.78397,7.2492657 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: -14.75272,7.5148907 + parent: 1 +- proto: UniformShortsRedWithTop + entities: + - uid: 530 + components: + - type: Transform + pos: -14.36858,7.6075754 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: -14.36858,7.4669504 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: -14.37722,7.349349 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: -14.36858,7.6700754 + parent: 1 +- proto: VendingMachineBooze + entities: + - uid: 534 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 +- proto: VendingMachineBoxingDrobe + entities: + - uid: 535 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 +- proto: VendingMachineCigs + entities: + - uid: 536 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 537 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,16.5 + parent: 1 + - uid: 538 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 539 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 540 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - uid: 541 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 542 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 543 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 544 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 545 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,10.5 + parent: 1 + - uid: 546 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 547 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 548 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 549 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 550 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 551 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,4.5 + parent: 1 + - uid: 552 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 553 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 554 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 555 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 556 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,15.5 + parent: 1 + - uid: 557 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 558 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 559 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-0.5 + parent: 1 + - uid: 560 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 561 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 562 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 563 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -16.5,8.5 + parent: 1 + - uid: 564 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 565 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,11.5 + parent: 1 + - uid: 566 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 567 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,8.5 + parent: 1 + - uid: 568 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 569 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -15.5,8.5 + parent: 1 + - uid: 570 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 571 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 572 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,6.5 + parent: 1 + - uid: 573 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 574 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 575 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,5.5 + parent: 1 + - uid: 576 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 577 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,13.5 + parent: 1 + - uid: 578 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,11.5 + parent: 1 + - uid: 579 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 580 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,12.5 + parent: 1 + - uid: 581 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 582 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -11.5,14.5 + parent: 1 + - uid: 583 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 584 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -12.5,12.5 + parent: 1 + - uid: 585 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 586 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 587 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,3.5 + parent: 1 + - uid: 588 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 589 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 590 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 591 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 592 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 593 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -10.5,14.5 + parent: 1 + - uid: 594 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 595 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 596 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 597 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -17.5,2.5 + parent: 1 + - uid: 598 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 599 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 600 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 601 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,-0.5 + parent: 1 + - uid: 602 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 603 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -14.5,8.5 + parent: 1 + - uid: 604 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -13.5,-0.5 + parent: 1 + - uid: 605 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 606 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 607 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 608 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - uid: 609 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 610 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -9.5,-4.5 + parent: 1 + - uid: 611 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 612 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 613 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + - uid: 614 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + - uid: 615 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 1 + - uid: 616 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 + - uid: 617 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,9.5 + parent: 1 + - uid: 618 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + - uid: 619 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 1 + - uid: 620 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 1 + - uid: 621 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 1 + - uid: 622 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 + - uid: 623 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 1 + - uid: 624 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,14.5 + parent: 1 + - uid: 625 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 + - uid: 626 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,14.5 + parent: 1 + - uid: 627 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + - uid: 628 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + - uid: 629 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + - uid: 630 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + - uid: 631 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + - uid: 632 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,8.5 + parent: 1 + - uid: 633 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,11.5 + parent: 1 + - uid: 634 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 635 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1 + - uid: 636 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,11.5 + parent: 1 + - uid: 637 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 1 + - uid: 638 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + - uid: 639 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 1 + - uid: 640 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 1 + - uid: 641 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,5.5 + parent: 1 + - uid: 642 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 1 + - uid: 643 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + - uid: 644 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + - uid: 645 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,11.5 + parent: 1 + - uid: 646 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + - uid: 647 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + - uid: 648 + components: + - type: MetaData + flags: PvsPriority + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 +- proto: WallSolidDiagonal + entities: + - uid: 649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 1 + - uid: 650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + - uid: 652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: -14.5,10.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1 + - uid: 657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - uid: 658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + - uid: 660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 1 +- proto: Windoor + entities: + - uid: 662 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 +- proto: Wrench + entities: + - uid: 663 + components: + - type: Transform + pos: -3.9668999,12.734992 + parent: 1 +... diff --git a/Resources/Maps/_NF/Shuttles/mccargo.yml b/Resources/Maps/_NF/Shuttles/mccargo.yml index f52681ce97f..986f61d7899 100644 --- a/Resources/Maps/_NF/Shuttles/mccargo.yml +++ b/Resources/Maps/_NF/Shuttles/mccargo.yml @@ -5,11 +5,11 @@ tilemap: 0: Space 14: FloorBar 77: FloorRGlass - 105: FloorTechMaint - 113: FloorWhiteMini - 114: FloorWhiteMono - 121: Lattice - 122: Plating + 107: FloorTechMaint + 115: FloorWhiteMini + 116: FloorWhiteMono + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -24,27 +24,27 @@ entities: chunks: 0,0: ind: 0,0 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAADgAAAAAADgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaQAAAAAADgAAAAAADgAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAegAAAAAAcgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAcgAAAAAAcgAAAAAAegAAAAAAcgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAcgAAAAAAcgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAcgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfQAAAAAADgAAAAAADgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAawAAAAAADgAAAAAADgAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAcwAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: egAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -917,8 +917,6 @@ entities: entities: - uid: 27 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,14.5 parent: 1 @@ -927,8 +925,6 @@ entities: - 805 - uid: 193 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -3.5,2.5 @@ -938,8 +934,6 @@ entities: - 173 - uid: 300 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,3.5 @@ -949,15 +943,11 @@ entities: - 730 - uid: 301 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,9.5 parent: 1 - uid: 843 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,4.5 @@ -1084,8 +1074,6 @@ entities: entities: - uid: 412 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,9.5 parent: 1 @@ -1184,23 +1172,17 @@ entities: entities: - uid: 60 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,9.5 parent: 1 - uid: 210 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,3.5 parent: 1 - uid: 633 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,14.5 @@ -1232,8 +1214,6 @@ entities: entities: - uid: 863 components: - - type: MetaData - flags: InContainer - type: Transform parent: 862 - type: Physics @@ -1513,11 +1493,6 @@ entities: - type: Transform pos: -10.5,1.5 parent: 1 - - uid: 1055 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 1 - uid: 1056 components: - type: Transform @@ -1734,6 +1709,14 @@ entities: parent: 1 - type: Physics bodyType: Static +- proto: BlockGameArcade + entities: + - uid: 276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 - proto: BorgCharger entities: - uid: 329 @@ -1746,8 +1729,6 @@ entities: entities: - uid: 164 components: - - type: MetaData - flags: InContainer - type: Transform parent: 405 - type: Physics @@ -2923,8 +2904,6 @@ entities: entities: - uid: 704 components: - - type: MetaData - flags: InContainer - type: Transform parent: 1081 - type: Physics @@ -3029,11 +3008,11 @@ entities: parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 766 + - uid: 184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-5.5 + rot: -1.5707963267948966 rad + pos: 8.5,2.5 parent: 1 - proto: DeskBell entities: @@ -3426,7 +3405,6 @@ entities: - uid: 1083 components: - type: MetaData - flags: InContainer desc: A sweet, carbonated soft drink. Caffeine free. name: cola glass - type: Transform @@ -3446,8 +3424,8 @@ entities: - type: TransformableContainer transformed: True currentReagent: - metamorphicSprite: null - meltingPoint: null + metamorphicChangeColor: True + id: Cola flavor: soda flavorMinimum: 0.1 slippery: True @@ -3513,8 +3491,8 @@ entities: volume: 0 attenuation: LinearDistanceClamped collection: FootstepWater - id: Cola name: reagent-name-cola + metamorphicFillBaseName: null group: Drinks parent: - BaseSoda @@ -3524,6 +3502,9 @@ entities: color: '#422912FF' specificHeat: 1 boilingPoint: null + meltingPoint: null + metamorphicSprite: null + metamorphicMaxFillLevels: 0 recognizable: True - type: Physics canCollide: False @@ -3789,8 +3770,6 @@ entities: entities: - uid: 706 components: - - type: MetaData - flags: InContainer - type: Transform parent: 1081 - type: Physics @@ -3836,8 +3815,6 @@ entities: entities: - uid: 707 components: - - type: MetaData - flags: InContainer - type: Transform parent: 1081 - type: Physics @@ -3900,8 +3877,6 @@ entities: entities: - uid: 902 components: - - type: MetaData - flags: InContainer - type: Transform parent: 1081 - type: Physics @@ -3955,11 +3930,6 @@ entities: - type: Transform pos: -6.244554,1.794488 parent: 1 - - uid: 795 - components: - - type: Transform - pos: -6.338304,1.606988 - parent: 1 - uid: 860 components: - type: Transform @@ -3997,11 +3967,6 @@ entities: - type: Transform pos: -6.859103,1.7711829 parent: 1 - - uid: 787 - components: - - type: Transform - pos: -6.9736867,1.5940995 - parent: 1 - proto: GasPassiveVent entities: - uid: 347 @@ -4713,6 +4678,19 @@ entities: - type: Transform pos: -11.5,0.5 parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1 - proto: GunSafeShuttleCaptain entities: - uid: 405 @@ -4866,18 +4844,18 @@ entities: parent: 1 - proto: KitchenDeepFryer entities: - - uid: 184 + - uid: 334 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,6.5 + pos: 4.5,5.5 parent: 1 - proto: KitchenElectricGrill entities: - - uid: 929 + - uid: 774 components: - type: Transform - pos: 4.5,5.5 + pos: 0.5,7.5 parent: 1 - proto: KitchenKnife entities: @@ -4900,10 +4878,10 @@ entities: parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 268 + - uid: 346 components: - type: Transform - pos: 0.5,7.5 + pos: 4.5,6.5 parent: 1 - proto: KitchenSpike entities: @@ -5100,14 +5078,6 @@ entities: - type: Transform pos: -8.5,2.5 parent: 1 -- proto: PosterContrabandSunkist - entities: - - uid: 346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,2.5 - parent: 1 - proto: PowerCellRecharger entities: - uid: 767 @@ -5120,207 +5090,142 @@ entities: entities: - uid: 33 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -8.5,3.5 parent: 1 - uid: 110 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -1.5,10.5 parent: 1 - - uid: 207 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - uid: 201 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,12.5 + pos: -8.5,1.5 parent: 1 - - uid: 227 + - uid: 207 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,1.5 + rot: 1.5707963267948966 rad + pos: 6.5,12.5 parent: 1 - uid: 262 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,16.5 parent: 1 - uid: 273 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-4.5 parent: 1 - uid: 287 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,14.5 parent: 1 + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 - uid: 397 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -8.5,8.5 parent: 1 - uid: 428 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-4.5 parent: 1 - uid: 441 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,12.5 parent: 1 - - uid: 448 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,1.5 - parent: 1 - - uid: 691 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1 - uid: 720 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - uid: 721 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 1 - uid: 722 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,8.5 parent: 1 - uid: 746 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,3.5 parent: 1 - - uid: 804 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 - parent: 1 - - uid: 833 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-4.5 - parent: 1 - uid: 959 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 1 - uid: 960 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -11.5,-2.5 parent: 1 - uid: 961 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-7.5 parent: 1 - uid: 962 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 12.5,-2.5 parent: 1 - proto: PoweredlightColoredBlack entities: - - uid: 445 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,5.5 - parent: 1 - - uid: 779 + - uid: 227 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,9.5 + rot: -1.5707963267948966 rad + pos: 7.5,7.5 parent: 1 - - uid: 788 + - uid: 256 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,6.5 + rot: 3.141592653589793 rad + pos: 9.5,8.5 parent: 1 - - uid: 1007 + - uid: 445 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,8.5 + rot: 3.141592653589793 rad + pos: 9.5,5.5 parent: 1 - proto: Rack entities: @@ -5429,44 +5334,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,10.5 parent: 1 -- proto: RandomArcade - entities: - - uid: 447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-4.5 - parent: 1 - - uid: 535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-4.5 - parent: 1 -- proto: RandomDrinkBottle - entities: - - uid: 712 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 1 - - uid: 761 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 1 -- proto: RandomSnacks - entities: - - uid: 762 - components: - - type: Transform - pos: -5.5,-2.5 - parent: 1 - - uid: 829 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 1 - proto: ReinforcedWindow entities: - uid: 28 @@ -5629,6 +5496,19 @@ entities: - type: Transform pos: 10.5,8.5 parent: 1 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1 - proto: SeedExtractor entities: - uid: 104 @@ -5670,6 +5550,14 @@ entities: - type: DeviceLinkSink links: - 455 + - uid: 263 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 770 - uid: 337 components: - type: Transform @@ -5856,14 +5744,6 @@ entities: - type: DeviceLinkSink links: - 770 - - uid: 774 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 770 - uid: 775 components: - type: Transform @@ -6077,14 +5957,14 @@ entities: - Pressed: Toggle 773: - Pressed: Toggle - 774: - - Pressed: Toggle 775: - Pressed: Toggle 776: - Pressed: Toggle 777: - Pressed: Toggle + 263: + - Pressed: Toggle - uid: 805 components: - type: Transform @@ -6344,6 +6224,14 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,5.5 parent: 1 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 - proto: SpawnMobCow entities: - uid: 230 @@ -6457,9 +6345,9 @@ entities: - type: Transform pos: -8.5,11.5 parent: 1 -- proto: SuitStorageWallmountEVA +- proto: SuitStorageWallmountPilot entities: - - uid: 976 + - uid: 318 components: - type: Transform pos: 3.5,15.5 @@ -6596,12 +6484,6 @@ entities: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - uid: 139 components: - type: Transform @@ -6886,13 +6768,6 @@ entities: - type: Transform pos: -5.35921,7.836001 parent: 1 -- proto: ToySpawner - entities: - - uid: 764 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 1 - proto: VendingMachineBooze entities: - uid: 801 @@ -7173,857 +7048,652 @@ entities: parent: 1 - proto: WallReinforced entities: - - uid: 201 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,15.5 - parent: 1 - uid: 203 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,15.5 parent: 1 - uid: 297 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,-6.5 parent: 1 - uid: 315 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,12.5 parent: 1 - uid: 316 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,11.5 parent: 1 - uid: 317 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,10.5 parent: 1 - uid: 319 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,9.5 parent: 1 - uid: 321 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,8.5 parent: 1 - uid: 322 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,7.5 parent: 1 - uid: 323 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-8.5 parent: 1 - uid: 328 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,6.5 parent: 1 - uid: 418 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,5.5 parent: 1 - uid: 423 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,4.5 parent: 1 - uid: 424 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,2.5 parent: 1 - uid: 427 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,3.5 parent: 1 + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 - uid: 437 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,15.5 parent: 1 - uid: 521 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,-5.5 parent: 1 - uid: 525 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-8.5 parent: 1 - uid: 526 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 - uid: 527 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,-5.5 parent: 1 - - uid: 529 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 1 - uid: 544 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,4.5 parent: 1 - uid: 546 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 1 - uid: 548 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,2.5 parent: 1 - uid: 561 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-8.5 parent: 1 - uid: 594 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,15.5 parent: 1 - uid: 597 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,15.5 parent: 1 - uid: 606 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,15.5 parent: 1 - uid: 607 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,1.5 parent: 1 - uid: 609 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,-5.5 parent: 1 - uid: 610 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 11.5,-3.5 parent: 1 - uid: 617 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,-6.5 parent: 1 - uid: 623 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,-6.5 parent: 1 - uid: 625 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,-4.5 parent: 1 - uid: 627 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,15.5 parent: 1 - uid: 631 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,15.5 parent: 1 - uid: 638 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,13.5 parent: 1 - uid: 639 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,15.5 parent: 1 - uid: 641 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,14.5 parent: 1 - uid: 655 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,7.5 parent: 1 - uid: 709 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,-5.5 parent: 1 - uid: 718 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,-4.5 parent: 1 - uid: 731 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 11.5,0.5 parent: 1 - uid: 732 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -10.5,-3.5 parent: 1 - uid: 734 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,1.5 parent: 1 - uid: 735 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -10.5,0.5 parent: 1 - uid: 889 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,15.5 parent: 1 - uid: 903 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-8.5 parent: 1 - uid: 907 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-3.5 parent: 1 - uid: 908 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,0.5 parent: 1 - uid: 909 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,-3.5 parent: 1 - uid: 910 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,0.5 parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 1 + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 1 + - uid: 447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1 + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 1 + - uid: 535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 - proto: WallSolid entities: - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,4.5 parent: 1 - uid: 29 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,2.5 parent: 1 - uid: 30 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,2.5 parent: 1 - uid: 37 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,9.5 parent: 1 - uid: 40 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,9.5 parent: 1 - uid: 42 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,9.5 parent: 1 - uid: 43 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,9.5 parent: 1 - uid: 54 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,11.5 parent: 1 - uid: 55 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,10.5 parent: 1 - uid: 66 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,13.5 parent: 1 - uid: 71 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,2.5 parent: 1 - uid: 82 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,9.5 parent: 1 - uid: 101 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,2.5 parent: 1 - uid: 132 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,2.5 parent: 1 - uid: 133 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,2.5 parent: 1 - uid: 134 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,2.5 parent: 1 - uid: 135 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,2.5 parent: 1 - uid: 195 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,3.5 parent: 1 - uid: 224 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,2.5 parent: 1 - uid: 250 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,12.5 parent: 1 - uid: 261 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,4.5 parent: 1 - uid: 270 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 9.5,10.5 parent: 1 - uid: 279 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,10.5 parent: 1 - uid: 284 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,4.5 parent: 1 - uid: 290 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,11.5 parent: 1 - uid: 369 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 1 - uid: 384 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,9.5 parent: 1 - uid: 420 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,5.5 parent: 1 - uid: 421 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,4.5 parent: 1 - uid: 453 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,13.5 parent: 1 - uid: 572 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,10.5 parent: 1 - uid: 574 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 1 - uid: 589 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,7.5 parent: 1 - uid: 590 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,8.5 parent: 1 - uid: 605 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,9.5 parent: 1 - uid: 644 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,7.5 parent: 1 - uid: 656 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 parent: 1 - uid: 664 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 7.5,9.5 parent: 1 - uid: 665 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 1 - uid: 688 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,5.5 parent: 1 - uid: 810 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,13.5 parent: 1 - uid: 811 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,13.5 parent: 1 - uid: 814 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,13.5 parent: 1 - uid: 963 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,8.5 parent: 1 - uid: 964 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,7.5 parent: 1 -- proto: WallSolidDiagonal - entities: - - uid: 65 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 1 - - uid: 116 - components: - - type: Transform - pos: -4.5,16.5 - parent: 1 - - uid: 256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 1 - - uid: 263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-5.5 - parent: 1 - - uid: 276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,16.5 - parent: 1 - - uid: 288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 1 - - uid: 318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,0.5 - parent: 1 - - uid: 334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 1 - - uid: 431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 1 - - uid: 432 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 1 - - uid: 435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-6.5 - parent: 1 - - uid: 438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-6.5 - parent: 1 - - uid: 528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,0.5 - parent: 1 - - uid: 545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 1 - - uid: 549 - components: - - type: Transform - pos: 10.5,-3.5 - parent: 1 - - uid: 550 - components: - - type: Transform - pos: -10.5,1.5 - parent: 1 - - uid: 595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 - parent: 1 - - uid: 611 - components: - - type: Transform - pos: -9.5,15.5 - parent: 1 - - uid: 736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 1 - proto: WarpPointShip entities: - uid: 327 diff --git a/Resources/Maps/_NF/Shuttles/mcdelivery.yml b/Resources/Maps/_NF/Shuttles/mcdelivery.yml index aa371a6c091..7b36537e2a3 100644 --- a/Resources/Maps/_NF/Shuttles/mcdelivery.yml +++ b/Resources/Maps/_NF/Shuttles/mcdelivery.yml @@ -3,9 +3,9 @@ meta: postmapinit: false tilemap: 0: Space - 105: FloorTechMaint - 121: Lattice - 122: Plating + 107: FloorTechMaint + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -20,19 +20,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: aQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: awAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -174,10 +174,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 293.14993 moles: - - 23.57087 - - 88.67137 + - 21.6852 + - 81.57766 - 0 - 0 - 0 @@ -354,6 +354,40 @@ entities: parent: 1 - proto: ClosetWall entities: + - uid: 18 + components: + - type: MetaData + name: fuel wall closet + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 71 + - 68 - uid: 23 components: - type: Transform @@ -422,8 +456,6 @@ entities: entities: - uid: 89 components: - - type: MetaData - flags: InContainer - type: Transform parent: 23 - type: Physics @@ -456,21 +488,11 @@ entities: entities: - uid: 108 components: - - type: MetaData - flags: InContainer - type: Transform parent: 23 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FuelDispenser - entities: - - uid: 18 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 1 - proto: GasPassiveVent entities: - uid: 37 @@ -602,8 +624,17 @@ entities: - uid: 68 components: - type: Transform - pos: 1.4952204,3.0674624 - parent: 1 + parent: 18 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 71 + components: + - type: Transform + parent: 18 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: NoticeBoardNF entities: - uid: 96 @@ -624,16 +655,12 @@ entities: entities: - uid: 9 components: - - type: MetaData - flags: InContainer - type: Transform parent: 96 - type: Physics canCollide: False - uid: 39 components: - - type: MetaData - flags: InContainer - type: Transform parent: 96 - type: Physics @@ -667,8 +694,6 @@ entities: entities: - uid: 44 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,2.5 @@ -834,66 +859,48 @@ entities: entities: - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-0.5 parent: 1 - uid: 12 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,0.5 parent: 1 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,1.5 parent: 1 - uid: 15 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,2.5 parent: 1 - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,2.5 parent: 1 - uid: 66 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,3.5 parent: 1 - uid: 87 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-0.5 parent: 1 - uid: 107 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,3.5 parent: 1 @@ -944,8 +951,6 @@ entities: entities: - uid: 67 components: - - type: MetaData - flags: InContainer - type: Transform parent: 23 - type: Physics diff --git a/Resources/Maps/_NF/Shuttles/point.yml b/Resources/Maps/_NF/Shuttles/point.yml new file mode 100644 index 00000000000..0a89f62071b --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/point.yml @@ -0,0 +1,2425 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 20: FloorBrokenWood + 71: FloorOldConcrete + 72: FloorOldConcreteMono + 92: FloorSteel + 99: FloorSteelDirty + 108: FloorTechMaint2 + 121: FloorWood + 124: Lattice + 125: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.39584857,-0.47913614 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: YwAAAAAAfQAAAAAAYwAAAAAAeQAAAAACFAAAAAAEeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAFAAAAAAEFAAAAAAAeQAAAAACFAAAAAAERwAAAAACSAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAASAAAAAACRwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfAAAAAAAXAAAAAADfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAXAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABYwAAAAAAXAAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAXAAAAAAAYwAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#2B26EFFF' + id: Blasto + decals: + 138: 7,6 + - node: + color: '#EFB34196' + id: Delivery + decals: + 0: 4,10 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 156: 0,8 + 157: 3,9 + 158: 1,10 + 159: -1,10 + 160: 3,7 + 161: 2,0 + 162: 7,1 + 163: 0,1 + 164: 3,4 + 165: 0,3 + 166: 0,5 + 167: -3,4 + 168: -1,6 + 169: -3,7 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1: -2,2 + 2: -2,2 + 3: -3,4 + 4: -1,6 + 5: -3,6 + 6: -3,9 + 7: -1,3 + 8: -3,4 + 9: -2,5 + 10: 1,3 + 11: 1,3 + 12: 1,3 + 13: 2,3 + 14: 3,4 + 15: 3,4 + 16: 1,4 + 17: 1,4 + 18: 2,5 + 19: 2,5 + 20: 0,5 + 21: 0,5 + 22: -1,6 + 23: -1,6 + 24: 0,3 + 25: 0,3 + 26: -1,3 + 27: 2,1 + 28: 3,0 + 29: 3,1 + 30: 4,1 + 31: 4,0 + 32: 5,1 + 33: 7,1 + 34: 7,1 + 35: 7,1 + 36: 7,2 + 37: 7,2 + 38: 7,2 + 39: 7,3 + 40: 7,3 + 41: 7,3 + 42: 0,0 + 43: 0,0 + 44: 0,0 + 45: 0,1 + 46: 1,1 + 47: 1,1 + 48: -2,2 + 49: -3,4 + 50: -3,6 + 51: -3,4 + 52: 3,7 + 53: 2,8 + 54: 3,8 + 55: 2,9 + 56: 1,8 + 57: 0,8 + 58: -1,8 + 59: 1,8 + 60: 1,9 + 61: -1,10 + 62: -1,10 + 63: -1,10 + 64: -1,10 + 65: -1,10 + 66: -1,9 + 67: -1,9 + 68: -1,9 + 69: 0,9 + 70: 0,9 + 71: 1,9 + 72: 1,9 + 73: -2,8 + 74: -1,8 + 75: -1,8 + 76: -2,8 + 77: -2,8 + 78: 1,10 + 79: 1,10 + 80: 1,11 + 81: 1,11 + 82: 2,11 + 83: 2,11 + 84: 3,11 + 85: 3,11 + 86: 5,11 + 87: 5,11 + 88: 5,11 + 89: 5,10 + 90: 4,10 + 91: 3,10 + 92: 3,10 + 93: 3,10 + 94: 1,10 + 95: 3,9 + 96: 3,9 + 97: 4,10 + 98: 3,8 + 143: -3,7 + 144: -3,7 + 145: -3,7 + 146: 4,9 + 147: 4,9 + 148: 6,7 + 149: 4,9 + 150: 7,6 + 151: 8,9 + 152: 8,9 + 153: 8,9 + 154: 8,9 + 155: -3,9 + 173: 2,0 + 174: 2,0 + 175: 3,0 + 176: 4,0 + 177: 5,0 + 178: 5,1 + 179: 3,1 + 180: 3,1 + 181: 4,3 + 182: 4,3 + 183: 4,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 100: 1,9 + 101: 1,9 + 102: 3,9 + 103: 2,8 + 104: 3,8 + 105: 5,8 + 106: 4,7 + 107: 4,7 + 108: 3,7 + 109: 4,10 + 110: 5,10 + 111: 6,9 + 112: 6,10 + 113: 6,7 + 114: 6,7 + 115: 7,6 + 116: 7,6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 117: 7,6 + 118: 7,6 + 119: 0,1 + 120: 0,1 + 121: 1,1 + 122: 0,8 + 123: 0,8 + 124: 6,7 + 125: 6,7 + 126: 1,10 + 127: 0,10 + 128: 0,10 + 129: 3,7 + 130: 2,7 + 131: 3,4 + 132: 2,3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 99: 1,9 + 170: 2,0 + 171: 2,0 + 172: 2,0 + - node: + cleanable: True + zIndex: 1 + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: body + decals: + 137: 4,9 + - node: + cleanable: True + color: '#FF0000FF' + id: end + decals: + 140: 1,3 + - node: + cleanable: True + color: '#A400A4FF' + id: engie + decals: + 139: -3,9 + - node: + cleanable: True + color: '#00D8A4FF' + id: matt + decals: + 141: 4,1 + - node: + cleanable: True + color: '#FFD544FF' + id: space + decals: + 133: -2,2 + - node: + cleanable: True + zIndex: 1 + color: '#A72F22FF' + id: splatter + decals: + 134: 3.6155224,8.924981 + 135: 2.7821891,0.183514 + 136: -2.9261444,6.6046405 + - node: + cleanable: True + color: '#FFFF00FF' + id: stickman + decals: + 142: 2,9 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 4095 + 1: 61440 + -1,0: + 0: 10376 + 1: 50788 + 0,1: + 0: 65057 + 1: 478 + 0,2: + 0: 65535 + 1,0: + 0: 53247 + 1: 12288 + 1,1: + 0: 12556 + 1: 20096 + 1,2: + 0: 14199 + 1: 18560 + 2,0: + 0: 4369 + 2,1: + 0: 1 + -1,1: + 0: 49152 + 1: 11878 + -1,2: + 0: 36556 + 1: 16418 + 0,-1: + 0: 61440 + 1,-1: + 0: 12288 + 1: 49152 + 2,-1: + 1: 4096 + -1,-1: + 0: 32768 + 2,2: + 1: 16 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Sart +- proto: ActionToggleInternals + entities: + - uid: 157 + components: + - type: Transform + parent: 281 + - type: InstantAction + container: 281 +- proto: AirAlarm + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 115 + - 9 + - type: AtmosDevice + joinedGrid: 1 + - uid: 58 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 104 + - 116 + - 162 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirCanister + entities: + - uid: 45 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 30 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: AirlockScience + entities: + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 24 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 126 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 317 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 +- proto: Barricade + entities: + - uid: 94 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 40 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 +- proto: BodyBag_Container + entities: + - uid: 252 + components: + - type: Transform + pos: 3.4712796,0.6513945 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 253 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: BookScientistsGuidebook + entities: + - uid: 368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4660971,1.5004066 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 73 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 +- proto: CableHV + entities: + - uid: 10 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 +- proto: CableMV + entities: + - uid: 65 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 +- proto: Chair + entities: + - uid: 284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 +- proto: ChairWood + entities: + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 +- proto: CheapLighter + entities: + - uid: 290 + components: + - type: Transform + pos: -2.7898164,9.651578 + parent: 1 +- proto: Cigarette + entities: + - uid: 289 + components: + - type: Transform + pos: -2.7064831,7.337471 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.445035,7.195218 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -2.663785,7.799804 + parent: 1 + - uid: 287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.6429517,6.6219034 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -2.2679517,9.0194025 + parent: 1 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 51 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClothingNeckTieSci + entities: + - uid: 336 + components: + - type: Transform + pos: 7.4790473,10.461315 + parent: 1 +- proto: ClothingOuterSuitEmergency + entities: + - uid: 369 + components: + - type: Transform + pos: 7.397304,2.560028 + parent: 1 +- proto: ComputerAnalysisConsole + entities: + - uid: 103 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 231: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerBroken + entities: + - uid: 164 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 +- proto: ComputerTabletopResearchAndDevelopment + entities: + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 155 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 165 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 +- proto: Crowbar + entities: + - uid: 105 + components: + - type: Transform + pos: 0.45313817,0.59860456 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 318 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 281 + components: + - type: Transform + pos: 6.5197377,7.444345 + parent: 1 + - type: GasTank + toggleActionEntity: 157 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 157 +- proto: EmptyFlashlightLantern + entities: + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.58694,6.174316 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 28 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 +- proto: filingCabinet + entities: + - uid: 279 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 +- proto: FireExtinguisher + entities: + - uid: 370 + components: + - type: Transform + pos: 1.845387,8.479412 + parent: 1 +- proto: Firelock + entities: + - uid: 104 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 58 +- proto: FirelockEdge + entities: + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 +- proto: FirelockFrame + entities: + - uid: 11 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 +- proto: FoodPizzaMoldySlice + entities: + - uid: 366 + components: + - type: Transform + pos: -2.670964,4.43563 + parent: 1 +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 82 + components: + - type: Transform + pos: 3.698707,0.64521134 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 86 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 78 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 152 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 170 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 32 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 37 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 87 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 114 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 176 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 130 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 60 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 4 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 58 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 4 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 58 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 88 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 +- proto: Grille + entities: + - uid: 21 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 23 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 89 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: InflatableDoor + entities: + - uid: 43 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 +- proto: InflatableWall + entities: + - uid: 20 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 106 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 +- proto: MachineArtifactAnalyzer + entities: + - uid: 231 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - type: DeviceLinkSink + links: + - 103 +- proto: MachineFrameDestroyed + entities: + - uid: 258 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 +- proto: Mattress + entities: + - uid: 108 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: Multitool + entities: + - uid: 203 + components: + - type: Transform + pos: 4.4798985,8.524179 + parent: 1 + - type: NetworkConfigurator + linkModeActive: False +- proto: PillSpaceDrugs + entities: + - uid: 254 + components: + - type: Transform + pos: 0.7276165,5.244207 + parent: 1 +- proto: PortableGeneratorPacmanShuttle + entities: + - uid: 70 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static + - uid: 204 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: PosterBroken + entities: + - uid: 243 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 +- proto: PosterContrabandEAT + entities: + - uid: 244 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 +- proto: PosterContrabandHackingGuide + entities: + - uid: 246 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 365 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 +- proto: PosterLegitBlessThisSpess + entities: + - uid: 313 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 310 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 +- proto: PosterLegitScience + entities: + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 +- proto: Rack + entities: + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 1 +- proto: RandomFoodSingle + entities: + - uid: 314 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 110 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 +- proto: Screwdriver + entities: + - uid: 293 + components: + - type: Transform + pos: 0.037991375,6.179231 + parent: 1 +- proto: ShardGlass + entities: + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.42074257,1.4573795 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.203095,1.9052962 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.9700627,9.415728 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.39222676,3.4718883 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 0.7568101,5.650483 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4098566,6.703298 + parent: 1 +- proto: SheetPlasma + entities: + - uid: 260 + components: + - type: Transform + pos: 4.510438,8.501066 + parent: 1 + - type: Stack + count: 15 + - type: Item + size: 15 +- proto: SheetPlasma1 + entities: + - uid: 253 + components: + - type: Transform + parent: 252 + - type: Stack + count: 10 + - type: Item + size: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 259 + components: + - type: Transform + pos: -0.5031796,10.492655 + parent: 1 + - type: Stack + count: 5 + - type: Item + size: 5 +- proto: SignScience + entities: + - uid: 364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 +- proto: SignShipDock + entities: + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 +- proto: Spaceshroom + entities: + - uid: 256 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 263 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 55 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 +- proto: Table + entities: + - uid: 194 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 +- proto: TableCounterMetal + entities: + - uid: 166 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 +- proto: TableWood + entities: + - uid: 25 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,9.5 + parent: 1 +- proto: Thruster + entities: + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 +- proto: WallSolidDiagonal + entities: + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 +- proto: WallSolidRust + entities: + - uid: 3 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 +- proto: WallWood + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 +- proto: WarningAir + entities: + - uid: 367 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 264 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 +- proto: Window + entities: + - uid: 15 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 +- proto: WindowDirectional + entities: + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 1 +- proto: WoodDoor + entities: + - uid: 307 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 +- proto: Wrench + entities: + - uid: 251 + components: + - type: Transform + pos: 4.397346,8.525743 + parent: 1 +... diff --git a/Resources/Prototypes/Access/misc.yml b/Resources/Prototypes/Access/misc.yml index 81ff4fcf5d5..7c88b3183a1 100644 --- a/Resources/Prototypes/Access/misc.yml +++ b/Resources/Prototypes/Access/misc.yml @@ -17,6 +17,7 @@ - Brig - Lawyer - Engineering + - Mail # Frontier - Medical - Mercenary # Frontier - Pilot # Frontier diff --git a/Resources/Prototypes/Catalog/Fills/Crates/engines.yml b/Resources/Prototypes/Catalog/Fills/Crates/engines.yml index 315c4dda2c1..19a813a16ab 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/engines.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/engines.yml @@ -30,7 +30,7 @@ components: - type: StorageFill contents: - - id: AmeControllerUnanchored + - id: AmeControllerUnanchoredFlatpack # Frontier - AmeControllerUnanchored to AmeControllerUnanchoredFlatpack # Singularity @@ -52,7 +52,7 @@ components: - type: StorageFill contents: - - id: RadiationCollectorFullTank + - id: RadiationCollectorFullTankFlatpack # Frontier - RadiationCollectorFullTank to RadiationCollectorFullTankFlatpack - type: entity id: CrateEngineeringSingularityContainment diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml index d040d305777..0bccf796b29 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml @@ -8,9 +8,9 @@ MagazineBoxLightRiflePractice: 15 MagazineBoxLightRifleRubber: 15 WeaponShotgunDoubleBarreled: 15 + BoxShotgunSlug: 15 BoxLethalshot: 15 BoxBeanbag: 15 - BoxShellTranquilizer: 15 BoxShotgunPractice: 15 WeaponRevolverArgenti: 15 MagazineBoxRifle: 15 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml index 292d93ab452..0c11ae10c2e 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml @@ -11,3 +11,5 @@ GeigerCounter: 10 # Frontier PowerCellMedium: 15 # NetworkConfigurator: 15 + ShipyardRCD: 10 + ShipyardRCDAmmo: 20 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml index 92b23af20ac..58963623b58 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml @@ -3,6 +3,8 @@ startingInventory: # EmergencyOxygenTankFilled: 5 # ExtendedEmergencyOxygenTankFilled: 5 + AirTankFilled: 10 + DoubleEmergencyAirTankFilled: 10 OxygenTankFilled: 10 DoubleEmergencyOxygenTankFilled: 10 # EmergencyNitrogenTankFilled: 5 @@ -16,5 +18,6 @@ PlasmaTankFilled: 10 OxygenTankFilled: 10 emaggedInventory: + DoubleEmergencyAirTankFilled: 1 DoubleEmergencyOxygenTankFilled: 1 DoubleEmergencyNitrogenTankFilled: 1 diff --git a/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml b/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml new file mode 100644 index 00000000000..2d47ecd352d --- /dev/null +++ b/Resources/Prototypes/DeltaV/Body/Organs/harpy.yml @@ -0,0 +1,34 @@ +- type: entity + id: OrganHarpyLungs + parent: BaseHumanOrgan + name: lungs + description: "An advanced pair of avian lungs. Filters oxygen by way of moving air constantly through air sacs." + components: + - type: Sprite + layers: + - state: lung-l + - state: lung-r + - type: Lung + - type: Metabolizer + updateFrequency: 2.0 + removeEmpty: true + solutionOnBody: false + solution: "Lung" + metabolizerTypes: [ Human ] + groups: + - id: Gas + rateModifier: 200.0 + - type: SolutionContainerManager + solutions: + organ: + reagents: + - ReagentId: Nutriment + Quantity: 10 + Lung: + maxVol: 100.0 + canReact: false + food: + maxVol: 5 + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 5 diff --git a/Resources/Prototypes/DeltaV/Body/Parts/harpy.yml b/Resources/Prototypes/DeltaV/Body/Parts/harpy.yml new file mode 100644 index 00000000000..358cb1de11f --- /dev/null +++ b/Resources/Prototypes/DeltaV/Body/Parts/harpy.yml @@ -0,0 +1,186 @@ +- type: entity + id: PartHarpy + parent: BaseItem + name: "harpy body part" + abstract: true + components: + - type: Damageable + damageContainer: Biological + - type: BodyPart + - type: ContainerContainer + containers: + bodypart: !type:Container + ents: [] + - type: StaticPrice #DynamicPrice + price: 100 + - type: Tag + tags: + - Trash + +- type: entity + id: TorsoHarpy + name: "harpy torso" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "torso_m" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "torso_m" + - type: BodyPart + partType: Torso + +- type: entity + id: HeadHarpy + name: "harpy head" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "head_m" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "head_m" + - type: BodyPart + partType: Head + vital: true + - type: Input + context: "ghost" + - type: InputMover + - type: GhostOnMove + - type: Tag + tags: + - Head + +- type: entity + id: LeftArmHarpy + name: "left harpy arm" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_arm" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_arm" + - type: BodyPart + partType: Arm + symmetry: Left + +- type: entity + id: RightArmHarpy + name: "right harpy arm" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_arm" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_arm" + - type: BodyPart + partType: Arm + symmetry: Right + +- type: entity + id: LeftHandHarpy + name: "left harpy hand" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_hand" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_hand" + - type: BodyPart + partType: Hand + symmetry: Left + +- type: entity + id: RightHandHarpy + name: "right harpy hand" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_hand" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_hand" + - type: BodyPart + partType: Hand + symmetry: Right + +- type: entity + id: LeftLegHarpy + name: "left harpy leg" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_leg" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_leg" + - type: BodyPart + partType: Leg + symmetry: Left + - type: MovementBodyPart + +- type: entity + id: RightLegHarpy + name: "right harpy leg" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_leg" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_leg" + - type: BodyPart + partType: Leg + symmetry: Right + - type: MovementBodyPart + +- type: entity + id: LeftFootHarpy + name: "left harpy foot" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_foot" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "l_foot" + - type: BodyPart + partType: Foot + symmetry: Left + +- type: entity + id: RightFootHarpy + name: "right harpy foot" + parent: PartHarpy + components: + - type: Sprite + netsync: false + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_foot" + - type: Icon + sprite: DeltaV/Mobs/Species/Harpy/parts.rsi + state: "r_foot" + - type: BodyPart + partType: Foot + symmetry: Right diff --git a/Resources/Prototypes/DeltaV/Body/Prototypes/harpy.yml b/Resources/Prototypes/DeltaV/Body/Prototypes/harpy.yml new file mode 100644 index 00000000000..5b3615c55d8 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Body/Prototypes/harpy.yml @@ -0,0 +1,50 @@ +- type: body + id: Harpy + name: "harpy" + root: torso + slots: + head: + part: HeadHarpy + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoHarpy + connections: + - left arm + - right arm + - left leg + - right leg + organs: + heart: OrganHumanHeart + lungs: OrganHarpyLungs + stomach: OrganAnimalStomach + liver: OrganAnimalLiver + kidneys: OrganAnimalKidneys + right arm: + part: RightArmHarpy + connections: + - right hand + left arm: + part: LeftArmHarpy + connections: + - left hand + right hand: + part: RightHandHarpy + left hand: + part: LeftHandHarpy + right leg: + part: RightLegHarpy + connections: + - right foot + left leg: + part: LeftLegHarpy + connections: + - left foot + right foot: + part: RightFootHarpy + left foot: + part: LeftFootHarpy + diff --git a/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml b/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml index 3df356598e2..2622c518e1d 100644 --- a/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml +++ b/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml @@ -4,3 +4,10 @@ Cold: 0.8 Heat: 1.3 Poison: 0.9 + +- type: damageModifierSet + id: Harpy + coefficients: + Blunt: 1.15 + Slash: 1.15 + Piercing: 1.15 diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/harpy.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/harpy.yml new file mode 100644 index 00000000000..9118692a082 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/harpy.yml @@ -0,0 +1,229 @@ +# All the Harpy customization + +# Ears Markings +- type: marking + id: HarpyWingDefault + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpy + +- type: marking + id: HarpyWingClassic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: classicharpy + +- type: marking + id: HarpyWingFolded + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpyfolded + +- type: marking + id: HarpyEarsDefault + bodyPart: Head + markingCategory: HeadTop + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_ears.rsi + state: harpy_ears_default + +- type: marking + id: HarpyTailPhoenix + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_tails.rsi + state: phoenix_tail + +- type: marking + id: HarpyTailRooster + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_tails.rsi + state: rooster_tail + + +- type: marking + id: HarpyTailFinch + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_tailsx72.rsi + state: finch_tail + +- type: marking + id: HarpyWing2ToneClassic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpy2tone1 + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpy2tone2 + +- type: marking + id: HarpyWing3ToneClassic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpy3tone1 + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpy3tone2 + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpy3tone3 + +- type: marking + id: HarpyWingSpeckledClassic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpyspeckled1 + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpyspeckled2 + +- type: marking + id: HarpyWingUndertoneClassic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpyundertone1 + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpyundertone2 + +- type: marking + id: HarpyWingTipsClassic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Harpy] + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpywingtip1 + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_wings.rsi + state: harpywingtip2 + +- type: marking + id: HarpyChestDefault + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_chest.rsi + state: upper + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_chest.rsi + state: lower + +- type: marking + id: HarpyLegsDefault + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Harpy] + coloring: + default: + type: + !type:CategoryColoring + category: Hair + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_legs.rsi + state: thighs + +- type: marking + id: HarpyFeetDefault + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [Harpy] + coloring: + default: + fallbackTypes: + - !type:SimpleColoring + color: "#964b00" + sprites: + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_legs.rsi + state: feet + - sprite: DeltaV/Mobs/Customization/Harpy/harpy_legs.rsi + state: talons diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml new file mode 100644 index 00000000000..e2541def035 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/harpy.yml @@ -0,0 +1,28 @@ +- type: entity + save: false + name: Urist McHarpy + parent: MobHarpyBase + id: MobHarpy + components: + - type: CombatMode + - type: InteractionPopup + successChance: 1 + interactSuccessString: hugging-success-generic + interactSuccessSound: /Audio/Effects/thudswoosh.ogg + messagePerceivedByOthers: hugging-success-generic-others + - type: MindContainer + showExamineInfo: true + - type: Input + context: "human" + - type: MobMover + - type: InputMover + - type: Respirator + - type: Alerts + - type: Actions + - type: Eye + - type: CameraRecoil + - type: Examiner + - type: CanHostGuardian + - type: NpcFactionMember + factions: + - NanoTrasen diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml new file mode 100644 index 00000000000..a4498299c9a --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml @@ -0,0 +1,207 @@ +- type: entity + save: false + name: Urist McHarpy + parent: BaseMobHuman + id: MobHarpyBase + abstract: true + components: + - type: HarpySinger + - type: Instrument + allowPercussion: false + program: 52 + - type: SwappableInstrument + instrumentList: + "Voice": {52: 0} + "Trumpet": {56: 0} + "Electric": {27: 0} + "Bass": {33: 0} + "Rock": {29: 0} + "Acoustic": {24: 0} + "Flute": {73: 0} + "Sax": {66: 0} + - type: UserInterface + interfaces: + - key: enum.InstrumentUiKey.Key + type: InstrumentBoundUserInterface + - key: enum.VoiceMaskUIKey.Key + type: VoiceMaskBoundUserInterface + - key: enum.HumanoidMarkingModifierKey.Key + type: HumanoidMarkingModifierBoundUserInterface + - key: enum.StrippingUiKey.Key + type: StrippableBoundUserInterface + - type: Sprite + scale: 0.9, 0.9 + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + - map: [ "underpants" ] + - map: [ "undershirt" ] + - map: [ "socks" ] + - map: [ "jumpsuit" ] + - map: ["enum.HumanoidVisualLayers.LFoot"] + - map: ["enum.HumanoidVisualLayers.RFoot"] + - map: ["enum.HumanoidVisualLayers.LHand"] + - map: ["enum.HumanoidVisualLayers.RHand"] + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - map: [ "id" ] + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: [ "clownedon" ] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_human" + visible: false +# Yes, RArm has to be down here + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "singingLayer" ] + sprite: DeltaV/Effects/harpysinger.rsi + state: singing_music_notes + visible: false + - type: HumanoidAppearance + species: Harpy + - type: Fixtures + fixtures: # TODO: This needs a second fixture just for mob collisions. + fix1: + shape: + !type:PhysShapeCircle + radius: 0.32 + density: 90 + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer + - type: Body + prototype: Harpy + - type: Damageable + damageModifierSet: Harpy + - type: MeleeWeapon + soundHit: + collection: AlienClaw + animation: WeaponArcClaw + damage: + types: + Piercing: 5 + - type: Speech + speechSounds: Harpy + speechVerb: Harpy + - type: Vocal + sounds: + Male: SoundsHarpy + Female: SoundsHarpy + Unsexed: SoundsHarpy + - type: GenericVisualizer + visuals: + enum.HarpyVisualLayers.Singing: + singingLayer: + False: {visible: false} + True: {visible: true} + - type: MovementSpeedModifier + baseWalkSpeed: 2.5 + baseSprintSpeed: 5.0 + - type: Inventory + speciesId: harpy + templateId: digitigrade + - type: HarpyVisuals + - type: UltraVision + +- type: entity + save: false + name: Urist McHands + parent: MobHumanDummy + id: MobHarpyDummy + noSpawn: true + description: A dummy Harpy meant to be used in character setup. + components: + - type: HumanoidAppearance + species: Harpy + - type: Inventory + speciesId: harpy + - type: Sprite + scale: 0.9, 0.9 + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + - map: [ "underpants" ] + - map: [ "undershirt" ] + - map: [ "socks" ] + - map: [ "jumpsuit" ] + - map: ["enum.HumanoidVisualLayers.LFoot"] + - map: ["enum.HumanoidVisualLayers.RFoot"] + - map: ["enum.HumanoidVisualLayers.LHand"] + - map: ["enum.HumanoidVisualLayers.RHand"] + - map: [ "id" ] + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: [ "clownedon" ] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_human" + visible: false +# Yes, RArm has to be down here + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "mask" ] + - map: [ "head" ] + +- type: entity + id: ActionHarpyPlayMidi + name: Play MIDI + description: Sing your heart out! Right click yourself to set an instrument. + noSpawn: true + components: + - type: InstantAction + checkCanInteract: false + icon: DeltaV/Interface/Actions/harpy_sing.png + event: !type:OpenUiActionEvent + key: enum.InstrumentUiKey.Key + +- type: entity + id: ActionSyrinxChangeVoiceMask + name: Set name + description: Change the name others hear to something else. + noSpawn: true + components: + - type: InstantAction + icon: DeltaV/Interface/Actions/harpy_syrinx.png + itemIconStyle: BigAction + event: !type:VoiceMaskSetNameEvent diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/implanters.yml new file mode 100644 index 00000000000..9849642f939 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/implanters.yml @@ -0,0 +1,7 @@ +- type: entity + id: BionicSyrinxImplanter + name: bionic syrinx implanter + parent: BaseImplantOnlyImplanterSyndi + components: + - type: Implanter + implant: BionicSyrinxImplant diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml new file mode 100644 index 00000000000..93a9641f7be --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Misc/subdermal_implants.yml @@ -0,0 +1,17 @@ +- type: entity + parent: BaseSubdermalImplant + id: BionicSyrinxImplant + name: bionic syrinx implant + description: This implant lets a harpy adjust their voice to whoever they can think of. + noSpawn: true + components: + - type: SubdermalImplant + implantAction: ActionSyrinxChangeVoiceMask + whitelist: + components: + - HarpySinger + - type: VoiceMasker + - type: Tag + tags: + - SubdermalImplant + - BionicSyrinxImplant diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml index dd5c09c4d0a..fb0895f62cb 100644 --- a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Windoors/windoor.yml @@ -4,7 +4,7 @@ suffix: Mail, Locked components: - type: AccessReader - access: [["Service"]] + access: [["Mail"]] # Frontier - Service