diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs
index acc375b8b11..e096a6906f8 100644
--- a/Content.Server/Chat/Systems/ChatSystem.cs
+++ b/Content.Server/Chat/Systems/ChatSystem.cs
@@ -30,6 +30,10 @@
using Robust.Shared.Random;
using Robust.Shared.Replays;
using Robust.Shared.Utility;
+using Content.Shared.Inventory;
+using Content.Shared.Hands.EntitySystems;
+using Content.Server.PowerCell;
+using Content.Server.VulpLangauge;
namespace Content.Server.Chat.Systems;
@@ -53,6 +57,9 @@ public sealed partial class ChatSystem : SharedChatSystem
[Dependency] private readonly MobStateSystem _mobStateSystem = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly SharedInteractionSystem _interactionSystem = default!;
+ [Dependency] private readonly InventorySystem _inventorySystem = default!;
+ [Dependency] private readonly SharedHandsSystem _handsSystem = default!;
+ [Dependency] private readonly PowerCellSystem _cell = default!;
public const int VoiceRange = 10; // how far voice goes in world units
public const int WhisperClearRange = 2; // how far whisper goes while still being understandable, in world units
@@ -388,9 +395,24 @@ private void SendEntitySpeak(
("fontSize", speech.FontSize),
("message", FormattedMessage.EscapeText(message)));
- SendInVoiceRange(ChatChannel.Local, message, wrappedMessage, source, range);
+ var Canilunzt = false;
+ var CanilunztMessage = "";
+ var CanilunztwrappedMessage = "";
+ if (IsCanilunztSpeaker(source) && !HasCanilunztTranslator(source))
+ {
+ Canilunzt = true;
+ CanilunztMessage = MessagetoCanilunzt(message);
+ CanilunztwrappedMessage = Loc.GetString(speech.Bold ? "chat-manager-entity-say-bold-wrap-message" : "chat-manager-entity-say-wrap-message",
+ ("entityName", name),
+ ("verb", Loc.GetString(_random.Pick(speech.SpeechVerbStrings))),
+ ("fontType", speech.FontId),
+ ("fontSize", speech.FontSize),
+ ("message", FormattedMessage.EscapeText(CanilunztMessage)));
+ }
- var ev = new EntitySpokeEvent(source, message, null, null);
+ SendInVoiceRange(ChatChannel.Local, message, wrappedMessage, source, range, Canilunzt, CanilunztMessage, CanilunztwrappedMessage);
+
+ var ev = new EntitySpokeEvent(source, message, null, null, Canilunzt);
RaiseLocalEvent(source, ev, true);
// To avoid logging any messages sent by entities that are not players, like vendors, cloning, etc.
@@ -461,6 +483,27 @@ private void SendEntityWhisper(
var wrappedUnknownMessage = Loc.GetString("chat-manager-entity-whisper-unknown-wrap-message",
("message", FormattedMessage.EscapeText(obfuscatedMessage)));
+ var canilunzt = false;
+ var canilunztmessage = "";
+ var canilunztobfuscatedMessage = "";
+ var canilunztwrappedMessage = "";
+ var canilunztwrappedobfuscatedMessage = "";
+ var canilunztwrappedUnknownMessage = "";
+ if (IsCanilunztSpeaker(source) && !HasCanilunztTranslator(source))
+ {
+ canilunzt = true;
+ canilunztmessage = MessagetoCanilunzt(message);
+ canilunztobfuscatedMessage = ObfuscateMessageReadability(canilunztmessage, 0.2f);
+ canilunztwrappedMessage = Loc.GetString("chat-manager-entity-whisper-wrap-message",
+ ("entityName", name), ("message", FormattedMessage.EscapeText(canilunztmessage)));
+
+ canilunztwrappedobfuscatedMessage = Loc.GetString("chat-manager-entity-whisper-wrap-message",
+ ("entityName", nameIdentity), ("message", FormattedMessage.EscapeText(canilunztobfuscatedMessage)));
+
+ canilunztwrappedUnknownMessage = Loc.GetString("chat-manager-entity-whisper-unknown-wrap-message",
+ ("message", FormattedMessage.EscapeText(canilunztobfuscatedMessage)));
+ }
+
foreach (var (session, data) in GetRecipients(source, WhisperMuffledRange))
{
@@ -473,6 +516,15 @@ private void SendEntityWhisper(
if (MessageRangeCheck(session, data, range) != MessageRangeCheckResult.Full)
continue; // Won't get logged to chat, and ghosts are too far away to see the pop-up, so we just won't send it to them.
+ if (canilunzt && !IsCanilunztListener(listener))
+ {
+ message = canilunztmessage;
+ obfuscatedMessage = canilunztobfuscatedMessage;
+ wrappedMessage = canilunztwrappedMessage;
+ wrappedobfuscatedMessage = canilunztwrappedobfuscatedMessage;
+ wrappedUnknownMessage = canilunztwrappedUnknownMessage;
+ }
+
if (data.Range <= WhisperClearRange)
_chatManager.ChatMessageToOne(ChatChannel.Whisper, message, wrappedMessage, source, false, session.ConnectedClient);
//If listener is too far, they only hear fragments of the message
@@ -486,8 +538,9 @@ private void SendEntityWhisper(
_replay.RecordServerMessage(new ChatMessage(ChatChannel.Whisper, message, wrappedMessage, GetNetEntity(source), MessageRangeHideChatForReplay(range)));
- var ev = new EntitySpokeEvent(source, message, channel, obfuscatedMessage);
+ var ev = new EntitySpokeEvent(source, message, channel, obfuscatedMessage, canilunzt);
RaiseLocalEvent(source, ev, true);
+
if (!hideLog)
if (originalMessage == message)
{
@@ -532,7 +585,7 @@ private void SendEntityEmote(
if (checkEmote)
TryEmoteChatInput(source, action);
- SendInVoiceRange(ChatChannel.Emotes, action, wrappedMessage, source, range);
+ SendInVoiceRange(ChatChannel.Emotes, action, wrappedMessage, source, range, false, "", "");
if (!hideLog)
if (name != Name(source))
_adminLogger.Add(LogType.Chat, LogImpact.Low, $"Emote from {ToPrettyString(source):user} as {name}: {action}");
@@ -559,7 +612,7 @@ private void SendLOOC(EntityUid source, IPlayerSession player, string message, b
("entityName", name),
("message", FormattedMessage.EscapeText(message)));
- SendInVoiceRange(ChatChannel.LOOC, message, wrappedMessage, source, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal);
+ SendInVoiceRange(ChatChannel.LOOC, message, wrappedMessage, source, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal, false, "", "");
_adminLogger.Add(LogType.Chat, LogImpact.Low, $"LOOC from {player:Player}: {message}");
}
@@ -640,7 +693,7 @@ private MessageRangeCheckResult MessageRangeCheck(ICommonSession session, ICChat
///
/// Sends a chat message to the given players in range of the source entity.
///
- private void SendInVoiceRange(ChatChannel channel, string message, string wrappedMessage, EntityUid source, ChatTransmitRange range)
+ private void SendInVoiceRange(ChatChannel channel, string message, string wrappedMessage, EntityUid source, ChatTransmitRange range, bool Canilunzt, string CanilunztMessage, string CanilunztwrappedMessage)
{
foreach (var (session, data) in GetRecipients(source, VoiceRange))
{
@@ -648,6 +701,19 @@ private void SendInVoiceRange(ChatChannel channel, string message, string wrappe
if (entRange == MessageRangeCheckResult.Disallowed)
continue;
var entHideChat = entRange == MessageRangeCheckResult.HideChat;
+
+ EntityUid listener;
+
+ if (session.AttachedEntity is not { Valid: true } playerEntity)
+ continue;
+ listener = session.AttachedEntity.Value;
+
+ if (Canilunzt && !IsCanilunztListener(listener))
+ {
+ message = CanilunztMessage;
+ wrappedMessage = CanilunztwrappedMessage;
+ }
+
_chatManager.ChatMessageToOne(channel, message, wrappedMessage, source, entHideChat, session.ConnectedClient);
}
@@ -797,6 +863,85 @@ private string ObfuscateMessageReadability(string message, float chance)
return modifiedMessage.ToString();
}
+ private static readonly IReadOnlyList CanilunztSyllables = new List{
+ "rur","ya","cen","rawr","bar","kuk","tek","qat","uk","wu","vuh","tah","tch","schz","auch","ist","ein","entch","zwichs","tut","mir","wo","bis","es","vor","nic","gro","lll","enem","zandt","tzch","noch","hel","ischt","far","wa","baram","iereng","tech","lach","sam","mak","lich","gen","or","ag","eck","gec","stag","onn","bin","ket","jarl","vulf","einech","cresthz","azunein","ghzth"
+ }.AsReadOnly();
+
+ public string MessagetoCanilunzt(string message)
+ {
+ var msg = message;
+ var words = message.Split();
+ var accentedMessage = new StringBuilder(message.Length + 2);
+ for (var i = 0; i < words.Length; i++)
+ {
+ accentedMessage.Append(_random.Pick(CanilunztSyllables));
+ if (i < words.Length - 1)
+ accentedMessage.Append(' ');
+ }
+ accentedMessage.Append('.');
+ msg = accentedMessage.ToString();
+
+ return msg;
+ }
+
+ public bool IsCanilunztSpeaker(EntityUid source)
+ {
+ if (HasComp(source))
+ {
+ return true;
+ }
+ return false;
+ }
+
+ public bool IsCanilunztListener(EntityUid source)
+ {
+ if (HasComp(source) || HasComp(source))
+ {
+ return true;
+ }
+ return false;
+ }
+
+ private bool CheckItemForCanilunztTranslator(EntityUid source)
+ {
+ if (HasComp(source))
+ {
+ if (_cell.TryUseActivatableCharge(source))
+ {
+ return true;
+ }
+ }
+ return false;
+ }
+
+ public bool HasCanilunztTranslator(EntityUid source)
+ {
+ foreach (var item in _handsSystem.EnumerateHeld(source))
+ {
+ if (CheckItemForCanilunztTranslator(item))
+ {
+ return true;
+ }
+ }
+
+ if (_inventorySystem.TryGetSlotEntity(source, "pocket1", out var item2))
+ {
+ if (item2 is { Valid : true } stationUid && CheckItemForCanilunztTranslator(stationUid))
+ {
+ return true;
+ }
+ }
+ else if (_inventorySystem.TryGetSlotEntity(source, "pocket2", out var item3))
+ {
+ if (item3 is { Valid : true } stationUid && CheckItemForCanilunztTranslator(stationUid))
+ {
+ return true;
+ }
+ }
+
+ return false;
+ }
+
#endregion
}
@@ -843,6 +988,7 @@ public sealed class EntitySpokeEvent : EntityEventArgs
public readonly EntityUid Source;
public readonly string Message;
public readonly string? ObfuscatedMessage; // not null if this was a whisper
+ public readonly bool Canilunzt; // If is a Canilunzt Message
///
/// If the entity was trying to speak into a radio, this was the channel they were trying to access. If a radio
@@ -850,12 +996,13 @@ public sealed class EntitySpokeEvent : EntityEventArgs
///
public RadioChannelPrototype? Channel;
- public EntitySpokeEvent(EntityUid source, string message, RadioChannelPrototype? channel, string? obfuscatedMessage)
+ public EntitySpokeEvent(EntityUid source, string message, RadioChannelPrototype? channel, string? obfuscatedMessage, bool canilunzt)
{
Source = source;
Message = message;
Channel = channel;
ObfuscatedMessage = obfuscatedMessage;
+ Canilunzt = canilunzt;
}
}
diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs
index 569417f1414..0bca0d80f67 100644
--- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs
+++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs
@@ -23,6 +23,7 @@
using Content.Shared.Mobs;
using Content.Shared.Mobs.Components;
using Content.Shared.Weapons.Ranged.Events;
+using Content.Server.Station.Systems;
namespace Content.Server.Explosion.EntitySystems
{
@@ -61,6 +62,7 @@ public sealed partial class TriggerSystem : EntitySystem
[Dependency] private readonly SharedTransformSystem _transformSystem = default!;
[Dependency] private readonly RadioSystem _radioSystem = default!;
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
+ [Dependency] private readonly StationSystem _station = default!;
public override void Initialize()
{
@@ -167,8 +169,21 @@ private void HandleRattleTrigger(EntityUid uid, RattleComponent component, Trigg
var y = (int) pos.Y;
var posText = $"({x}, {y})";
- var critMessage = Loc.GetString(component.CritMessage, ("user", implanted.ImplantedEntity.Value), ("position", posText));
- var deathMessage = Loc.GetString(component.DeathMessage, ("user", implanted.ImplantedEntity.Value), ("position", posText));
+ // Gets station location of the implant
+ var station = _station.GetOwningStation(uid);
+ var stationName = station is null ? null : Name(station.Value);
+
+ if (!(stationName == null))
+ {
+ stationName += " ";
+ }
+ else
+ {
+ stationName = "";
+ }
+
+ var critMessage = Loc.GetString(component.CritMessage, ("user", implanted.ImplantedEntity.Value), ("grid", stationName!), ("position", posText));
+ var deathMessage = Loc.GetString(component.DeathMessage, ("user", implanted.ImplantedEntity.Value), ("grid", stationName!), ("position", posText));
if (!TryComp(implanted.ImplantedEntity, out var mobstate))
return;
diff --git a/Content.Server/Radio/EntitySystems/HeadsetSystem.cs b/Content.Server/Radio/EntitySystems/HeadsetSystem.cs
index 436149f0768..da6cd34581d 100644
--- a/Content.Server/Radio/EntitySystems/HeadsetSystem.cs
+++ b/Content.Server/Radio/EntitySystems/HeadsetSystem.cs
@@ -48,6 +48,10 @@ private void UpdateRadioChannels(EntityUid uid, HeadsetComponent headset, Encryp
private void OnSpeak(EntityUid uid, WearingHeadsetComponent component, EntitySpokeEvent args)
{
+ if (args.Canilunzt)
+ {
+ return;
+ }
if (args.Channel != null
&& TryComp(component.Headset, out EncryptionKeyHolderComponent? keys)
&& keys.Channels.Contains(args.Channel.ID))
diff --git a/Content.Server/Radio/EntitySystems/RadioSystem.cs b/Content.Server/Radio/EntitySystems/RadioSystem.cs
index c4f66a0cd9c..30ac294df10 100644
--- a/Content.Server/Radio/EntitySystems/RadioSystem.cs
+++ b/Content.Server/Radio/EntitySystems/RadioSystem.cs
@@ -41,6 +41,10 @@ public override void Initialize()
private void OnIntrinsicSpeak(EntityUid uid, IntrinsicRadioTransmitterComponent component, EntitySpokeEvent args)
{
+ if (args.Canilunzt)
+ {
+ return;
+ }
if (args.Channel != null && component.Channels.Contains(args.Channel.ID))
{
SendRadioMessage(uid, args.Message, args.Channel, uid);
diff --git a/Content.Server/Speech/EntitySystems/ListeningSystem.cs b/Content.Server/Speech/EntitySystems/ListeningSystem.cs
index ea3569e055c..dd0c0e8a81e 100644
--- a/Content.Server/Speech/EntitySystems/ListeningSystem.cs
+++ b/Content.Server/Speech/EntitySystems/ListeningSystem.cs
@@ -18,6 +18,10 @@ public override void Initialize()
private void OnSpeak(EntitySpokeEvent ev)
{
+ if (ev.Canilunzt)
+ {
+ return;
+ }
PingListeners(ev.Source, ev.Message, ev.ObfuscatedMessage);
}
diff --git a/Content.Server/SurveillanceCamera/Components/SurveillanceCameraComponent.cs b/Content.Server/SurveillanceCamera/Components/SurveillanceCameraComponent.cs
index 8473462f80c..d7025037c10 100644
--- a/Content.Server/SurveillanceCamera/Components/SurveillanceCameraComponent.cs
+++ b/Content.Server/SurveillanceCamera/Components/SurveillanceCameraComponent.cs
@@ -34,10 +34,17 @@ public sealed partial class SurveillanceCameraComponent : Component
[DataField("id")]
public string CameraId { get; set; } = "camera";
+ [ViewVariables]
+ public EntityUid? CameraIdUser = null;
+
[ViewVariables(VVAccess.ReadWrite)]
[DataField("nameSet")]
public bool NameSet { get; set; }
+ [ViewVariables(VVAccess.ReadWrite)]
+ [DataField("nameSetUser")]
+ public bool NameSetUser { get; set; }
+
[ViewVariables(VVAccess.ReadWrite)]
[DataField("networkSet")]
public bool NetworkSet { get; set; }
diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs
index f159ec52d9b..7781a17aed6 100644
--- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs
+++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs
@@ -5,10 +5,13 @@
using Content.Server.Power.Components;
using Content.Shared.ActionBlocker;
using Content.Shared.DeviceNetwork;
+using Content.Shared.Inventory.Events;
using Content.Shared.SurveillanceCamera;
using Content.Shared.Verbs;
using Robust.Server.GameObjects;
using Robust.Shared.Prototypes;
+using Content.Server.Access.Systems;
+
namespace Content.Server.SurveillanceCamera;
@@ -21,6 +24,8 @@ public sealed class SurveillanceCameraSystem : EntitySystem
[Dependency] private readonly UserInterfaceSystem _userInterface = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
+ [Dependency] private readonly IdCardSystem _idCardSystem = default!;
+
// Pings a surveillance camera subnet. All cameras will always respond
// with a data message if they are on the same subnet.
public const string CameraPingSubnetMessage = "surveillance_camera_ping_subnet";
@@ -61,6 +66,8 @@ public override void Initialize()
SubscribeLocalEvent(OnEmpPulse);
SubscribeLocalEvent(OnEmpDisabledRemoved);
+
+ SubscribeLocalEvent(OnEquipped);
}
private void OnPacketReceived(EntityUid uid, SurveillanceCameraComponent component, DeviceNetworkPacketEvent args)
@@ -206,6 +213,11 @@ private void OpenSetupInterface(EntityUid uid, EntityUid player, SurveillanceCam
UpdateSetupInterface(uid, camera);
}
+ private void OnEquipped(EntityUid uid, SurveillanceCameraComponent component, GotEquippedEvent args)
+ {
+ component.CameraIdUser = args.Equipee;
+ }
+
private void UpdateSetupInterface(EntityUid uid, SurveillanceCameraComponent? camera = null, DeviceNetworkComponent? deviceNet = null)
{
if (!Resolve(uid, ref camera, ref deviceNet))
@@ -232,6 +244,21 @@ private void UpdateSetupInterface(EntityUid uid, SurveillanceCameraComponent? ca
}
}
+ if (camera.NameSetUser)
+ {
+ var userName = Loc.GetString("bodycam-component-unknown-name");
+ var userJob = Loc.GetString("bodycam-component-unknown-job");
+ if (_idCardSystem.TryFindIdCard(camera.CameraIdUser!.Value, out var card))
+ {
+ if (card.FullName != null)
+ userName = card.FullName;
+ if (card.JobTitle != null)
+ userJob = card.JobTitle;
+ }
+ string cameraName = userJob + " - " + userName;
+ camera.CameraId = cameraName;
+ }
+
var state = new SurveillanceCameraSetupBoundUiState(camera.CameraId, deviceNet.ReceiveFrequency ?? 0,
camera.AvailableNetworks, camera.NameSet, camera.NetworkSet);
_userInterface.TrySetUiState(uid, SurveillanceCameraSetupUiKey.Camera, state);
diff --git a/Content.Server/_NF/Bodycam/BodycamComponent.cs b/Content.Server/_NF/Bodycam/BodycamComponent.cs
new file mode 100644
index 00000000000..451a95766be
--- /dev/null
+++ b/Content.Server/_NF/Bodycam/BodycamComponent.cs
@@ -0,0 +1,60 @@
+using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
+using Content.Server._NF.Bodycam;
+using Content.Server.SurveillanceCamera;
+using Robust.Shared.Serialization;
+
+namespace Content.Shared._NF.Bodycam
+{
+ [RegisterComponent]
+ [Access(typeof(BodycamSystem))]
+ public sealed partial class BodycamComponent : Component
+ {
+ ///
+ /// Choose a random camera mode when item is spawned.
+ ///
+ [DataField("randomMode")]
+ public bool RandomMode = false;
+
+ ///
+ /// If true user can't change camera mode
+ ///
+ [DataField("controlsLocked")]
+ public bool ControlsLocked = false;
+
+ ///
+ /// Current camera mode. Can be switched by user verbs.
+ ///
+ [DataField("mode")]
+ public BodycamMode Mode = BodycamMode.CameraOff;
+
+ ///
+ /// Activate camera if user wear it in this slot.
+ ///
+ [DataField("activationSlot")]
+ public string ActivationSlot = "neck";
+
+ ///
+ /// Activate camera if user has this in a camera-compatible container.
+ ///
+ [DataField("activationContainer")]
+ public string? ActivationContainer;
+
+ ///
+ /// How often does camera update its owners status (in seconds). Limited by the system update rate.
+ ///
+ [DataField("updateRate")]
+ public TimeSpan UpdateRate = TimeSpan.FromSeconds(2f);
+
+ ///
+ /// Current user that wears camera. Null if nobody wearing it.
+ ///
+ [ViewVariables]
+ public EntityUid? User = null;
+
+ ///
+ /// Next time when camera updated owners status
+ ///
+ [DataField("nextUpdate", customTypeSerializer: typeof(TimeOffsetSerializer))]
+ public TimeSpan NextUpdate = TimeSpan.Zero;
+ }
+}
diff --git a/Content.Server/_NF/Bodycam/BodycamSystem.cs b/Content.Server/_NF/Bodycam/BodycamSystem.cs
new file mode 100644
index 00000000000..3fbecd8579c
--- /dev/null
+++ b/Content.Server/_NF/Bodycam/BodycamSystem.cs
@@ -0,0 +1,178 @@
+using Content.Server.DeviceNetwork.Components;
+using Content.Server.Popups;
+using Content.Shared.Examine;
+using Content.Shared.Inventory.Events;
+using Content.Shared._NF.Bodycam;
+using Content.Shared.Verbs;
+using Robust.Shared.Timing;
+using Content.Server.SurveillanceCamera;
+
+namespace Content.Server._NF.Bodycam
+{
+ public sealed class BodycamSystem : EntitySystem
+ {
+ [Dependency] private readonly IGameTiming _gameTiming = default!;
+ [Dependency] private readonly PopupSystem _popupSystem = default!;
+ [Dependency] private readonly SurveillanceCameraSystem _surveillanceCameras = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+ SubscribeLocalEvent(OnUnpaused);
+ SubscribeLocalEvent(OnEquipped);
+ SubscribeLocalEvent(OnUnequipped);
+ SubscribeLocalEvent(OnExamine);
+ SubscribeLocalEvent>(OnVerb);
+ }
+
+ private void OnUnpaused(EntityUid uid, BodycamComponent component, ref EntityUnpausedEvent args)
+ {
+ component.NextUpdate += args.PausedTime;
+ }
+
+ public override void Update(float frameTime)
+ {
+ base.Update(frameTime);
+
+ var curTime = _gameTiming.CurTime;
+ var cameras = EntityManager.EntityQueryEnumerator();
+ bool power = false;
+
+ while (cameras.MoveNext(out var uid, out var camera, out var device))
+ {
+ if (device.TransmitFrequency is null)
+ continue;
+
+ // check if camera is ready to update
+ if (curTime < camera.NextUpdate)
+ continue;
+
+ // TODO: This would cause imprecision at different tick rates.
+ camera.NextUpdate = curTime + camera.UpdateRate;
+
+ // get camera status
+ var status = GetCameraState(uid, camera);
+ if (status == null);
+ else
+ {
+ power = true;
+ }
+ _surveillanceCameras.SetActive(uid, power);
+ continue;
+ }
+ }
+
+ private void OnEquipped(EntityUid uid, BodycamComponent component, GotEquippedEvent args)
+ {
+ if (args.Slot != component.ActivationSlot)
+ return;
+
+ component.User = args.Equipee;
+ }
+
+ private void OnUnequipped(EntityUid uid, BodycamComponent component, GotUnequippedEvent args)
+ {
+ if (args.Slot != component.ActivationSlot)
+ return;
+
+ component.User = null;
+ }
+
+ private void OnExamine(EntityUid uid, BodycamComponent component, ExaminedEvent args)
+ {
+ if (!args.IsInDetailsRange)
+ return;
+
+ string msg;
+ switch (component.Mode)
+ {
+ case BodycamMode.CameraOff:
+ msg = "bodycam-examine-off";
+ break;
+ case BodycamMode.CameraOn:
+ msg = "bodycam-examine-on";
+ break;
+ default:
+ return;
+ }
+
+ args.PushMarkup(Loc.GetString(msg));
+ }
+
+ private void OnVerb(EntityUid uid, BodycamComponent component, GetVerbsEvent args)
+ {
+ // check if user can change camera
+ if (component.ControlsLocked)
+ return;
+
+ // standard interaction checks
+ if (!args.CanAccess || !args.CanInteract || args.Hands == null)
+ return;
+
+ args.Verbs.UnionWith(new[]
+ {
+ CreateVerb(uid, component, args.User, BodycamMode.CameraOff),
+ CreateVerb(uid, component, args.User, BodycamMode.CameraOn)
+ });
+ }
+
+ private Verb CreateVerb(EntityUid uid, BodycamComponent component, EntityUid userUid, BodycamMode mode)
+ {
+ return new Verb()
+ {
+ Text = GetModeName(mode),
+ Disabled = component.Mode == mode,
+ Priority = -(int) mode, // sort them in descending order
+ Category = VerbCategory.PowerBodycam,
+ Act = () => SetCamera(uid, mode, userUid, component)
+ };
+ }
+
+ private string GetModeName(BodycamMode mode)
+ {
+ string name;
+ switch (mode)
+ {
+ case BodycamMode.CameraOff:
+ name = "bodycam-power-off";
+ break;
+ case BodycamMode.CameraOn:
+ name = "bodycam-power-on";
+ break;
+ default:
+ return "";
+ }
+
+ return Loc.GetString(name);
+ }
+
+ public void SetCamera(EntityUid uid, BodycamMode mode, EntityUid? userUid = null,
+ BodycamComponent? component = null)
+ {
+ if (!Resolve(uid, ref component))
+ return;
+
+ component.Mode = mode;
+
+ if (userUid != null)
+ {
+ var msg = Loc.GetString("bodycam-power-state", ("mode", GetModeName(mode)));
+ _popupSystem.PopupEntity(msg, uid, userUid.Value);
+ }
+ }
+
+ public BodycamStatus? GetCameraState(EntityUid uid, BodycamComponent? camera = null, TransformComponent? transform = null)
+ {
+ if (!Resolve(uid, ref camera, ref transform))
+ return null;
+
+ // check if camera is enabled and worn by user
+ if (camera.Mode == BodycamMode.CameraOff || camera.User == null)
+ return null;
+
+ // finally, form camera status
+ var status = new BodycamStatus(GetNetEntity(uid));
+ return status;
+ }
+ }
+}
diff --git a/Content.Server/_NF/VulpLanguage/VulpLangaugeListenerComponent.cs b/Content.Server/_NF/VulpLanguage/VulpLangaugeListenerComponent.cs
new file mode 100644
index 00000000000..5f4ca7f3ca3
--- /dev/null
+++ b/Content.Server/_NF/VulpLanguage/VulpLangaugeListenerComponent.cs
@@ -0,0 +1,7 @@
+namespace Content.Server.VulpLangauge
+{
+ [RegisterComponent]
+ public partial class VulpLangaugeListenerComponent : Component
+ {
+ }
+}
diff --git a/Content.Server/_NF/VulpLanguage/VulpLanguageSpeakerComponent.cs b/Content.Server/_NF/VulpLanguage/VulpLanguageSpeakerComponent.cs
new file mode 100644
index 00000000000..ac1b6d3aa36
--- /dev/null
+++ b/Content.Server/_NF/VulpLanguage/VulpLanguageSpeakerComponent.cs
@@ -0,0 +1,7 @@
+namespace Content.Server.VulpLangauge
+{
+ [RegisterComponent]
+ public partial class VulpLanguageSpeakerComponent : Component
+ {
+ }
+}
diff --git a/Content.Server/_NF/VulpLanguage/VulpTranslatorComponent.cs b/Content.Server/_NF/VulpLanguage/VulpTranslatorComponent.cs
new file mode 100644
index 00000000000..0ce8b145f84
--- /dev/null
+++ b/Content.Server/_NF/VulpLanguage/VulpTranslatorComponent.cs
@@ -0,0 +1,7 @@
+namespace Content.Server.VulpLangauge
+{
+ [RegisterComponent]
+ public partial class VulpTranslatorComponent : Component
+ {
+ }
+}
diff --git a/Content.Shared/Station/SharedStationSpawningSystem.cs b/Content.Shared/Station/SharedStationSpawningSystem.cs
index cf575fb4f2f..130230fd3ea 100644
--- a/Content.Shared/Station/SharedStationSpawningSystem.cs
+++ b/Content.Shared/Station/SharedStationSpawningSystem.cs
@@ -3,13 +3,14 @@
using Content.Shared.Inventory;
using Content.Shared.Preferences;
using Content.Shared.Roles;
+using Content.Shared.VulpLangauge;
namespace Content.Shared.Station;
public abstract class SharedStationSpawningSystem : EntitySystem
{
[Dependency] protected readonly InventorySystem InventorySystem = default!;
- [Dependency] private readonly SharedHandsSystem _handsSystem = default!;
+ [Dependency] private readonly SharedHandsSystem _handsSystem = default!;
///
/// Equips starting gear onto the given entity.
@@ -42,5 +43,11 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype startingGe
var inhandEntity = EntityManager.SpawnEntity(prototype, coords);
_handsSystem.TryPickup(entity, inhandEntity, hand, checkActionBlocker: false, handsComp: handsComponent);
}
+
+ if (HasComp(entity))
+ {
+ var vulpTranslatorEntity = EntityManager.SpawnEntity("VulpTranslator", coords);
+ _handsSystem.TryForcePickupAnyHand(entity, vulpTranslatorEntity, checkActionBlocker: false, handsComp: handsComponent);
+ }
}
}
diff --git a/Content.Shared/Verbs/VerbCategory.cs b/Content.Shared/Verbs/VerbCategory.cs
index d22041396fa..7fb31f3b592 100644
--- a/Content.Shared/Verbs/VerbCategory.cs
+++ b/Content.Shared/Verbs/VerbCategory.cs
@@ -80,6 +80,9 @@ public VerbCategory(string text, string? icon, bool iconsOnly = false)
public static readonly VerbCategory SetSensor = new("verb-categories-set-sensor", null);
+ public static readonly VerbCategory PowerBodycam =
+ new("verb-categories-power-bodycam", "/Textures/Interface/VerbIcons/smite.svg.192dpi.png");
+
public static readonly VerbCategory Lever = new("verb-categories-lever", null);
public static readonly VerbCategory SelectType = new("verb-categories-select-type", null);
diff --git a/Content.Shared/_NF/Bodycam/SharedBodycam.cs b/Content.Shared/_NF/Bodycam/SharedBodycam.cs
new file mode 100644
index 00000000000..4ff179c1c09
--- /dev/null
+++ b/Content.Shared/_NF/Bodycam/SharedBodycam.cs
@@ -0,0 +1,29 @@
+using Robust.Shared.Serialization;
+
+namespace Content.Shared._NF.Bodycam
+{
+ [Serializable, NetSerializable]
+ public sealed class BodycamStatus
+ {
+ public BodycamStatus(NetEntity bodycamUid)
+ {
+ BodycamUid = bodycamUid;
+ }
+
+ public NetEntity BodycamUid;
+ }
+
+ [Serializable, NetSerializable]
+ public enum BodycamMode : byte
+ {
+ ///
+ /// Sensor doesn't send any information about owner
+ ///
+ CameraOff = 0,
+
+ ///
+ /// Sensor sends only binary status (alive/dead)
+ ///
+ CameraOn = 1,
+ }
+}
diff --git a/Content.Shared/_NF/VulpLangauge/VulpGiveTranslatorComponent.cs b/Content.Shared/_NF/VulpLangauge/VulpGiveTranslatorComponent.cs
new file mode 100644
index 00000000000..5ca2763dfcd
--- /dev/null
+++ b/Content.Shared/_NF/VulpLangauge/VulpGiveTranslatorComponent.cs
@@ -0,0 +1,7 @@
+namespace Content.Shared.VulpLangauge
+{
+ [RegisterComponent]
+ public partial class VulpGiveTranslatorComponent : Component
+ {
+ }
+}
diff --git a/Resources/Audio/DeltaV/Voice/Talk/license.txt b/Resources/Audio/DeltaV/Voice/Talk/license.txt
new file mode 100644
index 00000000000..117cf54003a
--- /dev/null
+++ b/Resources/Audio/DeltaV/Voice/Talk/license.txt
@@ -0,0 +1,6 @@
+pug.ogg (Renamed to vulp.ogg)
+pug_ask.ogg (Renamed to vulp_ask.ogg)
+pug_exclaim.ogg (Renamed to vulp_exclaim.ogg)
+all taken from
+https://github.com/goonstation/goonstation/commit/da7c8965c4552ca53af367e6c83a83da2affe790
+licensed under CC BY-NC-SA 3.0
diff --git a/Resources/Audio/DeltaV/Voice/Talk/vulp.ogg b/Resources/Audio/DeltaV/Voice/Talk/vulp.ogg
new file mode 100644
index 00000000000..86d50225a52
Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Talk/vulp.ogg differ
diff --git a/Resources/Audio/DeltaV/Voice/Talk/vulp_ask.ogg b/Resources/Audio/DeltaV/Voice/Talk/vulp_ask.ogg
new file mode 100644
index 00000000000..4cdf1c8a5e3
Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Talk/vulp_ask.ogg differ
diff --git a/Resources/Audio/DeltaV/Voice/Talk/vulp_exclaim.ogg b/Resources/Audio/DeltaV/Voice/Talk/vulp_exclaim.ogg
new file mode 100644
index 00000000000..ed47bcf1c6e
Binary files /dev/null and b/Resources/Audio/DeltaV/Voice/Talk/vulp_exclaim.ogg differ
diff --git a/Resources/Audio/DeltaV/license.txt b/Resources/Audio/DeltaV/license.txt
new file mode 100644
index 00000000000..68d3dfa64cd
--- /dev/null
+++ b/Resources/Audio/DeltaV/license.txt
@@ -0,0 +1 @@
+typewriter.ogg is modified from https://www.freesoundslibrary.com/typewriter-sound/ which is licensed under the CC BY 4.0 License. This modified file follows the same license.
diff --git a/Resources/Audio/_NF/Vulpikanin/bark.ogg b/Resources/Audio/_NF/Vulpikanin/bark.ogg
new file mode 100644
index 00000000000..e0e77281d82
Binary files /dev/null and b/Resources/Audio/_NF/Vulpikanin/bark.ogg differ
diff --git a/Resources/Audio/_NF/Vulpikanin/growl1.ogg b/Resources/Audio/_NF/Vulpikanin/growl1.ogg
new file mode 100644
index 00000000000..d5152d9c057
Binary files /dev/null and b/Resources/Audio/_NF/Vulpikanin/growl1.ogg differ
diff --git a/Resources/Audio/_NF/Vulpikanin/growl2.ogg b/Resources/Audio/_NF/Vulpikanin/growl2.ogg
new file mode 100644
index 00000000000..5c48053ac68
Binary files /dev/null and b/Resources/Audio/_NF/Vulpikanin/growl2.ogg differ
diff --git a/Resources/Audio/_NF/Vulpikanin/growl3.ogg b/Resources/Audio/_NF/Vulpikanin/growl3.ogg
new file mode 100644
index 00000000000..bcacf2442f0
Binary files /dev/null and b/Resources/Audio/_NF/Vulpikanin/growl3.ogg differ
diff --git a/Resources/Audio/_NF/Vulpikanin/howl.ogg b/Resources/Audio/_NF/Vulpikanin/howl.ogg
new file mode 100644
index 00000000000..778fd6b2483
Binary files /dev/null and b/Resources/Audio/_NF/Vulpikanin/howl.ogg differ
diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml
index 0bb2e2e0a59..fdf98334a83 100644
--- a/Resources/Changelog/Changelog.yml
+++ b/Resources/Changelog/Changelog.yml
@@ -781,3 +781,77 @@ Entries:
message: Resprited the mailbox.
id: 81
time: '2023-09-19T21:07:40.0000000+00:00'
+- author: Potato1234_x
+ changes:
+ - type: Tweak
+ message: 'The SS14 sign now says Frontier Station. '
+ id: 82
+ time: '2023-09-21T17:21:43.0000000+00:00'
+- author: FoxxoTrystan
+ changes:
+ - type: Add
+ message: >-
+ The Vulpkanin race has arrived to the Frontier Sector they are a race of
+ humanoid canine-like beings that are confortable in the cold but cannot
+ speak common without a translator and also have their own langauge!
+ - type: Add
+ message: Cloth footwarps
+ - type: Tweak
+ message: Cloth footwarps can be found in Clothesmate
+ - type: Add
+ message: Canilunzt translator
+ - type: Tweak
+ message: >-
+ Canilunzt translator can be found in Vendomat, Vulpkanins spawns with
+ them.
+ id: 83
+ time: '2023-09-21T18:13:38.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Add
+ message: >-
+ Nanotrasen has provided all Frontier security personal with bodycams,
+ allowing them to stream their heroic actions and dependently not to spy
+ on them to investigate abuse reports.
+ - type: Add
+ message: >-
+ The new security bodycam channel is available on the wireless camera
+ monitors.
+ id: 84
+ time: '2023-09-21T18:49:22.0000000+00:00'
+- author: FoxxoTrystan
+ changes:
+ - type: Add
+ message: >-
+ A unusal asteroid has been detected on long range scanners with FTL
+ capabilities.
+ id: 85
+ time: '2023-09-21T18:55:25.0000000+00:00'
+- author: FoxxoTrystan
+ changes:
+ - type: Add
+ message: The syndicate is selling a old ship named "Hunter" in the Black Market!
+ id: 86
+ time: '2023-09-21T19:55:31.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Add
+ message: >-
+ Medical implants added to cargo, sign a contract with an insurance
+ providers, or hope for a private medical team to come ans save you, you
+ can now buy a kit and have your critical life support status sent back
+ to any medical radio.
+ - type: Tweak
+ message: >-
+ All tracking implants will also attempt to report you ship name with
+ cords.
+ id: 87
+ time: '2023-09-21T20:01:15.0000000+00:00'
+- author: FoxxoTrystan
+ changes:
+ - type: Tweak
+ message: >-
+ New Mask/Helmet/Hardsuit sprites for Vulpkanins, no more snout peeking
+ out of the suit!
+ id: 88
+ time: '2023-09-24T18:29:50.0000000+00:00'
diff --git a/Resources/Locale/en-US/_NF/bluespace-events/events.ftl b/Resources/Locale/en-US/_NF/bluespace-events/events.ftl
index fe352264dcc..2f4e86a1356 100644
--- a/Resources/Locale/en-US/_NF/bluespace-events/events.ftl
+++ b/Resources/Locale/en-US/_NF/bluespace-events/events.ftl
@@ -3,3 +3,6 @@ station-event-bluespace-vault-end-announcement = We have successfully retrieved
station-event-bluespace-cache-start-announcement = A Syndicate transport has been intercepted from FTL and will be arriving nearby. Guard the armored weapons cache until NanoTrasen can retrieve it.
station-event-bluespace-cache-end-announcement = We have successfully retrieved the Syndicate weapons cache from your sector and have reimbursed your nearby Frontier Outpost accordingly.
+
+station-event-bluespace-asteroid-start-announcement = We have detected an unusual FTL signature, which long range scans have detected as an unusually large asteroid. Nanotrasen requests prospectors and other individuals to seek out the asteroid.
+station-event-bluespace-asteroid-end-announcement = We've detected an unexpected FTL jump in your sector, as the asteroid appears to be gone for good.
diff --git a/Resources/Locale/en-US/_NF/bodycam/bodycam-component.ftl b/Resources/Locale/en-US/_NF/bodycam/bodycam-component.ftl
new file mode 100644
index 00000000000..d7b8fa2845e
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/bodycam/bodycam-component.ftl
@@ -0,0 +1,17 @@
+## Modes
+
+bodycam-power-off = Off
+bodycam-power-on = On
+
+## Popups
+bodycam-power-state = Bodycam: {$mode}
+
+## Components
+
+bodycam-component-unknown-name = Unknown
+bodycam-component-unknown-job = No job
+
+## Examine
+
+bodycam-examine-off = The bodycam appear to be [color=darkred]off[/color].
+bodycam-examine-on = The bodycam appear to be on.
diff --git a/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl b/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl
new file mode 100644
index 00000000000..ba803dc651c
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl
@@ -0,0 +1,4 @@
+chat-speech-verb-vulpkanin-1 = rawrs
+chat-speech-verb-vulpkanin-2 = barks
+chat-speech-verb-vulpkanin-3 = rurs
+chat-speech-verb-vulpkanin-4 = yeeps
diff --git a/Resources/Locale/en-US/_NF/devices/device-network.ftl b/Resources/Locale/en-US/_NF/devices/device-network.ftl
new file mode 100644
index 00000000000..8c2b7fd5206
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/devices/device-network.ftl
@@ -0,0 +1,2 @@
+## camera frequencies
+device-frequency-prototype-name-surveillance-camera-security-bodycam = Security Body Cameras
diff --git a/Resources/Locale/en-US/_NF/events/bluespace-cargo.ftl b/Resources/Locale/en-US/_NF/events/bluespace-cargo.ftl
index 8cf18cee87c..a191bcbedc7 100644
--- a/Resources/Locale/en-US/_NF/events/bluespace-cargo.ftl
+++ b/Resources/Locale/en-US/_NF/events/bluespace-cargo.ftl
@@ -1 +1 @@
-bluespace-cargo-event-announcement = A cargo telepad error has possibly sent a crate into a an unkonwn location.
+bluespace-cargo-event-announcement = An error in bluespace telemetry has caused a random crate to teleport to an unknown location.
diff --git a/Resources/Locale/en-US/_NF/paper/book-medical-insurance.ftl b/Resources/Locale/en-US/_NF/paper/book-medical-insurance.ftl
new file mode 100644
index 00000000000..ccf3e65f526
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/paper/book-medical-insurance.ftl
@@ -0,0 +1,20 @@
+book-medical-insurance = This form is a contract made with the medical frovider:
+ --------------------------------------------------------------------------------------
+ SECTION 1: Info
+ --------------------------------------------------------------------------------------
+ Full Name :
+ Race :
+ Blood Type :
+ Ship :
+
+ --------------------------------------------------------------------------------------
+ SECTION 2: Services
+ --------------------------------------------------------------------------------------
+ As part of our service we will attemp to come and aid you in the case of your medical implant going off.
+
+ (X) Revive = Up to 8k
+ (X) Clone = Up to 10k
+
+ In the case were unable to clone you, with your brain still intact, you also agree to be borged:
+
+ ( ) Borg = Up to 20k
diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-medical.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-medical.ftl
new file mode 100644
index 00000000000..ab86d7b6932
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-medical.ftl
@@ -0,0 +1,2 @@
+ent-MedicalTrackingImplants = { ent-CrateMedicalTrackingImplants }
+ .desc = { ent-CrateMedicalTrackingImplants.desc }
diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/medical-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/medical-crates.ftl
new file mode 100644
index 00000000000..aa17c042e29
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/medical-crates.ftl
@@ -0,0 +1,2 @@
+ent-CrateMedicalTrackingImplants = Medical insurance tracking implants
+ .desc = Contains a handful of medical insurance tracking implanters. make sure to sign with a provider, or hope for an independent medical help.
diff --git a/Resources/Locale/en-US/_NF/species/species.ftl b/Resources/Locale/en-US/_NF/species/species.ftl
new file mode 100644
index 00000000000..04c6f6f302d
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/species/species.ftl
@@ -0,0 +1 @@
+species-name-vulpkanin = Vulpkanin
diff --git a/Resources/Locale/en-US/_NF/verbs/verb-system.ftl b/Resources/Locale/en-US/_NF/verbs/verb-system.ftl
new file mode 100644
index 00000000000..ee15439910a
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/verbs/verb-system.ftl
@@ -0,0 +1 @@
+verb-categories-power-bodycam = Power
diff --git a/Resources/Locale/en-US/implant/implant.ftl b/Resources/Locale/en-US/implant/implant.ftl
index bdc82c291d8..e3fc4bc69e1 100644
--- a/Resources/Locale/en-US/implant/implant.ftl
+++ b/Resources/Locale/en-US/implant/implant.ftl
@@ -20,5 +20,5 @@ scramble-implant-activated-popup = Your appearance shifts and changes!
## Implant Messages
-deathrattle-implant-dead-message = {$user} has died at {$position}.
-deathrattle-implant-critical-message = {$user} life signs critical, immediate assistance required at {$position}.
+deathrattle-implant-dead-message = {$user} has died at {$grid}{$position}.
+deathrattle-implant-critical-message = {$user} life signs critical, immediate assistance required at {$grid}{$position}.
diff --git a/Resources/Locale/en-US/markings/vulpkanin.ftl b/Resources/Locale/en-US/markings/vulpkanin.ftl
new file mode 100644
index 00000000000..8244b5f86bd
--- /dev/null
+++ b/Resources/Locale/en-US/markings/vulpkanin.ftl
@@ -0,0 +1,254 @@
+marking-VulpEar-vulp = Vulpkanin ears (base)
+marking-VulpEar-vulp-inner = Vulpkanin ears (inner)
+marking-VulpEar = Vulpkanin
+
+marking-VulpEarFade-vulp = Vulpkanin ears (base)
+marking-VulpEarFade-vulp-fade = Vulpkanin ears (fade)
+marking-VulpEarFade = Vulpkanin (fade)
+
+marking-VulpEarSharp-vulp = Vulpkanin ears (base)
+marking-VulpEarSharp-vulp-sharp = Vulpkanin ears (sharp)
+marking-VulpEarSharp = Vulpkanin (sharp)
+
+marking-VulpEarJackal-jackal = Jackal ears (base)
+marking-VulpEarJackal-jackal-inner = Jackal ears (inner)
+marking-VulpEarJackal = Vulpkanin Jackal
+
+marking-VulpEarTerrier-terrier = Terrier ears (base)
+marking-VulpEarTerrier-terrier-inner = Terrier ears (inner)
+marking-VulpEarTerrier = Vulpkanin Terrier
+
+marking-VulpEarWolf-wolf = Wolf ears (base)
+marking-VulpEarWolf-wolf-inner = Wolf ears (inner)
+marking-VulpEarWolf = Vulpkanin Wolf
+
+marking-VulpEarFennec-fennec = Fennec ears (base)
+marking-VulpEarFennec-fennec-inner = Fennec ears (inner)
+marking-VulpEarFennec = Vulpkanin Fennec
+
+marking-VulpEarFox-fox = Fox ears
+marking-VulpEarFox = Vulpkanin Fox
+
+marking-VulpEarOtie-otie = Otie ears (base)
+marking-VulpEarOtie-otie-inner = Otie ears (inner)
+marking-VulpEarOtie = Vulpkanin Otie
+
+marking-VulpEarTajaran-msai = Tajaran ears (base)
+marking-VulpEarTajaran-msai-inner = Tajaran ears (inner)
+marking-VulpEarTajaran = Vulpkanin Tajaran
+
+marking-VulpEarShock-shock = Shock ears
+marking-VulpEarShock = Vulpkanin Shock
+
+marking-VulpEarCoyote-coyote = Coyote ears
+marking-VulpEarCoyote = Vulpkanin Coyote
+
+marking-VulpEarDalmatian-dalmatian = Dalmatian ears
+marking-VulpEarDalmatian = Vulpkanin Dalmatian
+
+
+marking-VulpSnoutAlt-muzzle_alt = Muzzle
+marking-VulpSnoutAlt-nose = Nose
+marking-VulpSnoutAlt = Vulpkanin Muzzle 2
+
+marking-VulpSnout-muzzle = Muzzle
+marking-VulpSnout-nose = Nose
+marking-VulpSnout = Vulpkanin Muzzle
+
+marking-VulpSnoutSharp-muzzle_sharp = Muzzle
+marking-VulpSnoutSharp-nose = Nose
+marking-VulpSnoutSharp = Vulpkanin Muzzle (sharp)
+
+marking-VulpSnoutFade-muzzle_fade = Muzzle
+marking-VulpSnoutFade-nose = Nose
+marking-VulpSnoutFade = Vulpkanin Muzzle (fade)
+
+marking-VulpSnoutNose-nose = Nose
+marking-VulpSnoutNose = Vulpkanin Nose
+
+marking-VulpSnoutMask-mask = Mask
+marking-VulpSnoutMask-nose = Nose
+marking-VulpSnoutMask = Vulpkanin Mask
+
+marking-VulpSnoutVulpine-vulpine = Vulpine (base)
+marking-VulpSnoutVulpine-vulpine-lines = Vulpine (lines)
+marking-VulpSnoutVulpine = Vulpkanin Vulpine
+
+marking-VulpSnoutSwift-vulpine-lines = Swift
+marking-VulpSnoutSwift = Vulpkanin Swift
+
+marking-VulpSnoutBlaze-blaze = Blaze
+marking-VulpSnoutBlaze = Vulpkanin Blaze
+
+marking-VulpSnoutPatch-patch = Patch
+marking-VulpSnoutPatch = Vulpkanin Patch
+
+
+marking-VulpHeadTiger-tiger_head = Tiger stripes
+marking-VulpHeadTiger = Vulpkanin Tiger stripes (head)
+
+marking-VulpHeadTigerFace-tiger_face = Tiger stripes
+marking-VulpHeadTigerFace = Vulpkanin Tiger stripes (face)
+
+marking-VulpHeadSlash-slash = Slash
+marking-VulpHeadSlash = Vulpkanin Slash
+
+
+marking-VulpTail-vulp = Vulpkanin tail (base)
+marking-VulpTail-vulp-fade = Vulpkanin tail (fade)
+marking-VulpTail = Vulpkanin
+
+marking-VulpTailTip-vulp = Vulpkanin tail (base)
+marking-VulpTailTip-vulp-tip = Vulpkanin tail (tip)
+marking-VulpTailTip = Vulpkanin (tip)
+
+marking-VulpTailWag-vulp_wag = Vulpkanin tail (base)
+marking-VulpTailWag-vulp_wag-fade = Vulpkanin tail (fade)
+marking-VulpTailWag = Vulpkanin (wag)
+
+marking-VulpTailWagTip-vulp_wag = Vulpkanin tail (base)
+marking-VulpTailWagTip-vulp_wag-tip = Vulpkanin tail (tip)
+marking-VulpTailWagTip = Vulpkanin (wag, tip)
+
+marking-VulpTailAlt-vulp_alt = Vulpkanin tail (base)
+marking-VulpTailAlt-vulp_alt-fade = Vulpkanin tail (fade)
+marking-VulpTailAlt = Vulpkanin (alt)
+
+marking-VulpTailAltTip-vulp_alt = Vulpkanin tail (base)
+marking-VulpTailAltTip-vulp_alt-tip = Vulpkanin tail (tip)
+marking-VulpTailAltTip = Vulpkanin (alt, tip)
+
+marking-VulpTailLong-long = Long tail (base)
+marking-VulpTailLong-long-tip = Long tail (tip)
+marking-VulpTailLong = Vulpkanin Long
+
+marking-VulpTailFox-fox = Fox tail (base)
+marking-VulpTailFox-fox-fade = Fox tail (fade)
+marking-VulpTailFox = Vulpkanin Fox
+
+marking-VulpTailFoxTip-fox = Fox tail (base)
+marking-VulpTailFoxTip-fox-tip = Fox tail (fade)
+marking-VulpTailFoxTip = Vulpkanin Fox (tip)
+
+marking-VulpTailFoxWag-fox_wag = Fox tail (base)
+marking-VulpTailFoxWag-fox_wag-fade = Fox tail (fade)
+marking-VulpTailFoxWag = Vulpkanin Fox (wag)
+
+marking-VulpTailFoxWagTip-fox_wag = Fox tail (base)
+marking-VulpTailFoxWagTip-fox_wag-tip = Fox tail (tip)
+marking-VulpTailFoxWagTip = Vulpkanin Fox (wag, tip)
+
+marking-VulpTailBushy-bushfluff = Bush tail
+marking-VulpTailBushy = Vulpkanin Bush
+
+marking-VulpTailBushyWag-bushfluff_wag = Bush tail
+marking-VulpTailBushyWag = Vulpkanin Bush (wag)
+
+marking-VulpTailCoyote-coyote = Coyote tail
+marking-VulpTailCoyote = Vulpkanin Coyote
+
+marking-VulpTailCoyoteWag-coyote_wag = Coyote tail
+marking-VulpTailCoyoteWag = Vulpkanin Coyote (wag)
+
+marking-VulpTailCorgiWag-corgi_wag = Crogi tail
+marking-VulpTailCorgiWag = Vulpkanin Corgi (wag)
+
+marking-VulpTailHusky-husky-inner = Husky tail (inner)
+marking-VulpTailHusky-husky-outer = Husky tail (outer)
+marking-VulpTailHusky = Vulpkanin Husky
+
+marking-VulpTailHuskyAlt-husky = Husky tail
+marking-VulpTailHuskyAlt = Vulpkanin Husky (alt)
+
+marking-VulpTailFox2-fox2 = Fox tail
+marking-VulpTailFox2 = Vulpkanin Fox 2
+
+marking-VulpTailFox3-fox3 = Fox tail (base)
+marking-VulpTailFox3-fox3-tip = Fox tail (tip)
+marking-VulpTailFox3 = Vulpkanin Fox 3
+
+marking-VulpTailFennec-fennec = Fennec tail
+marking-VulpTailFennec = Vulpkanin Fennec
+
+marking-VulpTailOtie-otie = Otie tail
+marking-VulpTailOtie = Vulpkanin Otie
+
+marking-VulpTailFluffy-fluffy = Fluffy tail
+marking-VulpTailFluffy = Vulpkanin Fluffy
+
+marking-VulpTailDalmatianWag-dalmatian_wag = Dalmatian tail
+marking-VulpTailDalmatianWag = Vulpkanin Dalmatian (wag)
+
+
+marking-VulpBellyCrest-belly_crest = Belly
+marking-VulpBellyCrest = Vulpkanin Belly Crest
+
+marking-VulpBellyFull-belly_full = Belly
+marking-VulpBellyFull = Vulpkanin Belly 1
+
+marking-VulpBellyFox-belly_fox = Belly
+marking-VulpBellyFox = Vulpkanin Belly 2
+
+
+marking-VulpBodyPointsCrest-points_crest = Points (crest)
+marking-VulpBodyPointsCrest = Vulpkanin Points (crest)
+
+marking-VulpBodyPointsFade-points_fade = Vulpkanin Points (fade)
+marking-VulpBodyPointsFade = Vulpkanin Points (fade)
+
+marking-VulpBodyPointsSharp-points_sharp = Vulpkanin Points (sharp)
+marking-VulpBodyPointsSharp = Vulpkanin Points (sharp)
+
+
+marking-VulpPointsFeet-points_feet = Points Feet
+marking-VulpPointsFeet = Vulpkanin Points Feet
+
+marking-VulpPointsCrestLegs-points_crest-legs = Points (crest)
+marking-VulpPointsCrestLegs = Vulpkanin Points Legs (crest)
+
+marking-VulpPointsFadeLegs-points_fade-legs = Points (fade)
+marking-VulpPointsFadeLegs = Vulpkanin Points Legs (fade)
+
+marking-VulpPointsSharpLegs-points_sharp-legs = Points (sharp)
+marking-VulpPointsSharpLegs = Vulpkanin Points Legs (sharp)
+
+
+marking-VulpPointsHands-points_hands = Points Hands
+marking-VulpPointsHands = Vulpkanin Points Hands
+
+marking-VulpPointsCrestArms-points_crest-arms = Points (crest)
+marking-VulpPointsCrestArms = Vulpkanin Points Arms (crest)
+
+marking-VulpPointsFadeArms-points_fade-arms = Points (fade)
+marking-VulpPointsFadeArms = Vulpkanin Points Arms (fade)
+
+marking-VulpPointsSharpArms-points_sharp-arms = Points (sharp)
+marking-VulpPointsSharpArms = Vulpkanin Points Arms (sharp)
+
+
+marking-VulpHairAdhara = Adhara
+marking-VulpHairAnita = Anita
+marking-VulpHairApollo = Apollo
+marking-VulpHairBelle = Belle
+marking-VulpHairBraided = Braided Hair
+marking-VulpHairBun = Bun
+marking-VulpHairCleanCut = Clean Cut
+marking-VulpHairCurl = Curl
+marking-VulpHairHawk = Hawk
+marking-VulpHairJagged = Jagged
+marking-VulpHairJeremy = Jeremy
+marking-VulpHairKajam = Kajam
+marking-VulpHairKeid = Keid
+marking-VulpHairKleeia = Kleeia
+marking-VulpHairMizar = Mizar
+marking-VulpHairPunkBraided = Punk Braided
+marking-VulpHairRaine = Raine
+marking-VulpHairRough = Rough
+marking-VulpHairShort = Short Hair
+marking-VulpHairShort2 = Short Hair 2
+marking-VulpHairSpike = Spike
+
+marking-VulpFacialHairRuff = Ruff
+marking-VulpFacialHairElder = Elder
+marking-VulpFacialHairElderChin = Elder Chin
+marking-VulpFacialHairKita = Kita
\ No newline at end of file
diff --git a/Resources/Locale/en-US/species/species.ftl b/Resources/Locale/en-US/species/species.ftl
index 2f01ae54c0a..6a3e751524d 100644
--- a/Resources/Locale/en-US/species/species.ftl
+++ b/Resources/Locale/en-US/species/species.ftl
@@ -6,4 +6,4 @@ species-name-reptilian = Reptilian
species-name-slime = Slime Person
species-name-diona = Diona
species-name-arachnid = Arachnid
-species-name-moth = Moth Person
\ No newline at end of file
+species-name-moth = Moth Person
diff --git a/Resources/Maps/Bluespace/asteroidvault.yml b/Resources/Maps/Bluespace/asteroidvault.yml
new file mode 100644
index 00000000000..88f1394dad3
--- /dev/null
+++ b/Resources/Maps/Bluespace/asteroidvault.yml
@@ -0,0 +1,19485 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 7: FloorAsteroidSand
+ 17: FloorBrokenWood
+ 29: FloorDarkHerringbone
+ 78: FloorShuttleRed
+ 109: FloorWood
+ 111: Lattice
+ 112: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - name: Unusual Asteroid
+ type: MetaData
+ - pos: -1.03125,-0.125
+ parent: invalid
+ type: Transform
+ - chunks:
+ 0,0:
+ ind: 0,0
+ tiles: HQAAAAAAHQAAAAAAHQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: TgAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAAAHQAAAAAATgAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAAAHQAAAAAATgAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAAAHQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAAAHQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHQAAAAAAHQAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: cAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: cAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-2:
+ ind: -1,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbQAAAAAAEQAAAAAAbQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbQAAAAAAEQAAAAAAbQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAA
+ version: 6
+ -2,-1:
+ ind: -2,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ version: 6
+ -2,0:
+ ind: -2,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-2:
+ ind: 0,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAEQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -2,1:
+ ind: -2,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,-2:
+ ind: 1,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-3:
+ ind: -1,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -2,-2:
+ ind: -2,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAA
+ version: 6
+ type: MapGrid
+ - type: Broadphase
+ - bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ type: Physics
+ - fixtures: {}
+ type: Fixtures
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ type: Gravity
+ - chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 0: -16,1
+ 1: -16,2
+ - node:
+ color: '#FFFFFFFF'
+ id: face
+ decals:
+ 5: 4.493641,-19.866617
+ - node:
+ color: '#FF0000FF'
+ id: rune2
+ decals:
+ 4: 0,-20
+ - node:
+ color: '#FF0000FF'
+ id: rune3
+ decals:
+ 2: 1,-19
+ - node:
+ color: '#FF0000FF'
+ id: rune5
+ decals:
+ 3: 2,-20
+ type: DecalGrid
+ - version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 1911
+ 1: 63624
+ -1,0:
+ 0: 3276
+ 1: 62259
+ -1,-1:
+ 0: 52224
+ 1: 13311
+ 0,-1:
+ 0: 30464
+ 1: 35071
+ 0,1:
+ 1: 4607
+ 0,2:
+ 2: 65535
+ 0,3:
+ 2: 65535
+ 1,0:
+ 1: 13119
+ 1,1:
+ 1: 51
+ 1,2:
+ 2: 65535
+ 1,3:
+ 2: 65535
+ 2,0:
+ 2: 63487
+ 1: 2048
+ 2,1:
+ 2: 65535
+ 2,2:
+ 2: 65535
+ 2,3:
+ 2: 65535
+ 3,0:
+ 2: 65535
+ 3,1:
+ 2: 65535
+ 3,2:
+ 2: 65535
+ 3,3:
+ 2: 65535
+ -4,0:
+ 1: 13107
+ 2: 52428
+ -4,1:
+ 2: 65535
+ -4,2:
+ 2: 65535
+ -4,3:
+ 2: 65535
+ -3,0:
+ 2: 65535
+ -3,1:
+ 2: 65535
+ -3,2:
+ 2: 65535
+ -3,3:
+ 2: 65535
+ -2,0:
+ 2: 4369
+ 1: 34958
+ -2,1:
+ 2: 4369
+ 1: 136
+ -2,2:
+ 2: 65535
+ -2,3:
+ 2: 65535
+ -1,1:
+ 1: 255
+ -1,2:
+ 2: 65535
+ -1,3:
+ 2: 65535
+ -4,-3:
+ 2: 65535
+ -4,-2:
+ 2: 65535
+ -4,-1:
+ 2: 65535
+ -4,-4:
+ 2: 65535
+ -3,-4:
+ 2: 65535
+ -3,-3:
+ 2: 65535
+ -3,-2:
+ 2: 65535
+ -3,-1:
+ 2: 65535
+ -2,-4:
+ 2: 65535
+ -2,-3:
+ 2: 65535
+ -2,-2:
+ 2: 4383
+ 1: 32768
+ -2,-1:
+ 2: 4369
+ 1: 34952
+ -1,-4:
+ 1: 15
+ 2: 65520
+ -1,-3:
+ 2: 65535
+ -1,-2:
+ 2: 15
+ 1: 61440
+ 0,-4:
+ 1: 15
+ 2: 65520
+ 0,-3:
+ 2: 65535
+ 0,-2:
+ 2: 15
+ 1: 61712
+ 1,-4:
+ 1: 7
+ 2: 65528
+ 1,-3:
+ 2: 65535
+ 1,-2:
+ 2: 15
+ 1: 12288
+ 1,-1:
+ 1: 13107
+ 2,-4:
+ 2: 65535
+ 2,-3:
+ 2: 65535
+ 2,-2:
+ 2: 65535
+ 2,-1:
+ 2: 65535
+ 3,-4:
+ 2: 65535
+ 3,-3:
+ 2: 65535
+ 3,-2:
+ 2: 65535
+ 3,-1:
+ 2: 65535
+ -3,4:
+ 2: 4095
+ -2,4:
+ 2: 65535
+ -1,4:
+ 2: 65535
+ 0,4:
+ 2: 65535
+ 1,4:
+ 2: 65535
+ 2,4:
+ 2: 65535
+ -3,-5:
+ 2: 65535
+ -2,-5:
+ 2: 65535
+ -1,-5:
+ 1: 4369
+ 2: 61166
+ -5,-2:
+ 2: 65535
+ -5,-1:
+ 2: 65535
+ -5,-3:
+ 2: 65535
+ -5,0:
+ 2: 30583
+ 1: 34952
+ -5,1:
+ 2: 65535
+ -5,2:
+ 2: 65535
+ 4,0:
+ 2: 65535
+ 4,1:
+ 2: 65535
+ 4,2:
+ 2: 65535
+ 4,-3:
+ 2: 65535
+ 4,-2:
+ 2: 65535
+ 4,-1:
+ 2: 65535
+ 0,-5:
+ 2: 65535
+ 1,-5:
+ 2: 48059
+ 1: 17476
+ 2,-5:
+ 2: 65535
+ -4,4:
+ 2: 52991
+ -4,5:
+ 2: 8
+ -2,5:
+ 2: 51406
+ -2,6:
+ 2: 8
+ -1,5:
+ 2: 16383
+ 0,5:
+ 2: 15231
+ 0,6:
+ 2: 1
+ 1,5:
+ 2: 12927
+ 2,5:
+ 2: 52991
+ 2,6:
+ 2: 6
+ 3,4:
+ 2: 65535
+ 3,5:
+ 2: 24575
+ 1: 32768
+ 3,6:
+ 2: 3
+ 1: 8
+ -4,-5:
+ 2: 65530
+ -4,-6:
+ 2: 34816
+ -3,-6:
+ 2: 65519
+ -3,-7:
+ 2: 60558
+ -3,-8:
+ 2: 51208
+ -2,-8:
+ 2: 32637
+ -2,-7:
+ 2: 65535
+ -2,-6:
+ 2: 65535
+ -1,-8:
+ 2: 256
+ -1,-7:
+ 2: 65526
+ -1,-6:
+ 2: 4095
+ 1: 61440
+ -7,-2:
+ 2: 51400
+ -7,-1:
+ 2: 50184
+ -6,-3:
+ 2: 61384
+ -6,-2:
+ 2: 61436
+ -6,-1:
+ 2: 65535
+ -5,-4:
+ 2: 65224
+ -7,0:
+ 2: 60104
+ -7,1:
+ 2: 2188
+ -6,0:
+ 2: 65535
+ -6,1:
+ 2: 52991
+ -6,3:
+ 2: 27852
+ -6,2:
+ 2: 51336
+ -5,3:
+ 2: 65535
+ 4,3:
+ 2: 65535
+ 5,0:
+ 2: 32767
+ 5,1:
+ 2: 65527
+ 5,2:
+ 2: 65535
+ 5,3:
+ 2: 65527
+ 6,0:
+ 2: 3199
+ 6,1:
+ 2: 29184
+ 6,2:
+ 2: 87
+ 6,3:
+ 2: 561
+ 4,-4:
+ 2: 65535
+ 5,-4:
+ 2: 13072
+ 5,-3:
+ 2: 65529
+ 5,-2:
+ 2: 63487
+ 5,-1:
+ 2: 65535
+ 6,-3:
+ 2: 29456
+ 6,-2:
+ 2: 27649
+ 6,-1:
+ 2: 65399
+ 7,-1:
+ 2: 12560
+ 0,-7:
+ 2: 64656
+ 0,-6:
+ 2: 4095
+ 1: 61440
+ 1,-7:
+ 2: 65535
+ 1,-6:
+ 2: 36863
+ 1: 28672
+ 2,-7:
+ 2: 29456
+ 2,-6:
+ 2: 65535
+ 3,-6:
+ 2: 29456
+ 3,-5:
+ 2: 64257
+ 4,4:
+ 2: 65535
+ 4,5:
+ 2: 151
+ 1: 65376
+ 4,6:
+ 1: 1007
+ 5,4:
+ 2: 55167
+ 5,5:
+ 2: 17
+ 1: 32000
+ 5,6:
+ 1: 1
+ -5,4:
+ 2: 26350
+ 4,-5:
+ 2: 29456
+ -2,-9:
+ 2: 16384
+ -5,-5:
+ 2: 51200
+ uniqueMixes:
+ - volume: 2500
+ temperature: 5000
+ moles:
+ - 6666.982
+ - 0
+ - 0
+ - 6666.982
+ - 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: GridAtmosphere
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+- proto: AirlockExternal
+ entities:
+ - uid: 2
+ components:
+ - pos: -15.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 3
+ components:
+ - pos: 1.5,-15.5
+ parent: 1
+ type: Transform
+- proto: AlwaysPoweredLightExterior
+ entities:
+ - uid: 4
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 5
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 1
+ type: Transform
+- proto: ArgocyteAISpawner
+ entities:
+ - uid: 6
+ components:
+ - pos: -15.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 7
+ components:
+ - pos: -3.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 8
+ components:
+ - pos: 15.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 9
+ components:
+ - pos: 16.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 10
+ components:
+ - pos: 3.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 11
+ components:
+ - pos: -9.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 12
+ components:
+ - pos: 9.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 13
+ components:
+ - pos: 14.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 14
+ components:
+ - pos: 3.5,10.5
+ parent: 1
+ type: Transform
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 15
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 16
+ components:
+ - pos: -15.5,0.5
+ parent: 1
+ type: Transform
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 17
+ components:
+ - pos: -13.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 18
+ components:
+ - pos: -13.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 19
+ components:
+ - pos: -13.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 20
+ components:
+ - pos: -12.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 21
+ components:
+ - pos: -12.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 22
+ components:
+ - pos: -17.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 23
+ components:
+ - pos: -18.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 24
+ components:
+ - pos: -18.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 25
+ components:
+ - pos: -17.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 26
+ components:
+ - pos: -17.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 27
+ components:
+ - pos: -13.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 28
+ components:
+ - pos: -13.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 29
+ components:
+ - pos: -14.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 30
+ components:
+ - pos: -13.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 31
+ components:
+ - pos: -14.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 32
+ components:
+ - pos: -13.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 33
+ components:
+ - pos: -15.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 34
+ components:
+ - pos: -13.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 35
+ components:
+ - pos: 15.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 36
+ components:
+ - pos: -13.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 37
+ components:
+ - pos: -13.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 38
+ components:
+ - pos: -13.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 39
+ components:
+ - pos: -14.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 40
+ components:
+ - pos: -12.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 41
+ components:
+ - pos: -15.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 42
+ components:
+ - pos: -16.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 43
+ components:
+ - pos: -15.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 44
+ components:
+ - pos: -16.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 45
+ components:
+ - pos: -18.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 46
+ components:
+ - pos: -14.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 47
+ components:
+ - pos: -17.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 48
+ components:
+ - pos: -15.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 49
+ components:
+ - pos: -16.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 50
+ components:
+ - pos: -16.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 51
+ components:
+ - pos: -17.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 52
+ components:
+ - pos: -18.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 53
+ components:
+ - pos: -17.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 54
+ components:
+ - pos: 11.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 55
+ components:
+ - pos: -13.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 56
+ components:
+ - pos: -12.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 57
+ components:
+ - pos: -12.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 58
+ components:
+ - pos: -11.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 59
+ components:
+ - pos: -10.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 60
+ components:
+ - pos: -9.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 61
+ components:
+ - pos: -9.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 62
+ components:
+ - pos: -9.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 63
+ components:
+ - pos: -9.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 64
+ components:
+ - pos: -8.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 65
+ components:
+ - pos: -8.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 66
+ components:
+ - pos: -9.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 67
+ components:
+ - pos: -8.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 68
+ components:
+ - pos: -7.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 69
+ components:
+ - pos: -7.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 70
+ components:
+ - pos: -6.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 71
+ components:
+ - pos: -6.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 72
+ components:
+ - pos: -5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 73
+ components:
+ - pos: -5.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 74
+ components:
+ - pos: -4.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 75
+ components:
+ - pos: -4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 76
+ components:
+ - pos: -5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 77
+ components:
+ - pos: -3.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 78
+ components:
+ - pos: -2.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 79
+ components:
+ - pos: -1.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 80
+ components:
+ - pos: -1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 81
+ components:
+ - pos: -2.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 82
+ components:
+ - pos: -0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 83
+ components:
+ - pos: 0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 84
+ components:
+ - pos: 1.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 85
+ components:
+ - pos: 2.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 86
+ components:
+ - pos: 3.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 87
+ components:
+ - pos: 3.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 88
+ components:
+ - pos: 4.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 89
+ components:
+ - pos: 5.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 90
+ components:
+ - pos: 6.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 91
+ components:
+ - pos: 7.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 92
+ components:
+ - pos: 8.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 93
+ components:
+ - pos: 9.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 94
+ components:
+ - pos: 10.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 95
+ components:
+ - pos: 11.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 96
+ components:
+ - pos: 12.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 97
+ components:
+ - pos: 12.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 98
+ components:
+ - pos: 10.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 99
+ components:
+ - pos: 9.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 100
+ components:
+ - pos: 9.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 101
+ components:
+ - pos: 9.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 102
+ components:
+ - pos: 14.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 103
+ components:
+ - pos: 10.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 104
+ components:
+ - pos: 11.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 105
+ components:
+ - pos: 11.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 106
+ components:
+ - pos: 11.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 107
+ components:
+ - pos: 10.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 108
+ components:
+ - pos: 10.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 109
+ components:
+ - pos: 4.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 110
+ components:
+ - pos: 4.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 111
+ components:
+ - pos: 4.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 112
+ components:
+ - pos: 3.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 113
+ components:
+ - pos: 2.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 114
+ components:
+ - pos: 2.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 115
+ components:
+ - pos: 0.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 116
+ components:
+ - pos: -0.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 117
+ components:
+ - pos: -0.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 118
+ components:
+ - pos: -1.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 119
+ components:
+ - pos: -0.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 120
+ components:
+ - pos: 0.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 121
+ components:
+ - pos: 2.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 122
+ components:
+ - pos: 3.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 123
+ components:
+ - pos: 3.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 124
+ components:
+ - pos: 0.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 125
+ components:
+ - pos: 5.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 126
+ components:
+ - pos: 5.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 127
+ components:
+ - pos: 5.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 128
+ components:
+ - pos: -0.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 129
+ components:
+ - pos: 5.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 130
+ components:
+ - pos: -2.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 131
+ components:
+ - pos: 4.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 132
+ components:
+ - pos: -1.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 133
+ components:
+ - pos: 3.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 134
+ components:
+ - pos: 1.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 135
+ components:
+ - pos: 2.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 136
+ components:
+ - pos: 1.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 137
+ components:
+ - pos: 1.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 138
+ components:
+ - pos: 0.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 139
+ components:
+ - pos: 1.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 140
+ components:
+ - pos: -1.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 141
+ components:
+ - pos: -2.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 142
+ components:
+ - pos: -1.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 143
+ components:
+ - pos: -2.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 144
+ components:
+ - pos: 12.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 145
+ components:
+ - pos: 13.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 146
+ components:
+ - pos: 14.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 147
+ components:
+ - pos: 16.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 148
+ components:
+ - pos: 14.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 149
+ components:
+ - pos: 15.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 150
+ components:
+ - pos: 13.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 151
+ components:
+ - pos: 13.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 152
+ components:
+ - pos: 14.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 153
+ components:
+ - pos: 14.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 154
+ components:
+ - pos: 15.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 155
+ components:
+ - pos: 15.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 156
+ components:
+ - pos: 16.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 157
+ components:
+ - pos: 16.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 158
+ components:
+ - pos: 15.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 159
+ components:
+ - pos: 15.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 160
+ components:
+ - pos: 15.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 161
+ components:
+ - pos: 15.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 162
+ components:
+ - pos: 15.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 163
+ components:
+ - pos: 15.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 164
+ components:
+ - pos: 16.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 165
+ components:
+ - pos: 16.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 166
+ components:
+ - pos: 16.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 167
+ components:
+ - pos: 16.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 168
+ components:
+ - pos: 16.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 169
+ components:
+ - pos: 16.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 170
+ components:
+ - pos: 17.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 171
+ components:
+ - pos: 17.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 172
+ components:
+ - pos: 17.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 173
+ components:
+ - pos: 13.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 174
+ components:
+ - pos: 13.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 175
+ components:
+ - pos: 13.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 176
+ components:
+ - pos: 12.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 177
+ components:
+ - pos: 12.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 178
+ components:
+ - pos: 12.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 179
+ components:
+ - pos: 12.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 180
+ components:
+ - pos: 13.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 181
+ components:
+ - pos: 13.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 182
+ components:
+ - pos: 13.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 183
+ components:
+ - pos: 14.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 184
+ components:
+ - pos: 15.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 185
+ components:
+ - pos: 16.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 186
+ components:
+ - pos: 17.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 187
+ components:
+ - pos: 18.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 188
+ components:
+ - pos: 18.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 189
+ components:
+ - pos: 18.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 190
+ components:
+ - pos: 18.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 191
+ components:
+ - pos: 17.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 192
+ components:
+ - pos: 16.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 193
+ components:
+ - pos: 15.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 194
+ components:
+ - pos: 14.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 195
+ components:
+ - pos: 12.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 196
+ components:
+ - pos: 12.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 197
+ components:
+ - pos: 12.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 198
+ components:
+ - pos: 12.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 199
+ components:
+ - pos: 11.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 200
+ components:
+ - pos: 10.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 201
+ components:
+ - pos: 10.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 202
+ components:
+ - pos: 10.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 203
+ components:
+ - pos: 11.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 204
+ components:
+ - pos: 9.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 205
+ components:
+ - pos: 9.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 206
+ components:
+ - pos: 9.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 207
+ components:
+ - pos: 9.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 208
+ components:
+ - pos: 10.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 209
+ components:
+ - pos: 10.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 210
+ components:
+ - pos: 10.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 211
+ components:
+ - pos: 11.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 212
+ components:
+ - pos: 12.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 213
+ components:
+ - pos: 12.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 214
+ components:
+ - pos: 13.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 215
+ components:
+ - pos: 14.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 216
+ components:
+ - pos: 14.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 217
+ components:
+ - pos: 14.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 218
+ components:
+ - pos: 13.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 219
+ components:
+ - pos: 14.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 220
+ components:
+ - pos: 13.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 221
+ components:
+ - pos: 12.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 222
+ components:
+ - pos: 11.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 223
+ components:
+ - pos: 10.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 224
+ components:
+ - pos: 10.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 225
+ components:
+ - pos: 11.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 226
+ components:
+ - pos: 12.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 227
+ components:
+ - pos: 14.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 228
+ components:
+ - pos: 14.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 229
+ components:
+ - pos: 13.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 230
+ components:
+ - pos: 10.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 231
+ components:
+ - pos: 10.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 232
+ components:
+ - pos: 11.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 233
+ components:
+ - pos: 12.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 234
+ components:
+ - pos: 13.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 235
+ components:
+ - pos: 14.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 236
+ components:
+ - pos: 15.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 237
+ components:
+ - pos: 15.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 238
+ components:
+ - pos: 14.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 239
+ components:
+ - pos: 13.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 240
+ components:
+ - pos: 12.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 241
+ components:
+ - pos: 13.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 242
+ components:
+ - pos: 14.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 243
+ components:
+ - pos: 13.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 244
+ components:
+ - pos: 12.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 245
+ components:
+ - pos: 12.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 246
+ components:
+ - pos: 11.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 247
+ components:
+ - pos: 10.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 248
+ components:
+ - pos: 9.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 249
+ components:
+ - pos: 8.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 250
+ components:
+ - pos: 10.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 251
+ components:
+ - pos: 9.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 252
+ components:
+ - pos: 8.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 253
+ components:
+ - pos: 7.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 254
+ components:
+ - pos: 7.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 255
+ components:
+ - pos: 8.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 256
+ components:
+ - pos: 9.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 257
+ components:
+ - pos: 9.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 258
+ components:
+ - pos: 9.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 259
+ components:
+ - pos: 8.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 260
+ components:
+ - pos: 8.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 261
+ components:
+ - pos: 8.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 262
+ components:
+ - pos: 7.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 263
+ components:
+ - pos: 6.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 264
+ components:
+ - pos: 6.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 265
+ components:
+ - pos: 5.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 266
+ components:
+ - pos: 5.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 267
+ components:
+ - pos: 5.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 268
+ components:
+ - pos: 5.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 269
+ components:
+ - pos: 4.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 270
+ components:
+ - pos: 4.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 271
+ components:
+ - pos: 4.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 272
+ components:
+ - pos: 3.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 273
+ components:
+ - pos: 3.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 274
+ components:
+ - pos: 2.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 275
+ components:
+ - pos: 1.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 276
+ components:
+ - pos: 2.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 277
+ components:
+ - pos: 4.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 278
+ components:
+ - pos: 3.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 279
+ components:
+ - pos: 3.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 280
+ components:
+ - pos: 2.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 281
+ components:
+ - pos: 2.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 282
+ components:
+ - pos: 1.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 283
+ components:
+ - pos: 0.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 284
+ components:
+ - pos: -0.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 285
+ components:
+ - pos: -1.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 286
+ components:
+ - pos: -2.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 287
+ components:
+ - pos: -3.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 288
+ components:
+ - pos: -4.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 289
+ components:
+ - pos: -5.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 290
+ components:
+ - pos: -5.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 291
+ components:
+ - pos: -4.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 292
+ components:
+ - pos: -3.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 293
+ components:
+ - pos: -2.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 294
+ components:
+ - pos: -1.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 295
+ components:
+ - pos: -0.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 296
+ components:
+ - pos: -2.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 297
+ components:
+ - pos: -3.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 298
+ components:
+ - pos: -4.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 299
+ components:
+ - pos: -5.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 300
+ components:
+ - pos: 0.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 301
+ components:
+ - pos: 1.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 302
+ components:
+ - pos: 2.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 303
+ components:
+ - pos: 2.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 304
+ components:
+ - pos: 1.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 305
+ components:
+ - pos: 0.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 306
+ components:
+ - pos: 0.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 307
+ components:
+ - pos: 1.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 308
+ components:
+ - pos: 2.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 309
+ components:
+ - pos: -0.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 310
+ components:
+ - pos: -1.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 311
+ components:
+ - pos: -2.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 312
+ components:
+ - pos: -3.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 313
+ components:
+ - pos: -4.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 314
+ components:
+ - pos: -3.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 315
+ components:
+ - pos: -2.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 316
+ components:
+ - pos: -5.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 317
+ components:
+ - pos: -6.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 318
+ components:
+ - pos: -7.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 319
+ components:
+ - pos: -7.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 320
+ components:
+ - pos: -8.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 321
+ components:
+ - pos: -9.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 322
+ components:
+ - pos: -9.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 323
+ components:
+ - pos: -9.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 324
+ components:
+ - pos: -8.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 325
+ components:
+ - pos: -8.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 326
+ components:
+ - pos: -8.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 327
+ components:
+ - pos: -9.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 328
+ components:
+ - pos: -9.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 329
+ components:
+ - pos: -9.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 330
+ components:
+ - pos: -8.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 331
+ components:
+ - pos: -10.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 332
+ components:
+ - pos: -10.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 333
+ components:
+ - pos: -11.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 334
+ components:
+ - pos: -11.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 335
+ components:
+ - pos: -10.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 336
+ components:
+ - pos: -11.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 337
+ components:
+ - pos: -12.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 338
+ components:
+ - pos: -12.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 339
+ components:
+ - pos: -13.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 340
+ components:
+ - pos: -17.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 341
+ components:
+ - pos: -17.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 342
+ components:
+ - pos: -17.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 343
+ components:
+ - pos: -17.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 344
+ components:
+ - pos: -14.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 345
+ components:
+ - pos: -14.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 346
+ components:
+ - pos: -14.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 347
+ components:
+ - pos: -14.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 348
+ components:
+ - pos: -15.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 349
+ components:
+ - pos: -15.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 350
+ components:
+ - pos: -15.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 351
+ components:
+ - pos: -15.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 352
+ components:
+ - pos: -16.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 353
+ components:
+ - pos: -16.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 354
+ components:
+ - pos: -16.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 355
+ components:
+ - pos: -16.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 356
+ components:
+ - pos: -9.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 357
+ components:
+ - pos: -8.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 358
+ components:
+ - pos: -7.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 359
+ components:
+ - pos: -7.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 360
+ components:
+ - pos: -8.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 361
+ components:
+ - pos: -9.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 362
+ components:
+ - pos: -9.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 363
+ components:
+ - pos: -8.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 364
+ components:
+ - pos: -7.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 365
+ components:
+ - pos: 20.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 366
+ components:
+ - pos: -2.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 2209
+ components:
+ - pos: -8.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2210
+ components:
+ - pos: -11.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2211
+ components:
+ - pos: -10.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2212
+ components:
+ - pos: -10.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2213
+ components:
+ - pos: -10.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2214
+ components:
+ - pos: -10.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2215
+ components:
+ - pos: -10.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2216
+ components:
+ - pos: -10.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2217
+ components:
+ - pos: -10.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2218
+ components:
+ - pos: -10.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2219
+ components:
+ - pos: -8.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2220
+ components:
+ - pos: -7.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2221
+ components:
+ - pos: -7.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2222
+ components:
+ - pos: -7.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2223
+ components:
+ - pos: -7.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2224
+ components:
+ - pos: -7.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2225
+ components:
+ - pos: -7.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2226
+ components:
+ - pos: -7.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2227
+ components:
+ - pos: -7.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2228
+ components:
+ - pos: -7.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2229
+ components:
+ - pos: -7.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2230
+ components:
+ - pos: -7.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2231
+ components:
+ - pos: -7.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2232
+ components:
+ - pos: -7.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2233
+ components:
+ - pos: -7.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2234
+ components:
+ - pos: -7.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2235
+ components:
+ - pos: -8.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2236
+ components:
+ - pos: -8.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2237
+ components:
+ - pos: -8.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2238
+ components:
+ - pos: -8.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2239
+ components:
+ - pos: -8.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2240
+ components:
+ - pos: -8.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2241
+ components:
+ - pos: -8.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2242
+ components:
+ - pos: -8.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2243
+ components:
+ - pos: -8.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2244
+ components:
+ - pos: -8.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2245
+ components:
+ - pos: -8.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2246
+ components:
+ - pos: -8.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2247
+ components:
+ - pos: -9.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2248
+ components:
+ - pos: -9.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2249
+ components:
+ - pos: -9.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2250
+ components:
+ - pos: -9.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2251
+ components:
+ - pos: -9.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2252
+ components:
+ - pos: -9.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2253
+ components:
+ - pos: -9.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2254
+ components:
+ - pos: -9.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2255
+ components:
+ - pos: -9.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2256
+ components:
+ - pos: -9.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2257
+ components:
+ - pos: -8.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2258
+ components:
+ - pos: -8.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2259
+ components:
+ - pos: -10.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2260
+ components:
+ - pos: -10.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2261
+ components:
+ - pos: -10.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2262
+ components:
+ - pos: -10.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2263
+ components:
+ - pos: -10.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2264
+ components:
+ - pos: -10.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2265
+ components:
+ - pos: -10.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2266
+ components:
+ - pos: -9.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2267
+ components:
+ - pos: -9.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2268
+ components:
+ - pos: -9.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2269
+ components:
+ - pos: -9.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2270
+ components:
+ - pos: -9.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2271
+ components:
+ - pos: -8.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2272
+ components:
+ - pos: -7.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2273
+ components:
+ - pos: -7.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2274
+ components:
+ - pos: -6.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2275
+ components:
+ - pos: -6.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2276
+ components:
+ - pos: -5.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2277
+ components:
+ - pos: -5.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2278
+ components:
+ - pos: -4.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2279
+ components:
+ - pos: -4.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2280
+ components:
+ - pos: -3.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2281
+ components:
+ - pos: -3.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2282
+ components:
+ - pos: -2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2283
+ components:
+ - pos: -2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2284
+ components:
+ - pos: -1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2285
+ components:
+ - pos: -1.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2286
+ components:
+ - pos: -0.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2287
+ components:
+ - pos: -0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2288
+ components:
+ - pos: 0.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2289
+ components:
+ - pos: 0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2290
+ components:
+ - pos: 1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2291
+ components:
+ - pos: 1.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2292
+ components:
+ - pos: 2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2293
+ components:
+ - pos: 2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2294
+ components:
+ - pos: 3.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2295
+ components:
+ - pos: 3.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2296
+ components:
+ - pos: 4.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2297
+ components:
+ - pos: 4.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2298
+ components:
+ - pos: 5.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2299
+ components:
+ - pos: 5.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2300
+ components:
+ - pos: 6.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2301
+ components:
+ - pos: 6.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2302
+ components:
+ - pos: 7.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2303
+ components:
+ - pos: 7.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2304
+ components:
+ - pos: 8.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2305
+ components:
+ - pos: 8.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2306
+ components:
+ - pos: 11.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2307
+ components:
+ - pos: -0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2308
+ components:
+ - pos: 0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2309
+ components:
+ - pos: 1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2310
+ components:
+ - pos: 2.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2311
+ components:
+ - pos: 3.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2312
+ components:
+ - pos: 4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2313
+ components:
+ - pos: 5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2314
+ components:
+ - pos: 6.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2315
+ components:
+ - pos: 7.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2316
+ components:
+ - pos: 8.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2317
+ components:
+ - pos: 9.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2318
+ components:
+ - pos: 10.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2319
+ components:
+ - pos: 4.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2320
+ components:
+ - pos: 5.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2321
+ components:
+ - pos: 6.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2322
+ components:
+ - pos: 7.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2323
+ components:
+ - pos: 8.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2324
+ components:
+ - pos: 9.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2325
+ components:
+ - pos: -6.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2326
+ components:
+ - pos: -7.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2327
+ components:
+ - pos: -3.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2328
+ components:
+ - pos: -10.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2329
+ components:
+ - pos: -4.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2330
+ components:
+ - pos: -3.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2331
+ components:
+ - pos: -2.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2332
+ components:
+ - pos: -1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2333
+ components:
+ - pos: -0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2334
+ components:
+ - pos: 0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2335
+ components:
+ - pos: 1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2336
+ components:
+ - pos: 2.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2337
+ components:
+ - pos: 7.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2338
+ components:
+ - pos: 7.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2339
+ components:
+ - pos: 7.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2340
+ components:
+ - pos: 6.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2341
+ components:
+ - pos: 6.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2342
+ components:
+ - pos: 6.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2343
+ components:
+ - pos: 5.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2344
+ components:
+ - pos: 5.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2345
+ components:
+ - pos: 5.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2346
+ components:
+ - pos: 4.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2347
+ components:
+ - pos: 4.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2348
+ components:
+ - pos: 4.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2349
+ components:
+ - pos: 3.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2350
+ components:
+ - pos: 3.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2351
+ components:
+ - pos: 3.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2352
+ components:
+ - pos: 2.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2353
+ components:
+ - pos: 2.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2354
+ components:
+ - pos: 2.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2355
+ components:
+ - pos: 1.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2356
+ components:
+ - pos: 1.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2357
+ components:
+ - pos: 1.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2358
+ components:
+ - pos: 0.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2359
+ components:
+ - pos: 0.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2360
+ components:
+ - pos: 0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2361
+ components:
+ - pos: -0.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2362
+ components:
+ - pos: -0.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2363
+ components:
+ - pos: -0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2364
+ components:
+ - pos: -1.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2365
+ components:
+ - pos: -1.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2366
+ components:
+ - pos: -1.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2367
+ components:
+ - pos: -2.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2368
+ components:
+ - pos: -2.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2369
+ components:
+ - pos: -2.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2370
+ components:
+ - pos: -3.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2371
+ components:
+ - pos: -3.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2372
+ components:
+ - pos: -3.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2373
+ components:
+ - pos: -8.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2374
+ components:
+ - pos: -8.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2375
+ components:
+ - pos: -4.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2376
+ components:
+ - pos: -4.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2377
+ components:
+ - pos: -4.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2378
+ components:
+ - pos: -5.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2379
+ components:
+ - pos: -5.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2380
+ components:
+ - pos: -5.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2381
+ components:
+ - pos: -6.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2382
+ components:
+ - pos: -6.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2383
+ components:
+ - pos: -6.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2384
+ components:
+ - pos: -7.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2385
+ components:
+ - pos: -7.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2386
+ components:
+ - pos: -7.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2387
+ components:
+ - pos: -12.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2388
+ components:
+ - pos: -13.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2389
+ components:
+ - pos: -8.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2390
+ components:
+ - pos: -9.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2391
+ components:
+ - pos: -9.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2392
+ components:
+ - pos: -9.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2393
+ components:
+ - pos: -10.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2394
+ components:
+ - pos: -10.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2395
+ components:
+ - pos: -10.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2396
+ components:
+ - pos: -11.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2397
+ components:
+ - pos: -11.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2398
+ components:
+ - pos: -11.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2399
+ components:
+ - pos: -12.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2400
+ components:
+ - pos: -12.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2401
+ components:
+ - pos: -17.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2402
+ components:
+ - pos: -17.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2403
+ components:
+ - pos: -13.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2404
+ components:
+ - pos: -13.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2405
+ components:
+ - pos: -14.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2406
+ components:
+ - pos: -14.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2407
+ components:
+ - pos: -14.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2408
+ components:
+ - pos: -15.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2409
+ components:
+ - pos: -15.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2410
+ components:
+ - pos: -15.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2411
+ components:
+ - pos: -16.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2412
+ components:
+ - pos: -16.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2413
+ components:
+ - pos: -16.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2414
+ components:
+ - pos: -17.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2415
+ components:
+ - pos: 7.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2416
+ components:
+ - pos: 7.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2417
+ components:
+ - pos: 8.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2418
+ components:
+ - pos: 8.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2419
+ components:
+ - pos: 9.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2420
+ components:
+ - pos: 9.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2421
+ components:
+ - pos: 10.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2422
+ components:
+ - pos: 10.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2423
+ components:
+ - pos: 11.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2424
+ components:
+ - pos: 11.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2425
+ components:
+ - pos: 12.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2426
+ components:
+ - pos: 12.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2427
+ components:
+ - pos: 13.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2428
+ components:
+ - pos: 13.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2429
+ components:
+ - pos: 14.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2430
+ components:
+ - pos: 14.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2431
+ components:
+ - pos: 15.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2432
+ components:
+ - pos: 15.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2433
+ components:
+ - pos: 16.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2434
+ components:
+ - pos: 16.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2435
+ components:
+ - pos: 17.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2436
+ components:
+ - pos: 17.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2437
+ components:
+ - pos: 18.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2438
+ components:
+ - pos: 18.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2439
+ components:
+ - pos: 15.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 2440
+ components:
+ - pos: 16.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 2441
+ components:
+ - pos: 17.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 2442
+ components:
+ - pos: 16.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 2443
+ components:
+ - pos: 20.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2444
+ components:
+ - pos: 20.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2445
+ components:
+ - pos: 20.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2446
+ components:
+ - pos: 16.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2447
+ components:
+ - pos: 16.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2448
+ components:
+ - pos: 16.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2449
+ components:
+ - pos: 17.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2450
+ components:
+ - pos: 17.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2451
+ components:
+ - pos: 17.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2452
+ components:
+ - pos: 18.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2453
+ components:
+ - pos: 18.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2454
+ components:
+ - pos: 18.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2455
+ components:
+ - pos: 19.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2456
+ components:
+ - pos: 19.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2457
+ components:
+ - pos: 19.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2458
+ components:
+ - pos: 12.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2459
+ components:
+ - pos: 12.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2460
+ components:
+ - pos: 12.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2461
+ components:
+ - pos: 13.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2462
+ components:
+ - pos: 13.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2463
+ components:
+ - pos: 13.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2464
+ components:
+ - pos: 14.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2465
+ components:
+ - pos: 14.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2466
+ components:
+ - pos: 14.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2467
+ components:
+ - pos: 15.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2468
+ components:
+ - pos: 15.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2469
+ components:
+ - pos: 15.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2470
+ components:
+ - pos: 8.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2471
+ components:
+ - pos: 8.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2472
+ components:
+ - pos: 8.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2473
+ components:
+ - pos: 9.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2474
+ components:
+ - pos: 9.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2475
+ components:
+ - pos: 9.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2476
+ components:
+ - pos: 10.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2477
+ components:
+ - pos: 10.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2478
+ components:
+ - pos: 10.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2479
+ components:
+ - pos: 11.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2480
+ components:
+ - pos: 11.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2481
+ components:
+ - pos: 11.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2482
+ components:
+ - pos: 19.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2483
+ components:
+ - pos: 21.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2484
+ components:
+ - pos: 21.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2485
+ components:
+ - pos: 20.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2486
+ components:
+ - pos: 20.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2487
+ components:
+ - pos: 19.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2488
+ components:
+ - pos: 19.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2489
+ components:
+ - pos: 18.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2490
+ components:
+ - pos: 18.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2491
+ components:
+ - pos: 17.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2492
+ components:
+ - pos: 17.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2493
+ components:
+ - pos: 16.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2494
+ components:
+ - pos: 16.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2495
+ components:
+ - pos: 15.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2496
+ components:
+ - pos: 15.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2497
+ components:
+ - pos: 14.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2498
+ components:
+ - pos: 14.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2499
+ components:
+ - pos: 13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2500
+ components:
+ - pos: 13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2501
+ components:
+ - pos: 13.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2502
+ components:
+ - pos: 12.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2503
+ components:
+ - pos: 12.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2504
+ components:
+ - pos: 12.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2505
+ components:
+ - pos: 12.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2506
+ components:
+ - pos: 12.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2507
+ components:
+ - pos: 8.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2508
+ components:
+ - pos: 8.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2509
+ components:
+ - pos: 8.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2510
+ components:
+ - pos: 8.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2511
+ components:
+ - pos: 10.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2512
+ components:
+ - pos: 10.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2513
+ components:
+ - pos: 9.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2514
+ components:
+ - pos: 9.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2515
+ components:
+ - pos: 9.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2516
+ components:
+ - pos: 9.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2517
+ components:
+ - pos: 9.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2518
+ components:
+ - pos: 9.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2519
+ components:
+ - pos: 9.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2520
+ components:
+ - pos: 8.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2521
+ components:
+ - pos: 8.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2522
+ components:
+ - pos: 8.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2523
+ components:
+ - pos: 11.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2524
+ components:
+ - pos: 11.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2525
+ components:
+ - pos: 11.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2526
+ components:
+ - pos: 11.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2527
+ components:
+ - pos: 11.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2528
+ components:
+ - pos: 11.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2529
+ components:
+ - pos: 11.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2530
+ components:
+ - pos: 10.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2531
+ components:
+ - pos: 10.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2532
+ components:
+ - pos: 10.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2533
+ components:
+ - pos: 10.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2534
+ components:
+ - pos: 10.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2535
+ components:
+ - pos: 8.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2536
+ components:
+ - pos: 8.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2537
+ components:
+ - pos: 8.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2538
+ components:
+ - pos: 9.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2539
+ components:
+ - pos: 9.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2540
+ components:
+ - pos: 8.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2541
+ components:
+ - pos: 8.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2542
+ components:
+ - pos: 8.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2543
+ components:
+ - pos: 8.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2544
+ components:
+ - pos: 8.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2545
+ components:
+ - pos: 9.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2546
+ components:
+ - pos: 9.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2547
+ components:
+ - pos: 9.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2548
+ components:
+ - pos: 9.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2549
+ components:
+ - pos: 9.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2550
+ components:
+ - pos: 9.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2551
+ components:
+ - pos: 10.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2552
+ components:
+ - pos: 10.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2553
+ components:
+ - pos: 10.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2554
+ components:
+ - pos: 11.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2555
+ components:
+ - pos: 11.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2556
+ components:
+ - pos: 11.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2557
+ components:
+ - pos: 12.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2558
+ components:
+ - pos: 11.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2559
+ components:
+ - pos: 12.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2560
+ components:
+ - pos: 13.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2561
+ components:
+ - pos: 10.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2562
+ components:
+ - pos: 11.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2563
+ components:
+ - pos: 11.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2564
+ components:
+ - pos: 11.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2565
+ components:
+ - pos: 12.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2566
+ components:
+ - pos: 12.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2567
+ components:
+ - pos: 13.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2568
+ components:
+ - pos: 13.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2569
+ components:
+ - pos: 13.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2570
+ components:
+ - pos: 13.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2571
+ components:
+ - pos: 14.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2572
+ components:
+ - pos: 14.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2573
+ components:
+ - pos: 15.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2574
+ components:
+ - pos: 15.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2575
+ components:
+ - pos: 16.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2576
+ components:
+ - pos: 16.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2577
+ components:
+ - pos: 17.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2578
+ components:
+ - pos: 17.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2579
+ components:
+ - pos: 14.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2580
+ components:
+ - pos: 13.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2581
+ components:
+ - pos: 13.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2582
+ components:
+ - pos: 14.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2583
+ components:
+ - pos: 14.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2584
+ components:
+ - pos: 14.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2585
+ components:
+ - pos: 14.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2586
+ components:
+ - pos: 14.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2587
+ components:
+ - pos: 15.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2588
+ components:
+ - pos: 16.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2589
+ components:
+ - pos: 17.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2590
+ components:
+ - pos: 18.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2591
+ components:
+ - pos: 19.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2592
+ components:
+ - pos: 20.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2593
+ components:
+ - pos: 21.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2594
+ components:
+ - pos: 22.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2595
+ components:
+ - pos: 23.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2596
+ components:
+ - pos: 24.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2597
+ components:
+ - pos: 25.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2598
+ components:
+ - pos: 21.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2599
+ components:
+ - pos: 22.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2600
+ components:
+ - pos: 23.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2601
+ components:
+ - pos: 24.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2602
+ components:
+ - pos: 23.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2603
+ components:
+ - pos: 26.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2604
+ components:
+ - pos: 25.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2605
+ components:
+ - pos: 24.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2606
+ components:
+ - pos: 23.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2607
+ components:
+ - pos: 22.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2608
+ components:
+ - pos: 21.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2609
+ components:
+ - pos: 20.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2610
+ components:
+ - pos: 19.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2611
+ components:
+ - pos: 18.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2612
+ components:
+ - pos: 17.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2613
+ components:
+ - pos: 17.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2614
+ components:
+ - pos: 17.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2615
+ components:
+ - pos: 18.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2616
+ components:
+ - pos: 18.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2617
+ components:
+ - pos: 19.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2618
+ components:
+ - pos: 19.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2619
+ components:
+ - pos: 20.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2620
+ components:
+ - pos: 20.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2621
+ components:
+ - pos: 21.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2622
+ components:
+ - pos: 21.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2623
+ components:
+ - pos: 22.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2624
+ components:
+ - pos: 22.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2625
+ components:
+ - pos: 23.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2626
+ components:
+ - pos: 23.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2627
+ components:
+ - pos: 24.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2628
+ components:
+ - pos: 22.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2629
+ components:
+ - pos: 18.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2630
+ components:
+ - pos: 18.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2631
+ components:
+ - pos: 18.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2632
+ components:
+ - pos: 18.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2633
+ components:
+ - pos: 18.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2634
+ components:
+ - pos: 18.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2635
+ components:
+ - pos: 18.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2636
+ components:
+ - pos: 19.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2637
+ components:
+ - pos: 19.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2638
+ components:
+ - pos: 19.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2639
+ components:
+ - pos: 19.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2640
+ components:
+ - pos: 19.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2641
+ components:
+ - pos: 19.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2642
+ components:
+ - pos: 19.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2643
+ components:
+ - pos: 20.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2644
+ components:
+ - pos: 20.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2645
+ components:
+ - pos: 20.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2646
+ components:
+ - pos: 20.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2647
+ components:
+ - pos: 20.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2648
+ components:
+ - pos: 20.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2649
+ components:
+ - pos: 20.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2650
+ components:
+ - pos: 21.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2651
+ components:
+ - pos: 21.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2652
+ components:
+ - pos: 21.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2653
+ components:
+ - pos: 21.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2654
+ components:
+ - pos: 21.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2655
+ components:
+ - pos: 21.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2656
+ components:
+ - pos: 21.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2657
+ components:
+ - pos: 17.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2658
+ components:
+ - pos: 17.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2659
+ components:
+ - pos: 17.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2660
+ components:
+ - pos: 17.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2661
+ components:
+ - pos: 16.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2662
+ components:
+ - pos: 22.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2663
+ components:
+ - pos: 23.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2664
+ components:
+ - pos: 25.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2665
+ components:
+ - pos: 26.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2666
+ components:
+ - pos: 26.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2667
+ components:
+ - pos: 27.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2668
+ components:
+ - pos: 26.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2669
+ components:
+ - pos: 26.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2670
+ components:
+ - pos: 26.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2671
+ components:
+ - pos: 26.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2672
+ components:
+ - pos: 26.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2673
+ components:
+ - pos: 26.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2674
+ components:
+ - pos: 25.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2675
+ components:
+ - pos: 25.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2676
+ components:
+ - pos: 25.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2677
+ components:
+ - pos: 25.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2678
+ components:
+ - pos: 25.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2679
+ components:
+ - pos: 25.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2680
+ components:
+ - pos: 22.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2681
+ components:
+ - pos: 22.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2682
+ components:
+ - pos: 22.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2683
+ components:
+ - pos: 22.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2684
+ components:
+ - pos: 22.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2685
+ components:
+ - pos: 22.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2686
+ components:
+ - pos: 24.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2687
+ components:
+ - pos: 24.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2688
+ components:
+ - pos: 24.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2689
+ components:
+ - pos: 24.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2690
+ components:
+ - pos: 24.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2691
+ components:
+ - pos: 24.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2692
+ components:
+ - pos: 23.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2693
+ components:
+ - pos: 23.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2694
+ components:
+ - pos: 23.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2695
+ components:
+ - pos: 23.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2696
+ components:
+ - pos: 23.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2697
+ components:
+ - pos: 23.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2698
+ components:
+ - pos: 27.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2699
+ components:
+ - pos: 27.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2700
+ components:
+ - pos: 27.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2701
+ components:
+ - pos: 28.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2702
+ components:
+ - pos: 28.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2703
+ components:
+ - pos: 28.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2704
+ components:
+ - pos: 29.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2705
+ components:
+ - pos: 26.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2706
+ components:
+ - pos: 27.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2707
+ components:
+ - pos: 23.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2708
+ components:
+ - pos: 22.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2709
+ components:
+ - pos: 21.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2710
+ components:
+ - pos: 21.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2711
+ components:
+ - pos: 21.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2712
+ components:
+ - pos: 21.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2713
+ components:
+ - pos: 20.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2714
+ components:
+ - pos: 20.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2715
+ components:
+ - pos: 20.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2716
+ components:
+ - pos: 20.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2717
+ components:
+ - pos: 19.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2718
+ components:
+ - pos: 19.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2719
+ components:
+ - pos: 19.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2720
+ components:
+ - pos: 19.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2721
+ components:
+ - pos: 22.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2722
+ components:
+ - pos: 22.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 2723
+ components:
+ - pos: 20.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2724
+ components:
+ - pos: 20.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2725
+ components:
+ - pos: 20.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2726
+ components:
+ - pos: 20.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2727
+ components:
+ - pos: 19.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2728
+ components:
+ - pos: 19.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2729
+ components:
+ - pos: 19.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2730
+ components:
+ - pos: 19.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2731
+ components:
+ - pos: 18.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2732
+ components:
+ - pos: 18.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2733
+ components:
+ - pos: 18.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2734
+ components:
+ - pos: 18.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2735
+ components:
+ - pos: 23.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2736
+ components:
+ - pos: 23.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2737
+ components:
+ - pos: 23.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2738
+ components:
+ - pos: 23.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2739
+ components:
+ - pos: 22.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2740
+ components:
+ - pos: 22.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2741
+ components:
+ - pos: 22.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2742
+ components:
+ - pos: 22.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2743
+ components:
+ - pos: 21.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2744
+ components:
+ - pos: 21.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2745
+ components:
+ - pos: 21.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2746
+ components:
+ - pos: 21.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2747
+ components:
+ - pos: 17.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2748
+ components:
+ - pos: 17.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2749
+ components:
+ - pos: 17.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2750
+ components:
+ - pos: 17.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2751
+ components:
+ - pos: 16.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2752
+ components:
+ - pos: 16.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2753
+ components:
+ - pos: 16.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2754
+ components:
+ - pos: 16.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2755
+ components:
+ - pos: 15.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2756
+ components:
+ - pos: 15.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2757
+ components:
+ - pos: 15.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2758
+ components:
+ - pos: 15.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2759
+ components:
+ - pos: 24.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2760
+ components:
+ - pos: 24.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2761
+ components:
+ - pos: 24.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2762
+ components:
+ - pos: 25.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2763
+ components:
+ - pos: 25.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2764
+ components:
+ - pos: 26.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2765
+ components:
+ - pos: 26.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2766
+ components:
+ - pos: 26.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2767
+ components:
+ - pos: 25.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2768
+ components:
+ - pos: 15.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2769
+ components:
+ - pos: 15.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2770
+ components:
+ - pos: 16.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2771
+ components:
+ - pos: 16.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2772
+ components:
+ - pos: 17.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2773
+ components:
+ - pos: 17.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2774
+ components:
+ - pos: 18.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2775
+ components:
+ - pos: 18.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2776
+ components:
+ - pos: 19.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2777
+ components:
+ - pos: 19.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2778
+ components:
+ - pos: 20.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2779
+ components:
+ - pos: 21.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2780
+ components:
+ - pos: 21.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2781
+ components:
+ - pos: 22.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2782
+ components:
+ - pos: 22.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2783
+ components:
+ - pos: 23.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2784
+ components:
+ - pos: 23.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2785
+ components:
+ - pos: 23.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2786
+ components:
+ - pos: 22.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2787
+ components:
+ - pos: 21.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2788
+ components:
+ - pos: 20.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2789
+ components:
+ - pos: 19.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2790
+ components:
+ - pos: 18.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2791
+ components:
+ - pos: 17.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2792
+ components:
+ - pos: 16.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2793
+ components:
+ - pos: 16.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2794
+ components:
+ - pos: 17.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2795
+ components:
+ - pos: 18.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2796
+ components:
+ - pos: 19.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2797
+ components:
+ - pos: 20.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2798
+ components:
+ - pos: 21.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2799
+ components:
+ - pos: 22.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2800
+ components:
+ - pos: 24.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2801
+ components:
+ - pos: 24.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2802
+ components:
+ - pos: 25.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2803
+ components:
+ - pos: 25.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2804
+ components:
+ - pos: 17.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2805
+ components:
+ - pos: 17.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2806
+ components:
+ - pos: 17.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2807
+ components:
+ - pos: 17.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2808
+ components:
+ - pos: 16.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2809
+ components:
+ - pos: 16.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2810
+ components:
+ - pos: 16.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2811
+ components:
+ - pos: 16.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2812
+ components:
+ - pos: 15.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2813
+ components:
+ - pos: 15.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2814
+ components:
+ - pos: 15.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2815
+ components:
+ - pos: 15.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2816
+ components:
+ - pos: 20.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2817
+ components:
+ - pos: 20.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2818
+ components:
+ - pos: 20.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2819
+ components:
+ - pos: 20.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2820
+ components:
+ - pos: 19.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2821
+ components:
+ - pos: 19.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2822
+ components:
+ - pos: 19.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2823
+ components:
+ - pos: 19.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2824
+ components:
+ - pos: 18.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2825
+ components:
+ - pos: 18.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2826
+ components:
+ - pos: 18.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2827
+ components:
+ - pos: 18.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2828
+ components:
+ - pos: 23.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2829
+ components:
+ - pos: 23.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2830
+ components:
+ - pos: 23.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2831
+ components:
+ - pos: 23.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2832
+ components:
+ - pos: 22.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2833
+ components:
+ - pos: 22.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2834
+ components:
+ - pos: 22.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2835
+ components:
+ - pos: 22.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2836
+ components:
+ - pos: 21.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2837
+ components:
+ - pos: 21.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2838
+ components:
+ - pos: 21.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2839
+ components:
+ - pos: 21.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2840
+ components:
+ - pos: 10.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2841
+ components:
+ - pos: 22.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2842
+ components:
+ - pos: 21.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2843
+ components:
+ - pos: 20.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2844
+ components:
+ - pos: 19.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2845
+ components:
+ - pos: 18.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2846
+ components:
+ - pos: 17.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2847
+ components:
+ - pos: 16.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2848
+ components:
+ - pos: 15.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2849
+ components:
+ - pos: 14.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2850
+ components:
+ - pos: 13.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2851
+ components:
+ - pos: 12.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2852
+ components:
+ - pos: 11.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2853
+ components:
+ - pos: 11.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2854
+ components:
+ - pos: 12.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2855
+ components:
+ - pos: 13.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2856
+ components:
+ - pos: 14.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2857
+ components:
+ - pos: 14.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2858
+ components:
+ - pos: 14.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2859
+ components:
+ - pos: 13.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2860
+ components:
+ - pos: 22.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2861
+ components:
+ - pos: 22.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2862
+ components:
+ - pos: 23.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2863
+ components:
+ - pos: 21.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2864
+ components:
+ - pos: 20.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2865
+ components:
+ - pos: 19.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2866
+ components:
+ - pos: 18.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2867
+ components:
+ - pos: 17.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2868
+ components:
+ - pos: 16.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2869
+ components:
+ - pos: 15.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2870
+ components:
+ - pos: 14.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2871
+ components:
+ - pos: 13.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2872
+ components:
+ - pos: 12.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2873
+ components:
+ - pos: 11.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2874
+ components:
+ - pos: 10.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2875
+ components:
+ - pos: 9.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2876
+ components:
+ - pos: 8.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2877
+ components:
+ - pos: 7.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2878
+ components:
+ - pos: 8.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2879
+ components:
+ - pos: 7.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2880
+ components:
+ - pos: 20.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2881
+ components:
+ - pos: 19.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2882
+ components:
+ - pos: 18.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2883
+ components:
+ - pos: 17.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2884
+ components:
+ - pos: 16.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2885
+ components:
+ - pos: 15.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2886
+ components:
+ - pos: 14.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2887
+ components:
+ - pos: 13.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2888
+ components:
+ - pos: 12.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2889
+ components:
+ - pos: 11.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2890
+ components:
+ - pos: 10.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2891
+ components:
+ - pos: 9.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2892
+ components:
+ - pos: 7.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2893
+ components:
+ - pos: 8.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2894
+ components:
+ - pos: 9.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2895
+ components:
+ - pos: 10.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2896
+ components:
+ - pos: 11.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2897
+ components:
+ - pos: 12.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2898
+ components:
+ - pos: 13.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2899
+ components:
+ - pos: 14.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2900
+ components:
+ - pos: 15.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2901
+ components:
+ - pos: 16.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2902
+ components:
+ - pos: 17.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2903
+ components:
+ - pos: 18.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2904
+ components:
+ - pos: 19.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2905
+ components:
+ - pos: 20.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2906
+ components:
+ - pos: 20.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2907
+ components:
+ - pos: 16.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2908
+ components:
+ - pos: 15.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2909
+ components:
+ - pos: 14.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2910
+ components:
+ - pos: 13.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2911
+ components:
+ - pos: 12.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2912
+ components:
+ - pos: 11.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2913
+ components:
+ - pos: 10.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2914
+ components:
+ - pos: 9.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2915
+ components:
+ - pos: 8.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2916
+ components:
+ - pos: 9.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 2917
+ components:
+ - pos: 10.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 2918
+ components:
+ - pos: 10.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 2919
+ components:
+ - pos: 10.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 2920
+ components:
+ - pos: 9.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 2921
+ components:
+ - pos: 11.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 2922
+ components:
+ - pos: 11.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 2923
+ components:
+ - pos: 12.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 2924
+ components:
+ - pos: 13.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 2925
+ components:
+ - pos: 14.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 2926
+ components:
+ - pos: 15.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 2927
+ components:
+ - pos: 14.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 2928
+ components:
+ - pos: 12.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 2929
+ components:
+ - pos: 12.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 2930
+ components:
+ - pos: 13.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 2931
+ components:
+ - pos: 6.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2932
+ components:
+ - pos: 6.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2933
+ components:
+ - pos: 6.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2934
+ components:
+ - pos: 6.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2935
+ components:
+ - pos: 6.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2936
+ components:
+ - pos: 5.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2937
+ components:
+ - pos: 5.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2938
+ components:
+ - pos: 5.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2939
+ components:
+ - pos: 5.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2940
+ components:
+ - pos: 5.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2941
+ components:
+ - pos: 4.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2942
+ components:
+ - pos: 4.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2943
+ components:
+ - pos: 4.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2944
+ components:
+ - pos: 4.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2945
+ components:
+ - pos: 4.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2946
+ components:
+ - pos: 3.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 2947
+ components:
+ - pos: 3.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2948
+ components:
+ - pos: 3.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 2949
+ components:
+ - pos: 3.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 2950
+ components:
+ - pos: 3.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2951
+ components:
+ - pos: 6.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2952
+ components:
+ - pos: 5.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2953
+ components:
+ - pos: 4.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2954
+ components:
+ - pos: 3.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 2955
+ components:
+ - pos: 4.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 2956
+ components:
+ - pos: 5.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 2957
+ components:
+ - pos: 5.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 2958
+ components:
+ - pos: 6.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2959
+ components:
+ - pos: 6.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2960
+ components:
+ - pos: 6.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2961
+ components:
+ - pos: 7.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 2962
+ components:
+ - pos: 7.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2963
+ components:
+ - pos: 7.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2964
+ components:
+ - pos: 8.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2965
+ components:
+ - pos: 7.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2966
+ components:
+ - pos: 5.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2967
+ components:
+ - pos: 5.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2968
+ components:
+ - pos: 5.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2969
+ components:
+ - pos: 5.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2970
+ components:
+ - pos: 6.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2971
+ components:
+ - pos: 6.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2972
+ components:
+ - pos: 6.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2973
+ components:
+ - pos: 7.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2974
+ components:
+ - pos: 7.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2975
+ components:
+ - pos: 7.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2976
+ components:
+ - pos: 8.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2977
+ components:
+ - pos: 8.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2978
+ components:
+ - pos: 8.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2979
+ components:
+ - pos: 4.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 2980
+ components:
+ - pos: 4.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2981
+ components:
+ - pos: 3.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 2982
+ components:
+ - pos: 3.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2983
+ components:
+ - pos: 2.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2984
+ components:
+ - pos: 1.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2985
+ components:
+ - pos: 0.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 2986
+ components:
+ - pos: 0.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2987
+ components:
+ - pos: 1.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2988
+ components:
+ - pos: 0.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2989
+ components:
+ - pos: -0.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2990
+ components:
+ - pos: -1.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 2991
+ components:
+ - pos: -1.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2992
+ components:
+ - pos: -0.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 2993
+ components:
+ - pos: -7.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2994
+ components:
+ - pos: -7.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2995
+ components:
+ - pos: 4.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2996
+ components:
+ - pos: 4.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2997
+ components:
+ - pos: 3.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2998
+ components:
+ - pos: 3.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2999
+ components:
+ - pos: 2.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3000
+ components:
+ - pos: 2.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3001
+ components:
+ - pos: 1.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3002
+ components:
+ - pos: 1.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3003
+ components:
+ - pos: 0.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3004
+ components:
+ - pos: 0.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3005
+ components:
+ - pos: -0.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3006
+ components:
+ - pos: -0.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3007
+ components:
+ - pos: -1.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3008
+ components:
+ - pos: -1.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3009
+ components:
+ - pos: -2.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3010
+ components:
+ - pos: -2.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3011
+ components:
+ - pos: -3.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3012
+ components:
+ - pos: -3.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3013
+ components:
+ - pos: -4.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3014
+ components:
+ - pos: -4.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3015
+ components:
+ - pos: -5.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3016
+ components:
+ - pos: -5.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3017
+ components:
+ - pos: -6.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3018
+ components:
+ - pos: -6.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3019
+ components:
+ - pos: -8.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3020
+ components:
+ - pos: -7.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3021
+ components:
+ - pos: -6.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3022
+ components:
+ - pos: -5.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3023
+ components:
+ - pos: -4.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3024
+ components:
+ - pos: -3.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3025
+ components:
+ - pos: -2.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3026
+ components:
+ - pos: -7.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 3027
+ components:
+ - pos: -7.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 3028
+ components:
+ - pos: -7.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 3029
+ components:
+ - pos: -6.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 3030
+ components:
+ - pos: -6.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 3031
+ components:
+ - pos: -6.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 3032
+ components:
+ - pos: -8.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 3033
+ components:
+ - pos: -6.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3034
+ components:
+ - pos: -5.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3035
+ components:
+ - pos: -4.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3036
+ components:
+ - pos: -9.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 3037
+ components:
+ - pos: 0.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3038
+ components:
+ - pos: 2.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3039
+ components:
+ - pos: 1.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3040
+ components:
+ - pos: 1.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3041
+ components:
+ - pos: 0.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3042
+ components:
+ - pos: -1.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3043
+ components:
+ - pos: -1.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3044
+ components:
+ - pos: -1.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3045
+ components:
+ - pos: -1.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3046
+ components:
+ - pos: -1.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3047
+ components:
+ - pos: -1.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 3048
+ components:
+ - pos: -1.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 3049
+ components:
+ - pos: -1.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 3050
+ components:
+ - pos: -0.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3051
+ components:
+ - pos: -0.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3052
+ components:
+ - pos: -0.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3053
+ components:
+ - pos: -0.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3054
+ components:
+ - pos: -0.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3055
+ components:
+ - pos: -0.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 3056
+ components:
+ - pos: -0.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 3057
+ components:
+ - pos: -0.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 3058
+ components:
+ - pos: 0.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3059
+ components:
+ - pos: 0.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 3060
+ components:
+ - pos: 0.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 3061
+ components:
+ - pos: 1.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3062
+ components:
+ - pos: 1.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 3063
+ components:
+ - pos: 1.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 3064
+ components:
+ - pos: 2.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3065
+ components:
+ - pos: 2.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 3066
+ components:
+ - pos: 2.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 3067
+ components:
+ - pos: 0.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 3068
+ components:
+ - pos: 1.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 3069
+ components:
+ - pos: 1.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 3070
+ components:
+ - pos: 0.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 3071
+ components:
+ - pos: 0.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 3072
+ components:
+ - pos: -4.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 3073
+ components:
+ - pos: -5.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 3074
+ components:
+ - pos: -4.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 3075
+ components:
+ - pos: -4.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 3076
+ components:
+ - pos: -4.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 3077
+ components:
+ - pos: -4.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 3078
+ components:
+ - pos: -4.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3079
+ components:
+ - pos: -4.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3080
+ components:
+ - pos: -4.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3081
+ components:
+ - pos: -4.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3082
+ components:
+ - pos: -3.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 3083
+ components:
+ - pos: -3.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 3084
+ components:
+ - pos: -3.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 3085
+ components:
+ - pos: -3.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 3086
+ components:
+ - pos: -3.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3087
+ components:
+ - pos: -3.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3088
+ components:
+ - pos: -3.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3089
+ components:
+ - pos: -3.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3090
+ components:
+ - pos: -2.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 3091
+ components:
+ - pos: -2.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 3092
+ components:
+ - pos: -2.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 3093
+ components:
+ - pos: -2.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 3094
+ components:
+ - pos: -2.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3095
+ components:
+ - pos: -2.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3096
+ components:
+ - pos: -2.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3097
+ components:
+ - pos: -2.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3098
+ components:
+ - pos: -5.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 3099
+ components:
+ - pos: -5.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 3100
+ components:
+ - pos: -5.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3101
+ components:
+ - pos: -5.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3102
+ components:
+ - pos: -5.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3103
+ components:
+ - pos: -5.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3104
+ components:
+ - pos: -6.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3105
+ components:
+ - pos: -6.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3106
+ components:
+ - pos: -6.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3107
+ components:
+ - pos: -6.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3108
+ components:
+ - pos: -6.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 3109
+ components:
+ - pos: -7.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3110
+ components:
+ - pos: -7.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3111
+ components:
+ - pos: -7.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3112
+ components:
+ - pos: -7.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3113
+ components:
+ - pos: -8.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3114
+ components:
+ - pos: -8.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3115
+ components:
+ - pos: -8.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3116
+ components:
+ - pos: -8.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3117
+ components:
+ - pos: -9.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3118
+ components:
+ - pos: -9.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3119
+ components:
+ - pos: -9.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3120
+ components:
+ - pos: -9.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3121
+ components:
+ - pos: -10.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3122
+ components:
+ - pos: -10.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3123
+ components:
+ - pos: -10.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3124
+ components:
+ - pos: -11.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3125
+ components:
+ - pos: -11.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3126
+ components:
+ - pos: -11.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3127
+ components:
+ - pos: -11.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3128
+ components:
+ - pos: -12.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3129
+ components:
+ - pos: -12.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3130
+ components:
+ - pos: -12.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3131
+ components:
+ - pos: -12.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3132
+ components:
+ - pos: -16.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3133
+ components:
+ - pos: -16.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3134
+ components:
+ - pos: -16.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3135
+ components:
+ - pos: -16.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3136
+ components:
+ - pos: -17.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3137
+ components:
+ - pos: -17.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3138
+ components:
+ - pos: -17.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3139
+ components:
+ - pos: -17.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3140
+ components:
+ - pos: -18.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3141
+ components:
+ - pos: -18.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3142
+ components:
+ - pos: -18.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3143
+ components:
+ - pos: -18.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3144
+ components:
+ - pos: -13.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3145
+ components:
+ - pos: -13.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3146
+ components:
+ - pos: -13.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3147
+ components:
+ - pos: -13.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3148
+ components:
+ - pos: -14.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3149
+ components:
+ - pos: -14.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3150
+ components:
+ - pos: -14.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3151
+ components:
+ - pos: -14.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3152
+ components:
+ - pos: -15.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3153
+ components:
+ - pos: -15.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3154
+ components:
+ - pos: -15.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 3155
+ components:
+ - pos: -15.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 3156
+ components:
+ - pos: -10.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3157
+ components:
+ - pos: -11.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3158
+ components:
+ - pos: -12.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3159
+ components:
+ - pos: -13.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3160
+ components:
+ - pos: -14.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3161
+ components:
+ - pos: -13.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3162
+ components:
+ - pos: -12.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3163
+ components:
+ - pos: -12.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 3164
+ components:
+ - pos: -17.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3165
+ components:
+ - pos: -17.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3166
+ components:
+ - pos: -18.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 3167
+ components:
+ - pos: -18.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 3168
+ components:
+ - pos: -22.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3169
+ components:
+ - pos: -21.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3170
+ components:
+ - pos: -19.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 3171
+ components:
+ - pos: -21.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3172
+ components:
+ - pos: -21.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 3173
+ components:
+ - pos: -21.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 3174
+ components:
+ - pos: -21.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 3175
+ components:
+ - pos: -20.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3176
+ components:
+ - pos: -20.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 3177
+ components:
+ - pos: -20.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 3178
+ components:
+ - pos: -20.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 3179
+ components:
+ - pos: -19.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 3180
+ components:
+ - pos: -19.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 3181
+ components:
+ - pos: -19.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 3182
+ components:
+ - pos: -19.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 3183
+ components:
+ - pos: -18.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 3184
+ components:
+ - pos: -18.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 3185
+ components:
+ - pos: -18.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 3186
+ components:
+ - pos: -18.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3187
+ components:
+ - pos: -20.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3188
+ components:
+ - pos: -19.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3189
+ components:
+ - pos: -13.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3190
+ components:
+ - pos: -12.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3191
+ components:
+ - pos: -13.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 3192
+ components:
+ - pos: -13.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 3193
+ components:
+ - pos: -12.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 3194
+ components:
+ - pos: -11.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3195
+ components:
+ - pos: -11.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 3196
+ components:
+ - pos: -11.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 3197
+ components:
+ - pos: -10.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 3198
+ components:
+ - pos: -10.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 3199
+ components:
+ - pos: -10.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 3200
+ components:
+ - pos: -12.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3201
+ components:
+ - pos: -12.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3202
+ components:
+ - pos: -12.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 3203
+ components:
+ - pos: -12.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3204
+ components:
+ - pos: -13.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3205
+ components:
+ - pos: -13.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3206
+ components:
+ - pos: -13.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 3207
+ components:
+ - pos: -13.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3208
+ components:
+ - pos: -14.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3209
+ components:
+ - pos: -14.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3210
+ components:
+ - pos: -14.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 3211
+ components:
+ - pos: -20.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3212
+ components:
+ - pos: -14.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3213
+ components:
+ - pos: -15.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3214
+ components:
+ - pos: -15.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3215
+ components:
+ - pos: -15.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 3216
+ components:
+ - pos: -15.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3217
+ components:
+ - pos: -16.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3218
+ components:
+ - pos: -16.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3219
+ components:
+ - pos: -16.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 3220
+ components:
+ - pos: -16.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3221
+ components:
+ - pos: -17.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3222
+ components:
+ - pos: -17.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3223
+ components:
+ - pos: -17.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 3224
+ components:
+ - pos: -17.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3225
+ components:
+ - pos: -18.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3226
+ components:
+ - pos: -18.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3227
+ components:
+ - pos: -18.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 3228
+ components:
+ - pos: -18.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3229
+ components:
+ - pos: -19.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3230
+ components:
+ - pos: -19.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3231
+ components:
+ - pos: -19.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 3232
+ components:
+ - pos: -19.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3233
+ components:
+ - pos: -20.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 3234
+ components:
+ - pos: -20.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 3235
+ components:
+ - pos: -20.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 3236
+ components:
+ - pos: -13.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 3237
+ components:
+ - pos: -12.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 3238
+ components:
+ - pos: -11.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 3239
+ components:
+ - pos: -11.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3240
+ components:
+ - pos: -11.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 3241
+ components:
+ - pos: -12.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 3242
+ components:
+ - pos: -12.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 3243
+ components:
+ - pos: -11.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 3244
+ components:
+ - pos: -11.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 3245
+ components:
+ - pos: -11.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 3246
+ components:
+ - pos: -11.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 3247
+ components:
+ - pos: -11.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 3248
+ components:
+ - pos: -11.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 3249
+ components:
+ - pos: -11.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 3250
+ components:
+ - pos: -11.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 3251
+ components:
+ - pos: -11.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3252
+ components:
+ - pos: -11.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3253
+ components:
+ - pos: -11.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3254
+ components:
+ - pos: -12.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3255
+ components:
+ - pos: -12.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3256
+ components:
+ - pos: -12.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3257
+ components:
+ - pos: -12.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 3258
+ components:
+ - pos: -12.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 3259
+ components:
+ - pos: -12.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 3260
+ components:
+ - pos: -21.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 3261
+ components:
+ - pos: -21.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3262
+ components:
+ - pos: -24.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3263
+ components:
+ - pos: -22.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 3264
+ components:
+ - pos: -24.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 3265
+ components:
+ - pos: -23.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 3266
+ components:
+ - pos: -22.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 3267
+ components:
+ - pos: -21.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 3268
+ components:
+ - pos: -20.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 3269
+ components:
+ - pos: -19.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 3270
+ components:
+ - pos: -18.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 3271
+ components:
+ - pos: -17.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 3272
+ components:
+ - pos: -18.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 3273
+ components:
+ - pos: -19.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 3274
+ components:
+ - pos: -20.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 3275
+ components:
+ - pos: -21.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 3276
+ components:
+ - pos: -22.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 3277
+ components:
+ - pos: -23.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 3278
+ components:
+ - pos: -24.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 3279
+ components:
+ - pos: -25.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 3280
+ components:
+ - pos: -26.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 3281
+ components:
+ - pos: -26.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 3282
+ components:
+ - pos: -25.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 3283
+ components:
+ - pos: -24.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 3284
+ components:
+ - pos: -23.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 3285
+ components:
+ - pos: -22.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 3286
+ components:
+ - pos: -21.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 3287
+ components:
+ - pos: -20.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 3288
+ components:
+ - pos: -19.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 3289
+ components:
+ - pos: -21.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 3290
+ components:
+ - pos: -21.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 3291
+ components:
+ - pos: -21.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 3292
+ components:
+ - pos: -21.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 3293
+ components:
+ - pos: -20.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 3294
+ components:
+ - pos: -20.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 3295
+ components:
+ - pos: -20.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 3296
+ components:
+ - pos: -20.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 3297
+ components:
+ - pos: -19.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 3298
+ components:
+ - pos: -19.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 3299
+ components:
+ - pos: -19.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 3300
+ components:
+ - pos: -19.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 3301
+ components:
+ - pos: -24.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 3302
+ components:
+ - pos: -24.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 3303
+ components:
+ - pos: -24.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 3304
+ components:
+ - pos: -24.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 3305
+ components:
+ - pos: -23.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 3306
+ components:
+ - pos: -23.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 3307
+ components:
+ - pos: -23.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 3308
+ components:
+ - pos: -23.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 3309
+ components:
+ - pos: -22.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 3310
+ components:
+ - pos: -22.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 3311
+ components:
+ - pos: -22.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 3312
+ components:
+ - pos: -22.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 3313
+ components:
+ - pos: -25.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 3314
+ components:
+ - pos: -25.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 3315
+ components:
+ - pos: -25.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 3316
+ components:
+ - pos: -18.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 3317
+ components:
+ - pos: -23.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 3318
+ components:
+ - pos: -22.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 3319
+ components:
+ - pos: -21.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 3320
+ components:
+ - pos: -20.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 3321
+ components:
+ - pos: -19.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 3322
+ components:
+ - pos: -18.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 3323
+ components:
+ - pos: -17.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 3324
+ components:
+ - pos: -21.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 3325
+ components:
+ - pos: -21.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3326
+ components:
+ - pos: -21.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3327
+ components:
+ - pos: -21.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 3328
+ components:
+ - pos: -21.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 3329
+ components:
+ - pos: -21.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3330
+ components:
+ - pos: -21.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3331
+ components:
+ - pos: -21.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3332
+ components:
+ - pos: -21.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 3333
+ components:
+ - pos: -20.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 3334
+ components:
+ - pos: -20.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3335
+ components:
+ - pos: -20.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3336
+ components:
+ - pos: -20.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 3337
+ components:
+ - pos: -20.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 3338
+ components:
+ - pos: -20.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3339
+ components:
+ - pos: -20.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3340
+ components:
+ - pos: -20.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3341
+ components:
+ - pos: -20.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 3342
+ components:
+ - pos: -19.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 3343
+ components:
+ - pos: -19.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3344
+ components:
+ - pos: -19.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3345
+ components:
+ - pos: -19.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 3346
+ components:
+ - pos: -19.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 3347
+ components:
+ - pos: -19.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3348
+ components:
+ - pos: -19.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3349
+ components:
+ - pos: -19.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3350
+ components:
+ - pos: -19.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 3351
+ components:
+ - pos: -18.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 3352
+ components:
+ - pos: -18.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3353
+ components:
+ - pos: -18.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3354
+ components:
+ - pos: -18.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 3355
+ components:
+ - pos: -18.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 3356
+ components:
+ - pos: -18.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3357
+ components:
+ - pos: -18.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3358
+ components:
+ - pos: -18.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3359
+ components:
+ - pos: -18.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 3360
+ components:
+ - pos: -17.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 3361
+ components:
+ - pos: -17.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3362
+ components:
+ - pos: -17.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3363
+ components:
+ - pos: -17.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 3364
+ components:
+ - pos: -17.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 3365
+ components:
+ - pos: -17.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3366
+ components:
+ - pos: -17.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3367
+ components:
+ - pos: -17.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3368
+ components:
+ - pos: -17.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 3369
+ components:
+ - pos: -16.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 3370
+ components:
+ - pos: -16.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3371
+ components:
+ - pos: -16.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3372
+ components:
+ - pos: -15.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3373
+ components:
+ - pos: -15.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3374
+ components:
+ - pos: -15.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 3375
+ components:
+ - pos: -14.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 3376
+ components:
+ - pos: -16.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 3377
+ components:
+ - pos: -16.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 3378
+ components:
+ - pos: -16.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3379
+ components:
+ - pos: -16.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3380
+ components:
+ - pos: -16.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3381
+ components:
+ - pos: -16.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 3382
+ components:
+ - pos: -15.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 3383
+ components:
+ - pos: -15.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3384
+ components:
+ - pos: -15.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3385
+ components:
+ - pos: -15.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 3386
+ components:
+ - pos: -15.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 3387
+ components:
+ - pos: -15.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3388
+ components:
+ - pos: -14.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3389
+ components:
+ - pos: -14.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3390
+ components:
+ - pos: -14.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 3391
+ components:
+ - pos: -14.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 3392
+ components:
+ - pos: -14.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3393
+ components:
+ - pos: -14.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3394
+ components:
+ - pos: -14.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3395
+ components:
+ - pos: -14.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 3396
+ components:
+ - pos: -20.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 3397
+ components:
+ - pos: -19.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 3398
+ components:
+ - pos: -18.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 3399
+ components:
+ - pos: -17.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 3400
+ components:
+ - pos: -16.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 3401
+ components:
+ - pos: -15.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 3402
+ components:
+ - pos: -14.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 3403
+ components:
+ - pos: -13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 3404
+ components:
+ - pos: -12.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 3405
+ components:
+ - pos: -11.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 3406
+ components:
+ - pos: -10.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 3407
+ components:
+ - pos: -13.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 3408
+ components:
+ - pos: -13.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3409
+ components:
+ - pos: -13.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3410
+ components:
+ - pos: -13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 3411
+ components:
+ - pos: -12.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3412
+ components:
+ - pos: -12.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3413
+ components:
+ - pos: -12.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 3414
+ components:
+ - pos: -11.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3415
+ components:
+ - pos: -11.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3416
+ components:
+ - pos: -11.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 3417
+ components:
+ - pos: -10.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3418
+ components:
+ - pos: -10.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3419
+ components:
+ - pos: -10.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 3420
+ components:
+ - pos: -18.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 3421
+ components:
+ - pos: -18.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 3422
+ components:
+ - pos: -19.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 3423
+ components:
+ - pos: -23.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3424
+ components:
+ - pos: -22.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 3425
+ components:
+ - pos: -22.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 3426
+ components:
+ - pos: -24.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 3427
+ components:
+ - pos: -25.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 3428
+ components:
+ - pos: -24.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 3429
+ components:
+ - pos: -23.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 3430
+ components:
+ - pos: -22.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 3431
+ components:
+ - pos: -22.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3432
+ components:
+ - pos: -23.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3433
+ components:
+ - pos: -24.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 3434
+ components:
+ - pos: -25.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3435
+ components:
+ - pos: -22.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3436
+ components:
+ - pos: -24.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3437
+ components:
+ - pos: -24.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 3438
+ components:
+ - pos: -22.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3439
+ components:
+ - pos: -23.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 3440
+ components:
+ - pos: -23.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 3441
+ components:
+ - pos: -22.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 3442
+ components:
+ - pos: -4.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3443
+ components:
+ - pos: -16.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3444
+ components:
+ - pos: -15.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3445
+ components:
+ - pos: -14.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3446
+ components:
+ - pos: -13.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3447
+ components:
+ - pos: -12.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3448
+ components:
+ - pos: -11.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3449
+ components:
+ - pos: -10.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3450
+ components:
+ - pos: -9.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3451
+ components:
+ - pos: -8.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3452
+ components:
+ - pos: -7.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3453
+ components:
+ - pos: -6.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3454
+ components:
+ - pos: -5.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 3455
+ components:
+ - pos: -17.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 3456
+ components:
+ - pos: -16.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 3457
+ components:
+ - pos: -15.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 3458
+ components:
+ - pos: -14.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 3459
+ components:
+ - pos: -13.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 3460
+ components:
+ - pos: -12.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 3461
+ components:
+ - pos: -11.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 3462
+ components:
+ - pos: -10.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 3463
+ components:
+ - pos: -10.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3464
+ components:
+ - pos: -11.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3465
+ components:
+ - pos: -12.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3466
+ components:
+ - pos: -13.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3467
+ components:
+ - pos: -14.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3468
+ components:
+ - pos: -15.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3469
+ components:
+ - pos: -16.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3470
+ components:
+ - pos: -15.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3471
+ components:
+ - pos: -14.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3472
+ components:
+ - pos: -13.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3473
+ components:
+ - pos: -12.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3474
+ components:
+ - pos: -11.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3475
+ components:
+ - pos: -10.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3476
+ components:
+ - pos: -14.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3477
+ components:
+ - pos: -4.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3478
+ components:
+ - pos: -4.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3479
+ components:
+ - pos: -4.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3480
+ components:
+ - pos: -8.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3481
+ components:
+ - pos: -8.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3482
+ components:
+ - pos: -8.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3483
+ components:
+ - pos: -7.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3484
+ components:
+ - pos: -7.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3485
+ components:
+ - pos: -7.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3486
+ components:
+ - pos: -6.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3487
+ components:
+ - pos: -6.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3488
+ components:
+ - pos: -6.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3489
+ components:
+ - pos: -5.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3490
+ components:
+ - pos: -5.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3491
+ components:
+ - pos: -5.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3492
+ components:
+ - pos: -12.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3493
+ components:
+ - pos: -12.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3494
+ components:
+ - pos: -12.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3495
+ components:
+ - pos: -11.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3496
+ components:
+ - pos: -11.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3497
+ components:
+ - pos: -11.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3498
+ components:
+ - pos: -10.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3499
+ components:
+ - pos: -10.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3500
+ components:
+ - pos: -10.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3501
+ components:
+ - pos: -9.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3502
+ components:
+ - pos: -9.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3503
+ components:
+ - pos: -9.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3504
+ components:
+ - pos: -4.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3505
+ components:
+ - pos: -4.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3506
+ components:
+ - pos: -4.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 3507
+ components:
+ - pos: -5.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3508
+ components:
+ - pos: -5.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3509
+ components:
+ - pos: -5.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 3510
+ components:
+ - pos: -6.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3511
+ components:
+ - pos: -6.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3512
+ components:
+ - pos: -6.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 3513
+ components:
+ - pos: 1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3514
+ components:
+ - pos: 2.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3515
+ components:
+ - pos: 3.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3516
+ components:
+ - pos: 4.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3517
+ components:
+ - pos: 5.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3518
+ components:
+ - pos: 6.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3519
+ components:
+ - pos: 7.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3520
+ components:
+ - pos: -10.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3521
+ components:
+ - pos: -9.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3522
+ components:
+ - pos: -8.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3523
+ components:
+ - pos: -7.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3524
+ components:
+ - pos: -6.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3525
+ components:
+ - pos: -5.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3526
+ components:
+ - pos: -4.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3527
+ components:
+ - pos: -3.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3528
+ components:
+ - pos: -2.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3529
+ components:
+ - pos: -1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3530
+ components:
+ - pos: -0.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3531
+ components:
+ - pos: 0.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3532
+ components:
+ - pos: -3.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3533
+ components:
+ - pos: -2.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3534
+ components:
+ - pos: -1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3535
+ components:
+ - pos: -0.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3536
+ components:
+ - pos: 0.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3537
+ components:
+ - pos: 1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3538
+ components:
+ - pos: 2.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3539
+ components:
+ - pos: 3.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3540
+ components:
+ - pos: 4.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3541
+ components:
+ - pos: 5.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3542
+ components:
+ - pos: 6.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3543
+ components:
+ - pos: 7.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3544
+ components:
+ - pos: -10.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3545
+ components:
+ - pos: -11.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3546
+ components:
+ - pos: -9.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3547
+ components:
+ - pos: -9.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3548
+ components:
+ - pos: -9.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3549
+ components:
+ - pos: -8.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3550
+ components:
+ - pos: -8.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3551
+ components:
+ - pos: -8.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3552
+ components:
+ - pos: -7.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3553
+ components:
+ - pos: -7.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3554
+ components:
+ - pos: -7.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3555
+ components:
+ - pos: -6.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3556
+ components:
+ - pos: -6.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3557
+ components:
+ - pos: -6.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3558
+ components:
+ - pos: -5.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3559
+ components:
+ - pos: -5.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3560
+ components:
+ - pos: -5.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3561
+ components:
+ - pos: -4.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3562
+ components:
+ - pos: -4.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3563
+ components:
+ - pos: -4.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3564
+ components:
+ - pos: -3.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3565
+ components:
+ - pos: -3.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3566
+ components:
+ - pos: -3.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3567
+ components:
+ - pos: -2.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3568
+ components:
+ - pos: -2.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3569
+ components:
+ - pos: -2.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3570
+ components:
+ - pos: -1.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3571
+ components:
+ - pos: -1.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3572
+ components:
+ - pos: -1.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3573
+ components:
+ - pos: -0.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3574
+ components:
+ - pos: -0.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3575
+ components:
+ - pos: -0.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3576
+ components:
+ - pos: -8.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3577
+ components:
+ - pos: -7.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3578
+ components:
+ - pos: -6.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3579
+ components:
+ - pos: -5.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3580
+ components:
+ - pos: -4.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3581
+ components:
+ - pos: -3.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3582
+ components:
+ - pos: -2.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3583
+ components:
+ - pos: -1.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3584
+ components:
+ - pos: -0.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3585
+ components:
+ - pos: 0.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3586
+ components:
+ - pos: -10.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3587
+ components:
+ - pos: -10.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3588
+ components:
+ - pos: -9.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3589
+ components:
+ - pos: -8.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3590
+ components:
+ - pos: -7.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3591
+ components:
+ - pos: -6.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3592
+ components:
+ - pos: -5.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3593
+ components:
+ - pos: -4.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3594
+ components:
+ - pos: -7.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 3595
+ components:
+ - pos: -7.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 3596
+ components:
+ - pos: -7.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 3597
+ components:
+ - pos: -6.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 3598
+ components:
+ - pos: -6.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 3599
+ components:
+ - pos: -6.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 3600
+ components:
+ - pos: -5.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 3601
+ components:
+ - pos: -5.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 3602
+ components:
+ - pos: -5.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 3603
+ components:
+ - pos: -4.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 3604
+ components:
+ - pos: -3.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 3605
+ components:
+ - pos: -5.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 3606
+ components:
+ - pos: -5.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 3607
+ components:
+ - pos: -4.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 3608
+ components:
+ - pos: -7.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 3609
+ components:
+ - pos: -8.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 3610
+ components:
+ - pos: -8.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 3611
+ components:
+ - pos: -8.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 3612
+ components:
+ - pos: -9.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 3613
+ components:
+ - pos: -2.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3614
+ components:
+ - pos: -1.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3615
+ components:
+ - pos: 6.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3616
+ components:
+ - pos: 6.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3617
+ components:
+ - pos: 6.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3618
+ components:
+ - pos: 7.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3619
+ components:
+ - pos: 7.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3620
+ components:
+ - pos: 7.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3621
+ components:
+ - pos: 7.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3622
+ components:
+ - pos: 7.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3623
+ components:
+ - pos: 4.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3624
+ components:
+ - pos: 4.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3625
+ components:
+ - pos: 4.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3626
+ components:
+ - pos: 4.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3627
+ components:
+ - pos: 4.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3628
+ components:
+ - pos: 5.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3629
+ components:
+ - pos: 5.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3630
+ components:
+ - pos: 5.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3631
+ components:
+ - pos: 5.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3632
+ components:
+ - pos: 5.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3633
+ components:
+ - pos: 6.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 3634
+ components:
+ - pos: 6.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3635
+ components:
+ - pos: 3.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3636
+ components:
+ - pos: 3.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3637
+ components:
+ - pos: 3.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3638
+ components:
+ - pos: 3.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3639
+ components:
+ - pos: 2.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3640
+ components:
+ - pos: 2.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3641
+ components:
+ - pos: 2.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3642
+ components:
+ - pos: 1.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3643
+ components:
+ - pos: 0.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3644
+ components:
+ - pos: 0.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3645
+ components:
+ - pos: 1.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3646
+ components:
+ - pos: 7.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3647
+ components:
+ - pos: 7.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3648
+ components:
+ - pos: 7.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3649
+ components:
+ - pos: 7.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3650
+ components:
+ - pos: 8.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 3651
+ components:
+ - pos: 8.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3652
+ components:
+ - pos: 8.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3653
+ components:
+ - pos: 8.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3654
+ components:
+ - pos: 8.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3655
+ components:
+ - pos: 8.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3656
+ components:
+ - pos: 8.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3657
+ components:
+ - pos: 8.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3658
+ components:
+ - pos: 8.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3659
+ components:
+ - pos: 8.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3660
+ components:
+ - pos: 10.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3661
+ components:
+ - pos: 10.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3662
+ components:
+ - pos: 11.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3663
+ components:
+ - pos: 11.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3664
+ components:
+ - pos: 11.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3665
+ components:
+ - pos: 11.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3666
+ components:
+ - pos: 11.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3667
+ components:
+ - pos: 11.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3668
+ components:
+ - pos: 11.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3669
+ components:
+ - pos: 9.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3670
+ components:
+ - pos: 9.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3671
+ components:
+ - pos: 9.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3672
+ components:
+ - pos: 9.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3673
+ components:
+ - pos: 9.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3674
+ components:
+ - pos: 9.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3675
+ components:
+ - pos: 9.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 3676
+ components:
+ - pos: 10.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3677
+ components:
+ - pos: 10.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 3678
+ components:
+ - pos: 10.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3679
+ components:
+ - pos: 10.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3680
+ components:
+ - pos: 10.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3681
+ components:
+ - pos: 9.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 3682
+ components:
+ - pos: 9.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3683
+ components:
+ - pos: 10.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 3684
+ components:
+ - pos: 12.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 3685
+ components:
+ - pos: 12.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3686
+ components:
+ - pos: 13.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 3687
+ components:
+ - pos: 14.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3688
+ components:
+ - pos: 13.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3689
+ components:
+ - pos: 12.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 3690
+ components:
+ - pos: 12.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 3691
+ components:
+ - pos: 12.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 3692
+ components:
+ - pos: 13.5,-17.5
+ parent: 1
+ type: Transform
+- proto: AtmosFixInstantPlasmaFireMarker
+ entities:
+ - uid: 367
+ components:
+ - pos: -0.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 368
+ components:
+ - pos: 1.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 369
+ components:
+ - pos: 1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 370
+ components:
+ - pos: 0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 371
+ components:
+ - pos: -0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 372
+ components:
+ - pos: -0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 373
+ components:
+ - pos: 0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 374
+ components:
+ - pos: 1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 375
+ components:
+ - pos: 1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 376
+ components:
+ - pos: 0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 377
+ components:
+ - pos: -0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 378
+ components:
+ - pos: -0.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 379
+ components:
+ - pos: 0.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 380
+ components:
+ - pos: 1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 381
+ components:
+ - pos: 0.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 382
+ components:
+ - pos: 2.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 383
+ components:
+ - pos: 2.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 384
+ components:
+ - pos: 2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 385
+ components:
+ - pos: 2.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 386
+ components:
+ - pos: -1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 387
+ components:
+ - pos: 2.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 388
+ components:
+ - pos: -1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 389
+ components:
+ - pos: -1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 390
+ components:
+ - pos: -1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 391
+ components:
+ - pos: -1.5,2.5
+ parent: 1
+ type: Transform
+- proto: BananaPhoneInstrument
+ entities:
+ - uid: 392
+ components:
+ - pos: 5.199623,-19.204409
+ parent: 1
+ type: Transform
+- proto: Bed
+ entities:
+ - uid: 393
+ components:
+ - pos: -2.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 394
+ components:
+ - pos: 5.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 395
+ components:
+ - pos: 5.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 396
+ components:
+ - pos: 5.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 397
+ components:
+ - pos: -2.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 398
+ components:
+ - pos: -2.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 399
+ components:
+ - pos: -2.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 400
+ components:
+ - pos: 5.5,-18.5
+ parent: 1
+ type: Transform
+- proto: BedsheetClown
+ entities:
+ - uid: 401
+ components:
+ - pos: 5.500177,-19.507631
+ parent: 1
+ type: Transform
+- proto: BedsheetCult
+ entities:
+ - uid: 402
+ components:
+ - pos: -2.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 403
+ components:
+ - pos: -2.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 404
+ components:
+ - pos: 5.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 405
+ components:
+ - pos: -2.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 406
+ components:
+ - pos: -2.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 407
+ components:
+ - pos: 5.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 408
+ components:
+ - pos: 5.5,-17.5
+ parent: 1
+ type: Transform
+- proto: BlastDoor
+ entities:
+ - uid: 409
+ components:
+ - pos: 0.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 410
+ components:
+ - pos: -15.5,3.5
+ parent: 1
+ type: Transform
+- proto: BookHowToRockAndStone
+ entities:
+ - uid: 411
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.3728228,-1.7116874
+ parent: 1
+ type: Transform
+- proto: CableHV
+ entities:
+ - uid: 412
+ components:
+ - pos: 3.5,0.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 413
+ components:
+ - pos: 4.5,0.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 414
+ components:
+ - pos: -2.5,0.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 415
+ components:
+ - pos: -3.5,0.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 416
+ components:
+ - pos: -3.5,1.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 417
+ components:
+ - pos: -3.5,2.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 418
+ components:
+ - pos: -3.5,3.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 419
+ components:
+ - pos: -3.5,4.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 420
+ components:
+ - pos: -2.5,4.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 421
+ components:
+ - pos: -1.5,4.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 422
+ components:
+ - pos: -0.5,4.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 423
+ components:
+ - pos: 0.5,4.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 424
+ components:
+ - pos: 1.5,4.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 425
+ components:
+ - pos: 2.5,4.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 426
+ components:
+ - pos: 3.5,4.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 427
+ components:
+ - pos: 4.5,4.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 428
+ components:
+ - pos: 4.5,3.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 429
+ components:
+ - pos: 4.5,2.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 430
+ components:
+ - pos: 4.5,1.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 431
+ components:
+ - pos: 4.5,-0.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 432
+ components:
+ - pos: 4.5,-1.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 433
+ components:
+ - pos: 4.5,-2.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 434
+ components:
+ - pos: 4.5,-3.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 435
+ components:
+ - pos: 3.5,-3.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 436
+ components:
+ - pos: 2.5,-3.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 437
+ components:
+ - pos: 1.5,-3.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 438
+ components:
+ - pos: 0.5,-3.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 439
+ components:
+ - pos: -0.5,-3.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 440
+ components:
+ - pos: -1.5,-3.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 441
+ components:
+ - pos: -2.5,-3.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 442
+ components:
+ - pos: -3.5,-3.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 443
+ components:
+ - pos: -3.5,-2.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 444
+ components:
+ - pos: -3.5,-1.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 445
+ components:
+ - pos: -3.5,-0.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+- proto: Catwalk
+ entities:
+ - uid: 446
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 447
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 448
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 449
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 450
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 451
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 452
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 453
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 454
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 455
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 456
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 457
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 458
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 459
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 460
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 461
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 462
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 463
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 464
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 465
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 466
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 467
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 468
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 469
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 470
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 471
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 472
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 473
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 474
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 475
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 476
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 477
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 478
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 479
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 480
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 481
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 482
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 483
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 484
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 485
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 486
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 487
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 488
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 489
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 490
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 491
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 492
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 493
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 494
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 495
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 496
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 497
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 498
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 499
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 500
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 501
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 502
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 503
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 504
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,17.5
+ parent: 1
+ type: Transform
+- proto: ChairPilotSeat
+ entities:
+ - uid: 505
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -15.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 506
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -15.5,2.5
+ parent: 1
+ type: Transform
+- proto: ClosetWallEmergencyFilledRandom
+ entities:
+ - uid: 507
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -16.5,1.5
+ parent: 1
+ type: Transform
+- proto: ClothingBackpackDuffelSyndicatePyjamaBundle
+ entities:
+ - uid: 508
+ components:
+ - pos: -15.41641,1.814841
+ parent: 1
+ type: Transform
+- proto: ClothingBeltChampion
+ entities:
+ - uid: 509
+ components:
+ - pos: 2.476328,0.47118616
+ parent: 1
+ type: Transform
+- proto: ClothingEyesVisorNinja
+ entities:
+ - uid: 510
+ components:
+ - pos: -1.6223578,-0.36653268
+ parent: 1
+ type: Transform
+- proto: ClothingHandsGlovesSpaceNinja
+ entities:
+ - uid: 511
+ components:
+ - pos: -1.3375983,0.67213714
+ parent: 1
+ type: Transform
+- proto: ClothingHeadHatHoodCulthood
+ entities:
+ - uid: 512
+ components:
+ - pos: 0.48060757,-19.155891
+ parent: 1
+ type: Transform
+- proto: ClothingHeadHelmetSpaceNinja
+ entities:
+ - uid: 513
+ components:
+ - pos: -1.6657233,1.6096371
+ parent: 1
+ type: Transform
+- proto: ClothingMaskNinja
+ entities:
+ - uid: 514
+ components:
+ - pos: -1.7942328,-1.4290327
+ parent: 1
+ type: Transform
+- proto: ClothingOuterRobesCult
+ entities:
+ - uid: 515
+ components:
+ - pos: 0.48178875,-19.480637
+ parent: 1
+ type: Transform
+- proto: ClothingOuterSuitSpaceNinja
+ entities:
+ - uid: 516
+ components:
+ - pos: -1.2907233,1.3908871
+ parent: 1
+ type: Transform
+- proto: ClothingShoesCult
+ entities:
+ - uid: 517
+ components:
+ - pos: 0.41810757,-19.827766
+ parent: 1
+ type: Transform
+- proto: ClothingShoesSpaceNinja
+ entities:
+ - uid: 518
+ components:
+ - pos: -1.6813483,0.23463714
+ parent: 1
+ type: Transform
+- proto: ClothingUniformJumpsuitNinja
+ entities:
+ - uid: 519
+ components:
+ - pos: -1.2942328,-1.6009077
+ parent: 1
+ type: Transform
+- proto: CrowbarRed
+ entities:
+ - uid: 520
+ components:
+ - desc: The right man is the wrong place.
+ name: freeman crowbar
+ type: MetaData
+ - pos: 1.5234554,-18.668137
+ parent: 1
+ type: Transform
+ - color: '#EE7600FF'
+ type: PointLight
+- proto: CultAltarSpawner
+ entities:
+ - uid: 521
+ components:
+ - pos: 1.5,-19.5
+ parent: 1
+ type: Transform
+- proto: DrinkDrGibbCan
+ entities:
+ - uid: 523
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 522
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: DrinkGoldenCup
+ entities:
+ - uid: 532
+ components:
+ - pos: 2.523203,0.50243616
+ parent: 1
+ type: Transform
+- proto: EnergyDaggerBox
+ entities:
+ - uid: 533
+ components:
+ - pos: -15.7705765,2.2419243
+ parent: 1
+ type: Transform
+- proto: EnergyKatana
+ entities:
+ - uid: 534
+ components:
+ - pos: -1.4485741,2.5002623
+ parent: 1
+ type: Transform
+- proto: FoodBreadBanana
+ entities:
+ - uid: 535
+ components:
+ - pos: 20.465343,9.542948
+ parent: 1
+ type: Transform
+- proto: FoodBurgerMcguffin
+ entities:
+ - uid: 524
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 522
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: FoodMealFries
+ entities:
+ - uid: 525
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 522
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: ForceWallSpellbook
+ entities:
+ - uid: 536
+ components:
+ - pos: 0.532388,2.5297258
+ parent: 1
+ type: Transform
+- proto: GeneratorWallmountAPU
+ entities:
+ - uid: 537
+ components:
+ - pos: 3.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 538
+ components:
+ - pos: -2.5,0.5
+ parent: 1
+ type: Transform
+- proto: Grille
+ entities:
+ - uid: 539
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 540
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 541
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 542
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 543
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 544
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 545
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 546
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 547
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 548
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 549
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 550
+ components:
+ - pos: 4.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 551
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 552
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 553
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 554
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 555
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 556
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 557
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 558
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 559
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 560
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 561
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 562
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 563
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 564
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 565
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 566
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 567
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 568
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 569
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 570
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -15.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 571
+ components:
+ - pos: 21.5,23.5
+ parent: 1
+ type: Transform
+- proto: HappyHonkCluwne
+ entities:
+ - uid: 522
+ components:
+ - pos: 5.750177,-19.210756
+ parent: 1
+ type: Transform
+ - storageUsed: 29
+ type: Storage
+ - containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 531
+ - 530
+ - 524
+ - 525
+ - 523
+ - 528
+ - 529
+ - 526
+ - 527
+ type: ContainerContainer
+- proto: HighSecCommandLocked
+ entities:
+ - uid: 572
+ components:
+ - pos: 0.5,-2.5
+ parent: 1
+ type: Transform
+- proto: IngotGold
+ entities:
+ - uid: 573
+ components:
+ - pos: 2.351328,1.7680612
+ parent: 1
+ type: Transform
+ - uid: 574
+ components:
+ - pos: 2.648203,1.4711862
+ parent: 1
+ type: Transform
+- proto: Joint
+ entities:
+ - uid: 526
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 522
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 527
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 522
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: LandMineExplosive
+ entities:
+ - uid: 575
+ components:
+ - anchored: True
+ pos: -15.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 576
+ components:
+ - anchored: True
+ pos: 10.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 577
+ components:
+ - anchored: True
+ pos: 0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 578
+ components:
+ - anchored: True
+ pos: 8.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 579
+ components:
+ - anchored: True
+ pos: -8.5,8.5
+ parent: 1
+ type: Transform
+- proto: LockerBooze
+ entities:
+ - uid: 580
+ components:
+ - anchored: True
+ pos: 18.5,23.5
+ parent: 1
+ type: Transform
+ - bodyType: Static
+ type: Physics
+- proto: MaterialDiamond
+ entities:
+ - uid: 581
+ components:
+ - pos: 2.382578,-0.27881384
+ parent: 1
+ type: Transform
+- proto: PillSpaceDrugs
+ entities:
+ - uid: 528
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 522
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - uid: 529
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 522
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: PlasmaReinforcedWindowDirectional
+ entities:
+ - uid: 582
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 583
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 584
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 585
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 586
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 587
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 588
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 589
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 590
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 591
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 592
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 593
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 0.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 594
+ components:
+ - pos: 0.5,2.5
+ parent: 1
+ type: Transform
+- proto: PlushieJester
+ entities:
+ - uid: 595
+ components:
+ - pos: 2.4817886,-19.595219
+ parent: 1
+ type: Transform
+- proto: PonderingOrb
+ entities:
+ - uid: 596
+ components:
+ - pos: 2.554453,-1.4663138
+ parent: 1
+ type: Transform
+- proto: Rack
+ entities:
+ - uid: 597
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 598
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 599
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 600
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 601
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 602
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 603
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 604
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 605
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 606
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 607
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,2.5
+ parent: 1
+ type: Transform
+- proto: Railing
+ entities:
+ - uid: 608
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 609
+ components:
+ - pos: 1.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 610
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 611
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 612
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 613
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -8.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 614
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 615
+ components:
+ - pos: -8.5,-18.5
+ parent: 1
+ type: Transform
+- proto: RailingCorner
+ entities:
+ - uid: 616
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 617
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 0.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 618
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 2.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 619
+ components:
+ - pos: 2.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 620
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -7.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 621
+ components:
+ - pos: -7.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 622
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -9.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 623
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -9.5,-16.5
+ parent: 1
+ type: Transform
+- proto: RandomPainting
+ entities:
+ - uid: 624
+ components:
+ - pos: 3.5,-15.5
+ parent: 1
+ type: Transform
+- proto: RandomRockSpawner
+ entities:
+ - uid: 625
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -15.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 626
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -11.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 627
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -11.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 628
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -15.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 629
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 630
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 631
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -12.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 632
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 633
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -11.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 634
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 635
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -12.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 636
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -10.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 637
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -11.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 638
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 639
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 640
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -8.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 641
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -9.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 642
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -15.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 643
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -16.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 644
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -16.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 645
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -14.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 646
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 647
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 6.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 648
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 7.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 649
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 8.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 650
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 7.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 651
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 652
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 8.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 653
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 9.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 654
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 655
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 656
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 657
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 10.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 658
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 659
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 660
+ components:
+ - pos: 17.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 661
+ components:
+ - pos: 18.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 662
+ components:
+ - pos: -18.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 663
+ components:
+ - pos: 3.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 664
+ components:
+ - pos: 5.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 665
+ components:
+ - pos: 15.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 666
+ components:
+ - pos: -4.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 667
+ components:
+ - pos: -2.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 668
+ components:
+ - pos: -4.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 669
+ components:
+ - pos: -9.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 670
+ components:
+ - pos: -10.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 671
+ components:
+ - pos: -10.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 672
+ components:
+ - pos: -11.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 673
+ components:
+ - pos: -12.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 674
+ components:
+ - pos: -12.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 675
+ components:
+ - pos: -11.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 676
+ components:
+ - pos: -13.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 677
+ components:
+ - pos: -12.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 678
+ components:
+ - pos: -9.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 679
+ components:
+ - pos: -10.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 680
+ components:
+ - pos: -16.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 681
+ components:
+ - pos: -15.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 682
+ components:
+ - pos: -15.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 683
+ components:
+ - pos: 8.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 684
+ components:
+ - pos: 8.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 685
+ components:
+ - pos: 9.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 686
+ components:
+ - pos: 6.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 687
+ components:
+ - pos: -7.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 688
+ components:
+ - pos: -2.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 689
+ components:
+ - pos: -3.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 690
+ components:
+ - pos: 8.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 691
+ components:
+ - pos: -6.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 692
+ components:
+ - pos: -7.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 693
+ components:
+ - pos: -8.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 694
+ components:
+ - pos: -0.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 695
+ components:
+ - pos: 8.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 696
+ components:
+ - pos: 8.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 697
+ components:
+ - pos: 1.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 698
+ components:
+ - pos: 2.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 699
+ components:
+ - pos: -5.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 700
+ components:
+ - pos: 4.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 701
+ components:
+ - pos: 9.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 702
+ components:
+ - pos: 9.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 703
+ components:
+ - pos: 9.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 704
+ components:
+ - pos: 4.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 705
+ components:
+ - pos: -8.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 706
+ components:
+ - pos: -6.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 707
+ components:
+ - pos: -8.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 708
+ components:
+ - pos: -8.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 709
+ components:
+ - pos: -8.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 710
+ components:
+ - pos: -8.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 711
+ components:
+ - pos: -21.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 712
+ components:
+ - pos: -19.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 713
+ components:
+ - pos: -5.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 714
+ components:
+ - pos: -6.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 715
+ components:
+ - pos: -23.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 716
+ components:
+ - pos: -17.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 717
+ components:
+ - pos: 7.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 718
+ components:
+ - pos: -17.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 719
+ components:
+ - pos: -1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 720
+ components:
+ - pos: -5.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 721
+ components:
+ - pos: -17.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 722
+ components:
+ - pos: 4.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 723
+ components:
+ - pos: -4.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 724
+ components:
+ - pos: -7.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 725
+ components:
+ - pos: 1.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 726
+ components:
+ - pos: 4.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 727
+ components:
+ - pos: 5.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 728
+ components:
+ - pos: -2.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 729
+ components:
+ - pos: 8.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 730
+ components:
+ - pos: -6.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 731
+ components:
+ - pos: -7.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 732
+ components:
+ - pos: -7.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 733
+ components:
+ - pos: -7.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 734
+ components:
+ - pos: -3.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 735
+ components:
+ - pos: -2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 736
+ components:
+ - pos: 2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 737
+ components:
+ - pos: -4.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 738
+ components:
+ - pos: -5.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 739
+ components:
+ - pos: 8.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 740
+ components:
+ - pos: 8.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 741
+ components:
+ - pos: 8.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 742
+ components:
+ - pos: 8.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 743
+ components:
+ - pos: 8.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 744
+ components:
+ - pos: -0.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 745
+ components:
+ - pos: -5.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 746
+ components:
+ - pos: -22.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 747
+ components:
+ - pos: 9.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 748
+ components:
+ - pos: 9.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 749
+ components:
+ - pos: -2.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 750
+ components:
+ - pos: 6.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 751
+ components:
+ - pos: 2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 752
+ components:
+ - pos: 1.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 753
+ components:
+ - pos: -5.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 754
+ components:
+ - pos: -1.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 755
+ components:
+ - pos: -8.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 756
+ components:
+ - pos: -8.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 757
+ components:
+ - pos: -8.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 758
+ components:
+ - pos: -8.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 759
+ components:
+ - pos: -9.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 760
+ components:
+ - pos: -14.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 761
+ components:
+ - pos: -6.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 762
+ components:
+ - pos: -0.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 763
+ components:
+ - pos: -7.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 764
+ components:
+ - pos: -7.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 765
+ components:
+ - pos: 9.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 766
+ components:
+ - pos: -3.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 767
+ components:
+ - pos: -1.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 768
+ components:
+ - pos: 10.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 769
+ components:
+ - pos: -4.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 770
+ components:
+ - pos: 7.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 771
+ components:
+ - pos: 3.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 772
+ components:
+ - pos: 2.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 773
+ components:
+ - pos: 6.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 774
+ components:
+ - pos: 3.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 775
+ components:
+ - pos: -4.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 776
+ components:
+ - pos: -0.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 777
+ components:
+ - pos: -1.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 778
+ components:
+ - pos: -17.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 779
+ components:
+ - pos: -7.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 780
+ components:
+ - pos: -7.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 781
+ components:
+ - pos: -7.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 782
+ components:
+ - pos: -7.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 783
+ components:
+ - pos: -7.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 784
+ components:
+ - pos: -7.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 785
+ components:
+ - pos: -4.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 786
+ components:
+ - pos: -1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 787
+ components:
+ - pos: 1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 788
+ components:
+ - pos: 4.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 789
+ components:
+ - pos: 8.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 790
+ components:
+ - pos: 8.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 791
+ components:
+ - pos: 8.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 792
+ components:
+ - pos: -1.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 793
+ components:
+ - pos: 8.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 794
+ components:
+ - pos: 8.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 795
+ components:
+ - pos: 9.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 796
+ components:
+ - pos: 9.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 797
+ components:
+ - pos: -4.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 798
+ components:
+ - pos: -5.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 799
+ components:
+ - pos: -24.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 800
+ components:
+ - pos: -8.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 801
+ components:
+ - pos: -8.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 802
+ components:
+ - pos: 8.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 803
+ components:
+ - pos: -8.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 804
+ components:
+ - pos: 9.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 805
+ components:
+ - pos: 3.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 806
+ components:
+ - pos: -7.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 807
+ components:
+ - pos: 0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 808
+ components:
+ - pos: 3.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 809
+ components:
+ - pos: 5.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 810
+ components:
+ - pos: 7.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 811
+ components:
+ - pos: 9.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 812
+ components:
+ - pos: 9.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 813
+ components:
+ - pos: 8.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 814
+ components:
+ - pos: 0.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 815
+ components:
+ - pos: 10.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 816
+ components:
+ - pos: 9.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 817
+ components:
+ - pos: 9.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 818
+ components:
+ - pos: -19.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 819
+ components:
+ - pos: -24.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 820
+ components:
+ - pos: 8.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 821
+ components:
+ - pos: 3.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 822
+ components:
+ - pos: 7.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 823
+ components:
+ - pos: 6.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 824
+ components:
+ - pos: 5.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 825
+ components:
+ - pos: 8.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 826
+ components:
+ - pos: 5.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 827
+ components:
+ - pos: 0.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 828
+ components:
+ - pos: -0.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 829
+ components:
+ - pos: -5.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 830
+ components:
+ - pos: -6.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 831
+ components:
+ - pos: -7.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 832
+ components:
+ - pos: -7.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 833
+ components:
+ - pos: -7.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 834
+ components:
+ - pos: -7.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 835
+ components:
+ - pos: -7.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 836
+ components:
+ - pos: -7.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 837
+ components:
+ - pos: -22.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 838
+ components:
+ - pos: 0.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 839
+ components:
+ - pos: -8.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 840
+ components:
+ - pos: -8.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 841
+ components:
+ - pos: -8.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 842
+ components:
+ - pos: -8.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 843
+ components:
+ - pos: -8.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 844
+ components:
+ - pos: -0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 845
+ components:
+ - pos: -2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 846
+ components:
+ - pos: -2.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 847
+ components:
+ - pos: -2.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 848
+ components:
+ - pos: 4.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 849
+ components:
+ - pos: 4.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 850
+ components:
+ - pos: -1.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 851
+ components:
+ - pos: -13.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 852
+ components:
+ - pos: -10.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 853
+ components:
+ - pos: -24.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 854
+ components:
+ - pos: -24.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 855
+ components:
+ - pos: -1.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 856
+ components:
+ - pos: 4.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 857
+ components:
+ - pos: 6.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 858
+ components:
+ - pos: 6.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 859
+ components:
+ - pos: 7.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 860
+ components:
+ - pos: 8.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 861
+ components:
+ - pos: 7.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 862
+ components:
+ - pos: 7.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 863
+ components:
+ - pos: -7.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 864
+ components:
+ - pos: -7.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 865
+ components:
+ - pos: 9.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 866
+ components:
+ - pos: 10.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 867
+ components:
+ - pos: 10.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 868
+ components:
+ - pos: 10.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 869
+ components:
+ - pos: 6.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 870
+ components:
+ - pos: 5.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 871
+ components:
+ - pos: 3.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 872
+ components:
+ - pos: -2.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 873
+ components:
+ - pos: -8.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 874
+ components:
+ - pos: -8.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 875
+ components:
+ - pos: -8.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 876
+ components:
+ - pos: -8.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 877
+ components:
+ - pos: -7.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 878
+ components:
+ - pos: -7.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 879
+ components:
+ - pos: -26.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 880
+ components:
+ - pos: -6.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 881
+ components:
+ - pos: -6.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 882
+ components:
+ - pos: -6.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 883
+ components:
+ - pos: -7.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 884
+ components:
+ - pos: -6.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 885
+ components:
+ - pos: -5.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 886
+ components:
+ - pos: -3.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 887
+ components:
+ - pos: -3.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 888
+ components:
+ - pos: -7.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 889
+ components:
+ - pos: -6.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 890
+ components:
+ - pos: -4.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 891
+ components:
+ - pos: -20.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 892
+ components:
+ - pos: -5.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 893
+ components:
+ - pos: -8.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 894
+ components:
+ - pos: 1.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 895
+ components:
+ - pos: 0.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 896
+ components:
+ - pos: 0.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 897
+ components:
+ - pos: 1.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 898
+ components:
+ - pos: 2.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 899
+ components:
+ - pos: 7.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 900
+ components:
+ - pos: 3.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 901
+ components:
+ - pos: -3.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 902
+ components:
+ - pos: -3.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 903
+ components:
+ - pos: 6.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 904
+ components:
+ - pos: 6.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 905
+ components:
+ - pos: -8.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 906
+ components:
+ - pos: -8.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 907
+ components:
+ - pos: -7.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 908
+ components:
+ - pos: 9.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 909
+ components:
+ - pos: 9.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 910
+ components:
+ - pos: -7.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 911
+ components:
+ - pos: 8.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 912
+ components:
+ - pos: 7.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 913
+ components:
+ - pos: -6.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 914
+ components:
+ - pos: -6.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 915
+ components:
+ - pos: 6.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 916
+ components:
+ - pos: 5.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 917
+ components:
+ - pos: 5.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 918
+ components:
+ - pos: -23.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 919
+ components:
+ - pos: -6.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 920
+ components:
+ - pos: 6.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 921
+ components:
+ - pos: -22.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 922
+ components:
+ - pos: 3.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 923
+ components:
+ - pos: 2.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 924
+ components:
+ - pos: 1.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 925
+ components:
+ - pos: 0.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 926
+ components:
+ - pos: -0.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 927
+ components:
+ - pos: 0.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 928
+ components:
+ - pos: 1.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 929
+ components:
+ - pos: -5.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 930
+ components:
+ - pos: -4.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 931
+ components:
+ - pos: -4.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 932
+ components:
+ - pos: -5.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 933
+ components:
+ - pos: -6.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 934
+ components:
+ - pos: 0.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 935
+ components:
+ - pos: -0.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 936
+ components:
+ - pos: -1.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 937
+ components:
+ - pos: 12.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 938
+ components:
+ - pos: -12.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 939
+ components:
+ - pos: -14.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 940
+ components:
+ - pos: -19.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 941
+ components:
+ - pos: -26.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 942
+ components:
+ - pos: -15.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 943
+ components:
+ - pos: -16.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 944
+ components:
+ - pos: -25.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 945
+ components:
+ - pos: -11.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 946
+ components:
+ - pos: -18.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 947
+ components:
+ - pos: -19.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 948
+ components:
+ - pos: -17.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 949
+ components:
+ - pos: -18.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 950
+ components:
+ - pos: -3.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 951
+ components:
+ - pos: 11.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 952
+ components:
+ - pos: 11.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 953
+ components:
+ - pos: 1.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 954
+ components:
+ - pos: 6.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 955
+ components:
+ - pos: 6.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 956
+ components:
+ - pos: 8.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 957
+ components:
+ - pos: 10.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 958
+ components:
+ - pos: 11.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 959
+ components:
+ - pos: 10.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 960
+ components:
+ - pos: 10.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 961
+ components:
+ - pos: 11.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 962
+ components:
+ - pos: 11.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 963
+ components:
+ - pos: 12.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 964
+ components:
+ - pos: 10.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 965
+ components:
+ - pos: -19.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 966
+ components:
+ - pos: 10.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 967
+ components:
+ - pos: 13.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 968
+ components:
+ - pos: 10.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 969
+ components:
+ - pos: 10.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 970
+ components:
+ - pos: 10.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 971
+ components:
+ - pos: 15.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 972
+ components:
+ - pos: 15.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 973
+ components:
+ - pos: 16.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 974
+ components:
+ - pos: 16.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 975
+ components:
+ - pos: 15.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 976
+ components:
+ - pos: 12.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 977
+ components:
+ - pos: 13.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 978
+ components:
+ - pos: 25.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 979
+ components:
+ - pos: 22.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 980
+ components:
+ - pos: 22.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 981
+ components:
+ - pos: 11.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 982
+ components:
+ - pos: -21.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 983
+ components:
+ - pos: 23.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 984
+ components:
+ - pos: -18.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 985
+ components:
+ - pos: 17.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 986
+ components:
+ - pos: -12.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 987
+ components:
+ - pos: -17.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 988
+ components:
+ - pos: 22.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 989
+ components:
+ - pos: 15.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 990
+ components:
+ - pos: 22.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 991
+ components:
+ - pos: 15.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 992
+ components:
+ - pos: 16.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 993
+ components:
+ - pos: 22.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 994
+ components:
+ - pos: 16.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 995
+ components:
+ - pos: 22.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 996
+ components:
+ - pos: 17.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 997
+ components:
+ - pos: 17.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 998
+ components:
+ - pos: 17.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 999
+ components:
+ - pos: 12.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1000
+ components:
+ - pos: 12.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1001
+ components:
+ - pos: 11.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1002
+ components:
+ - pos: 24.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1003
+ components:
+ - pos: 11.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1004
+ components:
+ - pos: 24.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1005
+ components:
+ - pos: 12.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1006
+ components:
+ - pos: 12.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1007
+ components:
+ - pos: 25.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1008
+ components:
+ - pos: 13.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1009
+ components:
+ - pos: 13.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1010
+ components:
+ - pos: 23.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1011
+ components:
+ - pos: 21.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1012
+ components:
+ - pos: 17.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1013
+ components:
+ - pos: 22.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1014
+ components:
+ - pos: 15.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1015
+ components:
+ - pos: 23.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1016
+ components:
+ - pos: 20.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1017
+ components:
+ - pos: 11.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1018
+ components:
+ - pos: 19.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1019
+ components:
+ - pos: 16.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1020
+ components:
+ - pos: 11.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1021
+ components:
+ - pos: 17.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1022
+ components:
+ - pos: 18.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1023
+ components:
+ - pos: 14.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1024
+ components:
+ - pos: 17.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1025
+ components:
+ - pos: 24.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1026
+ components:
+ - pos: 17.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1027
+ components:
+ - pos: 12.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1028
+ components:
+ - pos: 16.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1029
+ components:
+ - pos: 11.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1030
+ components:
+ - pos: 16.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1031
+ components:
+ - pos: 19.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1032
+ components:
+ - pos: 11.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1033
+ components:
+ - pos: 12.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1034
+ components:
+ - pos: 15.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1035
+ components:
+ - pos: 24.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1036
+ components:
+ - pos: 14.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1037
+ components:
+ - pos: 14.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1038
+ components:
+ - pos: 14.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1039
+ components:
+ - pos: 13.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1040
+ components:
+ - pos: 13.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1041
+ components:
+ - pos: 12.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1042
+ components:
+ - pos: 12.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1043
+ components:
+ - pos: 11.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1044
+ components:
+ - pos: 12.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1045
+ components:
+ - pos: 11.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1046
+ components:
+ - pos: 9.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1047
+ components:
+ - pos: 11.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1048
+ components:
+ - pos: 19.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1049
+ components:
+ - pos: 0.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 1050
+ components:
+ - pos: 10.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1051
+ components:
+ - pos: 11.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1052
+ components:
+ - pos: 12.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1053
+ components:
+ - pos: 13.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1054
+ components:
+ - pos: 13.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1055
+ components:
+ - pos: 14.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1056
+ components:
+ - pos: 13.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1057
+ components:
+ - pos: 15.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1058
+ components:
+ - pos: 13.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1059
+ components:
+ - pos: 23.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1060
+ components:
+ - pos: 18.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1061
+ components:
+ - pos: 14.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1062
+ components:
+ - pos: 13.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 1063
+ components:
+ - pos: 11.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1064
+ components:
+ - pos: 23.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1065
+ components:
+ - pos: 11.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1066
+ components:
+ - pos: 19.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1067
+ components:
+ - pos: 16.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1068
+ components:
+ - pos: 23.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1069
+ components:
+ - pos: 14.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 1070
+ components:
+ - pos: 17.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1071
+ components:
+ - pos: 14.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1072
+ components:
+ - pos: 17.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1073
+ components:
+ - pos: 18.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1074
+ components:
+ - pos: 17.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1075
+ components:
+ - pos: 17.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1076
+ components:
+ - pos: 10.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1077
+ components:
+ - pos: 18.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1078
+ components:
+ - pos: 17.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1079
+ components:
+ - pos: 22.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1080
+ components:
+ - pos: 18.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1081
+ components:
+ - pos: 14.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1082
+ components:
+ - pos: 23.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1083
+ components:
+ - pos: 17.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1084
+ components:
+ - pos: 25.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1085
+ components:
+ - pos: 26.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1086
+ components:
+ - pos: 25.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1087
+ components:
+ - pos: 11.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1088
+ components:
+ - pos: 11.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1089
+ components:
+ - pos: -16.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1090
+ components:
+ - pos: -15.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1091
+ components:
+ - pos: -14.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1092
+ components:
+ - pos: -13.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1093
+ components:
+ - pos: -12.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1094
+ components:
+ - pos: -11.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1095
+ components:
+ - pos: -10.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1096
+ components:
+ - pos: -5.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1097
+ components:
+ - pos: 2.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1098
+ components:
+ - pos: 2.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1099
+ components:
+ - pos: 1.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1100
+ components:
+ - pos: 1.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1101
+ components:
+ - pos: -13.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1102
+ components:
+ - pos: -14.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1103
+ components:
+ - pos: -15.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1104
+ components:
+ - pos: -16.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1105
+ components:
+ - pos: -17.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1106
+ components:
+ - pos: -17.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1107
+ components:
+ - pos: -16.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1108
+ components:
+ - pos: -15.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1109
+ components:
+ - pos: -14.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1110
+ components:
+ - pos: 0.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1111
+ components:
+ - pos: 16.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1112
+ components:
+ - pos: 15.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1113
+ components:
+ - pos: -11.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1114
+ components:
+ - pos: 16.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1115
+ components:
+ - pos: 14.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1116
+ components:
+ - pos: -10.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1117
+ components:
+ - pos: 15.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1118
+ components:
+ - pos: -9.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1119
+ components:
+ - pos: 14.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1120
+ components:
+ - pos: -9.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1121
+ components:
+ - pos: 13.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1122
+ components:
+ - pos: -10.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1123
+ components:
+ - pos: 13.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1124
+ components:
+ - pos: 9.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1125
+ components:
+ - pos: -11.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1126
+ components:
+ - pos: 16.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1127
+ components:
+ - pos: 17.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1128
+ components:
+ - pos: -12.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1129
+ components:
+ - pos: 15.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1130
+ components:
+ - pos: 12.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1131
+ components:
+ - pos: 13.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1132
+ components:
+ - pos: -14.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1133
+ components:
+ - pos: 12.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1134
+ components:
+ - pos: -15.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1135
+ components:
+ - pos: 11.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1136
+ components:
+ - pos: -16.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1137
+ components:
+ - pos: 11.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1138
+ components:
+ - pos: 8.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1139
+ components:
+ - pos: -17.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1140
+ components:
+ - pos: 8.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1141
+ components:
+ - pos: -17.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1142
+ components:
+ - pos: 11.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1143
+ components:
+ - pos: 10.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1144
+ components:
+ - pos: -16.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1145
+ components:
+ - pos: 9.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1146
+ components:
+ - pos: -15.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1147
+ components:
+ - pos: 10.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1148
+ components:
+ - pos: -14.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1149
+ components:
+ - pos: 22.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1150
+ components:
+ - pos: 22.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1151
+ components:
+ - pos: 21.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1152
+ components:
+ - pos: -12.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1153
+ components:
+ - pos: 11.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1154
+ components:
+ - pos: 10.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1155
+ components:
+ - pos: -11.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1156
+ components:
+ - pos: -10.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1157
+ components:
+ - pos: 9.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1158
+ components:
+ - pos: 9.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1159
+ components:
+ - pos: 8.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1160
+ components:
+ - pos: 8.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1161
+ components:
+ - pos: -9.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1162
+ components:
+ - pos: 8.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1163
+ components:
+ - pos: 9.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1164
+ components:
+ - pos: 9.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1165
+ components:
+ - pos: 8.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1166
+ components:
+ - pos: 23.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1167
+ components:
+ - pos: 22.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1168
+ components:
+ - pos: 22.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1169
+ components:
+ - pos: 22.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1170
+ components:
+ - pos: 12.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1171
+ components:
+ - pos: 11.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1172
+ components:
+ - pos: 8.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1173
+ components:
+ - pos: 9.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1174
+ components:
+ - pos: 8.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1175
+ components:
+ - pos: 7.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1176
+ components:
+ - pos: 6.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1177
+ components:
+ - pos: 6.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1178
+ components:
+ - pos: 7.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1179
+ components:
+ - pos: 13.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1180
+ components:
+ - pos: 14.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1181
+ components:
+ - pos: 21.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1182
+ components:
+ - pos: 23.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1183
+ components:
+ - pos: -9.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1184
+ components:
+ - pos: 20.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1185
+ components:
+ - pos: 20.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1186
+ components:
+ - pos: -10.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1187
+ components:
+ - pos: 6.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1188
+ components:
+ - pos: -11.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1189
+ components:
+ - pos: 7.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1190
+ components:
+ - pos: -12.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1191
+ components:
+ - pos: 7.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1192
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -17.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1193
+ components:
+ - pos: -20.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1194
+ components:
+ - pos: -14.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1195
+ components:
+ - pos: 7.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1196
+ components:
+ - pos: -15.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1197
+ components:
+ - pos: 7.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1198
+ components:
+ - pos: -21.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1199
+ components:
+ - pos: -16.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1200
+ components:
+ - pos: -19.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1201
+ components:
+ - pos: -17.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1202
+ components:
+ - pos: -19.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1203
+ components:
+ - pos: -17.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1204
+ components:
+ - pos: -20.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1205
+ components:
+ - pos: -16.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1206
+ components:
+ - pos: -20.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1207
+ components:
+ - pos: -14.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1208
+ components:
+ - pos: 4.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1209
+ components:
+ - pos: 5.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1210
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -17.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1211
+ components:
+ - pos: -12.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1212
+ components:
+ - pos: 5.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1213
+ components:
+ - pos: -11.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1214
+ components:
+ - pos: 4.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1215
+ components:
+ - pos: -10.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1216
+ components:
+ - pos: 4.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1217
+ components:
+ - pos: 5.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1218
+ components:
+ - pos: -9.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1219
+ components:
+ - pos: 15.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1220
+ components:
+ - pos: -9.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1221
+ components:
+ - pos: 11.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 1222
+ components:
+ - pos: -10.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1223
+ components:
+ - pos: 4.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1224
+ components:
+ - pos: 5.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1225
+ components:
+ - pos: -11.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1226
+ components:
+ - pos: 5.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1227
+ components:
+ - pos: -12.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1228
+ components:
+ - pos: 4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1229
+ components:
+ - pos: 3.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1230
+ components:
+ - pos: 2.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1231
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -19.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1232
+ components:
+ - pos: 9.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1233
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -19.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1234
+ components:
+ - pos: 10.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 1235
+ components:
+ - pos: 12.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 1236
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -19.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1237
+ components:
+ - pos: 2.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1238
+ components:
+ - pos: -17.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1239
+ components:
+ - pos: 0.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1240
+ components:
+ - pos: -20.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1241
+ components:
+ - pos: 3.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1242
+ components:
+ - pos: 3.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1243
+ components:
+ - pos: -20.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1244
+ components:
+ - pos: -0.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1245
+ components:
+ - pos: -19.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1246
+ components:
+ - pos: 2.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1247
+ components:
+ - pos: -13.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1248
+ components:
+ - pos: 3.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1249
+ components:
+ - pos: -12.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1250
+ components:
+ - pos: 25.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1251
+ components:
+ - pos: -12.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1252
+ components:
+ - pos: -15.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1253
+ components:
+ - pos: -11.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1254
+ components:
+ - pos: -16.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1255
+ components:
+ - pos: 20.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1256
+ components:
+ - pos: -10.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1257
+ components:
+ - pos: -9.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1258
+ components:
+ - pos: -9.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1259
+ components:
+ - pos: 11.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1260
+ components:
+ - pos: -10.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1261
+ components:
+ - pos: 11.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1262
+ components:
+ - pos: 10.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1263
+ components:
+ - pos: -11.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1264
+ components:
+ - pos: 23.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1265
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -19.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1266
+ components:
+ - pos: 0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1267
+ components:
+ - pos: -13.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1268
+ components:
+ - pos: 1.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1269
+ components:
+ - pos: -14.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1270
+ components:
+ - pos: 22.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1271
+ components:
+ - pos: -18.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1272
+ components:
+ - pos: 2.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1273
+ components:
+ - pos: 1.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1274
+ components:
+ - pos: -22.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1275
+ components:
+ - pos: 0.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1276
+ components:
+ - pos: -20.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1277
+ components:
+ - pos: 1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1278
+ components:
+ - pos: -20.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1279
+ components:
+ - pos: 0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1280
+ components:
+ - pos: -21.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1281
+ components:
+ - pos: 10.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 1282
+ components:
+ - pos: 9.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 1283
+ components:
+ - pos: -18.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1284
+ components:
+ - pos: 1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1285
+ components:
+ - pos: -15.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1286
+ components:
+ - pos: 0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1287
+ components:
+ - pos: -0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1288
+ components:
+ - pos: -12.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1289
+ components:
+ - pos: 12.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 1290
+ components:
+ - pos: 15.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1291
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -20.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1292
+ components:
+ - pos: 14.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1293
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -19.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1294
+ components:
+ - pos: -0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1295
+ components:
+ - pos: -10.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1296
+ components:
+ - pos: -1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1297
+ components:
+ - pos: -1.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1298
+ components:
+ - pos: -9.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1299
+ components:
+ - pos: 1.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1300
+ components:
+ - pos: -9.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1301
+ components:
+ - pos: 2.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1302
+ components:
+ - pos: -10.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1303
+ components:
+ - pos: -1.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1304
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -20.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1305
+ components:
+ - pos: -1.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1306
+ components:
+ - pos: -0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1307
+ components:
+ - pos: -18.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1308
+ components:
+ - pos: -11.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1309
+ components:
+ - pos: -16.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1310
+ components:
+ - pos: -20.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1311
+ components:
+ - pos: -17.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1312
+ components:
+ - pos: -1.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1313
+ components:
+ - pos: -2.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1314
+ components:
+ - pos: -21.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1315
+ components:
+ - pos: -20.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1316
+ components:
+ - pos: -24.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1317
+ components:
+ - pos: -21.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1318
+ components:
+ - pos: -23.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1319
+ components:
+ - pos: -21.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1320
+ components:
+ - pos: -24.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1321
+ components:
+ - pos: -18.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1322
+ components:
+ - pos: -25.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1323
+ components:
+ - pos: -9.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1324
+ components:
+ - pos: -10.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1325
+ components:
+ - pos: -3.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1326
+ components:
+ - pos: -12.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1327
+ components:
+ - pos: -2.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1328
+ components:
+ - pos: -11.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1329
+ components:
+ - pos: -2.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1330
+ components:
+ - pos: -3.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1331
+ components:
+ - pos: -10.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1332
+ components:
+ - pos: -3.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1333
+ components:
+ - pos: -9.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1334
+ components:
+ - pos: -2.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1335
+ components:
+ - pos: -9.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1336
+ components:
+ - pos: 7.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1337
+ components:
+ - pos: -10.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1338
+ components:
+ - pos: -3.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1339
+ components:
+ - pos: -3.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1340
+ components:
+ - pos: -11.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1341
+ components:
+ - pos: 16.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1342
+ components:
+ - pos: -12.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1343
+ components:
+ - pos: 14.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1344
+ components:
+ - pos: 16.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1345
+ components:
+ - pos: 4.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1346
+ components:
+ - pos: -13.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1347
+ components:
+ - pos: 4.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1348
+ components:
+ - pos: -14.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1349
+ components:
+ - pos: 4.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 1350
+ components:
+ - pos: -15.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1351
+ components:
+ - pos: 5.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1352
+ components:
+ - pos: -16.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1353
+ components:
+ - pos: -4.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1354
+ components:
+ - pos: 5.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1355
+ components:
+ - pos: -18.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1356
+ components:
+ - pos: -5.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1357
+ components:
+ - pos: -19.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1358
+ components:
+ - pos: -4.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1359
+ components:
+ - pos: -20.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1360
+ components:
+ - pos: -4.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1361
+ components:
+ - pos: -21.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1362
+ components:
+ - pos: -5.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1363
+ components:
+ - pos: -13.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1364
+ components:
+ - pos: -5.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1365
+ components:
+ - pos: -12.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1366
+ components:
+ - pos: -4.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1367
+ components:
+ - pos: -11.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1368
+ components:
+ - pos: -10.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1369
+ components:
+ - pos: -4.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1370
+ components:
+ - pos: -9.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1371
+ components:
+ - pos: -5.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1372
+ components:
+ - pos: -9.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1373
+ components:
+ - pos: -5.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1374
+ components:
+ - pos: -10.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1375
+ components:
+ - pos: -4.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1376
+ components:
+ - pos: -11.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1377
+ components:
+ - pos: -4.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1378
+ components:
+ - pos: -12.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1379
+ components:
+ - pos: -5.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1380
+ components:
+ - pos: -14.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1381
+ components:
+ - pos: -6.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1382
+ components:
+ - pos: -16.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1383
+ components:
+ - pos: -13.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1384
+ components:
+ - pos: -17.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1385
+ components:
+ - pos: -21.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1386
+ components:
+ - pos: -6.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1387
+ components:
+ - pos: -19.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1388
+ components:
+ - pos: -20.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1389
+ components:
+ - pos: -16.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1390
+ components:
+ - pos: -16.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1391
+ components:
+ - pos: -20.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1392
+ components:
+ - pos: -22.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1393
+ components:
+ - pos: -7.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1394
+ components:
+ - pos: -6.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1395
+ components:
+ - pos: -22.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1396
+ components:
+ - pos: -6.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1397
+ components:
+ - pos: -6.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1398
+ components:
+ - pos: -6.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1399
+ components:
+ - pos: -25.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1400
+ components:
+ - pos: 5.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1401
+ components:
+ - pos: -22.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1402
+ components:
+ - pos: 5.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 1403
+ components:
+ - pos: -6.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1404
+ components:
+ - pos: -7.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1405
+ components:
+ - pos: -11.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1406
+ components:
+ - pos: 3.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1407
+ components:
+ - pos: 0.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 1408
+ components:
+ - pos: -7.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1409
+ components:
+ - pos: -9.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1410
+ components:
+ - pos: -7.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1411
+ components:
+ - pos: -7.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1412
+ components:
+ - pos: -8.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1413
+ components:
+ - pos: -10.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1414
+ components:
+ - pos: -9.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1415
+ components:
+ - pos: -9.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1416
+ components:
+ - pos: -8.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1417
+ components:
+ - pos: -10.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1418
+ components:
+ - pos: -2.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1419
+ components:
+ - pos: -3.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1420
+ components:
+ - pos: -10.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1421
+ components:
+ - pos: -3.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1422
+ components:
+ - pos: -11.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1423
+ components:
+ - pos: -4.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1424
+ components:
+ - pos: -24.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1425
+ components:
+ - pos: -4.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1426
+ components:
+ - pos: -13.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1427
+ components:
+ - pos: -5.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1428
+ components:
+ - pos: -12.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1429
+ components:
+ - pos: -11.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1430
+ components:
+ - pos: -10.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1431
+ components:
+ - pos: -6.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1432
+ components:
+ - pos: -9.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1433
+ components:
+ - pos: -0.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1434
+ components:
+ - pos: -23.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1435
+ components:
+ - pos: -10.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1436
+ components:
+ - pos: -2.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1437
+ components:
+ - pos: -11.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1438
+ components:
+ - pos: -10.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1439
+ components:
+ - pos: -12.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1440
+ components:
+ - pos: -11.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1441
+ components:
+ - pos: -11.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1442
+ components:
+ - pos: -13.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1443
+ components:
+ - pos: -10.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1444
+ components:
+ - pos: -12.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1445
+ components:
+ - pos: -3.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 1446
+ components:
+ - pos: -14.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1447
+ components:
+ - pos: -3.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1448
+ components:
+ - pos: -5.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 1449
+ components:
+ - pos: -13.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1450
+ components:
+ - pos: -5.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1451
+ components:
+ - pos: -14.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1452
+ components:
+ - pos: -15.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1453
+ components:
+ - pos: -4.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 1454
+ components:
+ - pos: -12.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1455
+ components:
+ - pos: -4.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 1456
+ components:
+ - pos: -12.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1457
+ components:
+ - pos: -4.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1458
+ components:
+ - pos: -1.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1459
+ components:
+ - pos: -1.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1460
+ components:
+ - pos: -10.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1461
+ components:
+ - pos: -0.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1462
+ components:
+ - pos: -10.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1463
+ components:
+ - pos: -11.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1464
+ components:
+ - pos: -22.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1465
+ components:
+ - pos: -22.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1466
+ components:
+ - pos: -22.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1467
+ components:
+ - pos: -23.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1468
+ components:
+ - pos: -15.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1469
+ components:
+ - pos: -15.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1470
+ components:
+ - pos: -23.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1471
+ components:
+ - pos: -14.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1472
+ components:
+ - pos: -14.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1473
+ components:
+ - pos: -11.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1474
+ components:
+ - pos: -13.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1475
+ components:
+ - pos: -12.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1476
+ components:
+ - pos: -22.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1477
+ components:
+ - pos: -13.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1478
+ components:
+ - pos: -23.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1479
+ components:
+ - pos: 17.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1480
+ components:
+ - pos: 17.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1481
+ components:
+ - pos: 17.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1482
+ components:
+ - pos: 17.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1483
+ components:
+ - pos: 17.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1484
+ components:
+ - pos: 17.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1485
+ components:
+ - pos: 17.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1486
+ components:
+ - pos: 17.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1487
+ components:
+ - pos: 17.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1488
+ components:
+ - pos: 16.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1489
+ components:
+ - pos: 16.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1490
+ components:
+ - pos: 16.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1491
+ components:
+ - pos: 16.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1492
+ components:
+ - pos: 16.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1493
+ components:
+ - pos: 16.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1494
+ components:
+ - pos: 16.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1495
+ components:
+ - pos: 16.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1496
+ components:
+ - pos: 15.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1497
+ components:
+ - pos: 15.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1498
+ components:
+ - pos: 15.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1499
+ components:
+ - pos: 15.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1500
+ components:
+ - pos: 15.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1501
+ components:
+ - pos: -8.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1502
+ components:
+ - pos: 14.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1503
+ components:
+ - pos: 14.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1504
+ components:
+ - pos: 13.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1505
+ components:
+ - pos: 13.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1506
+ components:
+ - pos: 10.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1507
+ components:
+ - pos: 11.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1508
+ components:
+ - pos: 12.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1509
+ components:
+ - pos: 14.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1510
+ components:
+ - pos: 14.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1511
+ components:
+ - pos: 13.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1512
+ components:
+ - pos: 12.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1513
+ components:
+ - pos: 11.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1514
+ components:
+ - pos: -25.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1515
+ components:
+ - pos: -21.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1516
+ components:
+ - pos: -21.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1517
+ components:
+ - pos: -13.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1518
+ components:
+ - pos: -12.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1519
+ components:
+ - pos: -13.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1520
+ components:
+ - pos: -20.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1521
+ components:
+ - pos: -18.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1522
+ components:
+ - pos: -18.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1523
+ components:
+ - pos: -18.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1524
+ components:
+ - pos: -17.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1525
+ components:
+ - pos: 9.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1526
+ components:
+ - pos: -14.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1527
+ components:
+ - pos: -4.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1528
+ components:
+ - pos: -3.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1529
+ components:
+ - pos: -2.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1530
+ components:
+ - pos: -2.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1531
+ components:
+ - pos: -1.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1532
+ components:
+ - pos: -18.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1533
+ components:
+ - pos: -18.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1534
+ components:
+ - pos: -8.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1535
+ components:
+ - pos: -17.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1536
+ components:
+ - pos: -18.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1537
+ components:
+ - pos: -7.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1538
+ components:
+ - pos: -17.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1539
+ components:
+ - pos: -7.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1540
+ components:
+ - pos: -16.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1541
+ components:
+ - pos: -6.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1542
+ components:
+ - pos: -5.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1543
+ components:
+ - pos: -5.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1544
+ components:
+ - pos: -4.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1545
+ components:
+ - pos: -3.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1546
+ components:
+ - pos: -1.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1547
+ components:
+ - pos: -6.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1548
+ components:
+ - pos: -0.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1549
+ components:
+ - pos: -0.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1550
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1551
+ components:
+ - pos: 0.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1552
+ components:
+ - pos: 1.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1553
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1554
+ components:
+ - pos: 2.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1555
+ components:
+ - pos: 3.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1556
+ components:
+ - pos: 3.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1557
+ components:
+ - pos: 4.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1558
+ components:
+ - pos: 4.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1559
+ components:
+ - pos: 5.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1560
+ components:
+ - pos: 5.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1561
+ components:
+ - pos: 6.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1562
+ components:
+ - pos: 6.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1563
+ components:
+ - pos: 7.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1564
+ components:
+ - pos: 7.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1565
+ components:
+ - pos: 8.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1566
+ components:
+ - pos: 8.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1567
+ components:
+ - pos: 9.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1568
+ components:
+ - pos: 9.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1569
+ components:
+ - pos: 10.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1570
+ components:
+ - pos: 10.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1571
+ components:
+ - pos: 11.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1572
+ components:
+ - pos: 11.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1573
+ components:
+ - pos: 12.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1574
+ components:
+ - pos: 12.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1575
+ components:
+ - pos: 13.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1576
+ components:
+ - pos: 13.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1577
+ components:
+ - pos: 14.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1578
+ components:
+ - pos: 14.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1579
+ components:
+ - pos: 15.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1580
+ components:
+ - pos: 15.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1581
+ components:
+ - pos: 16.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1582
+ components:
+ - pos: 16.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1583
+ components:
+ - pos: 17.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1584
+ components:
+ - pos: 17.5,19.5
+ parent: 1
+ type: Transform
+ - uid: 1585
+ components:
+ - pos: 18.5,18.5
+ parent: 1
+ type: Transform
+ - uid: 1586
+ components:
+ - pos: 18.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1587
+ components:
+ - pos: 18.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1588
+ components:
+ - pos: 18.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1589
+ components:
+ - pos: 18.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1590
+ components:
+ - pos: 18.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1591
+ components:
+ - pos: 18.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1592
+ components:
+ - pos: 18.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1593
+ components:
+ - pos: 18.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1594
+ components:
+ - pos: 18.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1595
+ components:
+ - pos: 18.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1596
+ components:
+ - pos: 18.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1597
+ components:
+ - pos: 18.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1598
+ components:
+ - pos: 18.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1599
+ components:
+ - pos: 20.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1600
+ components:
+ - pos: 20.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1601
+ components:
+ - pos: 19.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 1602
+ components:
+ - pos: 18.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 1603
+ components:
+ - pos: 18.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1604
+ components:
+ - pos: 18.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1605
+ components:
+ - pos: 18.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1606
+ components:
+ - pos: 18.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1607
+ components:
+ - pos: 18.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1608
+ components:
+ - pos: 18.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1609
+ components:
+ - pos: 9.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1610
+ components:
+ - pos: 18.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1611
+ components:
+ - pos: 18.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1612
+ components:
+ - pos: 18.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1613
+ components:
+ - pos: 17.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1614
+ components:
+ - pos: 16.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1615
+ components:
+ - pos: 15.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1616
+ components:
+ - pos: 14.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1617
+ components:
+ - pos: 13.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1618
+ components:
+ - pos: 12.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1619
+ components:
+ - pos: 11.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1620
+ components:
+ - pos: 10.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1621
+ components:
+ - pos: 9.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1622
+ components:
+ - pos: 8.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1623
+ components:
+ - pos: 7.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1624
+ components:
+ - pos: -20.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1625
+ components:
+ - pos: -21.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1626
+ components:
+ - pos: -19.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1627
+ components:
+ - pos: 0.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1628
+ components:
+ - pos: 12.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1629
+ components:
+ - pos: 12.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1630
+ components:
+ - pos: 11.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1631
+ components:
+ - pos: -0.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1632
+ components:
+ - pos: -25.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1633
+ components:
+ - pos: -22.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1634
+ components:
+ - pos: -4.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1635
+ components:
+ - pos: -5.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1636
+ components:
+ - pos: -6.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1637
+ components:
+ - pos: -10.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1638
+ components:
+ - pos: -11.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1639
+ components:
+ - pos: -12.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1640
+ components:
+ - pos: -13.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1641
+ components:
+ - pos: -2.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 1642
+ components:
+ - pos: -15.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1643
+ components:
+ - pos: -16.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1644
+ components:
+ - pos: -17.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1645
+ components:
+ - pos: -18.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1646
+ components:
+ - pos: -18.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1647
+ components:
+ - pos: -18.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1648
+ components:
+ - pos: -18.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1649
+ components:
+ - pos: -18.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1650
+ components:
+ - pos: -18.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1651
+ components:
+ - pos: -18.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1652
+ components:
+ - pos: -19.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1653
+ components:
+ - pos: -21.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1654
+ components:
+ - pos: -17.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1655
+ components:
+ - pos: -19.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1656
+ components:
+ - pos: -21.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1657
+ components:
+ - pos: -20.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1658
+ components:
+ - pos: -18.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1659
+ components:
+ - pos: -20.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1660
+ components:
+ - pos: -19.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1661
+ components:
+ - pos: -20.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1662
+ components:
+ - pos: -19.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1663
+ components:
+ - pos: -20.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1664
+ components:
+ - pos: -19.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1665
+ components:
+ - pos: -20.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1666
+ components:
+ - pos: -19.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1667
+ components:
+ - pos: -21.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1668
+ components:
+ - pos: -19.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1669
+ components:
+ - pos: -20.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1670
+ components:
+ - pos: -21.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1671
+ components:
+ - pos: -21.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1672
+ components:
+ - pos: -18.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1673
+ components:
+ - pos: -1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1674
+ components:
+ - pos: -0.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1675
+ components:
+ - pos: -0.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1676
+ components:
+ - pos: -18.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1677
+ components:
+ - pos: -17.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1678
+ components:
+ - pos: -20.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1679
+ components:
+ - pos: 0.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1680
+ components:
+ - pos: 0.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1681
+ components:
+ - pos: 1.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1682
+ components:
+ - pos: 1.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1683
+ components:
+ - pos: -21.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1684
+ components:
+ - pos: -18.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1685
+ components:
+ - pos: -18.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1686
+ components:
+ - pos: -21.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1687
+ components:
+ - pos: 2.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1688
+ components:
+ - pos: 2.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1689
+ components:
+ - pos: 3.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1690
+ components:
+ - pos: 3.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1691
+ components:
+ - pos: -22.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1692
+ components:
+ - pos: -19.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1693
+ components:
+ - pos: -19.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1694
+ components:
+ - pos: -24.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1695
+ components:
+ - pos: 4.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1696
+ components:
+ - pos: 4.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1697
+ components:
+ - pos: 5.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1698
+ components:
+ - pos: 5.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1699
+ components:
+ - pos: -23.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1700
+ components:
+ - pos: -19.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1701
+ components:
+ - pos: -23.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1702
+ components:
+ - pos: 24.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1703
+ components:
+ - pos: 6.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1704
+ components:
+ - pos: 7.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1705
+ components:
+ - pos: 7.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1706
+ components:
+ - pos: 7.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1707
+ components:
+ - pos: 9.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1708
+ components:
+ - pos: 7.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1709
+ components:
+ - pos: 8.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1710
+ components:
+ - pos: 8.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1711
+ components:
+ - pos: 8.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1712
+ components:
+ - pos: 8.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1713
+ components:
+ - pos: 11.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1714
+ components:
+ - pos: 10.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1715
+ components:
+ - pos: 9.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1716
+ components:
+ - pos: 10.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1717
+ components:
+ - pos: 13.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1718
+ components:
+ - pos: 9.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1719
+ components:
+ - pos: 10.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1720
+ components:
+ - pos: 11.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1721
+ components:
+ - pos: 14.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1722
+ components:
+ - pos: 13.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1723
+ components:
+ - pos: 14.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1724
+ components:
+ - pos: 15.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1725
+ components:
+ - pos: 15.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1726
+ components:
+ - pos: 14.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1727
+ components:
+ - pos: 13.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1728
+ components:
+ - pos: 14.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1729
+ components:
+ - pos: 15.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1730
+ components:
+ - pos: 16.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1731
+ components:
+ - pos: 16.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1732
+ components:
+ - pos: 15.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1733
+ components:
+ - pos: 16.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1734
+ components:
+ - pos: 17.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1735
+ components:
+ - pos: 17.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1736
+ components:
+ - pos: 16.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1737
+ components:
+ - pos: 17.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1738
+ components:
+ - pos: 18.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1739
+ components:
+ - pos: 18.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1740
+ components:
+ - pos: 17.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1741
+ components:
+ - pos: 18.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1742
+ components:
+ - pos: 19.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1743
+ components:
+ - pos: 19.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1744
+ components:
+ - pos: 18.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1745
+ components:
+ - pos: 19.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1746
+ components:
+ - pos: 23.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1747
+ components:
+ - pos: 23.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1748
+ components:
+ - pos: 21.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1749
+ components:
+ - pos: 13.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1750
+ components:
+ - pos: 22.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1751
+ components:
+ - pos: 19.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1752
+ components:
+ - pos: 19.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1753
+ components:
+ - pos: 20.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1754
+ components:
+ - pos: 21.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 1755
+ components:
+ - pos: 21.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1756
+ components:
+ - pos: 20.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1757
+ components:
+ - pos: 19.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1758
+ components:
+ - pos: 19.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1759
+ components:
+ - pos: 20.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1760
+ components:
+ - pos: 21.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1761
+ components:
+ - pos: 21.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1762
+ components:
+ - pos: 20.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1763
+ components:
+ - pos: 19.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1764
+ components:
+ - pos: 19.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1765
+ components:
+ - pos: 20.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1766
+ components:
+ - pos: 21.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1767
+ components:
+ - pos: 21.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1768
+ components:
+ - pos: 20.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1769
+ components:
+ - pos: 19.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 1770
+ components:
+ - pos: 19.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1771
+ components:
+ - pos: 20.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1772
+ components:
+ - pos: 21.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 1773
+ components:
+ - pos: 21.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1774
+ components:
+ - pos: 20.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1775
+ components:
+ - pos: 19.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 1776
+ components:
+ - pos: 19.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1777
+ components:
+ - pos: 21.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 1778
+ components:
+ - pos: 21.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1779
+ components:
+ - pos: 20.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1780
+ components:
+ - pos: 19.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 1781
+ components:
+ - pos: 19.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1782
+ components:
+ - pos: 19.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1783
+ components:
+ - pos: 20.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1784
+ components:
+ - pos: 20.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1785
+ components:
+ - pos: 21.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 1786
+ components:
+ - pos: 21.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 1787
+ components:
+ - pos: 21.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1788
+ components:
+ - pos: 20.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1789
+ components:
+ - pos: 19.5,4.5
+ parent: 1
+ type: Transform
+ - uid: 1790
+ components:
+ - pos: 19.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1791
+ components:
+ - pos: 20.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1792
+ components:
+ - pos: 21.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 1793
+ components:
+ - pos: 19.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1794
+ components:
+ - pos: 19.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1795
+ components:
+ - pos: 20.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1796
+ components:
+ - pos: 20.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1797
+ components:
+ - pos: 21.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 1798
+ components:
+ - pos: 21.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 1799
+ components:
+ - pos: 19.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1800
+ components:
+ - pos: 19.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1801
+ components:
+ - pos: 19.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1802
+ components:
+ - pos: 20.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1803
+ components:
+ - pos: 20.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1804
+ components:
+ - pos: 21.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 1805
+ components:
+ - pos: 21.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 1806
+ components:
+ - pos: 21.5,10.5
+ parent: 1
+ type: Transform
+ - uid: 1807
+ components:
+ - pos: 19.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1808
+ components:
+ - pos: 19.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1809
+ components:
+ - pos: 19.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1810
+ components:
+ - pos: 19.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1811
+ components:
+ - pos: 19.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1812
+ components:
+ - pos: 19.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1813
+ components:
+ - pos: 19.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 1814
+ components:
+ - pos: 20.5,16.5
+ parent: 1
+ type: Transform
+ - uid: 1815
+ components:
+ - pos: 20.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1816
+ components:
+ - pos: 20.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1817
+ components:
+ - pos: 20.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1818
+ components:
+ - pos: 20.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1819
+ components:
+ - pos: 20.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1820
+ components:
+ - pos: 21.5,11.5
+ parent: 1
+ type: Transform
+ - uid: 1821
+ components:
+ - pos: 21.5,12.5
+ parent: 1
+ type: Transform
+ - uid: 1822
+ components:
+ - pos: 21.5,13.5
+ parent: 1
+ type: Transform
+ - uid: 1823
+ components:
+ - pos: 21.5,14.5
+ parent: 1
+ type: Transform
+ - uid: 1824
+ components:
+ - pos: 21.5,15.5
+ parent: 1
+ type: Transform
+ - uid: 1825
+ components:
+ - pos: -14.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1826
+ components:
+ - pos: -15.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1827
+ components:
+ - pos: -14.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1828
+ components:
+ - pos: -13.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1829
+ components:
+ - pos: -14.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1830
+ components:
+ - pos: -13.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1831
+ components:
+ - pos: -13.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1832
+ components:
+ - pos: -12.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1833
+ components:
+ - pos: -12.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1834
+ components:
+ - pos: -11.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1835
+ components:
+ - pos: -12.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1836
+ components:
+ - pos: -11.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1837
+ components:
+ - pos: -10.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1838
+ components:
+ - pos: -11.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1839
+ components:
+ - pos: -10.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1840
+ components:
+ - pos: -10.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1841
+ components:
+ - pos: -10.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1842
+ components:
+ - pos: -10.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1843
+ components:
+ - pos: -10.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1844
+ components:
+ - pos: -10.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1845
+ components:
+ - pos: -9.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1846
+ components:
+ - pos: -9.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1847
+ components:
+ - pos: -9.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1848
+ components:
+ - pos: -9.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1849
+ components:
+ - pos: -8.5,-22.5
+ parent: 1
+ type: Transform
+ - uid: 1850
+ components:
+ - pos: -8.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1851
+ components:
+ - pos: 4.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1852
+ components:
+ - pos: 4.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1853
+ components:
+ - pos: 5.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1854
+ components:
+ - pos: 5.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1855
+ components:
+ - pos: 6.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1856
+ components:
+ - pos: 6.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1857
+ components:
+ - pos: 7.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1858
+ components:
+ - pos: 7.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1859
+ components:
+ - pos: -1.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1860
+ components:
+ - pos: -1.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1861
+ components:
+ - pos: -0.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1862
+ components:
+ - pos: -0.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1863
+ components:
+ - pos: 0.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1864
+ components:
+ - pos: 2.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1865
+ components:
+ - pos: 1.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1866
+ components:
+ - pos: 3.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1867
+ components:
+ - pos: 2.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1868
+ components:
+ - pos: 2.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1869
+ components:
+ - pos: 3.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1870
+ components:
+ - pos: 1.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1871
+ components:
+ - pos: -7.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1872
+ components:
+ - pos: -7.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1873
+ components:
+ - pos: -6.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1874
+ components:
+ - pos: -6.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1875
+ components:
+ - pos: -5.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1876
+ components:
+ - pos: -5.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1877
+ components:
+ - pos: -4.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1878
+ components:
+ - pos: -4.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1879
+ components:
+ - pos: -3.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1880
+ components:
+ - pos: -3.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1881
+ components:
+ - pos: -2.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1882
+ components:
+ - pos: -2.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1883
+ components:
+ - pos: -0.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1884
+ components:
+ - pos: 4.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1885
+ components:
+ - pos: 3.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1886
+ components:
+ - pos: 3.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1887
+ components:
+ - pos: 4.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1888
+ components:
+ - pos: 5.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1889
+ components:
+ - pos: 5.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1890
+ components:
+ - pos: 6.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1891
+ components:
+ - pos: 6.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1892
+ components:
+ - pos: 7.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1893
+ components:
+ - pos: 7.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1894
+ components:
+ - pos: 8.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1895
+ components:
+ - pos: 8.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1896
+ components:
+ - pos: -2.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1897
+ components:
+ - pos: -2.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1898
+ components:
+ - pos: -1.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1899
+ components:
+ - pos: -1.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1900
+ components:
+ - pos: -0.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1901
+ components:
+ - pos: -0.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1902
+ components:
+ - pos: -18.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1903
+ components:
+ - pos: -19.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 1904
+ components:
+ - pos: -8.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1905
+ components:
+ - pos: -8.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1906
+ components:
+ - pos: -7.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1907
+ components:
+ - pos: -7.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1908
+ components:
+ - pos: -6.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1909
+ components:
+ - pos: -6.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1910
+ components:
+ - pos: -5.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1911
+ components:
+ - pos: -5.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1912
+ components:
+ - pos: -4.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1913
+ components:
+ - pos: -4.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1914
+ components:
+ - pos: -3.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1915
+ components:
+ - pos: -3.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 1916
+ components:
+ - pos: 7.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1917
+ components:
+ - pos: 6.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1918
+ components:
+ - pos: 5.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1919
+ components:
+ - pos: 4.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1920
+ components:
+ - pos: -18.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1921
+ components:
+ - pos: -1.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1922
+ components:
+ - pos: -2.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1923
+ components:
+ - pos: -5.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1924
+ components:
+ - pos: -5.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1925
+ components:
+ - pos: -5.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1926
+ components:
+ - pos: -5.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1927
+ components:
+ - pos: -6.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1928
+ components:
+ - pos: -6.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1929
+ components:
+ - pos: -6.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1930
+ components:
+ - pos: -6.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1931
+ components:
+ - pos: -7.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1932
+ components:
+ - pos: -7.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1933
+ components:
+ - pos: -7.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1934
+ components:
+ - pos: -7.5,-30.5
+ parent: 1
+ type: Transform
+ - uid: 1935
+ components:
+ - pos: -10.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1936
+ components:
+ - pos: -9.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1937
+ components:
+ - pos: -9.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1938
+ components:
+ - pos: -8.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1939
+ components:
+ - pos: -8.5,-28.5
+ parent: 1
+ type: Transform
+ - uid: 1940
+ components:
+ - pos: -8.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1941
+ components:
+ - pos: -4.5,-27.5
+ parent: 1
+ type: Transform
+ - uid: 1942
+ components:
+ - pos: -4.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1943
+ components:
+ - pos: -3.5,-29.5
+ parent: 1
+ type: Transform
+ - uid: 1944
+ components:
+ - pos: -5.5,-32.5
+ parent: 1
+ type: Transform
+ - uid: 1945
+ components:
+ - pos: -4.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1946
+ components:
+ - pos: -7.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1947
+ components:
+ - pos: -8.5,-31.5
+ parent: 1
+ type: Transform
+ - uid: 1948
+ components:
+ - pos: -22.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1949
+ components:
+ - pos: -9.5,-25.5
+ parent: 1
+ type: Transform
+ - uid: 1950
+ components:
+ - pos: -9.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1951
+ components:
+ - pos: -10.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1952
+ components:
+ - pos: -9.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1953
+ components:
+ - pos: -10.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1954
+ components:
+ - pos: -11.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 1955
+ components:
+ - pos: -8.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 1956
+ components:
+ - pos: -11.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1957
+ components:
+ - pos: -11.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1958
+ components:
+ - pos: -11.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1959
+ components:
+ - pos: -11.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1960
+ components:
+ - pos: -12.5,-21.5
+ parent: 1
+ type: Transform
+ - uid: 1961
+ components:
+ - pos: -12.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 1962
+ components:
+ - pos: -12.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1963
+ components:
+ - pos: -12.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1964
+ components:
+ - pos: -13.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1965
+ components:
+ - pos: -13.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1966
+ components:
+ - pos: -13.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1967
+ components:
+ - pos: -14.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1968
+ components:
+ - pos: -14.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1969
+ components:
+ - pos: -14.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1970
+ components:
+ - pos: -15.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 1971
+ components:
+ - pos: -15.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1972
+ components:
+ - pos: -15.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1973
+ components:
+ - pos: -12.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1974
+ components:
+ - pos: -14.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 1975
+ components:
+ - pos: -16.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 1976
+ components:
+ - pos: -16.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1977
+ components:
+ - pos: -16.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1978
+ components:
+ - pos: -16.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1979
+ components:
+ - pos: -16.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1980
+ components:
+ - pos: -17.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 1981
+ components:
+ - pos: -15.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 1982
+ components:
+ - pos: -15.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1983
+ components:
+ - pos: -14.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 1984
+ components:
+ - pos: -22.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1985
+ components:
+ - pos: -17.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 1986
+ components:
+ - pos: 1.5,22.5
+ parent: 1
+ type: Transform
+ - uid: 1987
+ components:
+ - pos: -25.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1988
+ components:
+ - pos: -22.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1989
+ components:
+ - pos: -24.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1990
+ components:
+ - pos: -25.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 1991
+ components:
+ - pos: -19.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1992
+ components:
+ - pos: -19.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 1993
+ components:
+ - pos: -18.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 1994
+ components:
+ - pos: -24.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 1995
+ components:
+ - pos: -20.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 1996
+ components:
+ - pos: -21.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 1997
+ components:
+ - pos: -23.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 1998
+ components:
+ - pos: -23.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 1999
+ components:
+ - pos: -24.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2000
+ components:
+ - pos: -23.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2001
+ components:
+ - pos: -21.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2002
+ components:
+ - pos: -24.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2003
+ components:
+ - pos: -24.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2004
+ components:
+ - pos: -22.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2005
+ components:
+ - pos: -21.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2006
+ components:
+ - pos: -21.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2007
+ components:
+ - pos: -20.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2008
+ components:
+ - pos: -20.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2009
+ components:
+ - pos: -21.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2010
+ components:
+ - pos: -23.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2011
+ components:
+ - pos: 0.5,20.5
+ parent: 1
+ type: Transform
+ - uid: 2012
+ components:
+ - pos: -17.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2013
+ components:
+ - pos: 10.5,-23.5
+ parent: 1
+ type: Transform
+ - uid: 2014
+ components:
+ - pos: 10.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 2015
+ components:
+ - pos: 17.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2016
+ components:
+ - pos: 17.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2017
+ components:
+ - pos: 19.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2018
+ components:
+ - pos: 19.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2019
+ components:
+ - pos: 22.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2020
+ components:
+ - pos: 25.5,6.5
+ parent: 1
+ type: Transform
+ - uid: 2021
+ components:
+ - pos: 26.5,7.5
+ parent: 1
+ type: Transform
+ - uid: 2022
+ components:
+ - pos: 26.5,8.5
+ parent: 1
+ type: Transform
+ - uid: 2023
+ components:
+ - pos: 26.5,9.5
+ parent: 1
+ type: Transform
+ - uid: 2024
+ components:
+ - pos: 22.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2025
+ components:
+ - pos: 22.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2026
+ components:
+ - pos: 23.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2027
+ components:
+ - pos: 20.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2028
+ components:
+ - pos: 26.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2029
+ components:
+ - pos: 26.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2030
+ components:
+ - pos: 26.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2031
+ components:
+ - pos: 26.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2032
+ components:
+ - pos: 26.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2033
+ components:
+ - pos: 26.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2034
+ components:
+ - pos: 22.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2035
+ components:
+ - pos: 22.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2036
+ components:
+ - pos: 22.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2037
+ components:
+ - pos: 22.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2038
+ components:
+ - pos: 22.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2039
+ components:
+ - pos: 22.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2040
+ components:
+ - pos: 23.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2041
+ components:
+ - pos: 23.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2042
+ components:
+ - pos: 23.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2043
+ components:
+ - pos: 23.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2044
+ components:
+ - pos: 23.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2045
+ components:
+ - pos: 23.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2046
+ components:
+ - pos: 24.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2047
+ components:
+ - pos: 24.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2048
+ components:
+ - pos: 24.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2049
+ components:
+ - pos: 24.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2050
+ components:
+ - pos: 24.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2051
+ components:
+ - pos: 24.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2052
+ components:
+ - pos: 25.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2053
+ components:
+ - pos: 25.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2054
+ components:
+ - pos: 25.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2055
+ components:
+ - pos: 25.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2056
+ components:
+ - pos: 25.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2057
+ components:
+ - pos: 25.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 2058
+ components:
+ - pos: 27.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2059
+ components:
+ - pos: 27.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2060
+ components:
+ - pos: 27.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2061
+ components:
+ - pos: 28.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2062
+ components:
+ - pos: 27.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2063
+ components:
+ - pos: 28.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2064
+ components:
+ - pos: 29.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2065
+ components:
+ - pos: 28.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2066
+ components:
+ - pos: 25.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2067
+ components:
+ - pos: 26.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2068
+ components:
+ - pos: 26.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2069
+ components:
+ - pos: 27.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2070
+ components:
+ - pos: 23.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2071
+ components:
+ - pos: 22.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2072
+ components:
+ - pos: 22.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 2073
+ components:
+ - pos: 22.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2074
+ components:
+ - pos: 23.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 2075
+ components:
+ - pos: 22.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2076
+ components:
+ - pos: 22.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2077
+ components:
+ - pos: 22.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2078
+ components:
+ - pos: 22.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2079
+ components:
+ - pos: 23.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2080
+ components:
+ - pos: 23.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2081
+ components:
+ - pos: 23.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2082
+ components:
+ - pos: 23.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2083
+ components:
+ - pos: 24.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 2084
+ components:
+ - pos: 24.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2085
+ components:
+ - pos: 24.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2086
+ components:
+ - pos: 24.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2087
+ components:
+ - pos: 25.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2088
+ components:
+ - pos: 15.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 2089
+ components:
+ - pos: 26.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 2090
+ components:
+ - pos: 23.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2091
+ components:
+ - pos: 21.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2092
+ components:
+ - pos: 21.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2093
+ components:
+ - pos: 20.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 2094
+ components:
+ - pos: 20.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 2095
+ components:
+ - pos: 20.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 2096
+ components:
+ - pos: 20.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2097
+ components:
+ - pos: 20.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2098
+ components:
+ - pos: 20.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 2099
+ components:
+ - pos: 21.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 2100
+ components:
+ - pos: 21.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 2101
+ components:
+ - pos: 0.5,-24.5
+ parent: 1
+ type: Transform
+ - uid: 2102
+ components:
+ - pos: 13.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 2103
+ components:
+ - pos: 12.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 2104
+ components:
+ - pos: 12.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 2105
+ components:
+ - pos: 12.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2106
+ components:
+ - pos: 13.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2107
+ components:
+ - pos: 14.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2108
+ components:
+ - pos: 0.5,-26.5
+ parent: 1
+ type: Transform
+ - uid: 2109
+ components:
+ - pos: 16.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 2110
+ components:
+ - pos: 16.5,-18.5
+ parent: 1
+ type: Transform
+- proto: RandomSpawner
+ entities:
+ - uid: 2111
+ components:
+ - pos: -15.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2112
+ components:
+ - pos: 4.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 2113
+ components:
+ - pos: 4.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 2114
+ components:
+ - pos: 4.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 2115
+ components:
+ - pos: 0.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 2116
+ components:
+ - pos: -2.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2117
+ components:
+ - pos: -2.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 2118
+ components:
+ - pos: 4.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2119
+ components:
+ - pos: -0.5,-17.5
+ parent: 1
+ type: Transform
+- proto: ReinforcedWindow
+ entities:
+ - uid: 2120
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -15.5,3.5
+ parent: 1
+ type: Transform
+- proto: SalvageCanisterSpawner
+ entities:
+ - uid: 2121
+ components:
+ - pos: 16.5,26.5
+ parent: 1
+ type: Transform
+ - uid: 2122
+ components:
+ - pos: 23.5,22.5
+ parent: 1
+ type: Transform
+- proto: SalvageHumanCorpseSpawner
+ entities:
+ - uid: 2123
+ components:
+ - pos: -15.5,2.5
+ parent: 1
+ type: Transform
+- proto: SalvageMaterialCrateSpawner
+ entities:
+ - uid: 2124
+ components:
+ - pos: 16.5,23.5
+ parent: 1
+ type: Transform
+ - uid: 2125
+ components:
+ - pos: 20.5,22.5
+ parent: 1
+ type: Transform
+- proto: SalvagePartsSpawnerLow
+ entities:
+ - uid: 2126
+ components:
+ - pos: 17.5,21.5
+ parent: 1
+ type: Transform
+ - uid: 2127
+ components:
+ - pos: 20.5,24.5
+ parent: 1
+ type: Transform
+- proto: SheetPlasma
+ entities:
+ - uid: 2128
+ components:
+ - pos: 2.679453,-0.62256384
+ parent: 1
+ type: Transform
+- proto: SpaceCash10000
+ entities:
+ - uid: 2129
+ components:
+ - pos: 2.3960662,2.824024
+ parent: 1
+ type: Transform
+ - uid: 2130
+ components:
+ - pos: 2.8179412,2.824024
+ parent: 1
+ type: Transform
+ - uid: 2131
+ components:
+ - pos: 2.3491912,2.464649
+ parent: 1
+ type: Transform
+ - uid: 2132
+ components:
+ - pos: 2.8491912,2.464649
+ parent: 1
+ type: Transform
+- proto: SpawnMobCarp
+ entities:
+ - uid: 2133
+ components:
+ - pos: 18.5,21.5
+ parent: 1
+ type: Transform
+- proto: SyndicateIDCard
+ entities:
+ - uid: 2134
+ components:
+ - pos: -15.370821,2.7174482
+ parent: 1
+ type: Transform
+- proto: ThrowingStarNinja
+ entities:
+ - uid: 2135
+ components:
+ - pos: -1.3495207,-0.62536645
+ parent: 1
+ type: Transform
+- proto: ToyHammer
+ entities:
+ - uid: 530
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 522
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: ToyHonk
+ entities:
+ - uid: 531
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 522
+ type: Transform
+ - canCollide: False
+ type: Physics
+- proto: TrashBananaPeel
+ entities:
+ - uid: 2136
+ components:
+ - pos: 2.3156075,17.461327
+ parent: 1
+ type: Transform
+- proto: TrashBananaPeelExplosive
+ entities:
+ - uid: 2137
+ components:
+ - pos: 1.50196,-16.610743
+ parent: 1
+ type: Transform
+- proto: WallCult
+ entities:
+ - uid: 2138
+ components:
+ - pos: 2.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2139
+ components:
+ - pos: 5.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2140
+ components:
+ - pos: 0.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2141
+ components:
+ - pos: 5.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2142
+ components:
+ - pos: -2.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2143
+ components:
+ - pos: -0.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2144
+ components:
+ - pos: 6.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 2145
+ components:
+ - pos: -1.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2146
+ components:
+ - pos: -3.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2147
+ components:
+ - pos: -3.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2148
+ components:
+ - pos: 0.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2149
+ components:
+ - pos: -3.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 2150
+ components:
+ - pos: -0.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2151
+ components:
+ - pos: -3.5,-18.5
+ parent: 1
+ type: Transform
+ - uid: 2152
+ components:
+ - pos: -1.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2153
+ components:
+ - pos: -3.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 2154
+ components:
+ - pos: 6.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2155
+ components:
+ - pos: -3.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2156
+ components:
+ - pos: -2.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2157
+ components:
+ - pos: 1.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2158
+ components:
+ - pos: 3.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2159
+ components:
+ - pos: 3.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2160
+ components:
+ - pos: 2.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2161
+ components:
+ - pos: 4.5,-20.5
+ parent: 1
+ type: Transform
+ - uid: 2162
+ components:
+ - pos: 4.5,-15.5
+ parent: 1
+ type: Transform
+ - uid: 2163
+ components:
+ - pos: 6.5,-16.5
+ parent: 1
+ type: Transform
+ - uid: 2164
+ components:
+ - pos: 6.5,-17.5
+ parent: 1
+ type: Transform
+ - uid: 2165
+ components:
+ - pos: 6.5,-19.5
+ parent: 1
+ type: Transform
+ - uid: 2166
+ components:
+ - pos: 6.5,-20.5
+ parent: 1
+ type: Transform
+- proto: WallPlastitanium
+ entities:
+ - uid: 2167
+ components:
+ - pos: 1.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2168
+ components:
+ - pos: 2.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2169
+ components:
+ - pos: 3.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2170
+ components:
+ - pos: 3.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2171
+ components:
+ - pos: 3.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2172
+ components:
+ - pos: 3.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2173
+ components:
+ - pos: 3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2174
+ components:
+ - pos: 3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2175
+ components:
+ - pos: 3.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2176
+ components:
+ - pos: 2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2177
+ components:
+ - pos: 1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2178
+ components:
+ - pos: -0.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2179
+ components:
+ - pos: -1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2180
+ components:
+ - pos: -2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 2181
+ components:
+ - pos: -2.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 2182
+ components:
+ - pos: -2.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 2183
+ components:
+ - pos: -2.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2184
+ components:
+ - pos: -2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2185
+ components:
+ - pos: -2.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2186
+ components:
+ - pos: -2.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2187
+ components:
+ - pos: -1.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2188
+ components:
+ - pos: -0.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2189
+ components:
+ - pos: 0.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2190
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -16.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2191
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -16.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2192
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -14.5,2.5
+ parent: 1
+ type: Transform
+ - uid: 2193
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -14.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 2194
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -16.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 2195
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -14.5,0.5
+ parent: 1
+ type: Transform
+- proto: WallPlastitaniumDiagonal
+ entities:
+ - uid: 2196
+ components:
+ - pos: -16.5,3.5
+ parent: 1
+ type: Transform
+ - uid: 2197
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -14.5,3.5
+ parent: 1
+ type: Transform
+- proto: WallSolid
+ entities:
+ - uid: 2198
+ components:
+ - pos: 16.5,24.5
+ parent: 1
+ type: Transform
+ - uid: 2199
+ components:
+ - pos: 20.5,23.5
+ parent: 1
+ type: Transform
+- proto: WarpPoint
+ entities:
+ - uid: 2200
+ components:
+ - pos: 0.5,0.5
+ parent: 1
+ type: Transform
+ - location: Unusual Asteroid
+ type: WarpPoint
+- proto: WeaponTurretHostile
+ entities:
+ - uid: 2201
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2202
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,5.5
+ parent: 1
+ type: Transform
+ - uid: 2203
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2204
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 2205
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,17.5
+ parent: 1
+ type: Transform
+ - uid: 2206
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: -8.5,-17.5
+ parent: 1
+ type: Transform
+- proto: WeaponTurretXeno
+ entities:
+ - uid: 2207
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: 10.5,-7.5
+ parent: 1
+ type: Transform
+- proto: XenoAISpawner
+ entities:
+ - uid: 2208
+ components:
+ - pos: 11.5,-6.5
+ parent: 1
+ type: Transform
+...
diff --git a/Resources/Maps/Shuttles/hunter.yml b/Resources/Maps/Shuttles/hunter.yml
new file mode 100644
index 00000000000..d85b66b055a
--- /dev/null
+++ b/Resources/Maps/Shuttles/hunter.yml
@@ -0,0 +1,2613 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 26: FloorDark
+ 61: FloorMetalDiamond
+ 111: Lattice
+ 112: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ - pos: -1.6250114,-0.453125
+ parent: invalid
+ type: Transform
+ - chunks:
+ 0,0:
+ ind: 0,0
+ tiles: GgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAAA
+ version: 6
+ type: MapGrid
+ - type: Broadphase
+ - bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ type: Physics
+ - fixtures: {}
+ type: Fixtures
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ type: Gravity
+ - chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkCornerNe
+ decals:
+ 1: 2,-4
+ 2: 3,-5
+ 20: 1,0
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkCornerNw
+ decals:
+ 0: -2,-4
+ 3: -3,-5
+ 21: -1,0
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkCornerSe
+ decals:
+ 13: 3,-8
+ 31: 1,-2
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkCornerSw
+ decals:
+ 12: -3,-8
+ 30: -1,-2
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkEndS
+ decals:
+ 34: 0,-9
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkInnerNe
+ decals:
+ 5: 2,-5
+ 25: 0,-4
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkInnerNw
+ decals:
+ 4: -2,-5
+ 24: 0,-4
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkInnerSe
+ decals:
+ 27: 0,-2
+ 33: 0,-8
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkInnerSw
+ decals:
+ 26: 0,-2
+ 32: 0,-8
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkLineE
+ decals:
+ 16: 3,-7
+ 17: 3,-6
+ 22: 0,-3
+ 29: 1,-1
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkLineN
+ decals:
+ 6: -1,-4
+ 7: 1,-4
+ 19: 0,0
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkLineS
+ decals:
+ 8: -2,-8
+ 9: -1,-8
+ 10: 1,-8
+ 11: 2,-8
+ - node:
+ color: '#951710FF'
+ id: BrickTileDarkLineW
+ decals:
+ 14: -3,-7
+ 15: -3,-6
+ 23: 0,-3
+ 28: -1,-1
+ - node:
+ color: '#951710FF'
+ id: WarnBoxGreyscale
+ decals:
+ 18: 0,-6
+ type: DecalGrid
+ - version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 119
+ 0,-1:
+ 0: 65535
+ -1,0:
+ 0: 204
+ -1,-1:
+ 0: 65535
+ 0,-4:
+ 0: 65520
+ 0,-3:
+ 0: 65535
+ 0,-2:
+ 0: 65535
+ 1,-4:
+ 0: 4912
+ 1,-3:
+ 0: 13105
+ 1,-2:
+ 0: 13075
+ 1,-1:
+ 0: 13107
+ -2,-4:
+ 0: 2176
+ -2,-3:
+ 0: 34944
+ -2,-2:
+ 0: 32776
+ -2,-1:
+ 0: 34952
+ -1,-4:
+ 0: 65520
+ -1,-3:
+ 0: 65535
+ -1,-2:
+ 0: 65535
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ type: GridAtmosphere
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+- proto: AirAlarm
+ entities:
+ - uid: 2
+ components:
+ - pos: -0.5,-8.5
+ parent: 1
+ type: Transform
+ - ShutdownSubscribers:
+ - 202
+ - 206
+ - 14
+ - 199
+ - 205
+ - 12
+ - 204
+ - 201
+ - 200
+ - 11
+ - 203
+ type: DeviceNetwork
+ - devices:
+ - 202
+ - 206
+ - 14
+ - 199
+ - 205
+ - 12
+ - 204
+ - 201
+ - 200
+ - 11
+ - 203
+ type: DeviceList
+- proto: AirCanister
+ entities:
+ - uid: 3
+ components:
+ - pos: -2.5,-9.5
+ parent: 1
+ type: Transform
+- proto: AirlockExternalGlass
+ entities:
+ - uid: 4
+ components:
+ - pos: -3.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 5
+ components:
+ - pos: 4.5,-4.5
+ parent: 1
+ type: Transform
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 6
+ components:
+ - pos: -0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 7
+ components:
+ - pos: 1.5,-14.5
+ parent: 1
+ type: Transform
+- proto: AirlockSyndicate
+ entities:
+ - uid: 8
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 9
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 10
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 0.5,-11.5
+ parent: 1
+ type: Transform
+- proto: AirSensor
+ entities:
+ - uid: 11
+ components:
+ - pos: 0.5,-12.5
+ parent: 1
+ type: Transform
+ - ShutdownSubscribers:
+ - 2
+ type: DeviceNetwork
+ - uid: 12
+ components:
+ - pos: 0.5,-9.5
+ parent: 1
+ type: Transform
+ - ShutdownSubscribers:
+ - 2
+ type: DeviceNetwork
+ - uid: 13
+ components:
+ - pos: 0.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 14
+ components:
+ - pos: 0.5,-0.5
+ parent: 1
+ type: Transform
+ - ShutdownSubscribers:
+ - 2
+ type: DeviceNetwork
+- proto: APCBasic
+ entities:
+ - uid: 15
+ components:
+ - pos: 1.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 16
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-1.5
+ parent: 1
+ type: Transform
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 17
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 18
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 19
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 20
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-14.5
+ parent: 1
+ type: Transform
+- proto: BlastDoorOpen
+ entities:
+ - uid: 21
+ components:
+ - pos: -0.5,1.5
+ parent: 1
+ type: Transform
+ - links:
+ - 246
+ type: DeviceLinkSink
+ - uid: 22
+ components:
+ - pos: 0.5,1.5
+ parent: 1
+ type: Transform
+ - links:
+ - 246
+ type: DeviceLinkSink
+ - uid: 23
+ components:
+ - pos: 1.5,1.5
+ parent: 1
+ type: Transform
+ - links:
+ - 246
+ type: DeviceLinkSink
+- proto: CableApcExtension
+ entities:
+ - uid: 24
+ components:
+ - pos: 2.5,-1.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 25
+ components:
+ - pos: 1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 26
+ components:
+ - pos: 0.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 27
+ components:
+ - pos: 0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 28
+ components:
+ - pos: 0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 29
+ components:
+ - pos: 1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 30
+ components:
+ - pos: -0.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 31
+ components:
+ - pos: 3.5,-1.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 32
+ components:
+ - pos: 3.5,-0.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 33
+ components:
+ - pos: -0.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 34
+ components:
+ - pos: -1.5,-1.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 35
+ components:
+ - pos: -2.5,-1.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 36
+ components:
+ - pos: -2.5,-0.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 37
+ components:
+ - pos: 1.5,-8.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 38
+ components:
+ - pos: 1.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 39
+ components:
+ - pos: 2.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 41
+ components:
+ - pos: 4.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 42
+ components:
+ - pos: 5.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 43
+ components:
+ - pos: 5.5,-8.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 44
+ components:
+ - pos: 0.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 45
+ components:
+ - pos: -0.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 46
+ components:
+ - pos: -1.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 47
+ components:
+ - pos: -2.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 48
+ components:
+ - pos: -3.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 49
+ components:
+ - pos: -4.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 50
+ components:
+ - pos: -4.5,-8.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 51
+ components:
+ - pos: -2.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 52
+ components:
+ - pos: -2.5,-11.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 53
+ components:
+ - pos: -2.5,-12.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 54
+ components:
+ - pos: -2.5,-13.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 55
+ components:
+ - pos: -2.5,-14.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 56
+ components:
+ - pos: -3.5,-14.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 57
+ components:
+ - pos: 2.5,-11.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 58
+ components:
+ - pos: 3.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 59
+ components:
+ - pos: 2.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 60
+ components:
+ - pos: 3.5,-11.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 61
+ components:
+ - pos: 3.5,-12.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 62
+ components:
+ - pos: 3.5,-13.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 63
+ components:
+ - pos: 3.5,-14.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 64
+ components:
+ - pos: 4.5,-14.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 65
+ components:
+ - pos: 0.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 66
+ components:
+ - pos: 0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 67
+ components:
+ - pos: 0.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 68
+ components:
+ - pos: 0.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 69
+ components:
+ - pos: 1.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 70
+ components:
+ - pos: -0.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 71
+ components:
+ - pos: 1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 72
+ components:
+ - pos: 1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 73
+ components:
+ - pos: 1.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 74
+ components:
+ - pos: 1.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 75
+ components:
+ - pos: 2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 76
+ components:
+ - pos: 3.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 77
+ components:
+ - pos: 0.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 78
+ components:
+ - pos: 0.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 79
+ components:
+ - pos: -0.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 80
+ components:
+ - pos: -1.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 81
+ components:
+ - pos: -2.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 82
+ components:
+ - pos: -3.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 83
+ components:
+ - pos: 4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 84
+ components:
+ - pos: 0.5,-14.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 85
+ components:
+ - pos: 0.5,1.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 86
+ components:
+ - pos: -0.5,1.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 87
+ components:
+ - pos: 1.5,1.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+- proto: CableHV
+ entities:
+ - uid: 88
+ components:
+ - pos: 3.5,-12.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 89
+ components:
+ - pos: 3.5,-11.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 90
+ components:
+ - pos: 3.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 91
+ components:
+ - pos: 2.5,-9.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 92
+ components:
+ - pos: 2.5,-8.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 93
+ components:
+ - pos: 3.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 94
+ components:
+ - pos: 4.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 95
+ components:
+ - pos: -3.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 96
+ components:
+ - pos: -2.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 97
+ components:
+ - pos: -1.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 98
+ components:
+ - pos: -0.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 99
+ components:
+ - pos: 0.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 100
+ components:
+ - pos: 1.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 101
+ components:
+ - pos: 1.5,-11.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 102
+ components:
+ - pos: 2.5,-11.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+- proto: CableMV
+ entities:
+ - uid: 103
+ components:
+ - pos: 2.5,-8.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 104
+ components:
+ - pos: 1.5,-8.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 105
+ components:
+ - pos: 2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 106
+ components:
+ - pos: 2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 107
+ components:
+ - pos: 1.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 108
+ components:
+ - pos: 0.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 109
+ components:
+ - pos: 0.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 110
+ components:
+ - pos: 0.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 111
+ components:
+ - pos: 0.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 112
+ components:
+ - pos: 0.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 113
+ components:
+ - pos: 0.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 114
+ components:
+ - pos: 1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 115
+ components:
+ - pos: 2.5,-1.5
+ parent: 1
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+- proto: CableTerminal
+ entities:
+ - uid: 116
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-10.5
+ parent: 1
+ type: Transform
+- proto: Catwalk
+ entities:
+ - uid: 117
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 118
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 119
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 120
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 121
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 122
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 123
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 124
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 125
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 126
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 127
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 128
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 129
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 130
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 131
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 132
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 133
+ components:
+ - pos: 3.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 134
+ components:
+ - pos: 3.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 135
+ components:
+ - pos: 2.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 136
+ components:
+ - pos: 2.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 137
+ components:
+ - pos: 1.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 138
+ components:
+ - pos: 0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 139
+ components:
+ - pos: 0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 140
+ components:
+ - pos: -0.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 141
+ components:
+ - pos: -1.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 142
+ components:
+ - pos: -1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 143
+ components:
+ - pos: -2.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 144
+ components:
+ - pos: -2.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 145
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-10.5
+ parent: 1
+ type: Transform
+- proto: ChairOfficeDark
+ entities:
+ - uid: 146
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 0.5,-0.5
+ parent: 1
+ type: Transform
+- proto: ChairPilotSeat
+ entities:
+ - uid: 147
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 148
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 149
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 150
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-6.5
+ parent: 1
+ type: Transform
+- proto: ClosetWallEmergencyFilledRandom
+ entities:
+ - uid: 151
+ components:
+ - pos: 1.5,-2.5
+ parent: 1
+ type: Transform
+- proto: ClosetWallFireFilledRandom
+ entities:
+ - uid: 152
+ components:
+ - pos: -0.5,-2.5
+ parent: 1
+ type: Transform
+- proto: ClothingHeadHatSyndie
+ entities:
+ - uid: 154
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 153
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: ClothingNeckScarfStripedSyndieRed
+ entities:
+ - uid: 155
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 153
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: ClothingOuterCoatSyndieCap
+ entities:
+ - uid: 156
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 153
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: ComputerIFF
+ entities:
+ - uid: 157
+ components:
+ - pos: -0.5,0.5
+ parent: 1
+ type: Transform
+- proto: ComputerRadar
+ entities:
+ - uid: 158
+ components:
+ - pos: 1.5,0.5
+ parent: 1
+ type: Transform
+- proto: ComputerShuttle
+ entities:
+ - uid: 159
+ components:
+ - pos: 0.5,0.5
+ parent: 1
+ type: Transform
+- proto: ComputerStationRecords
+ entities:
+ - uid: 160
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,-1.5
+ parent: 1
+ type: Transform
+- proto: EmergencyLight
+ entities:
+ - uid: 161
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 162
+ components:
+ - pos: -1.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 163
+ components:
+ - pos: 2.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 164
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 165
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 166
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -0.5,-12.5
+ parent: 1
+ type: Transform
+- proto: EnergySword
+ entities:
+ - uid: 168
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 167
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: FaxMachineShip
+ entities:
+ - uid: 169
+ components:
+ - pos: 1.5,-7.5
+ parent: 1
+ type: Transform
+- proto: FloorDrain
+ entities:
+ - uid: 170
+ components:
+ - pos: 0.5,-5.5
+ parent: 1
+ type: Transform
+ - fixtures: {}
+ type: Fixtures
+- proto: GasOutletInjector
+ entities:
+ - uid: 171
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-5.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+- proto: GasPipeBend
+ entities:
+ - uid: 172
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -1.5,-6.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 173
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-6.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 174
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-5.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+- proto: GasPipeStraight
+ entities:
+ - uid: 175
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-11.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - enabled: True
+ type: AmbientSound
+ - uid: 176
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-7.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 177
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-8.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - enabled: True
+ type: AmbientSound
+ - uid: 178
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - enabled: True
+ type: AmbientSound
+ - uid: 179
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-3.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 180
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-4.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 181
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-5.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 182
+ components:
+ - pos: 1.5,-11.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - enabled: True
+ type: AmbientSound
+ - uid: 183
+ components:
+ - pos: 1.5,-2.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - enabled: True
+ type: AmbientSound
+ - uid: 184
+ components:
+ - pos: 1.5,-3.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 185
+ components:
+ - pos: 1.5,-4.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 186
+ components:
+ - pos: 1.5,-5.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 187
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-5.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - enabled: True
+ type: AmbientSound
+ - uid: 188
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,-9.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - enabled: True
+ type: AmbientSound
+ - uid: 189
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,-8.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - enabled: True
+ type: AmbientSound
+ - uid: 190
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,-7.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+- proto: GasPipeTJunction
+ entities:
+ - uid: 191
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-9.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - enabled: True
+ type: AmbientSound
+ - uid: 192
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-10.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - enabled: True
+ type: AmbientSound
+ - uid: 193
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-6.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 194
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -0.5,-6.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 195
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 1.5,-10.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - enabled: True
+ type: AmbientSound
+ - uid: 196
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 2.5,-6.5
+ parent: 1
+ type: Transform
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+- proto: GasPort
+ entities:
+ - uid: 197
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-9.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+- proto: GasPressurePump
+ entities:
+ - uid: 198
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-9.5
+ parent: 1
+ type: Transform
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+- proto: GasVentPump
+ entities:
+ - uid: 199
+ components:
+ - pos: -1.5,-5.5
+ parent: 1
+ type: Transform
+ - ShutdownSubscribers:
+ - 2
+ type: DeviceNetwork
+ - enabled: False
+ type: AmbientSound
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 200
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-12.5
+ parent: 1
+ type: Transform
+ - ShutdownSubscribers:
+ - 2
+ type: DeviceNetwork
+ - enabled: False
+ type: AmbientSound
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 201
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-10.5
+ parent: 1
+ type: Transform
+ - ShutdownSubscribers:
+ - 2
+ type: DeviceNetwork
+ - enabled: False
+ type: AmbientSound
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+ - uid: 202
+ components:
+ - pos: -0.5,-1.5
+ parent: 1
+ type: Transform
+ - ShutdownSubscribers:
+ - 2
+ type: DeviceNetwork
+ - enabled: False
+ type: AmbientSound
+ - color: '#0335FCFF'
+ type: AtmosPipeColor
+- proto: GasVentScrubber
+ entities:
+ - uid: 203
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,-12.5
+ parent: 1
+ type: Transform
+ - ShutdownSubscribers:
+ - 2
+ type: DeviceNetwork
+ - enabled: False
+ type: AmbientSound
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 204
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-10.5
+ parent: 1
+ type: Transform
+ - ShutdownSubscribers:
+ - 2
+ type: DeviceNetwork
+ - enabled: False
+ type: AmbientSound
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 205
+ components:
+ - pos: 2.5,-5.5
+ parent: 1
+ type: Transform
+ - ShutdownSubscribers:
+ - 2
+ type: DeviceNetwork
+ - enabled: False
+ type: AmbientSound
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+ - uid: 206
+ components:
+ - pos: 1.5,-1.5
+ parent: 1
+ type: Transform
+ - ShutdownSubscribers:
+ - 2
+ type: DeviceNetwork
+ - enabled: False
+ type: AmbientSound
+ - color: '#FF1212FF'
+ type: AtmosPipeColor
+- proto: GeneratorWallmountAPU
+ entities:
+ - uid: 207
+ components:
+ - pos: -3.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 208
+ components:
+ - pos: 4.5,-10.5
+ parent: 1
+ type: Transform
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 209
+ components:
+ - pos: 2.5,-9.5
+ parent: 1
+ type: Transform
+- proto: Grille
+ entities:
+ - uid: 210
+ components:
+ - pos: -0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 211
+ components:
+ - pos: 0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 212
+ components:
+ - pos: 1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 213
+ components:
+ - pos: 0.5,-14.5
+ parent: 1
+ type: Transform
+- proto: Gyroscope
+ entities:
+ - uid: 214
+ components:
+ - pos: -2.5,-12.5
+ parent: 1
+ type: Transform
+- proto: LockerCaptainFilled
+ entities:
+ - uid: 153
+ components:
+ - pos: -0.5,-1.5
+ parent: 1
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 75.31249
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 154
+ - 156
+ - 155
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
+- proto: LockerSyndicatePersonal
+ entities:
+ - uid: 167
+ components:
+ - pos: -1.5,-7.5
+ parent: 1
+ type: Transform
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 168
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
+ - uid: 215
+ components:
+ - pos: -2.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 216
+ components:
+ - pos: -0.5,-7.5
+ parent: 1
+ type: Transform
+ - containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 217
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ type: ContainerContainer
+- proto: PaperCaptainsThoughts
+ entities:
+ - uid: 341
+ components:
+ - pos: 2.2730522,-7.3321037
+ parent: 1
+ type: Transform
+ - uid: 342
+ components:
+ - pos: 2.3885956,-7.4766135
+ parent: 1
+ type: Transform
+- proto: PaperCNCSheet
+ entities:
+ - uid: 343
+ components:
+ - pos: 2.5474675,-7.462162
+ parent: 1
+ type: Transform
+- proto: PortableGeneratorPacman
+ entities:
+ - uid: 218
+ components:
+ - anchored: True
+ pos: 3.5,-12.5
+ parent: 1
+ type: Transform
+ - storage:
+ Plasma: 3000
+ type: MaterialStorage
+ - bodyType: Static
+ type: Physics
+ - type: InsertingMaterialStorage
+- proto: PoweredlightColoredRed
+ entities:
+ - uid: 219
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 1
+ type: Transform
+ - enabled: False
+ type: AmbientSound
+ - uid: 220
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-5.5
+ parent: 1
+ type: Transform
+ - enabled: False
+ type: AmbientSound
+ - uid: 221
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: False
+ type: AmbientSound
+ - uid: 222
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-0.5
+ parent: 1
+ type: Transform
+ - enabled: False
+ type: AmbientSound
+ - uid: 223
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,-10.5
+ parent: 1
+ type: Transform
+ - enabled: False
+ type: AmbientSound
+ - uid: 224
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-12.5
+ parent: 1
+ type: Transform
+ - enabled: False
+ type: AmbientSound
+ - uid: 225
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+ type: Transform
+ - enabled: False
+ type: AmbientSound
+ - uid: 226
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-1.5
+ parent: 1
+ type: Transform
+ - enabled: False
+ type: AmbientSound
+- proto: Railing
+ entities:
+ - uid: 227
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 228
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 229
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 230
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 231
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 232
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-1.5
+ parent: 1
+ type: Transform
+- proto: RailingCorner
+ entities:
+ - uid: 233
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -4.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 234
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -4.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 235
+ components:
+ - pos: 5.5,-4.5
+ parent: 1
+ type: Transform
+ - uid: 236
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 237
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 238
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-0.5
+ parent: 1
+ type: Transform
+- proto: RailingCornerSmall
+ entities:
+ - uid: 239
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 240
+ components:
+ - pos: 4.5,-1.5
+ parent: 1
+ type: Transform
+- proto: RandomPosterContraband
+ entities:
+ - uid: 40
+ components:
+ - pos: -1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 332
+ components:
+ - pos: 2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 333
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 334
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 335
+ components:
+ - pos: -0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 336
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 1
+ type: Transform
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 241
+ components:
+ - pos: -0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 242
+ components:
+ - pos: 0.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 243
+ components:
+ - pos: 1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 244
+ components:
+ - pos: 0.5,-14.5
+ parent: 1
+ type: Transform
+- proto: SheetPlasma
+ entities:
+ - uid: 245
+ components:
+ - pos: -0.7507224,-9.487063
+ parent: 1
+ type: Transform
+- proto: SignalButton
+ entities:
+ - uid: 246
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+ type: Transform
+ - linkedPorts:
+ 23:
+ - Pressed: Toggle
+ 22:
+ - Pressed: Toggle
+ 21:
+ - Pressed: Toggle
+ type: DeviceLinkSource
+- proto: SMESBasic
+ entities:
+ - uid: 247
+ components:
+ - pos: 3.5,-9.5
+ parent: 1
+ type: Transform
+- proto: SpawnPointAssistant
+ entities:
+ - uid: 248
+ components:
+ - pos: 0.5,-5.5
+ parent: 1
+ type: Transform
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 339
+ components:
+ - pos: 0.5,-6.5
+ parent: 1
+ type: Transform
+- proto: SubstationWallBasic
+ entities:
+ - uid: 249
+ components:
+ - pos: 2.5,-8.5
+ parent: 1
+ type: Transform
+- proto: SuitStorageEVASyndicate
+ entities:
+ - uid: 250
+ components:
+ - pos: 2.5,-3.5
+ parent: 1
+ type: Transform
+ - air:
+ volume: 200
+ immutable: False
+ temperature: 75.31249
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ type: EntityStorage
+ - uid: 251
+ components:
+ - pos: -1.5,-3.5
+ parent: 1
+ type: Transform
+- proto: TableReinforced
+ entities:
+ - uid: 252
+ components:
+ - pos: -0.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 253
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 1.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 254
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-7.5
+ parent: 1
+ type: Transform
+- proto: Thruster
+ entities:
+ - uid: 255
+ components:
+ - pos: -2.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 256
+ components:
+ - pos: 3.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 257
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 258
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 3.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 259
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 260
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -2.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 261
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 262
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 263
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 264
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-9.5
+ parent: 1
+ type: Transform
+- proto: VendingMachineSustenance
+ entities:
+ - uid: 265
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: 3.5,-7.5
+ parent: 1
+ type: Transform
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 266
+ components:
+ - flags: SessionSpecific
+ type: MetaData
+ - pos: 1.5,-9.5
+ parent: 1
+ type: Transform
+- proto: WallPlastitanium
+ entities:
+ - uid: 267
+ components:
+ - pos: 3.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 268
+ components:
+ - pos: 4.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 269
+ components:
+ - pos: -3.5,-3.5
+ parent: 1
+ type: Transform
+ - uid: 270
+ components:
+ - pos: -1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 271
+ components:
+ - pos: -1.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 272
+ components:
+ - pos: -1.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 273
+ components:
+ - pos: -1.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 274
+ components:
+ - pos: 2.5,0.5
+ parent: 1
+ type: Transform
+ - uid: 275
+ components:
+ - pos: 2.5,-0.5
+ parent: 1
+ type: Transform
+ - uid: 276
+ components:
+ - pos: 2.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 277
+ components:
+ - pos: 2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 278
+ components:
+ - pos: 3.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 279
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 280
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 281
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 282
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-6.5
+ parent: 1
+ type: Transform
+ - uid: 283
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 284
+ components:
+ - pos: 3.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 285
+ components:
+ - pos: -2.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 286
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 287
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -3.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 288
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 3.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 289
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 290
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 291
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -2.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 292
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-9.5
+ parent: 1
+ type: Transform
+ - uid: 293
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 294
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 295
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 296
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: -1.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 297
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 298
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 299
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 300
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 3.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 301
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 302
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -2.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 303
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 304
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 305
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: 4.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 306
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -3.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 307
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-12.5
+ parent: 1
+ type: Transform
+ - uid: 308
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 309
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -3.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 310
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 311
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-8.5
+ parent: 1
+ type: Transform
+ - uid: 312
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 313
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 314
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 4.5,-5.5
+ parent: 1
+ type: Transform
+ - uid: 315
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 1.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 316
+ components:
+ - rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 317
+ components:
+ - pos: -2.5,-1.5
+ parent: 1
+ type: Transform
+ - uid: 318
+ components:
+ - pos: -2.5,-3.5
+ parent: 1
+ type: Transform
+- proto: WallPlastitaniumDiagonal
+ entities:
+ - uid: 319
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 320
+ components:
+ - pos: -1.5,1.5
+ parent: 1
+ type: Transform
+ - uid: 321
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 2.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 322
+ components:
+ - pos: -1.5,-11.5
+ parent: 1
+ type: Transform
+ - uid: 323
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 324
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 325
+ components:
+ - pos: -4.5,-13.5
+ parent: 1
+ type: Transform
+ - uid: 326
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-14.5
+ parent: 1
+ type: Transform
+ - uid: 327
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 5.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 328
+ components:
+ - rot: 3.141592653589793 rad
+ pos: 5.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 329
+ components:
+ - rot: 1.5707963267948966 rad
+ pos: -4.5,-10.5
+ parent: 1
+ type: Transform
+ - uid: 330
+ components:
+ - pos: -4.5,-7.5
+ parent: 1
+ type: Transform
+ - uid: 337
+ components:
+ - rot: -1.5707963267948966 rad
+ pos: 4.5,-2.5
+ parent: 1
+ type: Transform
+ - uid: 338
+ components:
+ - pos: -3.5,-2.5
+ parent: 1
+ type: Transform
+- proto: WarpPointShip
+ entities:
+ - uid: 340
+ components:
+ - pos: 0.5,-7.5
+ parent: 1
+ type: Transform
+- proto: WeaponMakeshiftLaser
+ entities:
+ - uid: 217
+ components:
+ - flags: InContainer
+ type: MetaData
+ - parent: 216
+ type: Transform
+ - canCollide: False
+ type: Physics
+ - type: InsideEntityStorage
+- proto: Wrench
+ entities:
+ - uid: 331
+ components:
+ - pos: -0.21372318,-9.560717
+ parent: 1
+ type: Transform
+...
diff --git a/Resources/Maps/frontier.yml b/Resources/Maps/frontier.yml
index d2ebaa2f5e0..281e340917e 100644
--- a/Resources/Maps/frontier.yml
+++ b/Resources/Maps/frontier.yml
@@ -201,3253 +201,3342 @@ entities:
color: '#FFFFFFFF'
id: Arrows
decals:
- 3273: 3,40
- 3274: 4,40
+ 2626: 3,40
+ 2627: 4,40
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 3275: 3,37
- 3276: 4,37
+ 2628: 3,37
+ 2629: 4,37
- node:
color: '#334E6DC8'
id: ArrowsGreyscale
decals:
- 3185: 0,9
- 3186: 0,9
- 3187: 0,9
- 3188: 0,9
- 3233: -2,9
- 3234: -2,9
- 3235: -2,9
- 3236: -2,9
- 3237: -2,9
+ 2551: 0,9
+ 2552: 0,9
+ 2553: 0,9
+ 2554: 0,9
+ 2586: -2,9
+ 2587: -2,9
+ 2588: -2,9
+ 2589: -2,9
+ 2590: -2,9
- node:
angle: 3.141592653589793 rad
color: '#334E6DC8'
id: ArrowsGreyscale
decals:
- 3176: -2,12
- 3177: -2,12
- 3178: -2,12
- 3179: 0,12
- 3180: 0,12
- 3181: 0,12
+ 2545: -2,12
+ 2546: -2,12
+ 2547: -2,12
+ 2548: 0,12
+ 2549: 0,12
+ 2550: 0,12
- node:
color: '#52B4E9FF'
id: ArrowsGreyscale
decals:
- 865: 15,21
- 866: 17,21
- 867: 19,21
- 870: 25,21
- 871: 27,21
+ 601: 15,21
+ 602: 17,21
+ 603: 19,21
+ 604: 25,21
+ 605: 27,21
- node:
color: '#52B4F3AD'
id: ArrowsGreyscale
decals:
- 2598: 23,21
- 2599: 23,21
- 2600: 23,21
- 2601: 23,21
- 2602: 23,21
- 2603: 23,21
- 2604: 23,21
- 2605: 23,21
- 2606: 23,21
- 2607: 23,21
- 2610: 21,21
- 2611: 21,21
- 2612: 21,21
- 2613: 21,21
+ 1997: 23,21
+ 1998: 23,21
+ 1999: 23,21
+ 2000: 23,21
+ 2001: 23,21
+ 2002: 23,21
+ 2003: 23,21
+ 2004: 23,21
+ 2005: 23,21
+ 2006: 23,21
+ 2009: 21,21
+ 2010: 21,21
+ 2011: 21,21
+ 2012: 21,21
- node:
color: '#DE3A3A96'
id: Bot
decals:
- 612: 31,15
+ 428: 31,15
- node:
zIndex: 180
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Bot
decals:
- 3307: -1,45
- 3308: -1,44
- 3309: -1,43
- 3310: 5,43
- 3311: 5,44
- 3312: 5,45
- 3313: 2,48
+ 2654: -1,45
+ 2655: -1,44
+ 2656: -1,43
+ 2657: 5,43
+ 2658: 5,44
+ 2659: 5,45
+ 2660: 2,48
- node:
color: '#52B4E9AE'
id: BotLeftGreyscale
decals:
- 2534: 4,25
- 2535: 5,25
- 2536: 6,25
- 2538: 8,25
- 2586: 7,25
- 2587: 24,20
+ 1945: 4,25
+ 1946: 5,25
+ 1947: 6,25
+ 1948: 8,25
+ 1995: 7,25
+ 1996: 24,20
- node:
color: '#52B4E9FF'
id: BotLeftGreyscale
decals:
- 858: 16,20
- 859: 18,20
- 860: 20,20
- 861: 22,20
- 863: 26,20
- 864: 28,20
+ 595: 16,20
+ 596: 18,20
+ 597: 20,20
+ 598: 22,20
+ 599: 26,20
+ 600: 28,20
- node:
color: '#FFFFFFFF'
id: BrickTileDarkBox
decals:
- 691: 9,11
- 692: 9,10
- 693: 11,11
- 694: 11,10
- 695: 13,11
- 696: 13,10
- 697: 12,15
- 698: 15,15
- 699: 13,14
- 700: 14,14
- 701: 3,17
- 702: 3,14
- 703: 3,12
- 704: 3,10
- 1391: -12,13
- 1392: -11,12
- 1393: -12,11
- 1394: -15,11
- 2320: -17,11
- 2321: -11,14
+ 507: 9,11
+ 508: 9,10
+ 509: 11,11
+ 510: 11,10
+ 511: 13,11
+ 512: 13,10
+ 513: 12,15
+ 514: 15,15
+ 515: 13,14
+ 516: 14,14
+ 517: 3,17
+ 518: 3,14
+ 519: 3,12
+ 520: 3,10
+ 834: -12,13
+ 835: -11,12
+ 836: -12,11
+ 837: -15,11
+ 1763: -17,11
+ 1764: -11,14
+ 3006: -5,10
+ 3007: -5,12
+ 3008: -5,14
+ 3009: -5,17
+ 3010: -11,14
+ 3011: -12,13
+ 3012: -11,12
+ 3013: -12,11
+ 3014: -10,11
+ 3015: -10,13
+ 3016: -15,11
+ 3017: -17,11
- node:
cleanable: True
color: '#FFFFFFFF'
id: BrickTileDarkBox
decals:
- 2345: -5,17
- 2346: -5,14
- 2347: -5,12
- 2348: -5,10
+ 1788: -5,17
+ 1789: -5,14
+ 1790: -5,12
+ 1791: -5,10
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNe
decals:
- 486: 38,15
- 711: -4,28
- 732: 22,13
- 3144: 1,9
+ 302: 38,15
+ 527: -4,28
+ 548: 22,13
+ 2534: 1,9
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNw
decals:
- 485: 36,15
- 714: -6,28
- 731: 19,13
- 3230: -3,9
+ 301: 36,15
+ 530: -6,28
+ 547: 19,13
+ 2583: -3,9
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
decals:
- 484: 38,13
- 713: -4,26
- 729: 22,9
- 2359: 1,12
+ 300: 38,13
+ 529: -4,26
+ 545: 22,9
+ 1793: 1,12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSw
decals:
- 483: 36,13
- 712: -6,26
- 730: 19,9
- 2358: -3,12
+ 299: 36,13
+ 528: -6,26
+ 546: 19,9
+ 1792: -3,12
- node:
color: '#FFFFFF81'
id: BrickTileDarkInnerNe
decals:
- 3112: -3,12
- 3113: -3,12
- 3122: -1,12
- 3123: -1,12
+ 2510: -3,12
+ 2511: -3,12
+ 2520: -1,12
+ 2521: -1,12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNe
decals:
- 268: 4,14
- 446: 34,11
- 653: 11,12
- 3148: 0,9
+ 170: 4,14
+ 262: 34,11
+ 469: 11,12
+ 2536: 0,9
- node:
color: '#FFFFFF81'
id: BrickTileDarkInnerNw
decals:
- 3116: -1,12
- 3117: -1,12
- 3124: 1,12
- 3125: 1,12
+ 2514: -1,12
+ 2515: -1,12
+ 2522: 1,12
+ 2523: 1,12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNw
decals:
- 447: 40,11
- 654: 16,12
- 3232: -2,9
+ 263: 40,11
+ 470: 16,12
+ 2585: -2,9
- node:
color: '#FFFFFF81'
id: BrickTileDarkInnerSe
decals:
- 3218: -1,9
- 3219: -1,9
- 3220: -3,9
- 3221: -3,9
+ 2571: -1,9
+ 2572: -1,9
+ 2573: -3,9
+ 2574: -3,9
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSe
decals:
- 267: 4,17
- 448: 34,17
- 2363: 0,12
+ 169: 4,17
+ 264: 34,17
+ 1797: 0,12
- node:
color: '#FFFFFF81'
id: BrickTileDarkInnerSw
decals:
- 3170: 1,9
- 3171: 1,9
- 3224: -1,9
- 3225: -1,9
+ 2541: 1,9
+ 2542: 1,9
+ 2577: -1,9
+ 2578: -1,9
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
decals:
- 449: 40,17
- 2362: -2,12
+ 265: 40,17
+ 1796: -2,12
+ - node:
+ color: '#52B4E996'
+ id: BrickTileDarkLineE
+ decals:
+ 3022: -48,2
- node:
color: '#FFFFFF81'
id: BrickTileDarkLineE
decals:
- 3110: -3,13
- 3111: -3,13
- 3120: -1,13
- 3121: -1,13
- 3211: -3,8
- 3212: -3,8
- 3213: -1,8
- 3214: -1,8
+ 2508: -3,13
+ 2509: -3,13
+ 2518: -1,13
+ 2519: -1,13
+ 2565: -3,8
+ 2566: -3,8
+ 2567: -1,8
+ 2568: -1,8
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineE
decals:
- 265: 4,15
- 266: 4,16
- 441: 34,12
- 442: 34,13
- 443: 34,14
- 444: 34,15
- 445: 34,16
- 487: 38,14
- 516: 48,11
- 517: 48,12
- 518: 48,13
- 657: 11,13
- 658: 11,14
- 717: -4,27
- 726: 22,12
- 727: 22,11
- 728: 22,10
- 2360: 1,13
- 3147: 1,8
- 3193: -3,11
- 3195: -3,10
+ 167: 4,15
+ 168: 4,16
+ 257: 34,12
+ 258: 34,13
+ 259: 34,14
+ 260: 34,15
+ 261: 34,16
+ 303: 38,14
+ 332: 48,11
+ 333: 48,12
+ 334: 48,13
+ 473: 11,13
+ 474: 11,14
+ 533: -4,27
+ 542: 22,12
+ 543: 22,11
+ 544: 22,10
+ 1794: 1,13
+ 2535: 1,8
+ 2558: -3,11
+ 2559: -3,10
+ 3020: -48,2
+ 3021: -48,1
- node:
color: '#FFFFFF81'
id: BrickTileDarkLineN
decals:
- 3114: -2,12
- 3115: -2,12
- 3128: 0,12
- 3129: 0,12
- 3154: 0,9
- 3155: 0,9
- 3226: -1,9
- 3227: -1,9
- 3228: -2,9
- 3229: -2,9
+ 2512: -2,12
+ 2513: -2,12
+ 2526: 0,12
+ 2527: 0,12
+ 2537: 0,9
+ 2538: 0,9
+ 2579: -1,9
+ 2580: -1,9
+ 2581: -2,9
+ 2582: -2,9
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
decals:
- 436: 39,11
- 437: 38,11
- 438: 37,11
- 439: 36,11
- 440: 35,11
- 490: 37,15
- 491: 46,18
- 492: 44,18
- 493: 45,18
- 494: 43,18
- 495: 42,18
- 496: 40,18
- 497: 39,18
- 498: 38,18
- 499: 32,18
- 500: 33,18
- 501: 34,18
- 547: 41,18
- 560: 42,8
- 561: 43,8
- 562: 42,9
- 563: 43,9
- 613: 6,16
- 614: 8,16
- 617: 10,16
- 618: 11,16
- 619: 12,16
- 620: 13,16
- 621: 14,16
- 622: 15,16
- 623: 16,16
- 624: 17,16
- 649: 12,12
- 650: 13,12
- 651: 14,12
- 652: 15,12
- 683: 7,16
- 715: -5,28
- 724: 20,13
- 725: 21,13
- 883: 36,22
- 884: 37,22
- 885: 36,21
- 886: 37,21
+ 252: 39,11
+ 253: 38,11
+ 254: 37,11
+ 255: 36,11
+ 256: 35,11
+ 306: 37,15
+ 307: 46,18
+ 308: 44,18
+ 309: 45,18
+ 310: 43,18
+ 311: 42,18
+ 312: 40,18
+ 313: 39,18
+ 314: 38,18
+ 315: 32,18
+ 316: 33,18
+ 317: 34,18
+ 363: 41,18
+ 376: 42,8
+ 377: 43,8
+ 378: 42,9
+ 379: 43,9
+ 429: 6,16
+ 430: 8,16
+ 433: 10,16
+ 434: 11,16
+ 435: 12,16
+ 436: 13,16
+ 437: 14,16
+ 438: 15,16
+ 439: 16,16
+ 440: 17,16
+ 465: 12,12
+ 466: 13,12
+ 467: 14,12
+ 468: 15,12
+ 499: 7,16
+ 531: -5,28
+ 540: 20,13
+ 541: 21,13
+ 615: 36,22
+ 616: 37,22
+ 617: 36,21
+ 618: 37,21
- node:
color: '#FFFFFF81'
id: BrickTileDarkLineS
decals:
- 3130: -2,12
- 3131: -2,12
- 3132: 0,12
- 3133: 0,12
- 3134: -1,12
- 3135: -1,12
- 3172: 0,9
- 3173: 0,9
- 3222: -2,9
- 3223: -2,9
+ 2528: -2,12
+ 2529: -2,12
+ 2530: 0,12
+ 2531: 0,12
+ 2532: -1,12
+ 2533: -1,12
+ 2543: 0,9
+ 2544: 0,9
+ 2575: -2,9
+ 2576: -2,9
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineS
decals:
- 426: 35,17
- 427: 36,17
- 428: 37,17
- 429: 38,17
- 430: 39,17
- 488: 37,13
- 502: 33,9
- 503: 34,9
- 504: 35,9
- 505: 36,9
- 506: 37,9
- 507: 38,9
- 508: 39,9
- 509: 40,9
- 510: 43,11
- 511: 42,11
- 512: 41,11
- 536: 31,13
- 537: 32,13
- 556: 42,8
- 557: 43,8
- 558: 43,9
- 559: 42,9
- 615: 6,15
- 616: 8,15
- 625: 8,12
- 626: 9,12
- 627: 10,12
- 628: 11,12
- 629: 12,12
- 630: 13,12
- 681: 7,15
- 685: 7,18
- 686: 6,18
- 687: 8,18
- 716: -5,26
- 722: 20,9
- 723: 21,9
- 879: 36,21
- 880: 37,21
- 881: 36,22
- 882: 37,22
+ 242: 35,17
+ 243: 36,17
+ 244: 37,17
+ 245: 38,17
+ 246: 39,17
+ 304: 37,13
+ 318: 33,9
+ 319: 34,9
+ 320: 35,9
+ 321: 36,9
+ 322: 37,9
+ 323: 38,9
+ 324: 39,9
+ 325: 40,9
+ 326: 43,11
+ 327: 42,11
+ 328: 41,11
+ 352: 31,13
+ 353: 32,13
+ 372: 42,8
+ 373: 43,8
+ 374: 43,9
+ 375: 42,9
+ 431: 6,15
+ 432: 8,15
+ 441: 8,12
+ 442: 9,12
+ 443: 10,12
+ 444: 11,12
+ 445: 12,12
+ 446: 13,12
+ 497: 7,15
+ 501: 7,18
+ 502: 6,18
+ 503: 8,18
+ 532: -5,26
+ 538: 20,9
+ 539: 21,9
+ 611: 36,21
+ 612: 37,21
+ 613: 36,22
+ 614: 37,22
- node:
color: '#FFFFFF81'
id: BrickTileDarkLineW
decals:
- 3118: -1,13
- 3119: -1,13
- 3126: 1,13
- 3127: 1,13
- 3162: 1,8
- 3163: 1,8
- 3216: -1,8
- 3217: -1,8
+ 2516: -1,13
+ 2517: -1,13
+ 2524: 1,13
+ 2525: 1,13
+ 2539: 1,8
+ 2540: 1,8
+ 2569: -1,8
+ 2570: -1,8
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineW
decals:
- 431: 40,16
- 432: 40,15
- 433: 40,14
- 434: 40,13
- 435: 40,12
- 489: 36,14
- 513: 45,11
- 514: 45,12
- 515: 45,13
- 631: 8,11
- 632: 8,10
- 633: 10,11
- 634: 10,10
- 635: 12,11
- 636: 12,10
- 655: 16,13
- 656: 16,14
- 718: -6,27
- 719: 19,10
- 720: 19,11
- 721: 19,12
- 2361: -3,13
- 3191: 1,11
- 3192: 1,10
- 3231: -3,8
+ 247: 40,16
+ 248: 40,15
+ 249: 40,14
+ 250: 40,13
+ 251: 40,12
+ 305: 36,14
+ 329: 45,11
+ 330: 45,12
+ 331: 45,13
+ 447: 8,11
+ 448: 8,10
+ 449: 10,11
+ 450: 10,10
+ 451: 12,11
+ 452: 12,10
+ 471: 16,13
+ 472: 16,14
+ 534: -6,27
+ 535: 19,10
+ 536: 19,11
+ 537: 19,12
+ 1795: -3,13
+ 2556: 1,11
+ 2557: 1,10
+ 2584: -3,8
- node:
color: '#52B4E9FF'
id: BrickTileSteelCornerNe
decals:
- 1408: -48,8
+ 851: -48,8
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndN
decals:
- 872: 15,21
- 873: 17,21
- 874: 19,21
- 877: 25,21
- 878: 27,21
- 2608: 23,21
- 2609: 21,21
+ 606: 15,21
+ 607: 17,21
+ 608: 19,21
+ 609: 25,21
+ 610: 27,21
+ 2007: 23,21
+ 2008: 21,21
+ - node:
+ color: '#52B4E996'
+ id: BrickTileSteelLineE
+ decals:
+ 3023: -48,2
+ 3024: -48,1
- node:
color: '#52B4E9FF'
id: BrickTileSteelLineE
decals:
- 1403: -48,3
- 1404: -48,4
- 1405: -48,5
- 1406: -48,6
- 1407: -48,7
+ 846: -48,3
+ 847: -48,4
+ 848: -48,5
+ 849: -48,6
+ 850: -48,7
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineE
decals:
- 3209: 0,11
- 3210: 0,10
+ 2563: 0,11
+ 2564: 0,10
- node:
color: '#52B4E9FF'
id: BrickTileSteelLineN
decals:
- 1400: -48,15
- 1401: -51,15
- 1409: -49,8
- 1410: -50,8
- 1411: -51,8
- 1412: -52,8
- 1413: -53,8
- 1414: -54,8
- 1415: -55,8
- 1435: -49,15
- 1436: -50,15
+ 843: -48,15
+ 844: -51,15
+ 852: -49,8
+ 853: -50,8
+ 854: -51,8
+ 855: -52,8
+ 856: -53,8
+ 857: -54,8
+ 858: -55,8
+ 878: -49,15
+ 879: -50,15
- node:
color: '#52B4E9FF'
id: BrickTileSteelLineW
decals:
- 1395: -53,18
- 1396: -53,16
- 1397: -53,14
- 1398: -53,12
- 1399: -53,11
- 1431: -53,10
- 1432: -53,13
- 1433: -53,15
- 1434: -53,17
+ 838: -53,18
+ 839: -53,16
+ 840: -53,14
+ 841: -53,12
+ 842: -53,11
+ 874: -53,10
+ 875: -53,13
+ 876: -53,15
+ 877: -53,17
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
decals:
- 212: -3,42
- 3190: -2,10
- 3208: -2,11
+ 165: -3,42
+ 2555: -2,10
+ 2562: -2,11
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNe
decals:
- 383: -48,18
- 1542: -44,11
+ 199: -48,18
+ 985: -44,11
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNw
decals:
- 381: -50,18
- 1540: -46,11
+ 197: -50,18
+ 983: -46,11
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSe
decals:
- 380: -48,17
- 1535: -44,8
+ 196: -48,17
+ 978: -44,8
- node:
color: '#A4610696'
id: BrickTileWhiteCornerSw
decals:
- 3265: -3,36
+ 2618: -3,36
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSw
decals:
- 382: -50,17
- 1537: -46,8
+ 198: -50,17
+ 980: -46,8
- node:
color: '#52DFC4DB'
id: BrickTileWhiteInnerNe
decals:
- 1601: -33,12
- 1603: -32,12
+ 1044: -33,12
+ 1046: -32,12
- node:
color: '#9FED5896'
id: BrickTileWhiteInnerNe
decals:
- 272: 4,14
- 668: 11,12
+ 174: 4,14
+ 484: 11,12
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerNe
decals:
- 473: 34,11
+ 289: 34,11
- node:
color: '#52DFC4DB'
id: BrickTileWhiteInnerNw
decals:
- 1602: -32,12
- 1604: -31,12
+ 1045: -32,12
+ 1047: -31,12
- node:
color: '#9FED5896'
id: BrickTileWhiteInnerNw
decals:
- 667: 16,12
+ 483: 16,12
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerNw
decals:
- 471: 40,11
+ 287: 40,11
- node:
color: '#9FED5896'
id: BrickTileWhiteInnerSe
decals:
- 271: 4,17
+ 173: 4,17
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerSe
decals:
- 472: 34,17
+ 288: 34,17
- node:
color: '#EFB34196'
id: BrickTileWhiteInnerSe
decals:
- 1579: -32,11
+ 1022: -32,11
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerSw
decals:
- 470: 40,17
+ 286: 40,17
- node:
color: '#9FED5896'
id: BrickTileWhiteLineE
decals:
- 269: 4,15
- 270: 4,16
- 659: 11,14
- 660: 11,13
+ 171: 4,15
+ 172: 4,16
+ 475: 11,14
+ 476: 11,13
- node:
zIndex: 180
color: '#A4610696'
id: BrickTileWhiteLineE
decals:
- 3284: 8,52
- 3285: 8,51
- 3286: 8,50
- 3287: 8,49
- 3288: 8,48
- 3289: 8,47
- 3290: 8,46
- 3291: 8,45
- 3292: 8,44
- 3293: 8,43
- 3294: 8,42
- 3295: 8,41
- 3296: 8,56
- 3297: 8,57
+ 2631: 8,52
+ 2632: 8,51
+ 2633: 8,50
+ 2634: 8,49
+ 2635: 8,48
+ 2636: 8,47
+ 2637: 8,46
+ 2638: 8,45
+ 2639: 8,44
+ 2640: 8,43
+ 2641: 8,42
+ 2642: 8,41
+ 2643: 8,56
+ 2644: 8,57
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineE
decals:
- 455: 34,12
- 456: 34,13
- 457: 34,14
- 458: 34,15
- 459: 34,16
- 519: 48,11
- 520: 48,12
- 521: 48,13
+ 271: 34,12
+ 272: 34,13
+ 273: 34,14
+ 274: 34,15
+ 275: 34,16
+ 335: 48,11
+ 336: 48,12
+ 337: 48,13
- node:
color: '#EFB34196'
id: BrickTileWhiteLineE
decals:
- 1574: -32,6
- 1575: -32,7
- 1576: -32,8
- 1577: -32,9
- 1578: -32,10
+ 1017: -32,6
+ 1018: -32,7
+ 1019: -32,8
+ 1020: -32,9
+ 1021: -32,10
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineE
decals:
- 1543: -44,10
- 1544: -44,9
+ 986: -44,10
+ 987: -44,9
- node:
color: '#9FED5896'
id: BrickTileWhiteLineN
decals:
- 663: 12,12
- 664: 13,12
- 665: 14,12
- 666: 15,12
- 669: 10,16
- 670: 8,16
- 671: 6,16
- 672: 11,16
- 673: 12,16
- 674: 13,16
- 675: 14,16
- 676: 15,16
- 677: 16,16
- 678: 17,16
- 684: 7,16
+ 479: 12,12
+ 480: 13,12
+ 481: 14,12
+ 482: 15,12
+ 485: 10,16
+ 486: 8,16
+ 487: 6,16
+ 488: 11,16
+ 489: 12,16
+ 490: 13,16
+ 491: 14,16
+ 492: 15,16
+ 493: 16,16
+ 494: 17,16
+ 500: 7,16
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineN
decals:
- 450: 35,11
- 451: 36,11
- 452: 37,11
- 453: 38,11
- 454: 39,11
- 540: 32,18
- 541: 33,18
- 542: 34,18
- 543: 38,18
- 544: 39,18
- 545: 40,18
- 546: 42,18
- 548: 41,18
- 549: 43,18
- 550: 44,18
- 551: 45,18
- 552: 46,18
- 564: 42,9
- 565: 43,9
- 566: 42,8
- 567: 43,8
- 887: 36,22
- 888: 37,22
- 889: 36,21
- 890: 37,21
+ 266: 35,11
+ 267: 36,11
+ 268: 37,11
+ 269: 38,11
+ 270: 39,11
+ 356: 32,18
+ 357: 33,18
+ 358: 34,18
+ 359: 38,18
+ 360: 39,18
+ 361: 40,18
+ 362: 42,18
+ 364: 41,18
+ 365: 43,18
+ 366: 44,18
+ 367: 45,18
+ 368: 46,18
+ 380: 42,9
+ 381: 43,9
+ 382: 42,8
+ 383: 43,8
+ 619: 36,22
+ 620: 37,22
+ 621: 36,21
+ 622: 37,21
- node:
color: '#EFB34196'
id: BrickTileWhiteLineN
decals:
- 1585: -42,12
- 1586: -41,12
- 1587: -40,12
- 1588: -39,12
- 1589: -38,12
- 1590: -37,12
- 1591: -36,12
- 1592: -35,12
- 1593: -34,12
- 1594: -32,12
- 1595: -31,12
- 1596: -30,12
- 1597: -29,12
- 1598: -28,12
- 1599: -27,12
- 1600: -33,12
+ 1028: -42,12
+ 1029: -41,12
+ 1030: -40,12
+ 1031: -39,12
+ 1032: -38,12
+ 1033: -37,12
+ 1034: -36,12
+ 1035: -35,12
+ 1036: -34,12
+ 1037: -32,12
+ 1038: -31,12
+ 1039: -30,12
+ 1040: -29,12
+ 1041: -28,12
+ 1042: -27,12
+ 1043: -33,12
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineN
decals:
- 385: -49,18
- 1541: -45,11
+ 201: -49,18
+ 984: -45,11
- node:
color: '#52B4E996'
id: BrickTileWhiteLineS
decals:
- 647: 12,12
- 648: 13,12
+ 463: 12,12
+ 464: 13,12
- node:
color: '#9FED5896'
id: BrickTileWhiteLineS
decals:
- 679: 8,15
- 680: 6,15
- 682: 7,15
- 688: 6,18
- 689: 7,18
- 690: 8,18
+ 495: 8,15
+ 496: 6,15
+ 498: 7,15
+ 504: 6,18
+ 505: 7,18
+ 506: 8,18
- node:
color: '#A4610696'
id: BrickTileWhiteLineS
decals:
- 3266: -2,36
- 3267: -1,36
- 3268: 0,36
- 3269: 1,36
- 3270: 2,36
- 3271: 3,36
- 3272: 4,36
+ 2619: -2,36
+ 2620: -1,36
+ 2621: 0,36
+ 2622: 1,36
+ 2623: 2,36
+ 2624: 3,36
+ 2625: 4,36
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineS
decals:
- 465: 35,17
- 466: 36,17
- 467: 37,17
- 468: 38,17
- 469: 39,17
- 525: 43,11
- 526: 42,11
- 527: 41,11
- 528: 40,9
- 529: 39,9
- 530: 38,9
- 531: 37,9
- 532: 35,9
- 533: 36,9
- 534: 34,9
- 535: 33,9
- 538: 31,13
- 539: 32,13
- 568: 42,8
- 569: 43,8
- 570: 42,9
- 571: 43,9
- 639: 8,12
- 640: 9,12
- 891: 36,21
- 892: 37,21
- 893: 37,22
- 894: 36,22
+ 281: 35,17
+ 282: 36,17
+ 283: 37,17
+ 284: 38,17
+ 285: 39,17
+ 341: 43,11
+ 342: 42,11
+ 343: 41,11
+ 344: 40,9
+ 345: 39,9
+ 346: 38,9
+ 347: 37,9
+ 348: 35,9
+ 349: 36,9
+ 350: 34,9
+ 351: 33,9
+ 354: 31,13
+ 355: 32,13
+ 384: 42,8
+ 385: 43,8
+ 386: 42,9
+ 387: 43,9
+ 455: 8,12
+ 456: 9,12
+ 623: 36,21
+ 624: 37,21
+ 625: 37,22
+ 626: 36,22
- node:
color: '#EFB34196'
id: BrickTileWhiteLineS
decals:
- 641: 10,12
- 642: 11,12
- 1580: -31,11
- 1581: -30,11
- 1582: -29,11
- 1583: -28,11
- 1584: -27,11
+ 457: 10,12
+ 458: 11,12
+ 1023: -31,11
+ 1024: -30,11
+ 1025: -29,11
+ 1026: -28,11
+ 1027: -27,11
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineS
decals:
- 384: -49,17
- 1536: -45,8
+ 200: -49,17
+ 979: -45,8
- node:
color: '#52B4E996'
id: BrickTileWhiteLineW
decals:
- 645: 12,11
- 646: 12,10
+ 461: 12,11
+ 462: 12,10
- node:
color: '#9FED5896'
id: BrickTileWhiteLineW
decals:
- 661: 16,14
- 662: 16,13
+ 477: 16,14
+ 478: 16,13
- node:
color: '#A4610696'
id: BrickTileWhiteLineW
decals:
- 231: -3,42
- 3260: -3,41
- 3261: -3,40
- 3262: -3,39
- 3263: -3,38
- 3264: -3,37
+ 166: -3,42
+ 2613: -3,41
+ 2614: -3,40
+ 2615: -3,39
+ 2616: -3,38
+ 2617: -3,37
- node:
zIndex: 180
color: '#A4610696'
id: BrickTileWhiteLineW
decals:
- 3298: -3,47
- 3299: -3,46
+ 2645: -3,47
+ 2646: -3,46
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineW
decals:
- 460: 40,12
- 461: 40,13
- 462: 40,14
- 463: 40,15
- 464: 40,16
- 522: 45,11
- 523: 45,12
- 524: 45,13
- 637: 8,10
- 638: 8,11
+ 276: 40,12
+ 277: 40,13
+ 278: 40,14
+ 279: 40,15
+ 280: 40,16
+ 338: 45,11
+ 339: 45,12
+ 340: 45,13
+ 453: 8,10
+ 454: 8,11
- node:
color: '#EFB34196'
id: BrickTileWhiteLineW
decals:
- 643: 10,11
- 644: 10,10
+ 459: 10,11
+ 460: 10,10
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineW
decals:
- 1538: -46,9
- 1539: -46,10
+ 981: -46,9
+ 982: -46,10
- node:
color: '#9FED580F'
id: CheckerNESW
decals:
- 386: -5,20
- 387: -6,20
- 388: -6,21
- 389: -5,21
- 390: -4,21
- 391: -4,20
- 392: -4,22
- 393: -5,22
- 394: -6,22
- 395: -6,23
- 396: -5,23
- 397: -4,23
- 398: -4,24
- 399: -5,24
- 400: -6,24
+ 202: -5,20
+ 203: -6,20
+ 204: -6,21
+ 205: -5,21
+ 206: -4,21
+ 207: -4,20
+ 208: -4,22
+ 209: -5,22
+ 210: -6,22
+ 211: -6,23
+ 212: -5,23
+ 213: -4,23
+ 214: -4,24
+ 215: -5,24
+ 216: -6,24
- node:
color: '#FFA5007F'
id: CheckerNESW
decals:
- 937: 58,24
+ 662: 58,24
- node:
color: '#FFA5007F'
id: CheckerNWSE
decals:
- 936: 58,25
- 938: 56,24
+ 661: 58,25
+ 663: 56,24
- node:
zIndex: 180
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Delivery
decals:
- 3314: 1,48
- 3315: 3,48
+ 2661: 1,48
+ 2662: 3,48
- node:
cleanable: True
color: '#A4610696'
id: Dirt
decals:
- 948: 9,54
- 949: 10,55
- 951: 10,54
- 952: 11,55
- 955: 7,56
- 959: 7,50
- 964: 1,46
- 965: 4,45
- 966: 3,43
- 981: -4,43
- 983: 0,43
- 987: 1,42
- 988: 3,45
- 1008: 6,49
- 1010: 1,45
- 1011: 1,43
- 1015: -2,35
- 1025: 1,46
- 1032: -1,35
- 1035: 1,31
- 1057: 9,24
- 1058: 9,23
- 1062: 12,23
- 1063: 12,25
- 1096: 38,24
- 1120: 55,25
- 1121: 57,23
- 1122: 58,25
- 1123: 57,26
- 1124: 56,26
- 1125: 56,24
- 1126: 58,25
- 1127: 55,26
- 1130: 55,25
- 1136: 44,22
- 1139: 35,24
- 1151: 17,21
- 1159: 2,27
- 1166: 3,14
- 1168: 4,17
- 1173: -6,7
- 1174: -3,4
- 1175: -3,3
- 1176: 55,3
- 1177: 57,2
- 1178: 59,2
- 1179: 59,3
- 1180: 59,1
- 1181: 59,3
- 1182: 56,0
- 1183: 57,0
- 1184: 60,2
- 1185: 60,1
- 1186: 60,2
- 1187: 60,3
- 1188: 57,1
- 1189: 57,0
- 1190: 56,2
- 1191: 56,4
- 1192: 58,1
- 1193: 56,-2
- 1194: 57,1
- 1195: 55,3
- 1196: 45,8
- 1197: 44,8
- 1198: 42,11
- 1199: 43,11
- 1200: 42,10
- 1201: 42,9
- 1202: 43,7
- 1203: 42,7
- 1204: 43,8
- 1205: 42,9
- 1206: 43,11
- 1207: 42,11
- 1208: 40,12
- 1209: 43,12
- 1210: 49,9
- 1211: 43,9
- 1212: 46,9
- 1213: 45,7
- 1214: 43,7
- 1215: 26,2
- 1216: 0,7
- 1217: -3,6
- 1218: -5,7
- 1219: 18,2
- 1220: 1,2
- 1221: -1,2
- 1222: -22,0
- 1223: -42,6
- 1224: -52,9
- 1225: -52,9
- 1226: -52,9
- 1227: -52,9
- 1228: -52,9
- 1229: -50,9
- 1230: -53,9
- 1231: -57,3
- 1232: -61,2
- 1233: -63,3
- 1234: -61,1
- 1235: -61,2
- 1236: -61,1
- 1237: -60,0
- 1238: -59,0
- 1239: -59,-1
- 1240: -57,-1
- 1241: -56,0
- 1242: -57,1
- 1243: -47,1
- 1244: -47,3
- 1245: -31,9
- 1246: -32,13
- 1247: -33,13
- 1248: -3,5
- 1249: 4,7
- 1250: 1,3
- 1287: 4,13
- 1309: -7,16
- 1310: -12,19
- 1311: -12,11
- 1312: -15,13
- 1315: -3,19
- 1316: -7,15
- 1340: 4,8
- 1345: 2,7
- 1348: 2,7
- 1349: 2,7
- 1351: 1,6
- 1352: 37,8
- 1353: 28,-11
- 1354: -2,0
- 1355: 1,0
- 1356: 0,0
- 1357: -2,0
- 1358: -13,5
- 1359: -30,-11
- 1360: -29,-28
- 1361: -31,-26
- 1362: -30,-28
- 1363: -28,-27
- 1364: -29,-26
- 1365: -27,-26
- 1366: -27,-27
- 1367: -27,-29
- 1368: -30,-29
- 1369: -31,-30
- 1370: -32,-28
- 1371: -33,-27
- 1372: -33,-28
- 1373: -34,5
- 1374: -43,6
- 1375: -47,4
- 1376: -48,9
- 1377: -49,9
- 1378: -50,18
- 1379: -50,17
- 1380: -49,17
- 1381: -49,18
- 1382: -48,17
- 1383: -49,17
- 1384: -50,18
- 1385: -48,18
- 1386: -49,17
- 1387: -50,17
- 1388: -50,18
- 1389: -48,18
- 1390: -48,18
+ 665: 9,54
+ 666: 10,55
+ 667: 10,54
+ 668: 11,55
+ 669: 7,56
+ 670: 7,50
+ 671: 1,46
+ 672: 4,45
+ 673: 3,43
+ 674: -4,43
+ 675: 0,43
+ 676: 1,42
+ 677: 3,45
+ 678: 6,49
+ 679: 1,45
+ 680: 1,43
+ 681: -2,35
+ 682: 1,46
+ 683: -1,35
+ 684: 1,31
+ 685: 9,24
+ 686: 9,23
+ 687: 12,23
+ 688: 12,25
+ 689: 38,24
+ 690: 55,25
+ 691: 57,23
+ 692: 58,25
+ 693: 57,26
+ 694: 56,26
+ 695: 56,24
+ 696: 58,25
+ 697: 55,26
+ 698: 55,25
+ 699: 44,22
+ 700: 35,24
+ 701: 17,21
+ 702: 2,27
+ 703: 3,14
+ 704: 4,17
+ 705: -6,7
+ 706: -3,4
+ 707: -3,3
+ 708: 55,3
+ 709: 57,2
+ 710: 59,2
+ 711: 59,3
+ 712: 59,1
+ 713: 59,3
+ 714: 56,0
+ 715: 57,0
+ 716: 60,2
+ 717: 60,1
+ 718: 60,2
+ 719: 60,3
+ 720: 57,1
+ 721: 57,0
+ 722: 56,2
+ 723: 56,4
+ 724: 58,1
+ 725: 56,-2
+ 726: 57,1
+ 727: 55,3
+ 728: 45,8
+ 729: 44,8
+ 730: 42,11
+ 731: 43,11
+ 732: 42,10
+ 733: 42,9
+ 734: 43,7
+ 735: 42,7
+ 736: 43,8
+ 737: 42,9
+ 738: 43,11
+ 739: 42,11
+ 740: 40,12
+ 741: 43,12
+ 742: 49,9
+ 743: 43,9
+ 744: 46,9
+ 745: 45,7
+ 746: 43,7
+ 747: 26,2
+ 748: 0,7
+ 749: -3,6
+ 750: -5,7
+ 751: 18,2
+ 752: 1,2
+ 753: -1,2
+ 754: -22,0
+ 755: -42,6
+ 756: -52,9
+ 757: -52,9
+ 758: -52,9
+ 759: -52,9
+ 760: -52,9
+ 761: -50,9
+ 762: -53,9
+ 763: -57,3
+ 764: -61,2
+ 765: -63,3
+ 766: -61,1
+ 767: -61,2
+ 768: -61,1
+ 769: -60,0
+ 770: -59,0
+ 771: -59,-1
+ 772: -57,-1
+ 773: -56,0
+ 774: -57,1
+ 775: -47,1
+ 776: -47,3
+ 777: -31,9
+ 778: -32,13
+ 779: -33,13
+ 780: -3,5
+ 781: 4,7
+ 782: 1,3
+ 783: 4,13
+ 784: -7,16
+ 785: -12,19
+ 786: -12,11
+ 787: -15,13
+ 788: -3,19
+ 789: -7,15
+ 790: 4,8
+ 791: 2,7
+ 792: 2,7
+ 793: 2,7
+ 794: 1,6
+ 795: 37,8
+ 796: 28,-11
+ 797: -2,0
+ 798: 1,0
+ 799: 0,0
+ 800: -2,0
+ 801: -13,5
+ 802: -30,-11
+ 803: -29,-28
+ 804: -31,-26
+ 805: -30,-28
+ 806: -28,-27
+ 807: -29,-26
+ 808: -27,-26
+ 809: -27,-27
+ 810: -27,-29
+ 811: -30,-29
+ 812: -31,-30
+ 813: -32,-28
+ 814: -33,-27
+ 815: -33,-28
+ 816: -34,5
+ 817: -43,6
+ 818: -47,4
+ 819: -48,9
+ 820: -49,9
+ 821: -50,18
+ 822: -50,17
+ 823: -49,17
+ 824: -49,18
+ 825: -48,17
+ 826: -49,17
+ 827: -50,18
+ 828: -48,18
+ 829: -49,17
+ 830: -50,17
+ 831: -50,18
+ 832: -48,18
+ 833: -48,18
+ 2962: 5,3
+ 2963: 6,3
+ 2964: 9,3
+ 2965: 8,2
+ 2966: 10,3
+ 2967: 9,2
+ 2968: 8,3
+ 2969: 7,3
+ 2970: 6,3
+ 2971: 7,4
+ 2972: 8,4
+ 2973: 11,3
+ 2974: 5,3
+ 2975: -13,3
+ 2976: -13,3
+ 2977: -12,3
+ 2978: -11,3
+ 2979: -11,3
+ 2980: -11,4
+ 2981: -10,2
+ 2982: -9,2
+ 2983: -9,3
+ 2984: -10,3
+ 2985: -8,3
+ 2986: -7,3
+ 2987: -8,3
- node:
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 1426: -60,3
- 3200: -3,10
+ 869: -60,3
+ 2561: -3,10
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 1437: -53,14
- 1438: -51,13
- 1439: -52,10
- 1440: -50,11
- 1441: -48,11
- 1442: -49,14
- 1499: -52,8
- 1500: -52,7
- 1501: -53,6
- 1502: -53,5
- 1503: -50,4
- 1504: -51,3
- 1505: -51,3
- 1506: -49,3
- 1507: -49,3
- 1508: -52,5
- 1545: -46,11
- 1546: -45,8
- 1605: -41,11
- 1606: -37,12
- 1607: -34,11
- 1608: -33,9
- 1609: -32,7
- 1610: -31,12
- 1611: -28,11
- 1621: -31,11
- 1622: -32,10
- 1623: -46,1
- 1624: -41,3
- 1625: -39,4
- 1626: -36,2
- 1627: -40,4
- 1628: -42,4
- 1629: -44,2
- 1630: -44,4
- 1631: -39,4
- 1632: -37,4
- 1633: -44,5
- 1634: -45,4
- 1635: -45,5
- 1636: -43,5
- 1637: -36,4
- 1638: -36,3
- 1639: -38,5
- 1640: -36,5
- 1641: -33,2
- 1642: -31,2
- 1643: -31,4
- 1644: -34,4
- 1645: -33,4
- 1646: -35,2
- 1647: -36,1
- 1648: -39,1
- 1649: -41,3
- 1650: -41,1
- 1651: -31,2
- 1652: -31,1
- 1653: -30,1
- 1654: -30,2
- 1655: -30,4
- 1656: -30,5
- 1657: -29,5
- 1658: -29,2
- 1699: -58,2
- 1700: -60,1
- 1701: -60,-1
- 1702: -53,7
- 1764: -31,-3
- 1765: -28,-6
- 1766: -29,-8
- 1767: -30,-10
- 1768: -31,-10
- 1769: -31,-13
- 1770: -29,-18
- 1771: -30,-17
- 1772: -4,6
- 1773: -5,6
- 1774: -8,5
- 1775: -10,5
- 1776: -10,6
- 1777: -11,5
- 1778: -12,5
- 1779: -13,3
- 1780: -15,2
- 1781: -16,2
- 1782: -14,1
- 1783: -10,2
- 1784: -8,1
- 1785: -7,2
- 1786: -9,1
- 1787: -5,3
- 1788: -4,4
- 1789: -4,3
- 1790: -4,2
- 1791: -16,1
- 1792: -17,2
- 1793: -17,3
- 1794: -20,1
- 1795: -20,2
- 1796: -21,3
- 1797: -23,1
- 1798: -25,2
- 1799: -25,3
- 1800: -26,3
- 1801: -27,1
- 1802: -27,3
- 1861: -2,6
- 1862: -2,4
- 1863: -1,3
- 1864: -2,3
- 1865: -2,2
- 1866: 0,3
- 1971: 6,3
- 1972: 6,3
- 1973: 6,2
- 1974: 6,2
- 1975: 5,3
- 1976: 5,5
- 1977: 3,6
- 1978: 3,2
- 1979: 9,2
- 1980: 8,5
- 1981: 10,5
- 1982: 11,3
- 1983: 12,2
- 1984: 13,3
- 1985: 14,2
- 1986: 14,2
- 1987: 14,4
- 1988: 17,2
- 1989: 18,3
- 1990: 18,3
- 1991: 20,2
- 1992: 21,1
- 1993: 24,3
- 1994: 23,3
- 1995: 22,3
- 1996: 22,2
- 1997: 22,2
- 1998: 23,2
- 2141: 52,1
- 2142: 53,2
- 2143: 52,2
- 2144: 52,3
- 2145: 55,0
- 2146: 54,1
- 2147: 47,2
- 2148: 44,3
- 2149: 44,4
- 2150: 45,3
- 2151: 42,2
- 2152: 39,1
- 2153: 38,3
- 2154: 35,3
- 2155: 35,2
- 2156: 34,4
- 2157: 33,4
- 2158: 31,2
- 2159: 29,1
- 2160: 28,3
- 2161: 28,1
- 2162: 35,5
- 2163: 45,6
- 2164: 45,5
- 2165: 48,4
- 2166: 47,4
- 2167: 34,8
- 2168: 34,7
- 2169: 35,7
- 2170: 39,7
- 2194: 41,15
- 2195: 41,14
- 2196: 41,13
- 2197: 38,10
- 2198: 36,10
- 2200: 34,15
- 2201: 31,13
- 2202: 34,12
- 2203: 33,9
- 2208: 27,-1
- 2209: 29,-3
- 2210: 28,-4
- 2211: 28,-6
- 2212: 28,-8
- 2213: 27,-6
- 2214: 27,-5
- 2215: 29,-5
- 2216: 29,-7
- 2217: 29,-8
- 2218: 29,-9
- 2219: 29,-11
- 2220: 27,-12
- 2221: 27,-13
- 2222: 28,-13
- 2223: 29,-13
- 2224: 28,-16
- 2225: 27,-18
- 2226: 28,-19
- 2227: 27,-20
- 2228: 29,-22
- 2229: 29,-23
- 2230: 29,-24
- 2271: 10,4
- 2272: -2,29
- 2273: -1,27
- 2274: -1,25
- 2275: -1,24
- 2276: 0,22
- 2277: 1,22
- 2278: 1,24
- 2279: 0,22
- 2280: -2,21
- 2281: -2,20
- 2282: 1,20
- 2283: 1,21
- 2302: -2,28
- 2303: -1,26
- 2304: -1,25
- 2322: -19,11
- 2323: -17,10
- 2324: -14,12
- 2325: -13,11
- 2326: -14,10
- 2339: -15,10
- 2398: -2,15
- 2399: -2,16
- 2400: -2,17
- 2401: -2,17
- 2402: -2,17
- 2403: 0,18
- 2412: -2,18
- 2413: -2,18
- 2420: -3,18
- 2421: -3,18
- 2442: -4,15
- 2443: -4,14
- 2450: -4,12
- 2451: -6,11
- 2452: -6,11
- 2453: -6,11
- 2482: -5,8
- 2483: -5,8
- 2484: -5,8
- 2485: 2,10
- 2486: 2,9
- 2487: 3,8
- 2539: 3,28
- 2540: 4,26
- 2541: 8,28
- 2542: 6,28
- 2543: 9,26
- 2544: 10,26
- 2545: 10,24
- 2546: 10,23
- 2547: 11,24
- 2548: 11,25
- 2549: 11,28
- 2585: 11,26
- 2614: 12,26
- 2615: 13,26
- 2616: 13,24
- 2617: 13,22
- 2618: 16,23
- 2619: 14,21
- 2620: 13,20
- 2621: 14,20
- 2622: 15,23
- 2623: 18,25
- 2624: 15,26
- 2625: 14,26
- 2626: 16,25
- 2627: 17,22
- 2628: 18,25
- 2629: 19,25
- 2630: 17,25
- 2631: 18,22
- 2632: 19,23
- 2633: 22,22
- 2634: 18,23
- 2635: 19,25
- 2636: 17,24
- 2637: 19,23
- 2638: 23,25
- 2639: 21,26
- 2640: 20,25
- 2641: 23,21
- 2642: 21,22
- 2643: 25,22
- 2644: 25,24
- 2645: 25,23
- 2646: 25,25
- 2647: 24,25
- 2648: 28,24
- 2649: 30,23
- 2650: 26,24
- 2651: 27,25
- 2652: 27,24
- 2653: 27,23
- 2654: 29,22
- 2655: 30,22
- 2656: 30,21
- 2657: 29,20
- 2658: 29,20
- 2659: 30,19
- 2660: 32,23
- 2661: 32,23
- 2662: 33,25
- 2663: 33,25
- 2664: 31,26
- 2800: 16,21
- 2801: 24,21
- 2802: 24,21
- 2803: 33,20
- 2804: 33,20
- 2805: 31,20
- 2806: 34,22
- 2807: 30,19
- 2808: 29,19
- 2809: 29,19
- 2824: 36,26
- 2825: 37,24
- 2826: 37,24
- 2858: 48,24
- 2859: 47,24
- 2860: 47,23
- 2861: 48,23
- 2862: 49,22
- 2863: 49,22
- 2864: 49,23
- 2865: 52,24
- 2866: 51,25
- 2867: 50,26
- 2868: 49,25
- 2869: 51,25
- 2870: 52,26
- 2871: 52,26
- 2872: 50,26
- 2873: 53,26
- 2874: 53,26
- 2875: 54,26
- 2934: 40,22
- 2935: 52,22
- 2936: 51,22
- 2937: 52,22
- 2938: 53,23
- 2939: 53,24
- 2940: 54,24
- 2941: 54,23
- 2942: 43,18
- 2943: 39,18
- 2944: 37,17
- 2945: 36,17
- 2946: 34,17
- 2947: 34,18
- 2948: 35,18
- 2949: 33,15
- 2950: 33,16
- 2951: 32,16
- 2952: 32,15
- 2974: 39,17
- 2975: 41,18
- 2976: 41,18
- 2977: 41,17
- 2978: 41,16
- 2979: 42,18
- 2980: 40,15
- 2981: 31,10
- 2982: 31,8
- 2983: 30,8
- 2984: 30,8
- 2985: 30,8
- 2986: 31,7
- 2987: 31,7
- 2988: 31,9
- 2989: 30,10
- 2990: 30,11
- 3031: 14,15
- 3032: 12,16
- 3033: 11,16
- 3034: 10,15
- 3035: 12,15
- 3036: 14,15
- 3037: 15,16
- 3038: 16,16
- 3039: 16,15
- 3040: 16,14
- 3041: 16,13
- 3042: 17,14
- 3043: 16,13
- 3044: 16,11
- 3045: 15,10
- 3046: 15,10
- 3047: 15,12
- 3048: 15,12
- 3049: 15,11
- 3050: 16,10
- 3051: 17,11
- 3052: 17,11
- 3053: 16,12
- 3054: 13,12
- 3055: 13,12
- 3088: -3,33
- 3089: -2,33
- 3090: -2,32
- 3091: -2,32
- 3092: -1,31
- 3093: 0,31
- 3094: 0,31
+ 880: -53,14
+ 881: -51,13
+ 882: -52,10
+ 883: -50,11
+ 884: -48,11
+ 885: -49,14
+ 942: -52,8
+ 943: -52,7
+ 944: -53,6
+ 945: -53,5
+ 946: -50,4
+ 947: -51,3
+ 948: -51,3
+ 949: -49,3
+ 950: -49,3
+ 951: -52,5
+ 988: -46,11
+ 989: -45,8
+ 1048: -41,11
+ 1049: -37,12
+ 1050: -34,11
+ 1051: -33,9
+ 1052: -32,7
+ 1053: -31,12
+ 1054: -28,11
+ 1064: -31,11
+ 1065: -32,10
+ 1066: -46,1
+ 1067: -41,3
+ 1068: -39,4
+ 1069: -36,2
+ 1070: -40,4
+ 1071: -42,4
+ 1072: -44,2
+ 1073: -44,4
+ 1074: -39,4
+ 1075: -37,4
+ 1076: -44,5
+ 1077: -45,4
+ 1078: -45,5
+ 1079: -43,5
+ 1080: -36,4
+ 1081: -36,3
+ 1082: -38,5
+ 1083: -36,5
+ 1084: -33,2
+ 1085: -31,2
+ 1086: -31,4
+ 1087: -34,4
+ 1088: -33,4
+ 1089: -35,2
+ 1090: -36,1
+ 1091: -39,1
+ 1092: -41,3
+ 1093: -41,1
+ 1094: -31,2
+ 1095: -31,1
+ 1096: -30,1
+ 1097: -30,2
+ 1098: -30,4
+ 1099: -30,5
+ 1100: -29,5
+ 1101: -29,2
+ 1142: -58,2
+ 1143: -60,1
+ 1144: -60,-1
+ 1145: -53,7
+ 1207: -31,-3
+ 1208: -28,-6
+ 1209: -29,-8
+ 1210: -30,-10
+ 1211: -31,-10
+ 1212: -31,-13
+ 1213: -29,-18
+ 1214: -30,-17
+ 1215: -4,6
+ 1216: -5,6
+ 1217: -8,5
+ 1218: -10,5
+ 1219: -10,6
+ 1220: -11,5
+ 1221: -12,5
+ 1223: -15,2
+ 1224: -16,2
+ 1225: -14,1
+ 1226: -10,2
+ 1227: -8,1
+ 1228: -7,2
+ 1229: -9,1
+ 1230: -5,3
+ 1231: -4,4
+ 1232: -4,3
+ 1233: -4,2
+ 1234: -16,1
+ 1235: -17,2
+ 1236: -17,3
+ 1237: -20,1
+ 1238: -20,2
+ 1239: -21,3
+ 1240: -23,1
+ 1241: -25,2
+ 1242: -25,3
+ 1243: -26,3
+ 1244: -27,1
+ 1245: -27,3
+ 1304: -2,6
+ 1305: -2,4
+ 1306: -1,3
+ 1307: -2,3
+ 1308: -2,2
+ 1309: 0,3
+ 1416: 6,2
+ 1417: 6,2
+ 1419: 5,5
+ 1420: 3,6
+ 1421: 3,2
+ 1422: 9,2
+ 1423: 8,5
+ 1424: 10,5
+ 1426: 12,2
+ 1427: 13,3
+ 1428: 14,2
+ 1429: 14,2
+ 1430: 14,4
+ 1431: 17,2
+ 1432: 18,3
+ 1433: 18,3
+ 1434: 20,2
+ 1435: 21,1
+ 1436: 24,3
+ 1437: 23,3
+ 1438: 22,3
+ 1439: 22,2
+ 1440: 22,2
+ 1441: 23,2
+ 1584: 52,1
+ 1585: 53,2
+ 1586: 52,2
+ 1587: 52,3
+ 1588: 55,0
+ 1589: 54,1
+ 1590: 47,2
+ 1591: 44,3
+ 1592: 44,4
+ 1593: 45,3
+ 1594: 42,2
+ 1595: 39,1
+ 1596: 38,3
+ 1597: 35,3
+ 1598: 35,2
+ 1599: 34,4
+ 1600: 33,4
+ 1601: 31,2
+ 1602: 29,1
+ 1603: 28,3
+ 1604: 28,1
+ 1605: 35,5
+ 1606: 45,6
+ 1607: 45,5
+ 1608: 48,4
+ 1609: 47,4
+ 1610: 34,8
+ 1611: 34,7
+ 1612: 35,7
+ 1613: 39,7
+ 1637: 41,15
+ 1638: 41,14
+ 1639: 41,13
+ 1640: 38,10
+ 1641: 36,10
+ 1643: 34,15
+ 1644: 31,13
+ 1645: 34,12
+ 1646: 33,9
+ 1651: 27,-1
+ 1652: 29,-3
+ 1653: 28,-4
+ 1654: 28,-6
+ 1655: 28,-8
+ 1656: 27,-6
+ 1657: 27,-5
+ 1658: 29,-5
+ 1659: 29,-7
+ 1660: 29,-8
+ 1661: 29,-9
+ 1662: 29,-11
+ 1663: 27,-12
+ 1664: 27,-13
+ 1665: 28,-13
+ 1666: 29,-13
+ 1667: 28,-16
+ 1668: 27,-18
+ 1669: 28,-19
+ 1670: 27,-20
+ 1671: 29,-22
+ 1672: 29,-23
+ 1673: 29,-24
+ 1714: 10,4
+ 1715: -2,29
+ 1716: -1,27
+ 1717: -1,25
+ 1718: -1,24
+ 1719: 0,22
+ 1720: 1,22
+ 1721: 1,24
+ 1722: 0,22
+ 1723: -2,21
+ 1724: -2,20
+ 1725: 1,20
+ 1726: 1,21
+ 1745: -2,28
+ 1746: -1,26
+ 1747: -1,25
+ 1765: -19,11
+ 1766: -17,10
+ 1767: -14,12
+ 1768: -13,11
+ 1769: -14,10
+ 1782: -15,10
+ 1820: -2,15
+ 1821: -2,16
+ 1822: -2,17
+ 1823: -2,17
+ 1824: -2,17
+ 1825: 0,18
+ 1834: -2,18
+ 1835: -2,18
+ 1842: -3,18
+ 1843: -3,18
+ 1864: -4,15
+ 1865: -4,14
+ 1872: -4,12
+ 1873: -6,11
+ 1874: -6,11
+ 1875: -6,11
+ 1898: -5,8
+ 1899: -5,8
+ 1900: -5,8
+ 1901: 2,10
+ 1902: 2,9
+ 1903: 3,8
+ 1949: 3,28
+ 1950: 4,26
+ 1951: 8,28
+ 1952: 6,28
+ 1953: 9,26
+ 1954: 10,26
+ 1955: 10,24
+ 1956: 10,23
+ 1957: 11,24
+ 1958: 11,25
+ 1959: 11,28
+ 1994: 11,26
+ 2013: 12,26
+ 2014: 13,26
+ 2015: 13,24
+ 2016: 13,22
+ 2017: 16,23
+ 2018: 14,21
+ 2019: 13,20
+ 2020: 14,20
+ 2021: 15,23
+ 2022: 18,25
+ 2023: 15,26
+ 2024: 14,26
+ 2025: 16,25
+ 2026: 17,22
+ 2027: 18,25
+ 2028: 19,25
+ 2029: 17,25
+ 2030: 18,22
+ 2031: 19,23
+ 2032: 22,22
+ 2033: 18,23
+ 2034: 19,25
+ 2035: 17,24
+ 2036: 19,23
+ 2037: 23,25
+ 2038: 21,26
+ 2039: 20,25
+ 2040: 23,21
+ 2041: 21,22
+ 2042: 25,22
+ 2043: 25,24
+ 2044: 25,23
+ 2045: 25,25
+ 2046: 24,25
+ 2047: 28,24
+ 2048: 30,23
+ 2049: 26,24
+ 2050: 27,25
+ 2051: 27,24
+ 2052: 27,23
+ 2053: 29,22
+ 2054: 30,22
+ 2055: 30,21
+ 2056: 29,20
+ 2057: 29,20
+ 2058: 30,19
+ 2059: 32,23
+ 2060: 32,23
+ 2061: 33,25
+ 2062: 33,25
+ 2063: 31,26
+ 2199: 16,21
+ 2200: 24,21
+ 2201: 24,21
+ 2202: 33,20
+ 2203: 33,20
+ 2204: 31,20
+ 2205: 34,22
+ 2206: 30,19
+ 2207: 29,19
+ 2208: 29,19
+ 2222: 36,26
+ 2223: 37,24
+ 2224: 37,24
+ 2256: 48,24
+ 2257: 47,24
+ 2258: 47,23
+ 2259: 48,23
+ 2260: 49,22
+ 2261: 49,22
+ 2262: 49,23
+ 2263: 52,24
+ 2264: 51,25
+ 2265: 50,26
+ 2266: 49,25
+ 2267: 51,25
+ 2268: 52,26
+ 2269: 52,26
+ 2270: 50,26
+ 2271: 53,26
+ 2272: 53,26
+ 2273: 54,26
+ 2332: 40,22
+ 2333: 52,22
+ 2334: 51,22
+ 2335: 52,22
+ 2336: 53,23
+ 2337: 53,24
+ 2338: 54,24
+ 2339: 54,23
+ 2340: 43,18
+ 2341: 39,18
+ 2342: 37,17
+ 2343: 36,17
+ 2344: 34,17
+ 2345: 34,18
+ 2346: 35,18
+ 2347: 33,15
+ 2348: 33,16
+ 2349: 32,16
+ 2350: 32,15
+ 2372: 39,17
+ 2373: 41,18
+ 2374: 41,18
+ 2375: 41,17
+ 2376: 41,16
+ 2377: 42,18
+ 2378: 40,15
+ 2379: 31,10
+ 2380: 31,8
+ 2381: 30,8
+ 2382: 30,8
+ 2383: 30,8
+ 2384: 31,7
+ 2385: 31,7
+ 2386: 31,9
+ 2387: 30,10
+ 2388: 30,11
+ 2429: 14,15
+ 2430: 12,16
+ 2431: 11,16
+ 2432: 10,15
+ 2433: 12,15
+ 2434: 14,15
+ 2435: 15,16
+ 2436: 16,16
+ 2437: 16,15
+ 2438: 16,14
+ 2439: 16,13
+ 2440: 17,14
+ 2441: 16,13
+ 2442: 16,11
+ 2443: 15,10
+ 2444: 15,10
+ 2445: 15,12
+ 2446: 15,12
+ 2447: 15,11
+ 2448: 16,10
+ 2449: 17,11
+ 2450: 17,11
+ 2451: 16,12
+ 2452: 13,12
+ 2453: 13,12
+ 2486: -3,33
+ 2487: -2,33
+ 2488: -2,32
+ 2489: -2,32
+ 2490: -1,31
+ 2491: 0,31
+ 2492: 0,31
+ 2944: 7,2
+ 2945: 6,4
+ 2946: 4,3
+ 2947: 5,4
+ 2948: 11,3
+ 2949: 10,2
+ 2988: -8,4
+ 2989: -7,4
- node:
cleanable: True
zIndex: 180
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 3398: 5,48
- 3399: 5,49
- 3400: 4,49
- 3401: 5,51
- 3402: 5,53
- 3403: 5,54
- 3404: 5,55
- 3405: 6,55
- 3406: 7,57
- 3407: 6,54
- 3408: 6,54
- 3409: 8,55
- 3410: 7,50
- 3411: 8,50
- 3412: 3,50
- 3413: 2,47
- 3414: -2,45
- 3415: 4,47
- 3416: 8,45
- 3417: 7,46
- 3418: 7,43
- 3419: 8,42
- 3420: 4,41
- 3421: 2,39
- 3422: 0,39
- 3423: -1,39
- 3424: -1,38
- 3472: 8,51
- 3486: 10,53
- 3487: 10,53
- 3488: 11,55
- 3489: 11,55
- 3490: -6,44
- 3491: -6,45
- 3492: -5,44
- 3493: -6,43
- 3494: -5,43
- 3495: -5,43
- 3496: 0,40
- 3497: 4,40
- 3498: -34,8
- 3499: -33,7
- 3500: -32,8
- 3501: -33,10
- 3502: -33,10
- 3503: -34,10
- 3504: -32,11
- 3505: -36,12
- 3506: -35,11
- 3507: -39,11
- 3508: -40,12
- 3535: -53,18
- 3536: -53,16
- 3537: -52,15
- 3538: -52,14
- 3539: -51,15
- 3556: -50,3
- 3557: -50,3
- 3558: -50,3
- 3559: -49,5
- 3560: -49,5
- 3561: -56,2
- 3562: -46,4
- 3563: -42,3
- 3564: -42,3
+ 2744: 5,48
+ 2745: 5,49
+ 2746: 4,49
+ 2747: 5,51
+ 2748: 5,53
+ 2749: 5,54
+ 2750: 5,55
+ 2751: 6,55
+ 2752: 7,57
+ 2753: 6,54
+ 2754: 6,54
+ 2755: 8,55
+ 2756: 7,50
+ 2757: 8,50
+ 2758: 3,50
+ 2759: 2,47
+ 2760: -2,45
+ 2761: 4,47
+ 2762: 8,45
+ 2763: 7,46
+ 2764: 7,43
+ 2765: 8,42
+ 2766: 4,41
+ 2767: 2,39
+ 2768: 0,39
+ 2769: -1,39
+ 2770: -1,38
+ 2818: 8,51
+ 2832: 10,53
+ 2833: 10,53
+ 2834: 11,55
+ 2835: 11,55
+ 2836: -6,44
+ 2837: -6,45
+ 2838: -5,44
+ 2839: -6,43
+ 2840: -5,43
+ 2841: -5,43
+ 2842: 0,40
+ 2843: 4,40
+ 2844: -34,8
+ 2845: -33,7
+ 2846: -32,8
+ 2847: -33,10
+ 2848: -33,10
+ 2849: -34,10
+ 2850: -32,11
+ 2851: -36,12
+ 2852: -35,11
+ 2853: -39,11
+ 2854: -40,12
+ 2881: -53,18
+ 2882: -53,16
+ 2883: -52,15
+ 2884: -52,14
+ 2885: -51,15
+ 2902: -50,3
+ 2903: -50,3
+ 2904: -50,3
+ 2905: -49,5
+ 2906: -49,5
+ 2907: -56,2
+ 2908: -46,4
+ 2909: -42,3
+ 2910: -42,3
- node:
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
- 1510: -46,7
- 3196: -3,11
+ 953: -46,7
+ 2560: -3,11
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
- 1547: -46,9
- 1548: -44,11
- 1549: -44,11
- 1550: -44,8
- 1551: -46,8
- 1552: -45,10
- 1612: -34,6
- 1659: -46,2
- 1660: -45,1
- 1661: -45,2
- 1662: -45,4
- 1663: -39,3
- 1664: -38,2
- 1665: -37,1
- 1666: -37,3
- 1667: -40,3
- 1668: -42,2
- 1669: -34,2
- 1670: -34,3
- 1671: -36,4
- 1672: -32,3
- 1673: -32,1
- 1674: -35,1
- 1749: -31,-3
- 1750: -31,-4
- 1751: -31,-7
- 1752: -28,-9
- 1753: -29,-9
- 1754: -30,-12
- 1755: -29,-15
- 1756: -30,-12
- 1757: -30,-15
- 1758: -30,-15
- 1759: -29,-17
- 1760: -29,-16
- 1761: -30,-23
- 1762: -28,-23
- 1763: -29,-22
- 1803: -27,4
- 1804: -25,2
- 1805: -24,1
- 1806: -20,3
- 1807: -18,3
- 1808: -19,2
- 1809: -16,4
- 1810: -12,4
- 1811: -12,4
- 1812: -7,5
- 1867: 0,6
- 1868: 0,2
- 1946: 16,2
- 1947: 19,1
- 1948: 19,1
- 1949: 20,2
- 1950: 19,3
- 1951: 19,3
- 1952: 24,3
- 1953: 24,4
- 1954: 24,2
- 1955: 25,1
- 1956: 12,3
- 1957: 11,3
- 1958: 11,2
- 1959: 14,1
- 1960: 14,1
- 1961: 14,1
- 1962: 7,3
- 1963: 7,3
- 1964: 7,2
- 1965: 5,1
- 1966: 4,4
- 1967: 4,4
- 1968: 4,4
- 1969: 3,3
- 1970: 5,2
- 2068: 46,3
- 2069: 46,5
- 2070: 47,6
- 2071: 47,7
- 2072: 46,8
- 2073: 45,8
- 2074: 46,6
- 2075: 45,2
- 2076: 43,2
- 2077: 42,5
- 2078: 41,4
- 2079: 39,3
- 2080: 39,4
- 2081: 38,5
- 2082: 36,3
- 2083: 34,3
- 2084: 32,4
- 2085: 32,3
- 2086: 32,2
- 2087: 34,2
- 2088: 33,3
- 2089: 33,2
- 2090: 29,2
- 2091: 29,4
- 2092: 28,5
- 2093: 28,3
- 2094: 27,2
- 2095: 27,3
- 2096: 28,2
- 2097: 30,1
- 2098: 32,1
- 2099: 33,1
- 2199: 41,14
- 2308: -1,23
- 2309: -1,23
- 2310: -1,21
- 2311: 0,21
- 2312: 0,25
- 2313: 0,27
- 2314: 0,27
- 2315: -2,28
- 2316: -1,28
- 2317: 1,26
- 2318: -2,22
- 2319: -1,22
- 2340: -16,10
- 2341: -18,11
- 2342: -13,10
- 2343: -11,13
- 2344: -12,17
- 2404: -1,18
- 2405: 0,17
- 2414: -1,18
- 2415: -1,17
- 2422: -3,16
- 2423: -3,16
- 2424: -3,16
- 2425: -4,17
- 2426: -4,17
- 2427: -4,18
- 2428: -4,18
- 2434: -6,18
- 2435: -5,17
- 2436: -4,16
- 2444: -6,14
- 2445: -6,13
- 2446: -6,15
- 2447: -5,16
- 2448: -4,11
- 2449: -4,11
- 2467: -4,9
- 2468: -6,10
- 2469: -6,10
- 2470: -3,11
- 2471: -6,13
- 2472: -6,13
- 2473: -6,18
- 2488: 4,9
- 2489: 3,12
- 2490: 3,13
- 2491: 3,13
- 2492: 2,12
- 2493: 2,12
- 2494: 3,11
- 2495: 3,10
- 2496: 3,14
- 2497: 3,17
- 2498: 3,17
- 2550: 3,28
- 2551: 3,27
- 2552: 3,26
- 2553: 3,25
- 2554: 7,26
- 2555: 7,27
- 2556: 6,27
- 2577: 4,25
- 2578: 6,25
- 2579: 8,25
- 2580: 8,25
- 2665: 14,25
- 2666: 13,25
- 2667: 14,23
- 2668: 14,23
- 2669: 13,23
- 2670: 15,24
- 2671: 15,24
- 2672: 16,24
- 2673: 17,23
- 2674: 16,22
- 2675: 15,22
- 2676: 18,24
- 2677: 19,25
- 2678: 19,24
- 2679: 20,24
- 2680: 20,24
- 2681: 20,23
- 2682: 20,23
- 2683: 19,26
- 2684: 19,26
- 2685: 18,26
- 2686: 17,26
- 2687: 16,26
- 2688: 21,24
- 2689: 21,24
- 2690: 21,22
- 2691: 23,22
- 2692: 21,23
- 2693: 21,23
- 2694: 20,22
- 2695: 22,23
- 2696: 23,24
- 2697: 22,25
- 2698: 21,24
- 2699: 22,24
- 2700: 23,24
- 2701: 24,24
- 2702: 26,25
- 2703: 26,25
- 2704: 24,24
- 2705: 24,23
- 2706: 27,22
- 2707: 27,22
- 2708: 26,22
- 2709: 26,23
- 2710: 28,23
- 2711: 28,23
- 2712: 28,24
- 2713: 29,24
- 2714: 29,24
- 2715: 31,24
- 2716: 31,25
- 2717: 29,25
- 2718: 30,24
- 2719: 29,22
- 2720: 31,23
- 2721: 31,23
- 2722: 31,22
- 2723: 32,22
- 2724: 30,23
- 2725: 29,23
- 2726: 29,21
- 2727: 28,22
- 2728: 30,20
- 2729: 31,21
- 2730: 31,21
- 2731: 32,22
- 2732: 33,24
- 2733: 33,24
- 2734: 32,24
- 2735: 32,25
- 2736: 32,26
- 2810: 34,23
- 2811: 34,23
- 2812: 34,25
- 2813: 34,26
- 2827: 41,25
- 2828: 40,26
- 2829: 40,26
- 2830: 39,25
- 2831: 40,24
- 2832: 39,23
- 2833: 40,22
- 2834: 41,23
- 2835: 44,24
- 2836: 44,25
- 2837: 43,25
- 2838: 42,25
- 2839: 43,25
- 2840: 44,26
- 2841: 44,26
- 2842: 46,25
- 2843: 47,26
- 2844: 49,26
- 2845: 48,26
- 2846: 49,25
- 2847: 49,26
- 2848: 50,25
- 2849: 50,24
- 2850: 50,22
- 2851: 50,22
- 2852: 50,23
- 2853: 49,24
- 2854: 48,24
- 2855: 46,23
- 2856: 46,23
- 2857: 46,24
- 2923: 50,26
- 2924: 51,23
- 2925: 51,24
- 2926: 45,22
- 2927: 45,22
- 2928: 45,23
- 2929: 44,23
- 2930: 42,23
- 2931: 43,22
- 2932: 42,22
- 2933: 41,22
- 2953: 33,14
- 2954: 32,14
- 2955: 32,13
- 2956: 32,13
- 2957: 34,11
- 2958: 34,10
- 2959: 33,10
- 2960: 35,10
- 2961: 38,10
- 2962: 37,11
- 2963: 38,11
- 2999: 30,9
- 3000: 30,9
- 3001: 14,11
- 3002: 14,11
- 3003: 14,11
- 3004: 14,10
- 3005: 13,10
- 3006: 13,11
- 3007: 11,11
- 3008: 10,11
- 3009: 9,11
- 3010: 9,11
- 3011: 9,10
- 3012: 9,13
- 3013: 9,13
- 3014: 9,13
- 3015: 9,13
- 3016: 11,14
- 3017: 11,15
- 3018: 12,16
- 3019: 11,16
- 3020: 10,15
- 3021: 11,15
- 3022: 15,16
- 3023: 13,14
- 3024: 15,15
- 3025: 16,16
- 3026: 17,16
- 3027: 17,15
- 3028: 17,13
- 3029: 17,13
- 3030: 17,12
- 3056: 10,12
- 3057: 11,12
- 3058: 11,13
- 3059: 11,13
- 3060: 9,12
- 3061: 8,12
- 3062: 8,12
- 3063: 10,14
- 3095: -3,32
- 3096: -2,32
- 3097: -2,31
- 3098: -2,31
- 3099: 0,33
- 3100: 0,33
- 3240: -3,13
- 3241: -2,10
- 3242: -3,9
- 3243: -1,8
- 3244: -1,9
- 3245: 0,10
- 3249: -1,12
- 3250: -1,13
- 3251: -3,12
- 3252: 0,11
- 3253: 1,13
- 3254: 3,16
- 3255: 3,16
- 3256: 3,18
- 3257: 3,18
- 3258: 3,18
- 3259: 2,18
+ 990: -46,9
+ 991: -44,11
+ 992: -44,11
+ 993: -44,8
+ 994: -46,8
+ 995: -45,10
+ 1055: -34,6
+ 1102: -46,2
+ 1103: -45,1
+ 1104: -45,2
+ 1105: -45,4
+ 1106: -39,3
+ 1107: -38,2
+ 1108: -37,1
+ 1109: -37,3
+ 1110: -40,3
+ 1111: -42,2
+ 1112: -34,2
+ 1113: -34,3
+ 1114: -36,4
+ 1115: -32,3
+ 1116: -32,1
+ 1117: -35,1
+ 1192: -31,-3
+ 1193: -31,-4
+ 1194: -31,-7
+ 1195: -28,-9
+ 1196: -29,-9
+ 1197: -30,-12
+ 1198: -29,-15
+ 1199: -30,-12
+ 1200: -30,-15
+ 1201: -30,-15
+ 1202: -29,-17
+ 1203: -29,-16
+ 1204: -30,-23
+ 1205: -28,-23
+ 1206: -29,-22
+ 1246: -27,4
+ 1247: -25,2
+ 1248: -24,1
+ 1249: -20,3
+ 1250: -18,3
+ 1251: -19,2
+ 1252: -16,4
+ 1253: -12,4
+ 1254: -12,4
+ 1255: -7,5
+ 1310: 0,6
+ 1311: 0,2
+ 1389: 16,2
+ 1390: 19,1
+ 1391: 19,1
+ 1392: 20,2
+ 1393: 19,3
+ 1394: 19,3
+ 1395: 24,3
+ 1396: 24,4
+ 1397: 24,2
+ 1398: 25,1
+ 1399: 12,3
+ 1401: 11,2
+ 1402: 14,1
+ 1403: 14,1
+ 1404: 14,1
+ 1408: 5,1
+ 1409: 4,4
+ 1410: 4,4
+ 1411: 4,4
+ 1412: 3,3
+ 1413: 5,2
+ 1511: 46,3
+ 1512: 46,5
+ 1513: 47,6
+ 1514: 47,7
+ 1515: 46,8
+ 1516: 45,8
+ 1517: 46,6
+ 1518: 45,2
+ 1519: 43,2
+ 1520: 42,5
+ 1521: 41,4
+ 1522: 39,3
+ 1523: 39,4
+ 1524: 38,5
+ 1525: 36,3
+ 1526: 34,3
+ 1527: 32,4
+ 1528: 32,3
+ 1529: 32,2
+ 1530: 34,2
+ 1531: 33,3
+ 1532: 33,2
+ 1533: 29,2
+ 1534: 29,4
+ 1535: 28,5
+ 1536: 28,3
+ 1537: 27,2
+ 1538: 27,3
+ 1539: 28,2
+ 1540: 30,1
+ 1541: 32,1
+ 1542: 33,1
+ 1642: 41,14
+ 1751: -1,23
+ 1752: -1,23
+ 1753: -1,21
+ 1754: 0,21
+ 1755: 0,25
+ 1756: 0,27
+ 1757: 0,27
+ 1758: -2,28
+ 1759: -1,28
+ 1760: 1,26
+ 1761: -2,22
+ 1762: -1,22
+ 1783: -16,10
+ 1784: -18,11
+ 1785: -13,10
+ 1786: -11,13
+ 1787: -12,17
+ 1826: -1,18
+ 1827: 0,17
+ 1836: -1,18
+ 1837: -1,17
+ 1844: -3,16
+ 1845: -3,16
+ 1846: -3,16
+ 1847: -4,17
+ 1848: -4,17
+ 1849: -4,18
+ 1850: -4,18
+ 1856: -6,18
+ 1857: -5,17
+ 1858: -4,16
+ 1866: -6,14
+ 1867: -6,13
+ 1868: -6,15
+ 1869: -5,16
+ 1870: -4,11
+ 1871: -4,11
+ 1883: -4,9
+ 1884: -6,10
+ 1885: -6,10
+ 1886: -3,11
+ 1887: -6,13
+ 1888: -6,13
+ 1889: -6,18
+ 1904: 4,9
+ 1905: 3,12
+ 1906: 3,13
+ 1907: 3,13
+ 1908: 2,12
+ 1909: 2,12
+ 1910: 3,11
+ 1911: 3,10
+ 1912: 3,14
+ 1913: 3,17
+ 1914: 3,17
+ 1960: 3,28
+ 1961: 3,27
+ 1962: 3,26
+ 1963: 3,25
+ 1964: 7,26
+ 1965: 7,27
+ 1966: 6,27
+ 1986: 4,25
+ 1987: 6,25
+ 1988: 8,25
+ 1989: 8,25
+ 2064: 14,25
+ 2065: 13,25
+ 2066: 14,23
+ 2067: 14,23
+ 2068: 13,23
+ 2069: 15,24
+ 2070: 15,24
+ 2071: 16,24
+ 2072: 17,23
+ 2073: 16,22
+ 2074: 15,22
+ 2075: 18,24
+ 2076: 19,25
+ 2077: 19,24
+ 2078: 20,24
+ 2079: 20,24
+ 2080: 20,23
+ 2081: 20,23
+ 2082: 19,26
+ 2083: 19,26
+ 2084: 18,26
+ 2085: 17,26
+ 2086: 16,26
+ 2087: 21,24
+ 2088: 21,24
+ 2089: 21,22
+ 2090: 23,22
+ 2091: 21,23
+ 2092: 21,23
+ 2093: 20,22
+ 2094: 22,23
+ 2095: 23,24
+ 2096: 22,25
+ 2097: 21,24
+ 2098: 22,24
+ 2099: 23,24
+ 2100: 24,24
+ 2101: 26,25
+ 2102: 26,25
+ 2103: 24,24
+ 2104: 24,23
+ 2105: 27,22
+ 2106: 27,22
+ 2107: 26,22
+ 2108: 26,23
+ 2109: 28,23
+ 2110: 28,23
+ 2111: 28,24
+ 2112: 29,24
+ 2113: 29,24
+ 2114: 31,24
+ 2115: 31,25
+ 2116: 29,25
+ 2117: 30,24
+ 2118: 29,22
+ 2119: 31,23
+ 2120: 31,23
+ 2121: 31,22
+ 2122: 32,22
+ 2123: 30,23
+ 2124: 29,23
+ 2125: 29,21
+ 2126: 28,22
+ 2127: 30,20
+ 2128: 31,21
+ 2129: 31,21
+ 2130: 32,22
+ 2131: 33,24
+ 2132: 33,24
+ 2133: 32,24
+ 2134: 32,25
+ 2135: 32,26
+ 2209: 34,23
+ 2210: 34,23
+ 2211: 34,25
+ 2212: 34,26
+ 2225: 41,25
+ 2226: 40,26
+ 2227: 40,26
+ 2228: 39,25
+ 2229: 40,24
+ 2230: 39,23
+ 2231: 40,22
+ 2232: 41,23
+ 2233: 44,24
+ 2234: 44,25
+ 2235: 43,25
+ 2236: 42,25
+ 2237: 43,25
+ 2238: 44,26
+ 2239: 44,26
+ 2240: 46,25
+ 2241: 47,26
+ 2242: 49,26
+ 2243: 48,26
+ 2244: 49,25
+ 2245: 49,26
+ 2246: 50,25
+ 2247: 50,24
+ 2248: 50,22
+ 2249: 50,22
+ 2250: 50,23
+ 2251: 49,24
+ 2252: 48,24
+ 2253: 46,23
+ 2254: 46,23
+ 2255: 46,24
+ 2321: 50,26
+ 2322: 51,23
+ 2323: 51,24
+ 2324: 45,22
+ 2325: 45,22
+ 2326: 45,23
+ 2327: 44,23
+ 2328: 42,23
+ 2329: 43,22
+ 2330: 42,22
+ 2331: 41,22
+ 2351: 33,14
+ 2352: 32,14
+ 2353: 32,13
+ 2354: 32,13
+ 2355: 34,11
+ 2356: 34,10
+ 2357: 33,10
+ 2358: 35,10
+ 2359: 38,10
+ 2360: 37,11
+ 2361: 38,11
+ 2397: 30,9
+ 2398: 30,9
+ 2399: 14,11
+ 2400: 14,11
+ 2401: 14,11
+ 2402: 14,10
+ 2403: 13,10
+ 2404: 13,11
+ 2405: 11,11
+ 2406: 10,11
+ 2407: 9,11
+ 2408: 9,11
+ 2409: 9,10
+ 2410: 9,13
+ 2411: 9,13
+ 2412: 9,13
+ 2413: 9,13
+ 2414: 11,14
+ 2415: 11,15
+ 2416: 12,16
+ 2417: 11,16
+ 2418: 10,15
+ 2419: 11,15
+ 2420: 15,16
+ 2421: 13,14
+ 2422: 15,15
+ 2423: 16,16
+ 2424: 17,16
+ 2425: 17,15
+ 2426: 17,13
+ 2427: 17,13
+ 2428: 17,12
+ 2454: 10,12
+ 2455: 11,12
+ 2456: 11,13
+ 2457: 11,13
+ 2458: 9,12
+ 2459: 8,12
+ 2460: 8,12
+ 2461: 10,14
+ 2493: -3,32
+ 2494: -2,32
+ 2495: -2,31
+ 2496: -2,31
+ 2497: 0,33
+ 2498: 0,33
+ 2593: -3,13
+ 2594: -2,10
+ 2595: -3,9
+ 2596: -1,8
+ 2597: -1,9
+ 2598: 0,10
+ 2602: -1,12
+ 2603: -1,13
+ 2604: -3,12
+ 2605: 0,11
+ 2606: 1,13
+ 2607: 3,16
+ 2608: 3,16
+ 2609: 3,18
+ 2610: 3,18
+ 2611: 3,18
+ 2612: 2,18
+ 2950: 8,2
+ 2951: 7,4
+ 2952: 11,4
+ 2953: 6,5
+ 2990: -14,2
+ 2991: -14,4
+ 2992: -13,2
- node:
cleanable: True
zIndex: 180
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
- 3319: 6,57
- 3320: 5,57
- 3321: 5,56
- 3322: 5,54
- 3323: 7,54
- 3324: 7,54
- 3325: 6,54
- 3326: 6,53
- 3327: 5,53
- 3328: 7,53
- 3329: 8,51
- 3330: 8,49
- 3331: 7,48
- 3332: 7,50
- 3333: 7,50
- 3334: 5,50
- 3335: 4,48
- 3336: 5,47
- 3337: 4,50
- 3338: 2,50
- 3339: 2,50
- 3340: 1,51
- 3341: 1,51
- 3342: 0,50
- 3343: 1,49
- 3344: 0,48
- 3345: 1,48
- 3346: 0,47
- 3347: 0,47
- 3348: 0,47
- 3349: -1,47
- 3350: -1,46
- 3351: -2,47
- 3352: -2,47
- 3353: -2,46
- 3354: -2,45
- 3355: -3,45
- 3356: -3,44
- 3357: -3,44
- 3358: -1,44
- 3359: -1,44
- 3360: -3,43
- 3361: -2,43
- 3362: -1,43
- 3363: -1,42
- 3364: -2,42
- 3365: 0,41
- 3366: -1,41
- 3367: -2,40
- 3368: -2,40
- 3369: -3,40
- 3370: -3,39
- 3371: -2,38
- 3372: -3,38
- 3373: -2,38
- 3374: -3,37
- 3375: -3,36
- 3376: -2,36
- 3377: 0,36
- 3378: 0,38
- 3379: 1,38
- 3380: 3,38
- 3381: 1,40
- 3382: 3,41
- 3383: 5,41
- 3384: 2,41
- 3385: 3,36
- 3386: 4,36
- 3387: 4,37
- 3389: 6,41
- 3390: 7,41
- 3391: 7,42
- 3392: 8,43
- 3393: 8,43
- 3394: 7,45
- 3395: 7,47
- 3396: 8,47
- 3397: 5,48
- 3473: 6,52
- 3474: 5,52
- 3475: 6,51
- 3476: 6,51
- 3477: 1,41
- 3478: 1,41
- 3479: 11,53
- 3480: 11,53
- 3481: 11,53
- 3482: 10,55
- 3483: 10,55
- 3484: 10,54
- 3485: 11,54
- 3509: -40,11
- 3510: -41,12
- 3511: -38,12
- 3512: -37,11
- 3513: -36,11
- 3514: -36,11
- 3515: -35,12
- 3516: -32,12
- 3517: -29,12
- 3518: -28,12
- 3519: -27,12
- 3540: -53,15
- 3541: -51,14
- 3542: -51,14
- 3543: -53,12
- 3544: -53,12
- 3545: -53,13
- 3546: -52,12
+ 2666: 6,57
+ 2667: 5,57
+ 2668: 5,56
+ 2669: 5,54
+ 2670: 7,54
+ 2671: 7,54
+ 2672: 6,54
+ 2673: 6,53
+ 2674: 5,53
+ 2675: 7,53
+ 2676: 8,51
+ 2677: 8,49
+ 2678: 7,48
+ 2679: 7,50
+ 2680: 7,50
+ 2681: 5,50
+ 2682: 4,48
+ 2683: 5,47
+ 2684: 4,50
+ 2685: 2,50
+ 2686: 2,50
+ 2687: 1,51
+ 2688: 1,51
+ 2689: 0,50
+ 2690: 1,49
+ 2691: 0,48
+ 2692: 1,48
+ 2693: 0,47
+ 2694: 0,47
+ 2695: 0,47
+ 2696: -1,47
+ 2697: -1,46
+ 2698: -2,47
+ 2699: -2,47
+ 2700: -2,46
+ 2701: -2,45
+ 2702: -3,45
+ 2703: -3,44
+ 2704: -3,44
+ 2705: -1,44
+ 2706: -1,44
+ 2707: -3,43
+ 2708: -2,43
+ 2709: -1,43
+ 2710: -1,42
+ 2711: -2,42
+ 2712: 0,41
+ 2713: -1,41
+ 2714: -2,40
+ 2715: -2,40
+ 2716: -3,40
+ 2717: -3,39
+ 2718: -2,38
+ 2719: -3,38
+ 2720: -2,38
+ 2721: -3,37
+ 2722: -3,36
+ 2723: -2,36
+ 2724: 0,36
+ 2725: 0,38
+ 2726: 1,38
+ 2727: 3,38
+ 2728: 1,40
+ 2729: 3,41
+ 2730: 5,41
+ 2731: 2,41
+ 2732: 3,36
+ 2733: 4,36
+ 2734: 4,37
+ 2735: 6,41
+ 2736: 7,41
+ 2737: 7,42
+ 2738: 8,43
+ 2739: 8,43
+ 2740: 7,45
+ 2741: 7,47
+ 2742: 8,47
+ 2743: 5,48
+ 2819: 6,52
+ 2820: 5,52
+ 2821: 6,51
+ 2822: 6,51
+ 2823: 1,41
+ 2824: 1,41
+ 2825: 11,53
+ 2826: 11,53
+ 2827: 11,53
+ 2828: 10,55
+ 2829: 10,55
+ 2830: 10,54
+ 2831: 11,54
+ 2855: -40,11
+ 2856: -41,12
+ 2857: -38,12
+ 2858: -37,11
+ 2859: -36,11
+ 2860: -36,11
+ 2861: -35,12
+ 2862: -32,12
+ 2863: -29,12
+ 2864: -28,12
+ 2865: -27,12
+ 2886: -53,15
+ 2887: -51,14
+ 2888: -51,14
+ 2889: -53,12
+ 2890: -53,12
+ 2891: -53,13
+ 2892: -52,12
- node:
color: '#FFFFFFFF'
id: DirtLight
decals:
- 1427: -58,3
+ 870: -58,3
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtLight
decals:
- 1443: -52,14
- 1444: -53,17
- 1445: -53,11
- 1446: -48,12
- 1447: -45,14
- 1448: -45,14
- 1449: -45,14
- 1450: -44,16
- 1451: -44,16
- 1452: -44,16
- 1453: -46,18
- 1454: -46,18
- 1455: -44,14
- 1480: -54,8
- 1481: -56,5
- 1482: -55,2
- 1483: -56,1
- 1484: -56,1
- 1485: -55,1
- 1486: -53,1
- 1487: -51,1
- 1488: -52,2
- 1489: -52,2
- 1490: -51,2
- 1491: -49,1
- 1492: -48,2
- 1493: -48,3
- 1494: -49,4
- 1495: -49,4
- 1496: -48,5
- 1497: -48,5
- 1498: -48,8
- 1553: -46,10
- 1554: -44,9
- 1555: -44,9
- 1556: -45,9
- 1614: -37,11
- 1615: -41,12
- 1616: -39,11
- 1617: -33,12
- 1618: -33,12
- 1619: -30,11
- 1620: -29,12
- 1682: -35,3
- 1683: -33,3
- 1684: -32,2
- 1685: -32,1
- 1686: -34,1
- 1687: -30,3
- 1688: -29,3
- 1689: -29,4
- 1690: -43,5
- 1691: -40,5
- 1692: -40,5
- 1693: -40,5
- 1694: -41,6
- 1695: -41,4
- 1696: -40,3
- 1697: -43,3
- 1698: -45,3
- 1727: -29,-24
- 1728: -30,-24
- 1729: -30,-23
- 1730: -31,-20
- 1731: -31,-20
- 1732: -30,-21
- 1733: -30,-22
- 1734: -29,-19
- 1735: -29,-17
- 1736: -29,-15
- 1737: -31,-14
- 1738: -31,-14
- 1739: -31,-15
- 1740: -31,-15
- 1741: -30,-11
- 1742: -31,-9
- 1743: -30,-8
- 1744: -31,-8
- 1745: -31,-5
- 1746: -30,-3
- 1747: -30,-2
- 1748: -30,-3
- 1822: -11,5
- 1823: -10,5
- 1824: -10,4
- 1825: -9,4
- 1826: -6,2
- 1827: -6,4
- 1828: -6,3
- 1829: -6,3
- 1830: -5,4
- 1831: -6,5
- 1832: -6,5
- 1833: -6,6
- 1834: -6,6
- 1835: -6,2
- 1836: -5,2
- 1837: -5,1
- 1838: -5,1
- 1839: -5,2
- 1840: -5,2
- 1841: -13,1
- 1842: -16,2
- 1843: -16,3
- 1844: -16,3
- 1845: -18,3
- 1846: -20,3
- 1847: -20,4
- 1848: -21,2
- 1849: -24,2
- 1850: -25,3
- 1851: -24,3
- 1852: -26,4
- 1870: -1,5
- 1871: 13,1
- 1872: 12,3
- 1873: 10,3
- 1874: 8,3
- 1875: 7,5
- 1876: 6,3
- 1877: 6,3
- 1878: 4,5
- 1879: 4,6
- 1880: 2,6
- 1881: 3,4
- 1882: 2,3
- 1883: 3,1
- 1884: 4,1
- 1885: 5,1
- 1886: 6,1
- 1887: 7,1
- 1888: 9,1
- 1889: 8,4
- 1890: 8,6
- 1891: 9,6
- 1892: 9,6
- 1893: 12,3
- 1894: 13,4
- 1895: 15,4
- 1896: 13,5
- 1897: 14,5
- 1898: 15,3
- 1899: 17,2
- 1900: 17,4
- 1901: 18,4
- 1902: 20,1
- 1903: 19,1
- 1904: 20,1
- 1905: 21,2
- 1906: 20,4
- 1907: 23,3
- 1908: 22,2
- 1909: 23,2
- 1910: 24,3
- 1911: 25,4
- 1912: 25,4
- 1913: 24,1
- 2100: 28,2
- 2101: 29,1
- 2102: 29,1
- 2103: 32,2
- 2104: 34,2
- 2105: 36,2
- 2106: 35,2
- 2107: 34,2
- 2108: 35,3
- 2109: 33,4
- 2110: 33,3
- 2111: 31,3
- 2112: 36,4
- 2113: 40,4
- 2114: 38,5
- 2115: 43,3
- 2116: 44,3
- 2117: 44,3
- 2118: 44,3
- 2119: 44,3
- 2120: 41,2
- 2121: 43,1
- 2122: 45,1
- 2123: 45,2
- 2124: 40,1
- 2125: 38,2
- 2126: 41,1
- 2127: 42,1
- 2128: 47,3
- 2129: 47,5
- 2130: 48,6
- 2131: 47,5
- 2132: 48,3
- 2133: 51,2
- 2134: 51,1
- 2135: 50,2
- 2136: 51,3
- 2137: 48,2
- 2138: 46,1
- 2139: 53,1
- 2140: 53,2
- 2171: 38,8
- 2172: 40,8
- 2173: 40,7
- 2174: 36,9
- 2175: 36,11
- 2176: 34,10
- 2177: 34,10
- 2178: 33,11
- 2179: 33,13
- 2180: 32,14
- 2181: 32,14
- 2182: 33,15
- 2183: 34,18
- 2184: 36,18
- 2185: 36,18
- 2186: 37,19
- 2187: 37,19
- 2188: 41,17
- 2189: 41,17
- 2190: 40,17
- 2191: 40,17
- 2192: 40,18
- 2193: 45,18
- 2231: 27,-24
- 2232: 28,-24
- 2233: 28,-22
- 2234: 27,-21
- 2235: 27,-19
- 2236: 29,-19
- 2237: 28,-19
- 2238: 27,-16
- 2239: 29,-14
- 2240: 28,-14
- 2241: 28,-15
- 2242: 29,-14
- 2243: 28,-10
- 2244: 29,-8
- 2245: 29,-7
- 2246: 28,-6
- 2247: 29,-6
- 2248: 28,-2
- 2249: 27,-2
- 2250: 29,-1
- 2251: 29,-2
- 2270: 9,5
- 2284: 0,20
- 2285: -1,20
- 2286: -2,21
- 2287: -2,23
- 2288: -2,24
- 2289: -2,25
- 2290: 0,25
- 2291: 0,26
- 2292: 1,25
- 2293: 1,25
- 2294: 1,27
- 2295: 1,28
- 2296: 0,28
- 2297: -1,29
- 2298: 0,29
- 2299: 0,29
- 2300: -2,26
- 2301: -2,26
- 2327: -12,12
- 2328: -11,11
- 2329: -10,15
- 2330: -11,16
- 2331: -11,17
- 2392: -2,18
- 2393: -1,17
- 2394: -1,17
- 2395: -1,15
- 2396: -1,15
- 2397: 0,15
- 2406: -1,17
- 2407: 0,16
- 2408: 0,16
- 2409: 0,16
- 2410: -1,16
- 2411: -1,18
- 2416: -1,16
- 2417: -1,16
- 2418: -3,17
- 2419: -3,17
- 2454: -6,9
- 2458: -4,8
- 2459: -4,8
- 2460: -4,8
- 2461: -4,8
- 2474: -6,17
- 2475: -6,18
- 2476: -4,16
- 2477: -6,8
- 2478: -6,8
- 2479: -6,8
- 2480: -6,8
- 2481: -6,9
- 2499: 2,17
- 2500: 2,18
- 2501: 4,18
- 2502: 4,18
- 2503: 4,17
- 2504: 4,17
- 2505: 4,16
- 2506: 4,14
- 2507: 4,13
- 2508: 4,13
- 2509: 4,14
- 2510: 4,14
- 2511: 2,16
- 2512: 2,16
- 2513: 2,16
- 2514: 2,16
- 2515: 2,11
- 2516: 2,10
- 2517: 2,9
- 2518: 3,8
- 2519: 2,8
- 2557: 4,27
- 2558: 4,27
- 2559: 5,28
- 2560: 5,28
- 2561: 5,27
- 2562: 10,27
- 2563: 10,27
- 2564: 9,27
- 2565: 11,27
- 2566: 11,26
- 2583: 9,25
- 2584: 6,26
- 2737: 33,26
- 2738: 34,26
- 2739: 34,25
- 2740: 34,24
- 2741: 33,23
- 2742: 33,23
- 2743: 31,24
- 2744: 32,24
- 2745: 33,24
- 2746: 33,24
- 2747: 32,22
- 2748: 32,21
- 2749: 34,21
- 2750: 34,22
- 2751: 33,22
- 2752: 30,21
- 2753: 30,22
- 2754: 29,21
- 2755: 28,21
- 2756: 28,23
- 2757: 27,22
- 2758: 26,22
- 2759: 28,21
- 2760: 28,22
- 2761: 25,23
- 2762: 26,23
- 2763: 26,23
- 2764: 25,21
- 2765: 26,21
- 2766: 24,23
- 2767: 23,24
- 2768: 24,23
- 2769: 23,23
- 2770: 23,23
- 2771: 24,22
- 2772: 24,24
- 2773: 23,25
- 2774: 22,24
- 2775: 22,25
- 2776: 22,26
- 2777: 25,26
- 2778: 25,26
- 2779: 20,26
- 2780: 19,26
- 2781: 20,26
- 2782: 17,26
- 2783: 18,26
- 2784: 15,26
- 2785: 15,26
- 2786: 15,25
- 2787: 15,25
- 2788: 17,24
- 2789: 16,24
- 2790: 13,24
- 2791: 14,23
- 2792: 14,22
- 2793: 15,22
- 2794: 17,23
- 2795: 19,22
- 2796: 20,22
- 2797: 20,21
- 2798: 20,21
- 2799: 18,21
- 2815: 37,26
- 2816: 37,26
- 2817: 36,25
- 2818: 36,25
- 2819: 34,26
- 2820: 33,26
- 2821: 32,26
- 2822: 31,25
- 2823: 29,25
- 2893: 39,25
- 2894: 39,24
- 2895: 39,24
- 2896: 39,23
- 2897: 41,23
- 2898: 44,24
- 2899: 44,24
- 2900: 43,24
- 2901: 43,24
- 2902: 42,23
- 2903: 43,23
- 2904: 44,23
- 2905: 45,24
- 2906: 45,25
- 2907: 45,25
- 2908: 47,26
- 2909: 47,26
- 2910: 50,25
- 2911: 50,25
- 2912: 49,24
- 2913: 51,25
- 2914: 52,25
- 2915: 51,25
- 2916: 51,25
- 2917: 53,26
- 2918: 54,26
- 2919: 53,25
- 2920: 53,25
- 2921: 54,25
- 2922: 51,26
- 2964: 38,10
- 2965: 40,10
- 2966: 40,10
- 2967: 39,10
- 2968: 40,11
- 2969: 41,11
- 2970: 41,12
- 2971: 42,12
- 2972: 43,12
- 2973: 40,14
- 2991: 31,11
- 2992: 31,11
- 2993: 31,10
- 2994: 29,8
- 2995: 30,9
- 2996: 30,8
- 2997: 31,7
- 2998: 32,7
- 3064: 10,14
- 3065: 10,14
- 3066: 10,13
- 3067: 10,13
- 3068: 14,16
- 3069: 13,16
- 3070: 13,16
- 3071: 17,15
- 3072: 17,14
- 3073: 17,15
- 3074: 17,16
- 3075: 17,13
- 3076: 15,11
- 3077: 15,10
- 3078: 14,10
- 3079: 14,12
- 3080: 14,12
- 3081: 7,15
- 3082: 8,16
- 3083: 8,16
- 3084: 7,16
- 3085: 13,21
- 3086: 13,21
- 3087: 13,21
- 3101: -3,32
- 3102: -1,33
- 3103: -1,33
- 3104: -1,32
- 3105: 0,32
- 3106: 0,32
- 3107: 0,32
- 3108: 0,32
- 3238: -1,11
- 3239: -1,13
- 3246: -2,11
- 3247: 1,11
- 3248: -5,12
+ 886: -52,14
+ 887: -53,17
+ 888: -53,11
+ 889: -48,12
+ 890: -45,14
+ 891: -45,14
+ 892: -45,14
+ 893: -44,16
+ 894: -44,16
+ 895: -44,16
+ 896: -46,18
+ 897: -46,18
+ 898: -44,14
+ 923: -54,8
+ 924: -56,5
+ 925: -55,2
+ 926: -56,1
+ 927: -56,1
+ 928: -55,1
+ 929: -53,1
+ 930: -51,1
+ 931: -52,2
+ 932: -52,2
+ 933: -51,2
+ 934: -49,1
+ 935: -48,2
+ 936: -48,3
+ 937: -49,4
+ 938: -49,4
+ 939: -48,5
+ 940: -48,5
+ 941: -48,8
+ 996: -46,10
+ 997: -44,9
+ 998: -44,9
+ 999: -45,9
+ 1057: -37,11
+ 1058: -41,12
+ 1059: -39,11
+ 1060: -33,12
+ 1061: -33,12
+ 1062: -30,11
+ 1063: -29,12
+ 1125: -35,3
+ 1126: -33,3
+ 1127: -32,2
+ 1128: -32,1
+ 1129: -34,1
+ 1130: -30,3
+ 1131: -29,3
+ 1132: -29,4
+ 1133: -43,5
+ 1134: -40,5
+ 1135: -40,5
+ 1136: -40,5
+ 1137: -41,6
+ 1138: -41,4
+ 1139: -40,3
+ 1140: -43,3
+ 1141: -45,3
+ 1170: -29,-24
+ 1171: -30,-24
+ 1172: -30,-23
+ 1173: -31,-20
+ 1174: -31,-20
+ 1175: -30,-21
+ 1176: -30,-22
+ 1177: -29,-19
+ 1178: -29,-17
+ 1179: -29,-15
+ 1180: -31,-14
+ 1181: -31,-14
+ 1182: -31,-15
+ 1183: -31,-15
+ 1184: -30,-11
+ 1185: -31,-9
+ 1186: -30,-8
+ 1187: -31,-8
+ 1188: -31,-5
+ 1189: -30,-3
+ 1190: -30,-2
+ 1191: -30,-3
+ 1265: -11,5
+ 1266: -10,5
+ 1267: -10,4
+ 1268: -9,4
+ 1269: -6,2
+ 1270: -6,4
+ 1271: -6,3
+ 1272: -6,3
+ 1273: -5,4
+ 1274: -6,5
+ 1275: -6,5
+ 1276: -6,6
+ 1277: -6,6
+ 1278: -6,2
+ 1279: -5,2
+ 1280: -5,1
+ 1281: -5,1
+ 1282: -5,2
+ 1283: -5,2
+ 1284: -13,1
+ 1285: -16,2
+ 1286: -16,3
+ 1287: -16,3
+ 1288: -18,3
+ 1289: -20,3
+ 1290: -20,4
+ 1291: -21,2
+ 1292: -24,2
+ 1293: -25,3
+ 1294: -24,3
+ 1295: -26,4
+ 1313: -1,5
+ 1314: 13,1
+ 1315: 12,3
+ 1318: 7,5
+ 1321: 4,5
+ 1322: 4,6
+ 1323: 2,6
+ 1324: 3,4
+ 1325: 2,3
+ 1326: 3,1
+ 1327: 4,1
+ 1328: 5,1
+ 1329: 6,1
+ 1330: 7,1
+ 1331: 9,1
+ 1332: 8,4
+ 1333: 8,6
+ 1334: 9,6
+ 1335: 9,6
+ 1336: 12,3
+ 1337: 13,4
+ 1338: 15,4
+ 1339: 13,5
+ 1340: 14,5
+ 1341: 15,3
+ 1342: 17,2
+ 1343: 17,4
+ 1344: 18,4
+ 1345: 20,1
+ 1346: 19,1
+ 1347: 20,1
+ 1348: 21,2
+ 1349: 20,4
+ 1350: 23,3
+ 1351: 22,2
+ 1352: 23,2
+ 1353: 24,3
+ 1354: 25,4
+ 1355: 25,4
+ 1356: 24,1
+ 1543: 28,2
+ 1544: 29,1
+ 1545: 29,1
+ 1546: 32,2
+ 1547: 34,2
+ 1548: 36,2
+ 1549: 35,2
+ 1550: 34,2
+ 1551: 35,3
+ 1552: 33,4
+ 1553: 33,3
+ 1554: 31,3
+ 1555: 36,4
+ 1556: 40,4
+ 1557: 38,5
+ 1558: 43,3
+ 1559: 44,3
+ 1560: 44,3
+ 1561: 44,3
+ 1562: 44,3
+ 1563: 41,2
+ 1564: 43,1
+ 1565: 45,1
+ 1566: 45,2
+ 1567: 40,1
+ 1568: 38,2
+ 1569: 41,1
+ 1570: 42,1
+ 1571: 47,3
+ 1572: 47,5
+ 1573: 48,6
+ 1574: 47,5
+ 1575: 48,3
+ 1576: 51,2
+ 1577: 51,1
+ 1578: 50,2
+ 1579: 51,3
+ 1580: 48,2
+ 1581: 46,1
+ 1582: 53,1
+ 1583: 53,2
+ 1614: 38,8
+ 1615: 40,8
+ 1616: 40,7
+ 1617: 36,9
+ 1618: 36,11
+ 1619: 34,10
+ 1620: 34,10
+ 1621: 33,11
+ 1622: 33,13
+ 1623: 32,14
+ 1624: 32,14
+ 1625: 33,15
+ 1626: 34,18
+ 1627: 36,18
+ 1628: 36,18
+ 1629: 37,19
+ 1630: 37,19
+ 1631: 41,17
+ 1632: 41,17
+ 1633: 40,17
+ 1634: 40,17
+ 1635: 40,18
+ 1636: 45,18
+ 1674: 27,-24
+ 1675: 28,-24
+ 1676: 28,-22
+ 1677: 27,-21
+ 1678: 27,-19
+ 1679: 29,-19
+ 1680: 28,-19
+ 1681: 27,-16
+ 1682: 29,-14
+ 1683: 28,-14
+ 1684: 28,-15
+ 1685: 29,-14
+ 1686: 28,-10
+ 1687: 29,-8
+ 1688: 29,-7
+ 1689: 28,-6
+ 1690: 29,-6
+ 1691: 28,-2
+ 1692: 27,-2
+ 1693: 29,-1
+ 1694: 29,-2
+ 1713: 9,5
+ 1727: 0,20
+ 1728: -1,20
+ 1729: -2,21
+ 1730: -2,23
+ 1731: -2,24
+ 1732: -2,25
+ 1733: 0,25
+ 1734: 0,26
+ 1735: 1,25
+ 1736: 1,25
+ 1737: 1,27
+ 1738: 1,28
+ 1739: 0,28
+ 1740: -1,29
+ 1741: 0,29
+ 1742: 0,29
+ 1743: -2,26
+ 1744: -2,26
+ 1770: -12,12
+ 1771: -11,11
+ 1772: -10,15
+ 1773: -11,16
+ 1774: -11,17
+ 1814: -2,18
+ 1815: -1,17
+ 1816: -1,17
+ 1817: -1,15
+ 1818: -1,15
+ 1819: 0,15
+ 1828: -1,17
+ 1829: 0,16
+ 1830: 0,16
+ 1831: 0,16
+ 1832: -1,16
+ 1833: -1,18
+ 1838: -1,16
+ 1839: -1,16
+ 1840: -3,17
+ 1841: -3,17
+ 1876: -6,9
+ 1877: -4,8
+ 1878: -4,8
+ 1879: -4,8
+ 1880: -4,8
+ 1890: -6,17
+ 1891: -6,18
+ 1892: -4,16
+ 1893: -6,8
+ 1894: -6,8
+ 1895: -6,8
+ 1896: -6,8
+ 1897: -6,9
+ 1915: 2,17
+ 1916: 2,18
+ 1917: 4,18
+ 1918: 4,18
+ 1919: 4,17
+ 1920: 4,17
+ 1921: 4,16
+ 1922: 4,14
+ 1923: 4,13
+ 1924: 4,13
+ 1925: 4,14
+ 1926: 4,14
+ 1927: 2,16
+ 1928: 2,16
+ 1929: 2,16
+ 1930: 2,16
+ 1931: 2,11
+ 1932: 2,10
+ 1933: 2,9
+ 1934: 3,8
+ 1935: 2,8
+ 1967: 4,27
+ 1968: 4,27
+ 1969: 5,28
+ 1970: 5,28
+ 1971: 5,27
+ 1972: 10,27
+ 1973: 10,27
+ 1974: 9,27
+ 1975: 11,27
+ 1976: 11,26
+ 1992: 9,25
+ 1993: 6,26
+ 2136: 33,26
+ 2137: 34,26
+ 2138: 34,25
+ 2139: 34,24
+ 2140: 33,23
+ 2141: 33,23
+ 2142: 31,24
+ 2143: 32,24
+ 2144: 33,24
+ 2145: 33,24
+ 2146: 32,22
+ 2147: 32,21
+ 2148: 34,21
+ 2149: 34,22
+ 2150: 33,22
+ 2151: 30,21
+ 2152: 30,22
+ 2153: 29,21
+ 2154: 28,21
+ 2155: 28,23
+ 2156: 27,22
+ 2157: 26,22
+ 2158: 28,21
+ 2159: 28,22
+ 2160: 25,23
+ 2161: 26,23
+ 2162: 26,23
+ 2163: 25,21
+ 2164: 26,21
+ 2165: 24,23
+ 2166: 23,24
+ 2167: 24,23
+ 2168: 23,23
+ 2169: 23,23
+ 2170: 24,22
+ 2171: 24,24
+ 2172: 23,25
+ 2173: 22,24
+ 2174: 22,25
+ 2175: 22,26
+ 2176: 25,26
+ 2177: 25,26
+ 2178: 20,26
+ 2179: 19,26
+ 2180: 20,26
+ 2181: 17,26
+ 2182: 18,26
+ 2183: 15,26
+ 2184: 15,26
+ 2185: 15,25
+ 2186: 15,25
+ 2187: 17,24
+ 2188: 16,24
+ 2189: 13,24
+ 2190: 14,23
+ 2191: 14,22
+ 2192: 15,22
+ 2193: 17,23
+ 2194: 19,22
+ 2195: 20,22
+ 2196: 20,21
+ 2197: 20,21
+ 2198: 18,21
+ 2213: 37,26
+ 2214: 37,26
+ 2215: 36,25
+ 2216: 36,25
+ 2217: 34,26
+ 2218: 33,26
+ 2219: 32,26
+ 2220: 31,25
+ 2221: 29,25
+ 2291: 39,25
+ 2292: 39,24
+ 2293: 39,24
+ 2294: 39,23
+ 2295: 41,23
+ 2296: 44,24
+ 2297: 44,24
+ 2298: 43,24
+ 2299: 43,24
+ 2300: 42,23
+ 2301: 43,23
+ 2302: 44,23
+ 2303: 45,24
+ 2304: 45,25
+ 2305: 45,25
+ 2306: 47,26
+ 2307: 47,26
+ 2308: 50,25
+ 2309: 50,25
+ 2310: 49,24
+ 2311: 51,25
+ 2312: 52,25
+ 2313: 51,25
+ 2314: 51,25
+ 2315: 53,26
+ 2316: 54,26
+ 2317: 53,25
+ 2318: 53,25
+ 2319: 54,25
+ 2320: 51,26
+ 2362: 38,10
+ 2363: 40,10
+ 2364: 40,10
+ 2365: 39,10
+ 2366: 40,11
+ 2367: 41,11
+ 2368: 41,12
+ 2369: 42,12
+ 2370: 43,12
+ 2371: 40,14
+ 2389: 31,11
+ 2390: 31,11
+ 2391: 31,10
+ 2392: 29,8
+ 2393: 30,9
+ 2394: 30,8
+ 2395: 31,7
+ 2396: 32,7
+ 2462: 10,14
+ 2463: 10,14
+ 2464: 10,13
+ 2465: 10,13
+ 2466: 14,16
+ 2467: 13,16
+ 2468: 13,16
+ 2469: 17,15
+ 2470: 17,14
+ 2471: 17,15
+ 2472: 17,16
+ 2473: 17,13
+ 2474: 15,11
+ 2475: 15,10
+ 2476: 14,10
+ 2477: 14,12
+ 2478: 14,12
+ 2479: 7,15
+ 2480: 8,16
+ 2481: 8,16
+ 2482: 7,16
+ 2483: 13,21
+ 2484: 13,21
+ 2485: 13,21
+ 2499: -3,32
+ 2500: -1,33
+ 2501: -1,33
+ 2502: -1,32
+ 2503: 0,32
+ 2504: 0,32
+ 2505: 0,32
+ 2506: 0,32
+ 2591: -1,11
+ 2592: -1,13
+ 2599: -2,11
+ 2600: 1,11
+ 2601: -5,12
+ 2954: 5,4
+ 2955: 5,3
+ 2956: 6,2
+ 2957: 4,2
+ 2958: 10,2
+ 2993: -13,2
+ 2994: -13,4
+ 2995: -11,2
+ 2996: -12,2
- node:
cleanable: True
zIndex: 180
color: '#FFFFFFFF'
id: DirtLight
decals:
- 3425: -2,39
- 3426: -2,39
- 3427: 1,37
- 3428: 1,37
- 3429: -1,37
- 3430: -1,37
- 3431: -2,37
- 3432: -2,37
- 3433: -1,41
- 3434: -1,40
- 3435: 0,40
- 3436: -2,44
- 3437: 0,48
- 3438: 0,49
- 3439: 0,49
- 3440: 0,51
- 3441: 3,51
- 3442: 6,53
- 3443: 7,53
- 3444: 8,53
- 3445: 8,54
- 3446: 8,54
- 3447: 7,55
- 3469: 1,50
- 3470: 1,50
- 3471: 7,51
- 3520: -38,11
- 3521: -38,11
- 3522: -39,12
- 3523: -39,12
- 3524: -41,10
- 3525: -38,12
- 3526: -32,12
- 3527: -34,12
- 3528: -33,11
- 3529: -34,8
- 3530: -33,8
- 3531: -29,11
- 3532: -31,12
- 3533: -30,12
- 3534: -30,12
- 3547: -52,11
- 3548: -53,10
- 3549: -49,14
- 3550: -48,14
- 3551: -48,14
- 3552: -50,5
- 3553: -51,5
- 3554: -51,6
- 3555: -51,5
+ 2771: -2,39
+ 2772: -2,39
+ 2773: 1,37
+ 2774: 1,37
+ 2775: -1,37
+ 2776: -1,37
+ 2777: -2,37
+ 2778: -2,37
+ 2779: -1,41
+ 2780: -1,40
+ 2781: 0,40
+ 2782: -2,44
+ 2783: 0,48
+ 2784: 0,49
+ 2785: 0,49
+ 2786: 0,51
+ 2787: 3,51
+ 2788: 6,53
+ 2789: 7,53
+ 2790: 8,53
+ 2791: 8,54
+ 2792: 8,54
+ 2793: 7,55
+ 2815: 1,50
+ 2816: 1,50
+ 2817: 7,51
+ 2866: -38,11
+ 2867: -38,11
+ 2868: -39,12
+ 2869: -39,12
+ 2870: -41,10
+ 2871: -38,12
+ 2872: -32,12
+ 2873: -34,12
+ 2874: -33,11
+ 2875: -34,8
+ 2876: -33,8
+ 2877: -29,11
+ 2878: -31,12
+ 2879: -30,12
+ 2880: -30,12
+ 2893: -52,11
+ 2894: -53,10
+ 2895: -49,14
+ 2896: -48,14
+ 2897: -48,14
+ 2898: -50,5
+ 2899: -51,5
+ 2900: -51,6
+ 2901: -51,5
- node:
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 1402: -49,13
+ 845: -49,13
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 1456: -46,14
- 1457: -45,13
- 1458: -44,18
- 1459: -44,18
- 1460: -44,18
- 1461: -52,16
- 1462: -54,8
- 1463: -54,7
- 1464: -54,6
- 1465: -51,6
- 1466: -51,4
- 1467: -52,3
- 1468: -54,3
- 1469: -54,2
- 1470: -55,2
- 1471: -55,3
- 1472: -55,1
- 1473: -52,1
- 1474: -49,2
- 1475: -48,3
- 1476: -49,1
- 1477: -49,4
- 1478: -49,6
- 1479: -49,7
- 1557: -45,11
- 1558: -45,11
- 1613: -34,9
- 1675: -46,3
- 1676: -46,5
- 1677: -44,3
- 1678: -43,1
- 1679: -40,2
- 1680: -37,1
- 1681: -35,4
- 1703: -50,2
- 1704: -31,-1
- 1705: -30,-2
- 1706: -29,-3
- 1707: -29,-5
- 1708: -30,-7
- 1709: -31,-8
- 1710: -31,-10
- 1711: -30,-9
- 1712: -30,-8
- 1713: -30,-11
- 1714: -29,-14
- 1715: -29,-15
- 1716: -29,-13
- 1717: -30,-13
- 1718: -31,-17
- 1719: -30,-19
- 1720: -30,-20
- 1721: -29,-19
- 1722: -29,-20
- 1723: -29,-21
- 1724: -29,-24
- 1725: -31,-23
- 1726: -31,-24
- 1813: -22,3
- 1814: -23,2
- 1815: -22,1
- 1816: -23,3
- 1817: -26,1
- 1818: -15,2
- 1819: -14,3
- 1820: -14,3
- 1821: -15,4
- 1869: -1,4
- 1914: 16,1
- 1915: 16,1
- 1916: 14,3
- 1917: 13,3
- 1918: 11,2
- 1919: 9,3
- 1920: 9,4
- 1921: 7,5
- 1922: 6,4
- 1923: 7,2
- 1924: 5,2
- 1925: 4,5
- 1926: 4,5
- 1927: 2,5
- 1928: 3,3
- 1929: 2,6
- 1930: 4,6
- 1931: 4,5
- 1932: 3,2
- 1933: 3,1
- 1934: 4,1
- 1935: 7,1
- 1936: 8,1
- 1937: 11,4
- 1938: 10,5
- 1939: 12,5
- 1940: 15,2
- 1941: 16,3
- 1942: 17,4
- 1943: 17,4
- 1944: 17,1
- 1945: 19,1
- 2019: 27,1
- 2020: 30,3
- 2021: 31,3
- 2022: 31,1
- 2023: 28,4
- 2024: 30,4
- 2025: 34,3
- 2026: 33,1
- 2027: 34,4
- 2028: 34,5
- 2029: 37,4
- 2030: 35,1
- 2031: 37,1
- 2032: 39,3
- 2033: 38,2
- 2034: 37,2
- 2035: 37,2
- 2036: 41,2
- 2037: 42,4
- 2038: 44,5
- 2039: 44,2
- 2040: 43,1
- 2041: 45,4
- 2042: 45,6
- 2043: 43,6
- 2044: 42,5
- 2045: 44,2
- 2046: 48,7
- 2047: 46,9
- 2048: 47,9
- 2049: 47,8
- 2050: 48,8
- 2051: 48,7
- 2052: 46,5
- 2053: 48,3
- 2054: 49,3
- 2055: 49,4
- 2056: 49,4
- 2057: 49,1
- 2058: 47,1
- 2059: 45,1
- 2060: 46,2
- 2061: 52,1
- 2062: 51,3
- 2063: 53,3
- 2064: 53,3
- 2065: 53,1
- 2066: 54,2
- 2067: 54,3
- 2204: 37,9
- 2205: 34,16
- 2206: 37,17
- 2207: 38,18
- 2252: 27,-1
- 2253: 27,-3
- 2254: 29,-4
- 2255: 28,-3
- 2256: 29,-4
- 2257: 29,-7
- 2258: 29,-9
- 2259: 28,-10
- 2260: 28,-9
- 2261: 29,-10
- 2262: 29,-10
- 2263: 28,-12
- 2264: 28,-14
- 2265: 27,-14
- 2266: 27,-14
- 2267: 29,-12
- 2268: 29,-16
- 2269: 27,-19
- 2305: -2,27
- 2306: 0,23
- 2307: 1,23
- 2332: -9,17
- 2333: -8,15
- 2334: -9,15
- 2335: -10,14
- 2336: -13,12
- 2337: -15,12
- 2338: -14,11
- 2429: -5,18
- 2430: -5,18
- 2431: -5,17
- 2432: -6,17
- 2433: -6,16
- 2437: -6,16
- 2438: -5,15
- 2439: -5,13
- 2440: -5,13
- 2441: -4,13
- 2462: -5,9
- 2466: -4,10
- 2520: 2,8
- 2521: 4,9
- 2522: 4,10
- 2523: 3,9
- 2524: 4,12
- 2525: 4,13
- 2526: 2,15
- 2527: 2,14
- 2528: 4,15
- 2567: 3,28
- 2568: 4,28
- 2569: 5,28
- 2570: 7,28
- 2571: 7,28
- 2572: 6,27
- 2573: 5,26
- 2574: 5,26
- 2575: 8,27
- 2581: 10,23
- 2582: 11,23
- 2876: 48,26
- 2877: 49,26
- 2878: 48,25
- 2879: 47,25
- 2880: 46,26
- 2881: 45,26
- 2882: 45,26
- 2883: 40,26
- 2884: 43,26
- 2885: 43,26
- 2886: 42,24
- 2887: 41,24
- 2888: 42,25
- 2889: 42,26
- 2890: 41,26
- 2891: 40,25
- 2892: 39,26
- 3109: -1,32
+ 899: -46,14
+ 900: -45,13
+ 901: -44,18
+ 902: -44,18
+ 903: -44,18
+ 904: -52,16
+ 905: -54,8
+ 906: -54,7
+ 907: -54,6
+ 908: -51,6
+ 909: -51,4
+ 910: -52,3
+ 911: -54,3
+ 912: -54,2
+ 913: -55,2
+ 914: -55,3
+ 915: -55,1
+ 916: -52,1
+ 917: -49,2
+ 918: -48,3
+ 919: -49,1
+ 920: -49,4
+ 921: -49,6
+ 922: -49,7
+ 1000: -45,11
+ 1001: -45,11
+ 1056: -34,9
+ 1118: -46,3
+ 1119: -46,5
+ 1120: -44,3
+ 1121: -43,1
+ 1122: -40,2
+ 1123: -37,1
+ 1124: -35,4
+ 1146: -50,2
+ 1147: -31,-1
+ 1148: -30,-2
+ 1149: -29,-3
+ 1150: -29,-5
+ 1151: -30,-7
+ 1152: -31,-8
+ 1153: -31,-10
+ 1154: -30,-9
+ 1155: -30,-8
+ 1156: -30,-11
+ 1157: -29,-14
+ 1158: -29,-15
+ 1159: -29,-13
+ 1160: -30,-13
+ 1161: -31,-17
+ 1162: -30,-19
+ 1163: -30,-20
+ 1164: -29,-19
+ 1165: -29,-20
+ 1166: -29,-21
+ 1167: -29,-24
+ 1168: -31,-23
+ 1169: -31,-24
+ 1256: -22,3
+ 1257: -23,2
+ 1258: -22,1
+ 1259: -23,3
+ 1260: -26,1
+ 1261: -15,2
+ 1262: -14,3
+ 1263: -14,3
+ 1264: -15,4
+ 1312: -1,4
+ 1357: 16,1
+ 1358: 16,1
+ 1359: 14,3
+ 1360: 13,3
+ 1361: 11,2
+ 1363: 9,4
+ 1364: 7,5
+ 1367: 5,2
+ 1368: 4,5
+ 1369: 4,5
+ 1370: 2,5
+ 1371: 3,3
+ 1372: 2,6
+ 1373: 4,6
+ 1374: 4,5
+ 1375: 3,2
+ 1376: 3,1
+ 1377: 4,1
+ 1378: 7,1
+ 1379: 8,1
+ 1380: 11,4
+ 1381: 10,5
+ 1382: 12,5
+ 1383: 15,2
+ 1384: 16,3
+ 1385: 17,4
+ 1386: 17,4
+ 1387: 17,1
+ 1388: 19,1
+ 1462: 27,1
+ 1463: 30,3
+ 1464: 31,3
+ 1465: 31,1
+ 1466: 28,4
+ 1467: 30,4
+ 1468: 34,3
+ 1469: 33,1
+ 1470: 34,4
+ 1471: 34,5
+ 1472: 37,4
+ 1473: 35,1
+ 1474: 37,1
+ 1475: 39,3
+ 1476: 38,2
+ 1477: 37,2
+ 1478: 37,2
+ 1479: 41,2
+ 1480: 42,4
+ 1481: 44,5
+ 1482: 44,2
+ 1483: 43,1
+ 1484: 45,4
+ 1485: 45,6
+ 1486: 43,6
+ 1487: 42,5
+ 1488: 44,2
+ 1489: 48,7
+ 1490: 46,9
+ 1491: 47,9
+ 1492: 47,8
+ 1493: 48,8
+ 1494: 48,7
+ 1495: 46,5
+ 1496: 48,3
+ 1497: 49,3
+ 1498: 49,4
+ 1499: 49,4
+ 1500: 49,1
+ 1501: 47,1
+ 1502: 45,1
+ 1503: 46,2
+ 1504: 52,1
+ 1505: 51,3
+ 1506: 53,3
+ 1507: 53,3
+ 1508: 53,1
+ 1509: 54,2
+ 1510: 54,3
+ 1647: 37,9
+ 1648: 34,16
+ 1649: 37,17
+ 1650: 38,18
+ 1695: 27,-1
+ 1696: 27,-3
+ 1697: 29,-4
+ 1698: 28,-3
+ 1699: 29,-4
+ 1700: 29,-7
+ 1701: 29,-9
+ 1702: 28,-10
+ 1703: 28,-9
+ 1704: 29,-10
+ 1705: 29,-10
+ 1706: 28,-12
+ 1707: 28,-14
+ 1708: 27,-14
+ 1709: 27,-14
+ 1710: 29,-12
+ 1711: 29,-16
+ 1712: 27,-19
+ 1748: -2,27
+ 1749: 0,23
+ 1750: 1,23
+ 1775: -9,17
+ 1776: -8,15
+ 1777: -9,15
+ 1778: -10,14
+ 1779: -13,12
+ 1780: -15,12
+ 1781: -14,11
+ 1851: -5,18
+ 1852: -5,18
+ 1853: -5,17
+ 1854: -6,17
+ 1855: -6,16
+ 1859: -6,16
+ 1860: -5,15
+ 1861: -5,13
+ 1862: -5,13
+ 1863: -4,13
+ 1881: -5,9
+ 1882: -4,10
+ 1936: 2,8
+ 1937: 4,9
+ 1938: 4,10
+ 1939: 3,9
+ 1940: 4,12
+ 1941: 4,13
+ 1942: 2,15
+ 1943: 2,14
+ 1944: 4,15
+ 1977: 3,28
+ 1978: 4,28
+ 1979: 5,28
+ 1980: 7,28
+ 1981: 7,28
+ 1982: 6,27
+ 1983: 5,26
+ 1984: 5,26
+ 1985: 8,27
+ 1990: 10,23
+ 1991: 11,23
+ 2274: 48,26
+ 2275: 49,26
+ 2276: 48,25
+ 2277: 47,25
+ 2278: 46,26
+ 2279: 45,26
+ 2280: 45,26
+ 2281: 40,26
+ 2282: 43,26
+ 2283: 43,26
+ 2284: 42,24
+ 2285: 41,24
+ 2286: 42,25
+ 2287: 42,26
+ 2288: 41,26
+ 2289: 40,25
+ 2290: 39,26
+ 2507: -1,32
+ 2959: 4,3
+ 2960: 6,4
+ 2961: 11,2
+ 2997: -9,4
+ 2998: -10,4
+ 2999: -8,2
+ 3000: -12,4
+ 3001: -11,2
+ 3002: -12,2
+ 3003: -12,1
+ 3004: -13,4
+ 3005: -13,5
- node:
cleanable: True
zIndex: 180
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 3448: 7,55
- 3449: 5,56
- 3450: 5,57
- 3451: 4,50
- 3452: 7,49
- 3453: 8,48
- 3454: 8,45
- 3455: 8,44
- 3456: 7,44
- 3457: 8,41
- 3458: 5,41
- 3459: 3,41
- 3460: 3,40
- 3461: 2,40
- 3462: 1,39
- 3463: -1,36
- 3464: 0,37
- 3465: 2,37
- 3466: 2,37
- 3467: -1,40
- 3468: -3,47
+ 2794: 7,55
+ 2795: 5,56
+ 2796: 5,57
+ 2797: 4,50
+ 2798: 7,49
+ 2799: 8,48
+ 2800: 8,45
+ 2801: 8,44
+ 2802: 7,44
+ 2803: 8,41
+ 2804: 5,41
+ 2805: 3,41
+ 2806: 3,40
+ 2807: 2,40
+ 2808: 1,39
+ 2809: -1,36
+ 2810: 0,37
+ 2811: 2,37
+ 2812: 2,37
+ 2813: -1,40
+ 2814: -3,47
- node:
cleanable: True
color: '#334E6DD0'
id: FullTileOverlayGreyscale
decals:
- 1509: -50,3
+ 952: -50,3
- node:
color: '#35526FFF'
id: FullTileOverlayGreyscale
decals:
- 1416: -53,7
- 1417: -53,6
- 1418: -54,6
- 1419: -52,6
- 1420: -53,5
- 1421: -50,4
- 1422: -50,2
- 1423: -51,3
- 1424: -49,3
+ 859: -53,7
+ 860: -53,6
+ 861: -54,6
+ 862: -52,6
+ 863: -53,5
+ 864: -50,4
+ 865: -50,2
+ 866: -51,3
+ 867: -49,3
- node:
color: '#9FED5896'
id: HalfTileOverlayGreyscale
decals:
- 584: -30,-26
+ 400: -30,-26
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale
decals:
- 593: 28,-26
+ 409: 28,-26
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale
decals:
- 605: 57,1
- 606: 56,1
- 2014: 47,9
- 2015: 48,9
+ 421: 57,1
+ 422: 56,1
+ 1457: 47,9
+ 1458: 48,9
- node:
color: '#FFA5007F'
id: HalfTileOverlayGreyscale
decals:
- 931: 58,26
- 932: 57,26
- 934: 56,25
- 935: 57,25
+ 656: 58,26
+ 657: 57,26
+ 659: 56,25
+ 660: 57,25
- node:
color: '#9FED5896'
id: HalfTileOverlayGreyscale180
decals:
- 578: -31,-28
- 579: -30,-28
- 580: -29,-28
- 583: -30,-27
+ 394: -31,-28
+ 395: -30,-28
+ 396: -29,-28
+ 399: -30,-27
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale180
decals:
- 601: 28,-28
+ 417: 28,-28
- node:
color: '#FFA5007F'
id: HalfTileOverlayGreyscale180
decals:
- 939: 57,24
+ 664: 57,24
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale270
decals:
- 607: 58,2
- 608: 58,3
+ 423: 58,2
+ 424: 58,3
- node:
color: '#52B4E996'
id: HalfTileOverlayGreyscale90
decals:
- 576: -59,2
+ 392: -59,2
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 189: 6,51
+ 164: 6,51
- node:
zIndex: 180
angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 3303: -1,42
- 3304: -1,46
+ 2650: -1,42
+ 2651: -1,46
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 185: 6,52
- 186: 6,56
+ 162: 6,52
+ 163: 6,56
- node:
zIndex: 180
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: LoadingArea
decals:
- 3305: 5,42
- 3306: 5,46
+ 2652: 5,42
+ 2653: 5,46
- node:
color: '#DE3A3A96'
id: MiniTileCheckerAOverlay
decals:
- 474: 36,13
- 475: 36,14
- 476: 36,15
- 477: 37,15
- 478: 38,15
- 479: 38,14
- 480: 38,13
- 481: 37,13
- 482: 37,14
+ 290: 36,13
+ 291: 36,14
+ 292: 36,15
+ 293: 37,15
+ 294: 38,15
+ 295: 38,14
+ 296: 38,13
+ 297: 37,13
+ 298: 37,14
- node:
color: '#FFFFFFFF'
id: MiniTileCheckerAOverlay
decals:
- 373: -50,17
- 374: -49,17
- 375: -48,17
- 376: -48,18
- 377: -49,18
- 378: -50,18
- 379: -50,18
+ 189: -50,17
+ 190: -49,17
+ 191: -48,17
+ 192: -48,18
+ 193: -49,18
+ 194: -50,18
+ 195: -50,18
- node:
color: '#52B4E996'
id: MiniTileCheckerBOverlay
decals:
- 367: -50,17
- 368: -49,17
- 369: -48,17
- 370: -48,18
- 371: -49,18
- 372: -50,18
+ 183: -50,17
+ 184: -49,17
+ 185: -48,17
+ 186: -48,18
+ 187: -49,18
+ 188: -50,18
- node:
color: '#52B4E9FF'
id: MiniTileCheckerBOverlay
decals:
- 1523: -46,11
- 1524: -45,11
- 1525: -44,11
- 1526: -44,10
- 1527: -45,10
- 1528: -46,10
- 1529: -46,9
- 1530: -45,9
- 1531: -44,9
- 1532: -44,8
- 1533: -45,8
- 1534: -46,8
+ 966: -46,11
+ 967: -45,11
+ 968: -44,11
+ 969: -44,10
+ 970: -45,10
+ 971: -46,10
+ 972: -46,9
+ 973: -45,9
+ 974: -44,9
+ 975: -44,8
+ 976: -45,8
+ 977: -46,8
- node:
color: '#FFFFFFFF'
id: MiniTileOverlay
decals:
- 1511: -46,11
- 1512: -45,11
- 1513: -44,11
- 1514: -44,10
- 1515: -45,10
- 1516: -46,10
- 1517: -46,9
- 1518: -45,9
- 1519: -44,9
- 1520: -44,8
- 1521: -45,8
- 1522: -46,8
+ 954: -46,11
+ 955: -45,11
+ 956: -44,11
+ 957: -44,10
+ 958: -45,10
+ 959: -46,10
+ 960: -46,9
+ 961: -45,9
+ 962: -44,9
+ 963: -44,8
+ 964: -45,8
+ 965: -46,8
- node:
color: '#9FED5896'
id: QuarterTileOverlayGreyscale
decals:
- 581: -31,-28
- 590: -29,-26
+ 397: -31,-28
+ 406: -29,-26
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale
decals:
- 594: 29,-26
- 596: 29,-27
- 603: 27,-28
+ 410: 29,-26
+ 412: 29,-27
+ 419: 27,-28
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale
decals:
- 409: 27,5
- 410: 28,5
- 411: 29,5
- 412: 30,5
- 413: 31,5
- 414: 32,5
- 415: 33,5
- 416: 34,5
- 417: 35,5
- 418: 36,5
- 419: 45,6
- 420: 45,7
- 421: 45,8
- 422: 45,9
- 423: 46,9
- 610: 57,2
- 2006: 37,5
- 2007: 38,5
- 2008: 39,5
- 2009: 40,5
- 2010: 41,5
- 2011: 42,6
- 2012: 43,6
- 2013: 44,6
+ 225: 27,5
+ 226: 28,5
+ 227: 29,5
+ 228: 30,5
+ 229: 31,5
+ 230: 32,5
+ 231: 33,5
+ 232: 34,5
+ 233: 35,5
+ 234: 36,5
+ 235: 45,6
+ 236: 45,7
+ 237: 45,8
+ 238: 45,9
+ 239: 46,9
+ 426: 57,2
+ 1449: 37,5
+ 1450: 38,5
+ 1451: 39,5
+ 1452: 40,5
+ 1453: 41,5
+ 1454: 42,6
+ 1455: 43,6
+ 1456: 44,6
- node:
color: '#52B4E996'
id: QuarterTileOverlayGreyscale180
decals:
- 1429: -60,1
+ 872: -60,1
- node:
color: '#9FED5896'
id: QuarterTileOverlayGreyscale180
decals:
- 582: -31,-27
- 587: -29,-26
+ 398: -31,-27
+ 403: -29,-26
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale180
decals:
- 595: 29,-26
- 598: 29,-27
- 602: 27,-28
+ 411: 29,-26
+ 414: 29,-27
+ 418: 27,-28
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale180
decals:
- 609: 57,3
- 611: 56,2
- 899: 31,20
- 900: 32,20
- 901: 33,20
- 902: 33,21
- 903: 34,21
- 904: 34,22
+ 425: 57,3
+ 427: 56,2
+ 631: 31,20
+ 632: 32,20
+ 633: 33,20
+ 634: 33,21
+ 635: 34,21
+ 636: 34,22
- node:
color: '#52B4E996'
id: QuarterTileOverlayGreyscale270
decals:
- 1430: -58,1
+ 873: -58,1
- node:
color: '#9FED5896'
id: QuarterTileOverlayGreyscale270
decals:
- 585: -31,-26
- 589: -29,-27
+ 401: -31,-26
+ 405: -29,-27
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale270
decals:
- 591: 27,-26
- 600: 29,-28
+ 407: 27,-26
+ 416: 29,-28
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale270
decals:
- 912: 39,23
- 913: 39,22
- 914: 40,22
- 915: 41,22
- 916: 42,22
- 917: 43,22
- 918: 44,22
- 919: 45,22
- 920: 46,22
- 921: 47,22
- 922: 48,22
- 923: 49,22
- 924: 50,22
- 925: 51,22
- 926: 52,22
- 927: 53,22
- 930: 54,24
+ 637: 39,23
+ 638: 39,22
+ 639: 40,22
+ 640: 41,22
+ 641: 42,22
+ 642: 43,22
+ 643: 44,22
+ 644: 45,22
+ 645: 46,22
+ 646: 47,22
+ 647: 48,22
+ 648: 49,22
+ 649: 50,22
+ 650: 51,22
+ 651: 52,22
+ 652: 53,22
+ 655: 54,24
- node:
color: '#52B4E996'
id: QuarterTileOverlayGreyscale90
decals:
- 1425: -60,2
+ 868: -60,2
- node:
color: '#9FED5896'
id: QuarterTileOverlayGreyscale90
decals:
- 586: -31,-26
- 588: -29,-27
+ 402: -31,-26
+ 404: -29,-27
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale90
decals:
- 592: 27,-26
- 597: 28,-27
- 599: 29,-28
+ 408: 27,-26
+ 413: 28,-27
+ 415: 29,-28
- node:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale90
decals:
- 401: 49,5
- 402: 49,4
- 403: 49,3
- 404: 50,3
- 405: 51,3
- 406: 52,3
- 407: 53,3
- 408: 54,3
- 424: 46,9
- 425: 48,5
- 928: 53,22
- 929: 53,23
- 2016: 48,6
- 2017: 48,7
- 2018: 48,8
+ 217: 49,5
+ 218: 49,4
+ 219: 49,3
+ 220: 50,3
+ 221: 51,3
+ 222: 52,3
+ 223: 53,3
+ 224: 54,3
+ 240: 46,9
+ 241: 48,5
+ 653: 53,22
+ 654: 53,23
+ 1459: 48,6
+ 1460: 48,7
+ 1461: 48,8
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale90
decals:
- 1559: -46,5
- 1560: -45,5
- 1561: -44,5
- 1562: -43,5
- 1563: -42,5
- 1564: -39,5
- 1565: -38,5
- 1566: -37,5
- 1567: -36,5
+ 1002: -46,5
+ 1003: -45,5
+ 1004: -44,5
+ 1005: -43,5
+ 1006: -42,5
+ 1007: -39,5
+ 1008: -38,5
+ 1009: -37,5
+ 1010: -36,5
- node:
color: '#FFFFFFFF'
id: SpaceStationSign1
decals:
- 1854: -13,3
- 1999: 5,3
+ 2915: -11,4
+ 2940: 7,4
- node:
- cleanable: True
color: '#FFFFFFFF'
- id: SpaceStationSign1
+ id: SpaceStationSign10
+ decals:
+ 2920: -10,2
+ 2941: 8,2
+ - node:
+ color: '#FFFFFFFF'
+ id: SpaceStationSign11
decals:
- 1853: -13,3
+ 2921: -9,2
+ 2942: 9,2
- node:
color: '#FFFFFFFF'
id: SpaceStationSign2
decals:
- 1855: -12,3
- 2000: 6,3
+ 2922: -10,4
+ 2943: 8,4
- node:
color: '#FFFFFFFF'
id: SpaceStationSign3
decals:
- 1856: -11,3
- 2001: 7,3
+ 2912: -13,3
+ 2939: 5,3
- node:
color: '#FFFFFFFF'
id: SpaceStationSign4
decals:
- 1857: -10,3
- 2002: 8,3
+ 2913: -12,3
+ 2938: 6,3
- node:
color: '#FFFFFFFF'
id: SpaceStationSign5
decals:
- 1858: -9,3
- 2003: 9,3
+ 2914: -11,3
+ 2937: 7,3
- node:
color: '#FFFFFFFF'
id: SpaceStationSign6
decals:
- 1859: -8,3
- 2004: 10,3
+ 2916: -10,3
+ 2936: 8,3
- node:
color: '#FFFFFFFF'
id: SpaceStationSign7
decals:
- 1860: -7,3
- 2005: 11,3
+ 2917: -9,3
+ 2935: 9,3
+ - node:
+ color: '#FFFFFFFF'
+ id: SpaceStationSign8
+ decals:
+ 2918: -8,3
+ 2934: 10,3
+ - node:
+ color: '#FFFFFFFF'
+ id: SpaceStationSign9
+ decals:
+ 2919: -7,3
+ 2933: 11,3
- node:
color: '#DE3A3A96'
id: StandClear
decals:
- 572: 42,8
- 573: 43,8
- 574: 43,9
- 575: 42,9
- 895: 36,21
- 896: 37,21
- 897: 37,22
- 898: 36,22
+ 388: 42,8
+ 389: 43,8
+ 390: 43,9
+ 391: 42,9
+ 627: 36,21
+ 628: 37,21
+ 629: 37,22
+ 630: 36,22
- node:
color: '#DE3A3A96'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 604: 58,1
+ 420: 58,1
- node:
color: '#FFA5007F'
id: ThreeQuarterTileOverlayGreyscale
decals:
- 933: 56,26
+ 658: 56,26
- node:
color: '#52B4E996'
id: ThreeQuarterTileOverlayGreyscale180
decals:
- 577: -59,3
- 1428: -59,1
+ 393: -59,3
+ 871: -59,1
- node:
color: '#FFFFFFFF'
id: WarnBox
@@ -3460,98 +3549,99 @@ entities:
color: '#52B4E996'
id: WarnBoxGreyscale
decals:
- 362: -36,6
- 363: -37,6
- 364: -38,6
+ 178: -36,6
+ 179: -37,6
+ 180: -38,6
- node:
color: '#DE3A3A96'
id: WarnBoxGreyscale
decals:
- 365: -42,6
- 366: -43,6
+ 181: -42,6
+ 182: -43,6
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
decals:
- 554: 43,18
+ 370: 43,18
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
decals:
- 555: 45,18
+ 371: 45,18
- node:
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 34: 5,16
- 35: 5,15
- 36: 9,16
- 37: 9,15
- 50: -7,15
- 51: -7,16
- 52: -3,6
- 53: -3,5
- 54: -3,4
- 55: -3,3
- 56: -3,2
- 57: 1,2
- 58: 1,3
- 59: 1,4
- 60: 1,5
- 61: 1,6
- 91: 55,1
- 92: 55,2
- 93: 55,3
- 99: 32,10
- 100: 26,4
- 101: 26,3
- 102: 26,2
- 103: 26,1
- 124: -28,2
- 125: -28,3
- 126: -28,4
- 153: -26,12
- 154: -47,14
- 155: -47,17
- 156: -51,17
- 157: -47,8
- 158: -47,2
- 159: -47,3
- 160: -47,4
- 161: -57,1
- 162: -57,3
- 813: 2,26
- 814: 2,27
- 815: 2,28
- 829: 55,26
- 830: 55,25
- 831: 55,24
- 832: 38,24
- 833: 38,25
- 834: 38,26
- 835: 35,24
- 836: 35,25
- 837: 35,26
- 838: 12,23
- 839: 12,24
- 840: 12,25
- 841: 12,26
- 2364: 1,18
- 2365: 1,17
- 2366: 1,16
- 2367: 1,15
- 2372: -3,15
- 2373: -3,16
- 2374: -3,17
- 2375: -3,18
+ 22: 5,16
+ 23: 5,15
+ 24: 9,16
+ 25: 9,15
+ 34: -7,15
+ 35: -7,16
+ 36: -3,6
+ 37: -3,5
+ 38: -3,4
+ 39: -3,3
+ 40: -3,2
+ 41: 1,2
+ 42: 1,3
+ 43: 1,4
+ 44: 1,5
+ 45: 1,6
+ 75: 55,1
+ 76: 55,2
+ 77: 55,3
+ 83: 32,10
+ 84: 26,4
+ 85: 26,3
+ 86: 26,2
+ 87: 26,1
+ 108: -28,2
+ 109: -28,3
+ 110: -28,4
+ 137: -26,12
+ 138: -47,14
+ 139: -47,17
+ 140: -51,17
+ 141: -47,8
+ 142: -47,2
+ 143: -47,3
+ 144: -47,4
+ 145: -57,1
+ 146: -57,3
+ 554: 2,26
+ 555: 2,27
+ 556: 2,28
+ 570: 55,26
+ 571: 55,25
+ 572: 55,24
+ 573: 38,24
+ 574: 38,25
+ 575: 38,26
+ 576: 35,24
+ 577: 35,25
+ 578: 35,26
+ 579: 12,23
+ 580: 12,24
+ 581: 12,25
+ 582: 12,26
+ 1798: 1,18
+ 1799: 1,17
+ 1800: 1,16
+ 1801: 1,15
+ 1806: -3,15
+ 1807: -3,16
+ 1808: -3,17
+ 1809: -3,18
+ 3018: -28,1
- node:
zIndex: 180
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 3316: 8,53
- 3317: 8,54
- 3318: 8,55
+ 2663: 8,53
+ 2664: 8,54
+ 2665: 8,55
- node:
color: '#FFFFFFFF'
id: WarnLineN
@@ -3565,121 +3655,122 @@ entities:
16: 0,19
17: -1,19
18: -2,19
- 46: 7,17
- 72: -6,7
- 73: -5,7
- 74: -4,7
- 75: 4,7
- 76: 3,7
- 77: 2,7
- 94: 43,10
- 95: 42,10
- 96: 43,7
- 97: 42,7
- 108: 28,0
- 109: 29,0
- 110: 27,0
- 119: 27,-25
- 120: 28,-25
- 121: 29,-25
- 122: 28,-11
- 123: 27,-11
- 130: -29,0
- 131: -30,0
- 132: -31,0
- 140: -30,-11
- 141: -29,-25
- 142: -30,-25
- 143: -31,-25
- 144: -40,7
- 145: -41,7
- 146: -32,13
- 147: -28,13
- 172: -52,9
- 173: -53,9
- 174: -45,12
- 553: 44,18
- 842: 36,20
- 843: 37,20
- 844: 36,23
- 845: 37,23
- 851: 48,21
- 852: 30,18
- 1572: -41,8
- 1573: -40,8
+ 30: 7,17
+ 56: -6,7
+ 57: -5,7
+ 58: -4,7
+ 59: 4,7
+ 60: 3,7
+ 61: 2,7
+ 78: 43,10
+ 79: 42,10
+ 80: 43,7
+ 81: 42,7
+ 92: 28,0
+ 93: 29,0
+ 94: 27,0
+ 103: 27,-25
+ 104: 28,-25
+ 105: 29,-25
+ 106: 28,-11
+ 107: 27,-11
+ 114: -29,0
+ 115: -30,0
+ 116: -31,0
+ 124: -30,-11
+ 125: -29,-25
+ 126: -30,-25
+ 127: -31,-25
+ 128: -40,7
+ 129: -41,7
+ 130: -32,13
+ 131: -28,13
+ 156: -52,9
+ 157: -53,9
+ 158: -45,12
+ 369: 44,18
+ 583: 36,20
+ 584: 37,20
+ 585: 36,23
+ 586: 37,23
+ 592: 48,21
+ 593: 30,18
+ 1015: -41,8
+ 1016: -40,8
- node:
color: '#FFFFFFFF'
id: WarnLineS
decals:
- 42: 5,16
- 43: 5,15
- 44: 9,16
- 45: 9,15
- 48: -7,15
- 49: -7,16
- 62: -3,2
- 63: -3,3
- 64: -3,4
- 65: -3,5
- 66: -3,6
- 67: 1,6
- 68: 1,5
- 69: 1,4
- 70: 1,3
- 71: 1,2
- 88: 55,1
- 89: 55,2
- 90: 55,3
- 98: 32,10
- 104: 26,4
- 105: 26,2
- 106: 26,3
- 107: 26,1
- 127: -28,2
- 128: -28,3
- 129: -28,4
- 152: -26,12
- 163: -57,3
- 164: -57,1
- 165: -47,2
- 166: -47,3
- 167: -47,4
- 168: -47,8
- 169: -47,14
- 170: -47,17
- 171: -51,17
- 810: 2,26
- 811: 2,27
- 812: 2,28
- 816: 12,23
- 817: 12,24
- 818: 12,25
- 819: 12,26
- 820: 35,24
- 821: 35,25
- 822: 35,26
- 823: 38,26
- 824: 38,25
- 825: 38,24
- 826: 55,24
- 827: 55,25
- 828: 55,26
- 2368: -3,18
- 2369: -3,17
- 2370: -3,16
- 2371: -3,15
- 2376: 1,15
- 2377: 1,16
- 2378: 1,17
- 2379: 1,18
+ 26: 5,16
+ 27: 5,15
+ 28: 9,16
+ 29: 9,15
+ 32: -7,15
+ 33: -7,16
+ 46: -3,2
+ 47: -3,3
+ 48: -3,4
+ 49: -3,5
+ 50: -3,6
+ 51: 1,6
+ 52: 1,5
+ 53: 1,4
+ 54: 1,3
+ 55: 1,2
+ 72: 55,1
+ 73: 55,2
+ 74: 55,3
+ 82: 32,10
+ 88: 26,4
+ 89: 26,2
+ 90: 26,3
+ 91: 26,1
+ 111: -28,2
+ 112: -28,3
+ 113: -28,4
+ 136: -26,12
+ 147: -57,3
+ 148: -57,1
+ 149: -47,2
+ 150: -47,3
+ 151: -47,4
+ 152: -47,8
+ 153: -47,14
+ 154: -47,17
+ 155: -51,17
+ 551: 2,26
+ 552: 2,27
+ 553: 2,28
+ 557: 12,23
+ 558: 12,24
+ 559: 12,25
+ 560: 12,26
+ 561: 35,24
+ 562: 35,25
+ 563: 35,26
+ 564: 38,26
+ 565: 38,25
+ 566: 38,24
+ 567: 55,24
+ 568: 55,25
+ 569: 55,26
+ 1802: -3,18
+ 1803: -3,17
+ 1804: -3,16
+ 1805: -3,15
+ 1810: 1,15
+ 1811: 1,16
+ 1812: 1,17
+ 1813: 1,18
+ 3019: -28,1
- node:
zIndex: 180
color: '#FFFFFFFF'
id: WarnLineS
decals:
- 3300: -3,43
- 3301: -3,44
- 3302: -3,45
+ 2647: -3,43
+ 2648: -3,44
+ 2649: -3,45
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -3693,100 +3784,100 @@ entities:
19: -2,19
20: 0,19
21: -1,19
- 47: 7,17
- 78: -4,7
- 79: -5,7
- 80: -6,7
- 81: 4,7
- 82: 2,7
- 83: 3,7
- 84: 42,10
- 85: 43,10
- 86: 43,7
- 87: 42,7
- 111: 29,0
- 112: 28,0
- 113: 27,0
- 114: 28,-11
- 115: 27,-11
- 116: 29,-25
- 117: 28,-25
- 118: 27,-25
- 133: -29,0
- 134: -30,0
- 135: -31,0
- 136: -29,-25
- 137: -30,-25
- 138: -31,-25
- 139: -30,-11
- 148: -41,7
- 149: -40,7
- 150: -32,13
- 151: -28,13
- 175: -52,9
- 176: -53,9
- 177: -45,12
- 359: -29,15
- 360: -28,15
- 361: -27,15
- 846: 37,23
- 847: 36,23
- 848: 37,20
- 849: 36,20
- 850: 48,21
- 853: 30,18
- 1568: -40,6
- 1569: -41,6
- 1570: -41,9
- 1571: -40,9
+ 31: 7,17
+ 62: -4,7
+ 63: -5,7
+ 64: -6,7
+ 65: 4,7
+ 66: 2,7
+ 67: 3,7
+ 68: 42,10
+ 69: 43,10
+ 70: 43,7
+ 71: 42,7
+ 95: 29,0
+ 96: 28,0
+ 97: 27,0
+ 98: 28,-11
+ 99: 27,-11
+ 100: 29,-25
+ 101: 28,-25
+ 102: 27,-25
+ 117: -29,0
+ 118: -30,0
+ 119: -31,0
+ 120: -29,-25
+ 121: -30,-25
+ 122: -31,-25
+ 123: -30,-11
+ 132: -41,7
+ 133: -40,7
+ 134: -32,13
+ 135: -28,13
+ 159: -52,9
+ 160: -53,9
+ 161: -45,12
+ 175: -29,15
+ 176: -28,15
+ 177: -27,15
+ 587: 37,23
+ 588: 36,23
+ 589: 37,20
+ 590: 36,20
+ 591: 48,21
+ 594: 30,18
+ 1011: -40,6
+ 1012: -41,6
+ 1013: -41,9
+ 1014: -40,9
- node:
color: '#E69FAEFF'
id: WoodTrimThinCornerNe
decals:
- 707: 26,13
+ 523: 26,13
- node:
color: '#E69FAEFF'
id: WoodTrimThinCornerNw
decals:
- 706: 24,13
+ 522: 24,13
- node:
color: '#E69FAEFF'
id: WoodTrimThinCornerSe
decals:
- 708: 26,12
+ 524: 26,12
- node:
color: '#E69FAEFF'
id: WoodTrimThinCornerSw
decals:
- 709: 24,12
+ 525: 24,12
- node:
color: '#E69FAEFF'
id: WoodTrimThinLineN
decals:
- 705: 25,13
+ 521: 25,13
- node:
color: '#E69FAEFF'
id: WoodTrimThinLineS
decals:
- 710: 25,12
+ 526: 25,12
- node:
zIndex: 180
color: '#FF00FFFF'
id: clown
decals:
- 3576: 6.027291,42.00365
+ 2911: 6.027291,42.00365
- node:
color: '#9BC516FF'
id: shop
decals:
- 799: -13,5
- 800: 11,5
+ 549: -13,5
+ 550: 11,5
- node:
zIndex: 180
color: '#FFFF00FF'
id: trade
decals:
- 3277: 2,38
+ 2630: 2,38
type: DecalGrid
- version: 2
data:
@@ -8540,6 +8631,11 @@ entities:
- pos: -0.5,30.5
parent: 2173
type: Transform
+ - uid: 2158
+ components:
+ - pos: 4.5,25.5
+ parent: 2173
+ type: Transform
- uid: 2167
components:
- pos: 15.5,26.5
@@ -8671,6 +8767,11 @@ entities:
type: Transform
- enabled: True
type: AmbientSound
+ - uid: 3031
+ components:
+ - pos: 30.5,23.5
+ parent: 2173
+ type: Transform
- uid: 3143
components:
- pos: 31.5,24.5
@@ -12489,13 +12590,6 @@ entities:
- pos: 5.5,25.5
parent: 2173
type: Transform
- - uid: 3939
- components:
- - pos: 5.5,24.5
- parent: 2173
- type: Transform
- - enabled: True
- type: AmbientSound
- uid: 3940
components:
- pos: 5.5,23.5
@@ -12536,13 +12630,6 @@ entities:
- pos: 3.5,23.5
parent: 2173
type: Transform
- - uid: 3948
- components:
- - pos: 3.5,24.5
- parent: 2173
- type: Transform
- - enabled: True
- type: AmbientSound
- uid: 3949
components:
- pos: 3.5,25.5
@@ -12573,13 +12660,6 @@ entities:
- pos: 8.5,23.5
parent: 2173
type: Transform
- - uid: 3955
- components:
- - pos: 8.5,24.5
- parent: 2173
- type: Transform
- - enabled: True
- type: AmbientSound
- uid: 3956
components:
- pos: 8.5,20.5
@@ -14906,6 +14986,11 @@ entities:
type: Transform
- enabled: True
type: AmbientSound
+ - uid: 2164
+ components:
+ - pos: 10.5,20.5
+ parent: 2173
+ type: Transform
- uid: 2874
components:
- pos: -23.5,11.5
@@ -15738,13 +15823,6 @@ entities:
- pos: 3.5,25.5
parent: 2173
type: Transform
- - uid: 3031
- components:
- - pos: 3.5,24.5
- parent: 2173
- type: Transform
- - enabled: True
- type: AmbientSound
- uid: 3032
components:
- pos: 3.5,23.5
@@ -15762,7 +15840,7 @@ entities:
type: Transform
- uid: 3035
components:
- - pos: 2.5,21.5
+ - pos: 10.5,19.5
parent: 2173
type: Transform
- enabled: True
@@ -15819,11 +15897,9 @@ entities:
type: Transform
- uid: 3046
components:
- - pos: 8.5,24.5
+ - pos: 9.5,20.5
parent: 2173
type: Transform
- - enabled: True
- type: AmbientSound
- uid: 3049
components:
- pos: 27.5,18.5
@@ -16434,6 +16510,20 @@ entities:
type: Transform
- enabled: True
type: AmbientSound
+ - uid: 3939
+ components:
+ - pos: 10.5,18.5
+ parent: 2173
+ type: Transform
+ - enabled: True
+ type: AmbientSound
+ - uid: 3948
+ components:
+ - pos: 11.5,18.5
+ parent: 2173
+ type: Transform
+ - enabled: True
+ type: AmbientSound
- uid: 4604
components:
- pos: -51.5,8.5
@@ -16579,6 +16669,12 @@ entities:
- 817
- 2428
type: DeviceLinkSink
+ - containers:
+ machine_board: !type:Container
+ ents: []
+ machine_parts: !type:Container
+ ents: []
+ type: ContainerContainer
- uid: 2530
components:
- pos: 1.5,45.5
@@ -16588,6 +16684,12 @@ entities:
- 817
- 2428
type: DeviceLinkSink
+ - containers:
+ machine_board: !type:Container
+ ents: []
+ machine_parts: !type:Container
+ ents: []
+ type: ContainerContainer
- uid: 2531
components:
- pos: 3.5,45.5
@@ -16597,6 +16699,12 @@ entities:
- 817
- 2428
type: DeviceLinkSink
+ - containers:
+ machine_board: !type:Container
+ ents: []
+ machine_parts: !type:Container
+ ents: []
+ type: ContainerContainer
- uid: 2532
components:
- pos: 3.5,43.5
@@ -16606,6 +16714,12 @@ entities:
- 817
- 2428
type: DeviceLinkSink
+ - containers:
+ machine_board: !type:Container
+ ents: []
+ machine_parts: !type:Container
+ ents: []
+ type: ContainerContainer
- proto: Catwalk
entities:
- uid: 740
@@ -17379,6 +17493,10 @@ entities:
2532:
- OrderSender: OrderReceiver
type: DeviceLinkSource
+ - containers:
+ board: !type:Container
+ ents: []
+ type: ContainerContainer
- uid: 2428
components:
- pos: 3.5,49.5
@@ -17394,12 +17512,20 @@ entities:
2532:
- OrderSender: OrderReceiver
type: DeviceLinkSource
+ - containers:
+ board: !type:Container
+ ents: []
+ type: ContainerContainer
- uid: 2834
components:
- rot: 1.5707963267948966 rad
pos: 10.5,10.5
parent: 2173
type: Transform
+ - containers:
+ board: !type:Container
+ ents: []
+ type: ContainerContainer
- proto: ComputerCloningConsole
entities:
- uid: 1473
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
index 6a7e3436bc1..dd225cfc6e7 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml
@@ -325,6 +325,7 @@
- id: JetpackSecurityFilled
- id: BoxEncryptionKeySecurity
- id: HoloprojectorSecurity
+ - id: ClothingNeckBodycam
- type: entity
id: LockerHeadOfSecurityFilled
@@ -355,3 +356,4 @@
- id: BoxEncryptionKeySecurity
- id: HoloprojectorSecurity
# - id: BookSecretDocuments
+ - id: ClothingNeckBodycam
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml
index fc8b26b0ff9..7d97c81115c 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml
@@ -22,6 +22,7 @@
- id: ClothingOuterHardsuitWarden
- id: HoloprojectorSecurity
- id: ClothingEyesHudSecurity
+ - id: ClothingNeckBodycam
- type: entity
id: LockerWardenFilled
@@ -46,6 +47,7 @@
# - id: DoorRemoteArmory
- id: HoloprojectorSecurity
- id: ClothingEyesHudSecurity
+ - id: ClothingNeckBodycam
- type: entity
id: LockerSecurityFilled
@@ -68,6 +70,7 @@
- id: WeaponMeleeNeedle
prob: 0.1
- id: ClothingEyesHudSecurity
+ - id: ClothingNeckBodycam
- type: entity
id: LockerBrigmedicFilled
@@ -103,6 +106,7 @@
prob: 0.7
- id: ClothingNeckCloakMoth #bzzz Moth-pocalypse
prob: 0.15
+ - id: ClothingNeckBodycam
- type: entity
id: LockerDetectiveFilled
@@ -121,6 +125,7 @@
- id: BoxForensicPad
- id: DrinkDetFlask
- id: ClothingHandsGlovesForensic
+ - id: ClothingNeckBodycam
- type: entity
id: ClosetBombFilled
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml
index e263903ef50..79dff74e0f0 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml
@@ -58,6 +58,7 @@
ClothingHeadFishCap: 2
ClothingHeadRastaHat: 2
ClothingBeltStorageWaistbag: 3
+ ClothingShoesClothwarp: 5
contrabandInventory:
ClothingUniformJumpsuitTacticool: 1
ClothingUniformJumpskirtTacticool: 1
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml
index c9f7f4b0b57..ef1c5654742 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml
@@ -7,3 +7,4 @@
Bloodpack: 15
EpinephrineChemistryBottle: 9
Syringe: 15
+ BoxMedicalTrackingImplants: 15
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml
index c7c139a3f9e..388fe93d3fb 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml
@@ -14,6 +14,7 @@
RiotBulletShield: 12
Stunbaton: 10
WeaponDisabler: 10
+ ClothingNeckBodycam: 10
# security officers need to follow a diet regimen!
contrabandInventory:
FoodDonutHomer: 12
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml
index 61f31f36478..636aa8fa278 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/vendomat.yml
@@ -8,4 +8,5 @@
PowerCellSmallPrinted: 20
MatterBinStockPart: 8
CapacitorStockPart: 8
- MicroManipulatorStockPart: 8
\ No newline at end of file
+ MicroManipulatorStockPart: 8
+ VulpTranslator: 10
diff --git a/Resources/Prototypes/Decals/ss14sign.yml b/Resources/Prototypes/Decals/ss14sign.yml
index c78b180c695..aa0e21edc01 100644
--- a/Resources/Prototypes/Decals/ss14sign.yml
+++ b/Resources/Prototypes/Decals/ss14sign.yml
@@ -47,4 +47,32 @@
sprite: Decals/ss14sign.rsi
state: ss14sign7
+- type: decal
+ id: SpaceStationSign8
+ tags: ["station"]
+ sprite:
+ sprite: Decals/ss14sign.rsi
+ state: ss14sign8
+
+- type: decal
+ id: SpaceStationSign9
+ tags: ["station"]
+ sprite:
+ sprite: Decals/ss14sign.rsi
+ state: ss14sign9
+
+- type: decal
+ id: SpaceStationSign10
+ tags: ["station"]
+ sprite:
+ sprite: Decals/ss14sign.rsi
+ state: ss14sign10
+
+- type: decal
+ id: SpaceStationSign11
+ tags: ["station"]
+ sprite:
+ sprite: Decals/ss14sign.rsi
+ state: ss14sign11
+
diff --git a/Resources/Prototypes/DeltaV/Body/Organs/vulpkanin.yml b/Resources/Prototypes/DeltaV/Body/Organs/vulpkanin.yml
new file mode 100644
index 00000000000..b6708e3a58c
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Body/Organs/vulpkanin.yml
@@ -0,0 +1,10 @@
+- type: entity
+ id: OrganVulpkaninStomach
+ parent: OrganAnimalStomach
+ noSpawn: true
+ components:
+ - type: Stomach
+ - type: SolutionContainerManager
+ solutions:
+ stomach:
+ maxVol: 50
diff --git a/Resources/Prototypes/DeltaV/Body/Parts/vulpkanin.yml b/Resources/Prototypes/DeltaV/Body/Parts/vulpkanin.yml
new file mode 100644
index 00000000000..88abb033bd3
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Body/Parts/vulpkanin.yml
@@ -0,0 +1,190 @@
+# TODO: Add descriptions (many)
+# TODO BODY: Part damage
+- type: entity
+ id: PartVulpkanin
+ parent: BaseItem
+ name: "vulpkanin body part"
+ abstract: true
+ components:
+ - type: Damageable
+ damageContainer: Biological
+ - type: BodyPart
+ - type: ContainerContainer
+ containers:
+ bodypart: !type:Container
+ ents: []
+ - type: Tag
+ tags:
+ - Trash
+
+- type: entity
+ id: TorsoVulpkanin
+ name: "vulpkanin torso"
+ parent: PartVulpkanin
+ components:
+ - type: Sprite
+ netsync: false
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "torso_m"
+ - type: Icon
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "torso_m"
+ - type: BodyPart
+ partType: Torso
+
+- type: entity
+ id: HeadVulpkanin
+ name: "vulpkanin head"
+ parent: PartVulpkanin
+ components:
+ - type: Sprite
+ netsync: false
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "head_m"
+ - type: Icon
+ sprite: DeltaV/Mobs/Species/Vulpkanin/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: LeftArmVulpkanin
+ name: "left vulpkanin arm"
+ parent: PartVulpkanin
+ components:
+ - type: Sprite
+ netsync: false
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "l_arm"
+ - type: Icon
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "l_arm"
+ - type: BodyPart
+ partType: Arm
+ symmetry: Left
+
+- type: entity
+ id: RightArmVulpkanin
+ name: "right vulpkanin arm"
+ parent: PartVulpkanin
+ components:
+ - type: Sprite
+ netsync: false
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "r_arm"
+ - type: Icon
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "r_arm"
+ - type: BodyPart
+ partType: Arm
+ symmetry: Right
+
+- type: entity
+ id: LeftHandVulpkanin
+ name: "left vulpkanin hand"
+ parent: PartVulpkanin
+ components:
+ - type: Sprite
+ netsync: false
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "l_hand"
+ - type: Icon
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "l_hand"
+ - type: BodyPart
+ partType: Hand
+ symmetry: Left
+
+- type: entity
+ id: RightHandVulpkanin
+ name: "right vulpkanin hand"
+ parent: PartVulpkanin
+ components:
+ - type: Sprite
+ netsync: false
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "r_hand"
+ - type: Icon
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "r_hand"
+ - type: BodyPart
+ partType: Hand
+ symmetry: Right
+
+- type: entity
+ id: LeftLegVulpkanin
+ name: "left vulpkanin leg"
+ parent: PartVulpkanin
+ components:
+ - type: Sprite
+ netsync: false
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "l_leg"
+ - type: Icon
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "l_leg"
+ - type: BodyPart
+ partType: Leg
+ symmetry: Left
+ - type: MovementBodyPart
+ walkSpeed : 3
+ sprintSpeed : 5
+
+- type: entity
+ id: RightLegVulpkanin
+ name: "right vulpkanin leg"
+ parent: PartVulpkanin
+ components:
+ - type: Sprite
+ netsync: false
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "r_leg"
+ - type: Icon
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "r_leg"
+ - type: BodyPart
+ partType: Leg
+ symmetry: Right
+ - type: MovementBodyPart
+ walkSpeed : 3
+ sprintSpeed : 5
+
+- type: entity
+ id: LeftFootVulpkanin
+ name: "left vulpkanin foot"
+ parent: PartVulpkanin
+ components:
+ - type: Sprite
+ netsync: false
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "l_foot"
+ - type: Icon
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "l_foot"
+ - type: BodyPart
+ partType: Foot
+ symmetry: Left
+
+- type: entity
+ id: RightFootVulpkanin
+ name: "right vulpkanin foot"
+ parent: PartVulpkanin
+ components:
+ - type: Sprite
+ netsync: false
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "r_foot"
+ - type: Icon
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: "r_foot"
+ - type: BodyPart
+ partType: Foot
+ symmetry: Right
diff --git a/Resources/Prototypes/DeltaV/Body/Prototypes/vulpkanin.yml b/Resources/Prototypes/DeltaV/Body/Prototypes/vulpkanin.yml
new file mode 100644
index 00000000000..3d1552ac81f
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Body/Prototypes/vulpkanin.yml
@@ -0,0 +1,49 @@
+- type: body
+ name: "vulpkanin"
+ id: Vulpkanin
+ root: torso
+ slots:
+ head:
+ part: HeadVulpkanin
+ connections:
+ - torso
+ organs:
+ brain: OrganHumanBrain
+ eyes: OrganHumanEyes
+ torso:
+ part: TorsoVulpkanin
+ organs:
+ heart: OrganAnimalHeart
+ lungs: OrganHumanLungs
+ stomach: OrganVulpkaninStomach
+ liver: OrganAnimalLiver
+ kidneys: OrganHumanKidneys
+ connections:
+ - left arm
+ - right arm
+ - left leg
+ - right leg
+ right arm:
+ part: RightArmVulpkanin
+ connections:
+ - right hand
+ left arm:
+ part: LeftArmVulpkanin
+ connections:
+ - left hand
+ right hand:
+ part: RightHandVulpkanin
+ left hand:
+ part: LeftHandVulpkanin
+ right leg:
+ part: RightLegVulpkanin
+ connections:
+ - right foot
+ left leg:
+ part: LeftLegVulpkanin
+ connections:
+ - left foot
+ right foot:
+ part: RightFootVulpkanin
+ left foot:
+ part: LeftFootVulpkanin
diff --git a/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml b/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml
new file mode 100644
index 00000000000..35242a12614
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Damage/modifier_sets.yml
@@ -0,0 +1,5 @@
+- type: damageModifierSet
+ id: Vulps
+ coefficients:
+ Cold: 0.5
+ Poison: 0.9
diff --git a/Resources/Prototypes/DeltaV/Detasets/Names/vulpkanin_female.yml b/Resources/Prototypes/DeltaV/Detasets/Names/vulpkanin_female.yml
new file mode 100644
index 00000000000..d8b9df8615b
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Detasets/Names/vulpkanin_female.yml
@@ -0,0 +1,348 @@
+- type: dataset
+ id: names_vulpkanin_female
+ values:
+ - Abby
+ - Acantha
+ - Addilyn
+ - Adela
+ - Adele
+ - Aderyn
+ - Adley
+ - Adriana
+ - Aerona
+ - Aileen
+ - Alanis
+ - Alberta
+ - Alex
+ - Alexandra
+ - Alice
+ - Alma
+ - Amalie
+ - Andromeda
+ - Angel
+ - Ann
+ - Anna
+ - Anne
+ - Annie
+ - Ariel
+ - Arya
+ - Astraea
+ - Astrid
+ - Athena
+ - Audra
+ - Aura
+ - Aurora
+ - Avice
+ - Bailey
+ - Barbara
+ - Beatrix
+ - Belinda
+ - Bellatrix
+ - Belle
+ - Bianca
+ - Braelynn
+ - Brea
+ - Bree
+ - Brooke
+ - Brunhilde
+ - Caitlin
+ - Callisto
+ - Camden
+ - Camilla
+ - Candra
+ - Carina
+ - Carletta
+ - Carline
+ - Carman
+ - Caroline
+ - Carys
+ - Cassandra
+ - Cassiopeia
+ - Catlyn
+ - Celeste
+ - Celina
+ - Ceres
+ - Cerian
+ - Charlotte
+ - Chelle
+ - Chloe
+ - Cicely
+ - Clara
+ - Clarice
+ - Claudia
+ - Cordelia
+ - Cornelia
+ - Cressida
+ - Cybele
+ - Dagmar
+ - Daisy
+ - Dakota
+ - Daphne
+ - Daria
+ - Darla
+ - Dawn
+ - Deidra
+ - Deja
+ - Delilah
+ - Delphine
+ - Delyth
+ - Demetra
+ - Dezra
+ - Dinah
+ - Dora
+ - Effie
+ - Eiddwen
+ - Elaine
+ - Elara
+ - Eleanor
+ - Eliana
+ - Elise
+ - Ellen
+ - Elsa
+ - Emilia
+ - Emily
+ - Emma
+ - Emmie
+ - Emmy
+ - Ester
+ - Esther
+ - Eva
+ - Fadila
+ - Farren
+ - Fay
+ - Felita
+ - Felizia
+ - Fenella
+ - Fleur
+ - Francesca
+ - Freya
+ - Garnet
+ - Ginger
+ - Grace
+ - Gracie
+ - Gwen
+ - Hadley
+ - Hafren
+ - Halley
+ - Hannah
+ - Harlyn
+ - Harmony
+ - Harper
+ - Hazel
+ - Helen
+ - Helena
+ - Helene
+ - Hilda
+ - Holly
+ - Honey
+ - Hope
+ - Idonea
+ - Igna
+ - Imogen
+ - Ina
+ - Iona
+ - Irene
+ - Irma
+ - Isabel
+ - Isabella
+ - Ivy
+ - Jacqueline
+ - Jaelyn
+ - Jana
+ - Janice
+ - Janis
+ - Jayene
+ - Jazzlyn
+ - Jeane
+ - Jennete
+ - Jennifer
+ - Jill
+ - Jo
+ - Johanna
+ - Joslyn
+ - Juliana
+ - Juliet
+ - June
+ - Kaia
+ - Kali
+ - Karlene
+ - Kathryn
+ - Kenna
+ - Kiera
+ - Kiley
+ - Kimberly
+ - Kivela
+ - Lacey
+ - Lachelle
+ - Lacy
+ - Larissa
+ - Laura
+ - Layla
+ - Lena
+ - Leonor
+ - Leslie
+ - Lexi
+ - Liana
+ - Liani
+ - Lianne
+ - Liesel
+ - Lili
+ - Liliwen
+ - Lilly
+ - Linda
+ - Lola
+ - Lona
+ - Lorelai
+ - Lorelei
+ - Luise
+ - Lulu
+ - Luna
+ - Lycia
+ - Lyn
+ - Mabyn
+ - Madeleine
+ - Maeve
+ - Magdalene
+ - Maggie
+ - Maia
+ - Maragaret
+ - Margarethe
+ - Mariah
+ - Mariam
+ - Marilyn
+ - Marina
+ - Marisole
+ - Marivel
+ - Marley
+ - Marni
+ - Marrie
+ - Martina
+ - Mary
+ - Mazelina
+ - Meda
+ - Medea
+ - Mei
+ - Melania
+ - Melanie
+ - Melody
+ - Mercedes
+ - Merle
+ - Meryl
+ - Mia
+ - Michelle
+ - Mila
+ - Millie
+ - Mindy
+ - Miranda
+ - Missy
+ - Misty
+ - Mona
+ - Morgan
+ - Morgana
+ - Morrigan
+ - Morticia
+ - Nadia
+ - Nadine
+ - Nessa
+ - Nia
+ - Nicole
+ - Nikki
+ - Nimah
+ - Nina
+ - Norma
+ - Nova
+ - Olive
+ - Olivia
+ - Opaline
+ - Ophelia
+ - Oriana
+ - Paisley
+ - Paloma
+ - Pam
+ - Pauline
+ - Paz
+ - Penelope
+ - Penny
+ - Phoebe
+ - Piper
+ - Portia
+ - Priya
+ - Rachel
+ - Raina
+ - Raura
+ - Raven
+ - Rayna
+ - Rayne
+ - Rebecca
+ - Regina
+ - Renee
+ - Rhea
+ - Rina
+ - Robin
+ - Rosalind
+ - Rosie
+ - Rowen
+ - Rowena
+ - Royce
+ - Rubella
+ - Ruby
+ - Rue
+ - Ruth
+ - Sabrina
+ - Sadie
+ - Sahara
+ - Sandra
+ - Savina
+ - Sawyer
+ - Selene
+ - Sena
+ - Seraphina
+ - Seraphine
+ - Sheba
+ - Sheila
+ - Sia
+ - Sibylle
+ - Sofie
+ - Sonnet
+ - Sophia
+ - Stacia
+ - Stacy
+ - Stefanie
+ - Stella
+ - Suri
+ - Syden
+ - Sylvia
+ - Tala
+ - Tasha
+ - Tasia
+ - Tatum
+ - Taylee
+ - Teegan
+ - Teresa
+ - Tess
+ - Tessa
+ - Tessy
+ - Theia
+ - Titania
+ - Trisha
+ - Trixie
+ - Trudy
+ - Uma
+ - Ursula
+ - Valenia
+ - Valentina
+ - Vega
+ - Vera
+ - Verena
+ - Vicky
+ - Victoria
+ - Willow
+ - Winnie
+ - Yasmin
+ - Yvette
+ - Yvonne
+ - Zia
+ - Zinnia
+ - Ziva
+ - Zoe
+ - Zuri
diff --git a/Resources/Prototypes/DeltaV/Detasets/Names/vulpkanin_last.yml b/Resources/Prototypes/DeltaV/Detasets/Names/vulpkanin_last.yml
new file mode 100644
index 00000000000..eb499d3866a
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Detasets/Names/vulpkanin_last.yml
@@ -0,0 +1,255 @@
+- type: dataset
+ id: names_vulpkanin_last
+ values:
+ - Abbott
+ - Adoette
+ - Aegaeon
+ - Aegir
+ - Antlia
+ - Argyris
+ - Artino
+ - Auriga
+ - Balch
+ - Barker
+ - Barry
+ - Beck
+ - Belvin
+ - Benson
+ - Bestla
+ - Beynon
+ - Birken
+ - Blum
+ - Bootes
+ - Braune
+ - Briggs
+ - Brys
+ - Bunner
+ - Burns
+ - Cadogan
+ - Caelum
+ - Caine
+ - Cal'enea
+ - Caliban
+ - Card
+ - Carina
+ - Cecil
+ - Cephus
+ - Cetus
+ - Ciqala
+ - Clark
+ - Collins
+ - Corvus
+ - Cross
+ - Crux
+ - Cygnus
+ - Darwin
+ - Day
+ - Delphinus
+ - Dew
+ - Donovan
+ - Dorado
+ - Drexler
+ - Eckart
+ - Eisner
+ - Eridanus
+ - Esau
+ - Etsa
+ - Fahr
+ - Finn
+ - Fletcher
+ - Flint
+ - Fornax
+ - Francis
+ - Frey
+ - Froese
+ - Frost
+ - Galatea
+ - Gerster
+ - Gibbs
+ - Gibby
+ - Gibson
+ - Glasser
+ - Gold
+ - Gray
+ - Greenland
+ - Griffiths
+ - Grus
+ - Hackl
+ - Harrer
+ - Harris
+ - Hartig
+ - Hati
+ - Haumea
+ - Heck
+ - Heckleforth
+ - Hendricks
+ - Hennion
+ - Herder
+ - Herrlein
+ - Hersh
+ - Hi'iaka
+ - Holderman
+ - Holt
+ - Holzer
+ - Howell
+ - Howlitzer
+ - Hunt
+ - Hunter
+ - Huntington
+ - Hydrus
+ - Hyrrokkin
+ - Ida
+ - Indus
+ - Jones
+ - Kachina
+ - Kahler
+ - Kali
+ - Kamphaus
+ - Kekoa
+ - Keme
+ - Kenefick
+ - Kerberos
+ - King
+ - Kitchi
+ - Kiviuq
+ - Kocher
+ - Kohl
+ - Koi
+ - Kokinos
+ - Konala
+ - Kracht
+ - Kruspe
+ - Kuruk
+ - Kusinut
+ - Lachner
+ - Lambert
+ - Lansa
+ - Laomedeia
+ - Lawson
+ - Lee
+ - Lehrer
+ - Lexis
+ - Licht
+ - Lincoln
+ - Llewelyn
+ - Loge
+ - Lorenzen
+ - MacLeod
+ - Maekh
+ - Malone
+ - Marks
+ - Mason
+ - Matoskah
+ - Matthews
+ - Mattick
+ - Mauss
+ - McCarthy
+ - McKee
+ - McKinney
+ - McLeod
+ - Meissner
+ - Merkel
+ - Mertz
+ - Metzinger
+ - Mikasi
+ - Mimiteh
+ - Misae
+ - Moki
+ - Mordecai
+ - Morgan
+ - Morris
+ - Moss
+ - Musca
+ - Naiad
+ - Namaka
+ - Narvi
+ - Nereid
+ - Neso
+ - Nest
+ - Neuer
+ - Nist
+ - Nokomis
+ - Nonovan
+ - Noske
+ - O'Neil
+ - Okalani
+ - Okomi
+ - Oliana
+ - Oliver
+ - Pakuna
+ - Pallene
+ - Pavo
+ - Pembroke
+ - Penrose
+ - Pichler
+ - Parker
+ - Povey
+ - Preiss
+ - Prospero
+ - Protheroe
+ - Pye
+ - Pyxis
+ - Quint
+ - Rabe
+ - Rahmer
+ - Rease
+ - Reger
+ - Reichen
+ - Reimold
+ - Reiter
+ - Rhees
+ - Rhoderick
+ - Robinson
+ - Rosenthal
+ - Rossmann
+ - Rothman
+ - Rue
+ - Sagitta
+ - Sahkyo
+ - Sare
+ - Sawyer
+ - Schmid
+ - Schoeler
+ - Schoenberg
+ - Schultze
+ - Seals
+ - Seidl
+ - Sharpe
+ - Shepard
+ - Shepherd
+ - Sicheii
+ - Skinner
+ - Skoll
+ - Sommer
+ - Spade
+ - Staebler
+ - Steel
+ - Sycorax
+ - Takala
+ - Takoda
+ - Tansy
+ - Tarqeq
+ - Tarvos
+ - Tayanita
+ - Taylor
+ - Telesto
+ - Tethys
+ - Thalassa
+ - Thiel
+ - Toski
+ - Trinculo
+ - Tse
+ - Veiel
+ - Vohkinne
+ - Umber
+ - Ward
+ - Webb
+ - Weber
+ - Weider
+ - Werdin
+ - Wildner
+ - Wintsch
+ - Wolfe
+ - Yarwood
+ - Yazhi
+ - Yoki
diff --git a/Resources/Prototypes/DeltaV/Detasets/Names/vulpkanin_male.yml b/Resources/Prototypes/DeltaV/Detasets/Names/vulpkanin_male.yml
new file mode 100644
index 00000000000..10889847026
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Detasets/Names/vulpkanin_male.yml
@@ -0,0 +1,348 @@
+- type: dataset
+ id: names_vulpkanin_male
+ values:
+ - Aaron
+ - Abe
+ - Abraham
+ - Adelger
+ - Adolar
+ - Albuin
+ - Alexander
+ - Alhazred
+ - Amren
+ - Andre
+ - Andreas
+ - Aneurin
+ - Angelo
+ - Ansel
+ - Ares
+ - Armon
+ - Arnet
+ - Arric
+ - Ash
+ - Aspen
+ - Atlas
+ - August
+ - Axel
+ - Barald
+ - Barrett
+ - Basil
+ - Bastian
+ - Baxter
+ - Ben
+ - Benjamin
+ - Benny
+ - Berthold
+ - Blake
+ - Bo
+ - Bolgan
+ - Bosche
+ - Brutus
+ - Buck
+ - Caden
+ - Cadog
+ - Caelum
+ - Calvin
+ - Camus
+ - Caradoc
+ - Carter
+ - Casey
+ - Caspar
+ - Castor
+ - Cayo
+ - Cedrik
+ - Chandler
+ - Charles
+ - Charlie
+ - Charon
+ - Christian
+ - Claude
+ - Clayton
+ - Clifton
+ - Clive
+ - Clyde
+ - Colby
+ - Cole
+ - Colin
+ - Colton
+ - Conner
+ - Connor
+ - Conor
+ - Cooper
+ - Craig
+ - Curtis
+ - Dane
+ - Dannan
+ - Deimos
+ - Dennis
+ - Derek
+ - Derion
+ - Derric
+ - Deryn
+ - Desmond
+ - Dietmar
+ - Dirge
+ - Dominic
+ - Don
+ - Draven
+ - Duane
+ - Duke
+ - Dunstan
+ - Dylan
+ - Eckhard
+ - Eckhart
+ - Edgar
+ - Elfyn
+ - Emanuel
+ - Embry
+ - Emery
+ - Erik
+ - Ernst
+ - Ferdinand
+ - Finch
+ - Finn
+ - Flik
+ - Flint
+ - Florian
+ - Floyd
+ - Francis
+ - Franz
+ - Fynn
+ - Gaius
+ - Garrett
+ - Garske
+ - Gary
+ - Gavin
+ - Gavner
+ - Gerome
+ - Gerrant
+ - Ghirahim
+ - Gillian
+ - Glen
+ - Gordon
+ - Gorudo
+ - Grant
+ - Griffin
+ - Grum
+ - Hal
+ - Hanklin
+ - Harald
+ - Harley
+ - Hauser
+ - Heath
+ - Hector
+ - Heribert
+ - Hermes
+ - Hudson
+ - Hugo
+ - Hunter
+ - Hywel
+ - Ingolf
+ - Inigo
+ - Ioan
+ - Irving
+ - Isaac
+ - Isaak
+ - Ivaylo
+ - Iver
+ - Jacob
+ - Jaime
+ - Jake
+ - Janik
+ - Jared
+ - Jarom
+ - Jarvald
+ - Jason
+ - Javier
+ - Jeremiah
+ - Jerome
+ - Jesse
+ - Jett
+ - Jim
+ - Jimba
+ - Jimmy
+ - Joe
+ - Jonah
+ - Jones
+ - Joshua
+ - Josua
+ - Julian
+ - Kai
+ - Kaleb
+ - Kear
+ - Kenneth
+ - Kenway
+ - Kenyon
+ - Kevin
+ - Kirk
+ - Klaus
+ - Kodan
+ - Konrad
+ - Kortan
+ - Kurt
+ - Kyle
+ - Lance
+ - Landon
+ - Larc
+ - Larry
+ - Lars
+ - Leander
+ - Lennard
+ - Leo
+ - Liam
+ - Linus
+ - Logan
+ - Loki
+ - Lope
+ - Lorenz
+ - Lou
+ - Louis
+ - Lovel
+ - Luc
+ - Lucas
+ - Luka
+ - Luke
+ - Lykaon
+ - Magnus
+ - Maik
+ - Manuel
+ - Marc
+ - Marion
+ - Mariston
+ - Marlowe
+ - Marmon
+ - Marshall
+ - Martin
+ - Martyn
+ - Marvin
+ - Mason
+ - Matthias
+ - Maynord
+ - Meic
+ - Melchior
+ - Meyer
+ - Micah
+ - Michael
+ - Mitchell
+ - Moe
+ - Mordecai
+ - Morten
+ - Mourgent
+ - Nathaniel
+ - Nero
+ - Nick
+ - Nicolas
+ - Niko
+ - Nils
+ - Noah
+ - Oberon
+ - Ole
+ - Oscar
+ - Osiris
+ - Osmon
+ - Osther
+ - Otsoa
+ - Otto
+ - Parker
+ - Paul
+ - Pavel
+ - Perry
+ - Perseus
+ - Philip
+ - Philipp
+ - Pierce
+ - Porter
+ - Preston
+ - Quelii
+ - Ralph
+ - Randall
+ - Randolf
+ - Ranulf
+ - Raoul
+ - Raul
+ - Reade
+ - Red
+ - Rhain
+ - Rhydian
+ - Rhydwyn
+ - Rhys
+ - Rico
+ - Rigel
+ - Rob
+ - Robin
+ - Rocky
+ - Roderic
+ - Roger
+ - Roland
+ - Rolayne
+ - Roniston
+ - Ronnet
+ - Roscoe
+ - Roy
+ - Rudy
+ - Rukheim
+ - Rupert
+ - Russell
+ - Ryan
+ - Samuel
+ - Sawyer
+ - Scott
+ - Severin
+ - Shilo
+ - Silver
+ - Silvester
+ - Sirius
+ - Slate
+ - Sol
+ - Sriscoll
+ - Stefan
+ - Stephen
+ - Sterling
+ - Steven
+ - Stone
+ - Sullivan
+ - Taylor
+ - Ted
+ - Teddy
+ - Terry
+ - Themis
+ - Theo
+ - Theodore
+ - Thyrius
+ - Tibarn
+ - Tim
+ - Tizian
+ - Torben
+ - Torsten
+ - Trevor
+ - Trion
+ - Tristan
+ - Troy
+ - Trystan
+ - Turner
+ - Tybalt
+ - Tyr
+ - Ulbrecht
+ - Ulrick
+ - Valentine
+ - Vallin
+ - Veit
+ - Velvel
+ - Vesper
+ - Victor
+ - Vincent
+ - Vinzenz
+ - Vuk
+ - Walter
+ - Wayne
+ - Weizen
+ - Will
+ - William
+ - Wulfrun
+ - Xaver
+ - Yannik
+ - York
+ - Zac
+ - Zacharias
+ - Zeb
+ - Zegrath
diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Shoes/misc.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Shoes/misc.yml
new file mode 100644
index 00000000000..7f4f7a9923a
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Shoes/misc.yml
@@ -0,0 +1,10 @@
+- type: entity
+ parent: ClothingShoesBase
+ id: ClothingShoesClothwarp
+ name: cloth footwraps
+ description: A roll of treated canvas used for wrapping claws or paws.
+ components:
+ - type: Sprite
+ sprite: Clothing/Shoes/Misc/clothwarp.rsi
+ - type: Clothing
+ sprite: Clothing/Shoes/Misc/clothwarp.rsi
diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/vulpkanin.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/vulpkanin.yml
new file mode 100644
index 00000000000..502ddf35498
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/vulpkanin.yml
@@ -0,0 +1,869 @@
+# All the Vulpkanin customization
+
+# Ears Markings
+- type: marking
+ id: VulpEar
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: vulp
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: vulp-inner
+
+- type: marking
+ id: VulpEarFade
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: vulp
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: vulp-fade
+
+- type: marking
+ id: VulpEarSharp
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: vulp
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: vulp-sharp
+
+- type: marking
+ id: VulpEarJackal
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: jackal
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: jackal-inner
+
+- type: marking
+ id: VulpEarTerrier
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: terrier
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: terrier-inner
+
+- type: marking
+ id: VulpEarWolf
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: wolf
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: wolf-inner
+
+- type: marking
+ id: VulpEarFennec
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: fennec
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: fennec-inner
+
+- type: marking
+ id: VulpEarFox
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: fox
+
+- type: marking
+ id: VulpEarOtie
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: otie
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: otie-inner
+
+- type: marking
+ id: VulpEarTajaran
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: msai
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: msai-inner
+
+- type: marking
+ id: VulpEarShock
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: shock
+
+- type: marking
+ id: VulpEarCoyote
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: coyote
+
+- type: marking
+ id: VulpEarDalmatian
+ bodyPart: HeadTop
+ markingCategory: HeadTop
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi
+ state: dalmatian
+
+# Head Markings (Snout)
+- type: marking
+ id: VulpSnoutAlt
+ bodyPart: Snout
+ markingCategory: Snout
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: muzzle_alt
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: nose
+
+- type: marking
+ id: VulpSnout
+ bodyPart: Snout
+ markingCategory: Snout
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: muzzle
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: nose
+
+- type: marking
+ id: VulpSnoutSharp
+ bodyPart: Snout
+ markingCategory: Snout
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: muzzle_sharp
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: nose
+
+- type: marking
+ id: VulpSnoutFade
+ bodyPart: Snout
+ markingCategory: Snout
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: muzzle_fade
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: nose
+
+- type: marking
+ id: VulpSnoutNose
+ bodyPart: Snout
+ markingCategory: Snout
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: nose
+
+- type: marking
+ id: VulpSnoutMask
+ bodyPart: Snout
+ markingCategory: Snout
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: mask
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: nose
+
+- type: marking
+ id: VulpSnoutVulpine
+ bodyPart: Snout
+ markingCategory: Snout
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: vulpine
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: vulpine-lines
+
+- type: marking
+ id: VulpSnoutSwift
+ bodyPart: Snout
+ markingCategory: Snout
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: vulpine-lines
+
+- type: marking
+ id: VulpSnoutBlaze
+ bodyPart: Snout
+ markingCategory: Snout
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: blaze
+
+- type: marking
+ id: VulpSnoutPatch
+ bodyPart: Snout
+ markingCategory: Snout
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: patch
+
+# Head Markings (Head)
+- type: marking
+ id: VulpHeadTiger
+ bodyPart: Head
+ markingCategory: Head
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: tiger_head
+
+- type: marking
+ id: VulpHeadTigerFace
+ bodyPart: Head
+ markingCategory: Head
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: tiger_face
+
+- type: marking
+ id: VulpHeadSlash
+ bodyPart: Head
+ markingCategory: Head
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi
+ state: slash
+
+# Tail Markings
+- type: marking
+ id: VulpTail
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: vulp
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: vulp-fade
+
+- type: marking
+ id: VulpTailTip
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: vulp
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: vulp-tip
+
+- type: marking
+ id: VulpTailWag
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: vulp_wag
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: vulp_wag-tip #fade
+
+- type: marking
+ id: VulpTailWagTip
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: vulp_wag
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: vulp_wag-tip
+
+- type: marking
+ id: VulpTailAlt
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: vulp_alt
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: vulp_alt-fade
+
+- type: marking
+ id: VulpTailAltTip
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: vulp_alt
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: vulp_alt-tip
+
+- type: marking
+ id: VulpTailLong
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: long
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: long-tip
+
+- type: marking
+ id: VulpTailFox
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fox
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fox-fade
+
+- type: marking
+ id: VulpTailFoxTip
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fox
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fox-tip
+
+- type: marking
+ id: VulpTailFoxWag
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fox_wag
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fox_wag-fade
+
+- type: marking
+ id: VulpTailFoxWagTip
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fox_wag
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fox_wag-tip
+
+- type: marking
+ id: VulpTailBushy
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: bushfluff
+
+- type: marking
+ id: VulpTailBushyWag
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: bushfluff_wag
+
+- type: marking
+ id: VulpTailCoyote
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: coyote
+
+- type: marking
+ id: VulpTailCoyoteWag
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: coyote_wag
+
+- type: marking
+ id: VulpTailCorgiWag
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: corgi_wag
+
+- type: marking
+ id: VulpTailHusky
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: husky-inner
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: husky-outer
+
+- type: marking
+ id: VulpTailHuskyAlt
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: husky
+
+- type: marking
+ id: VulpTailFox2
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fox2
+
+- type: marking
+ id: VulpTailFox3
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fox3
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fox3-tip
+
+- type: marking
+ id: VulpTailFennec
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fennec
+
+- type: marking
+ id: VulpTailOtie
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: otie
+
+- type: marking
+ id: VulpTailFluffy
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: fluffy
+
+- type: marking
+ id: VulpTailDalmatianWag
+ bodyPart: Tail
+ markingCategory: Tail
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi
+ state: dalmatian_wag
+
+# Body Markings (Chest)
+- type: marking
+ id: VulpBellyCrest
+ bodyPart: Chest
+ markingCategory: Chest
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+ state: belly_crest
+
+- type: marking
+ id: VulpBellyFull
+ bodyPart: Chest
+ markingCategory: Chest
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+ state: belly_full
+
+- type: marking
+ id: VulpBellyFox
+ bodyPart: Chest
+ markingCategory: Chest
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+ state: belly_fox
+
+# # Body Markings (Overlay)
+# Eventually layering will allow to have markings on the body not layering above jumpsuits
+# - type: marking
+# id: VulpBodyPointsCrest
+# markingCategory: Overlay
+# bodyPart: RFoot
+# speciesRestriction: [Vulpkanin]
+# sprites:
+# - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+# state: points_crest
+#
+# - type: marking
+# id: VulpBodyPointsFade
+# markingCategory: Overlay
+# bodyPart: RFoot
+# speciesRestriction: [Vulpkanin]
+# sprites:
+# - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+# state: points_fade
+#
+# - type: marking
+# id: VulpBodyPointsSharp
+# markingCategory: Overlay
+# bodyPart: RFoot
+# speciesRestriction: [Vulpkanin]
+# sprites:
+# - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+# state: points_sharp
+
+# Leg Markings
+- type: marking
+ id: VulpPointsFeet
+ markingCategory: Overlay
+ bodyPart: RFoot
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+ state: points_feet
+
+- type: marking
+ id: VulpPointsCrestLegs
+ markingCategory: Legs
+ bodyPart: LLeg
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+ state: points_crest-legs
+
+- type: marking
+ id: VulpPointsFadeLegs
+ markingCategory: Legs
+ bodyPart: LLeg
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+ state: points_fade-legs
+
+- type: marking
+ id: VulpPointsSharpLegs
+ markingCategory: Legs
+ bodyPart: LLeg
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+ state: points_sharp-legs
+
+# Arm Markings
+- type: marking
+ id: VulpPointsHands
+ markingCategory: Overlay
+ bodyPart: RHand
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+ state: points_hands
+
+- type: marking
+ id: VulpPointsCrestArms
+ markingCategory: Arms
+ bodyPart: LArm
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+ state: points_crest-arms
+
+- type: marking
+ id: VulpPointsFadeArms
+ markingCategory: Arms
+ bodyPart: LArm
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+ state: points_fade-arms
+
+- type: marking
+ id: VulpPointsSharpArms
+ markingCategory: Arms
+ bodyPart: LArm
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi
+ state: points_sharp-arms
+
+# Hairs
+- type: marking
+ id: VulpHairAdhara
+ bodyPart: Hair
+ speciesRestriction: [Vulpkanin]
+ markingCategory: Hair
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: adhara
+
+- type: marking
+ id: VulpHairAnita
+ bodyPart: Hair
+ speciesRestriction: [Vulpkanin]
+ markingCategory: Hair
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: anita
+
+- type: marking
+ id: VulpHairApollo
+ bodyPart: Hair
+ speciesRestriction: [Vulpkanin]
+ markingCategory: Hair
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: apollo
+
+- type: marking
+ id: VulpHairBelle
+ bodyPart: Hair
+ speciesRestriction: [Vulpkanin]
+ markingCategory: Hair
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: belle
+
+- type: marking
+ id: VulpHairBraided
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: braided
+
+- type: marking
+ id: VulpHairBun
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: bun
+
+- type: marking
+ id: VulpHairCleanCut
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: clean_cut
+
+- type: marking
+ id: VulpHairCurl
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: curl
+
+- type: marking
+ id: VulpHairHawk
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: hawk
+
+- type: marking
+ id: VulpHairJagged
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: jagged
+
+- type: marking
+ id: VulpHairJeremy
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: jeremy
+
+- type: marking
+ id: VulpHairKajam
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: kajam
+
+- type: marking
+ id: VulpHairKeid
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: keid
+
+- type: marking
+ id: VulpHairKleeia
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: kleeia
+
+- type: marking
+ id: VulpHairMizar
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: mizar
+
+- type: marking
+ id: VulpHairPunkBraided
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: punkbraided
+
+- type: marking
+ id: VulpHairRaine
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: raine
+
+- type: marking
+ id: VulpHairRough
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: rough
+
+- type: marking
+ id: VulpHairShort
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: short
+
+- type: marking
+ id: VulpHairShort2
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: short2
+
+- type: marking
+ id: VulpHairSpike
+ bodyPart: Hair
+ markingCategory: Hair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/hair.rsi
+ state: spike
+
+# Facial Hairs
+- type: marking
+ id: VulpFacialHairRuff
+ bodyPart: FacialHair
+ markingCategory: FacialHair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi
+ state: ruff
+
+- type: marking
+ id: VulpFacialHairElder
+ bodyPart: FacialHair
+ markingCategory: FacialHair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi
+ state: elder
+
+- type: marking
+ id: VulpFacialHairElderChin
+ bodyPart: FacialHair
+ markingCategory: FacialHair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi
+ state: elder_chin
+
+- type: marking
+ id: VulpFacialHairKita
+ bodyPart: FacialHair
+ markingCategory: FacialHair
+ speciesRestriction: [Vulpkanin]
+ sprites:
+ - sprite: DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi
+ state: kita
diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Player/vulpkanin.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/vulpkanin.yml
new file mode 100644
index 00000000000..1cda9bedf89
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Player/vulpkanin.yml
@@ -0,0 +1,39 @@
+- type: entity
+ save: false
+ name: Urist McVulp
+ parent: BaseMobVulpkanin
+ id: MobVulpkanin
+ 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: Alerts
+ - type: Vocal
+ sounds:
+ Male: MaleVulpkanin
+ Female: FemaleVulpkanin
+ Unsexed: MaleVulpkanin
+ - type: Eye
+ - type: CameraRecoil
+ - type: Examiner
+ - type: CanHostGuardian
+ - type: MailReceiver
+ - type: NpcFactionMember
+ factions:
+ - NanoTrasen
+ - type: Respirator
+ damage:
+ types:
+ Asphyxiation: 1.0
+ damageRecovery:
+ types:
+ Asphyxiation: -1.0
diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml
new file mode 100644
index 00000000000..44a155daefa
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml
@@ -0,0 +1,109 @@
+- type: entity
+ save: false
+ name: Urist McVulp
+ parent: BaseMobOrganic
+ id: BaseMobVulpkanin
+ abstract: true
+ components:
+ - type: HumanoidAppearance
+ species: Vulpkanin
+ - type: Hunger
+ baseDecayRate: 0.06
+ - type: Thirst
+ baseDecayRate: 0.0125
+ - type: Icon
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: full
+ - type: Body
+ prototype: Vulpkanin
+ requiredLegs: 2
+ - type: VulpLanguageSpeaker
+ - type: VulpLangaugeListener
+ - type: VulpGiveTranslator
+ - type: Speech
+ speechSounds: Vulpkanin
+ speechVerb: Vulpkanin
+ - type: Inventory
+ speciesId: vulpkanin
+ - type: Sprite
+ netsync: false
+ noRot: true
+ drawdepth: Mobs
+ layers:
+ - map: [ "enum.HumanoidVisualLayers.Chest" ]
+ - map: [ "enum.HumanoidVisualLayers.Head" ]
+ - map: [ "enum.HumanoidVisualLayers.Snout" ]
+ - map: [ "enum.HumanoidVisualLayers.Eyes" ]
+ - map: [ "enum.HumanoidVisualLayers.RArm" ]
+ - map: [ "enum.HumanoidVisualLayers.LArm" ]
+ - map: [ "enum.HumanoidVisualLayers.RLeg" ]
+ - map: [ "enum.HumanoidVisualLayers.LLeg" ]
+ - shader: StencilClear
+ sprite: Mobs/Species/Human/parts.rsi #PJB on stencil clear being on the left leg: "...this is 'fine'" -https://github.com/space-wizards/space-station-14/pull/12217#issuecomment-1291677115
+ # its fine, but its still very stupid that it has to be done like this instead of allowing sprites to just directly insert a stencil clear.
+ # sprite refactor when
+ state: l_leg
+ - shader: StencilMask
+ map: [ "enum.HumanoidVisualLayers.StencilMask" ]
+ sprite: DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi
+ state: female_full
+ visible: false
+ - map: [ "jumpsuit" ]
+ - map: [ "enum.HumanoidVisualLayers.LHand" ]
+ - map: [ "enum.HumanoidVisualLayers.RHand" ]
+ - map: [ "enum.HumanoidVisualLayers.LFoot" ]
+ - map: [ "enum.HumanoidVisualLayers.RFoot" ]
+ - 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.Hair" ]
+ - map: [ "enum.HumanoidVisualLayers.HeadSide" ]
+ - map: [ "enum.HumanoidVisualLayers.HeadTop" ]
+ - map: [ "enum.HumanoidVisualLayers.Tail" ]
+ - map: [ "mask" ]
+ - map: [ "head" ]
+ - map: [ "pocket1" ]
+ - map: [ "pocket2" ]
+ - type: Damageable
+ damageContainer: Biological
+ damageModifierSet: Vulps
+ - type: Perishable
+ - type: Carriable
+ - type: TemperatureProtection
+ coefficient: 0.1
+ - type: Temperature
+ heatDamageThreshold: 335
+ coldDamageThreshold: 200
+ currentTemperature: 310.15
+ specificHeat: 46
+ coldDamage:
+ types:
+ Cold : 0.05
+ - type: Flammable
+ damage:
+ types:
+ Heat: 1.5 # Rip Fur
+
+
+- type: entity
+ save: false
+ name: Vulpkanin Dummy
+ parent: MobHumanDummy
+ id: MobVulpkaninDummy
+ noSpawn: true
+ description: A dummy vulpkanin meant to be used in character setup.
+ components:
+ - type: HumanoidAppearance
+ species: Vulpkanin
diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/vulptranslator.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/vulptranslator.yml
new file mode 100644
index 00000000000..cc6e3a49424
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/vulptranslator.yml
@@ -0,0 +1,14 @@
+- type: entity
+ id: VulpTranslator
+ parent: [ BaseItem, PowerCellSlotMediumItem ]
+ name: Canilunzt translator
+ description: "Used by Vulpkanins to translate their speech."
+ components:
+ - type: Sprite
+ sprite: /Textures/Objects/Devices/vulp_translator.rsi
+ layers:
+ - state: icon
+ - type: PowerCellDraw
+ drawRate: 0
+ useRate: 1
+ - type: VulpTranslator
diff --git a/Resources/Prototypes/DeltaV/SoundCollections/vulpkanin.yml b/Resources/Prototypes/DeltaV/SoundCollections/vulpkanin.yml
new file mode 100644
index 00000000000..e37edb26a6b
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/SoundCollections/vulpkanin.yml
@@ -0,0 +1,16 @@
+- type: soundCollection
+ id: VulpkaninGrowls
+ files:
+ - /Audio/_NF/Vulpikanin/growl1.ogg
+ - /Audio/_NF/Vulpikanin/growl2.ogg
+ - /Audio/_NF/Vulpikanin/growl3.ogg
+
+- type: soundCollection
+ id: VulpkaninBark
+ files:
+ - /Audio/_NF/Vulpikanin/bark.ogg
+
+- type: soundCollection
+ id: VulpkaninHowl
+ files:
+ - /Audio/_NF/Vulpikanin/howl.ogg
\ No newline at end of file
diff --git a/Resources/Prototypes/DeltaV/Species/vulpkanin.yml b/Resources/Prototypes/DeltaV/Species/vulpkanin.yml
new file mode 100644
index 00000000000..0b4a06af2d6
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Species/vulpkanin.yml
@@ -0,0 +1,151 @@
+- type: species
+ id: Vulpkanin
+ name: species-name-vulpkanin
+ roundStart: true
+ prototype: MobVulpkanin
+ sprites: MobVulpkaninSprites
+ defaultSkinTone: "#985629"
+ markingLimits: MobVulpkaninMarkingLimits
+ dollPrototype: MobVulpkaninDummy
+ skinColoration: Hues
+ maleFirstNames: names_vulpkanin_male
+ femaleFirstNames: names_vulpkanin_female
+ lastNames: names_vulpkanin_last
+
+- type: speciesBaseSprites
+ id: MobVulpkaninSprites
+ sprites:
+ Head: MobVulpkaninHead
+ Hair: MobHumanoidAnyMarking
+ FacialHair: MobHumanoidAnyMarking
+ Snout: MobHumanoidAnyMarking
+ Chest: MobVulpkaninTorso
+ HeadTop: MobHumanoidAnyMarking
+ HeadSide: MobHumanoidAnyMarking
+ Tail: MobHumanoidAnyMarking
+ Eyes: MobHumanoidEyes
+ LArm: MobVulpkaninLArm
+ RArm: MobVulpkaninRArm
+ LHand: MobVulpkaninLHand
+ RHand: MobVulpkaninRHand
+ LLeg: MobVulpkaninLLeg
+ RLeg: MobVulpkaninRLeg
+ LFoot: MobVulpkaninLFoot
+ RFoot: MobVulpkaninRFoot
+
+- type: markingPoints
+ id: MobVulpkaninMarkingLimits
+ points:
+ Hair:
+ points: 1
+ required: false
+ FacialHair:
+ points: 1
+ required: false
+ Tail:
+ points: 1
+ required: true
+ defaultMarkings: [ VulpTail ]
+ Head:
+ points: 1
+ required: false
+ Legs:
+ points: 1
+ required: false
+ Arms:
+ points: 1
+ required: false
+ Snout:
+ points: 1
+ required: false
+ HeadTop:
+ points: 1
+ required: true
+ defaultMarkings: [ VulpEar ]
+ Overlay:
+ points: 2
+ required: false
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninHead
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: head_m
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninHeadMale
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: head_m
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninHeadFemale
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: head_f
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninTorso
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: torso_m
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninTorsoMale
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: torso_m
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninTorsoFemale
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: torso_f
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninLLeg
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: l_leg
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninLHand
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: l_hand
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninLArm
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: l_arm
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninLFoot
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: l_foot
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninRLeg
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: r_leg
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninRHand
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: r_hand
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninRArm
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: r_arm
+
+- type: humanoidBaseSprite
+ id: MobVulpkaninRFoot
+ baseSprite:
+ sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi
+ state: r_foot
diff --git a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml
new file mode 100644
index 00000000000..3fbfbd002fa
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml
@@ -0,0 +1,31 @@
+- type: emoteSounds
+ id: MaleVulpkanin
+ params:
+ variation: 0.125
+ sounds:
+ Scream:
+ collection: MaleScreams
+ Laugh:
+ collection: MaleLaugh
+ Growl:
+ collection: VulpkaninGrowls
+ Howl:
+ collection: VulpkaninHowl
+ Bark:
+ collection: VulpkaninBark
+
+- type: emoteSounds
+ id: FemaleVulpkanin
+ params:
+ variation: 0.125
+ sounds:
+ Scream:
+ collection: FemaleScreams
+ Laugh:
+ collection: FemaleLaugh
+ Growl:
+ collection: VulpkaninGrowls
+ Howl:
+ collection: VulpkaninHowl
+ Bark:
+ collection: VulpkaninBark
diff --git a/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml b/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml
new file mode 100644
index 00000000000..bca588038ad
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml
@@ -0,0 +1,23 @@
+- type: emote
+ id: Howl
+ category: Vocal
+ chatMessages: [howls.]
+ chatTriggers:
+ - howl
+ - howls
+ - howls.
+ - howls!
+ - howling
+ - howled
+
+- type: emote
+ id: Bark
+ category: Vocal
+ chatMessages: [barks.]
+ chatTriggers:
+ - bark
+ - barks
+ - barks.
+ - barks!
+ - barking
+ - barked
diff --git a/Resources/Prototypes/DeltaV/Voice/speech_sounds.yml b/Resources/Prototypes/DeltaV/Voice/speech_sounds.yml
new file mode 100644
index 00000000000..c1b56dd28b7
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Voice/speech_sounds.yml
@@ -0,0 +1,8 @@
+- type: speechSounds
+ id: Vulpkanin
+ saySound:
+ path: /Audio/DeltaV/Voice/Talk/vulp.ogg
+ askSound:
+ path: /Audio/DeltaV/Voice/Talk/vulp_ask.ogg
+ exclaimSound:
+ path: /Audio/DeltaV/Voice/Talk/vulp_exclaim.ogg
diff --git a/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml b/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml
new file mode 100644
index 00000000000..246b9883798
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Voice/speech_verbs.yml
@@ -0,0 +1,7 @@
+- type: speechVerb
+ id: Vulpkanin
+ speechVerbStrings:
+ - chat-speech-verb-vulpkanin-1
+ - chat-speech-verb-vulpkanin-2
+ - chat-speech-verb-vulpkanin-3
+ - chat-speech-verb-vulpkanin-4
diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml
index 7277ebb10a8..bfb2ef351e9 100644
--- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml
+++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml
@@ -180,7 +180,7 @@
- type: entity
parent: ClothingBackpack
id: ClothingBackpackMerc
- name: merc bag
+ name: mercenary bag
description: A backpack that has been in many dangerous places, a reliable combat backpack.
components:
- type: Sprite
diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml
index fa1a5e951fa..41867960a30 100644
--- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml
+++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml
@@ -487,7 +487,7 @@
- type: entity
parent: ClothingBeltStorageBase
id: ClothingBeltMercWebbing
- name: mercenarie webbing
+ name: mercenary webbing
description: Ideal for storing everything from ammo to weapons and combat essentials.
components:
- type: Sprite
diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml
index f49f5f4804b..dbba265020d 100644
--- a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml
+++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml
@@ -23,7 +23,7 @@
- type: entity
parent: ClothingOuterStorageBase #web vest so it should have some pockets for ammo
id: ClothingOuterVestWebMerc
- name: merc web vest
+ name: mercenary web vest
description: A high-quality armored vest made from a hard synthetic material. It's surprisingly flexible and light, despite formidable armor plating.
components:
- type: Sprite
diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml
index 772dd45029d..d1ac9003d47 100644
--- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml
+++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml
@@ -91,7 +91,7 @@
transmitFrequencyId: SuitSensor
- type: StationLimitedNetwork
- type: WirelessNetworkConnection
- range: 500
+ range: 10000
- type: TriggerOnMobstateChange
mobState:
- Critical
diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml
index 367ffb9deae..486b244e4db 100644
--- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml
+++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml
@@ -285,7 +285,6 @@
id: BartenderIDCard
# DeathMatch Gear
-
- type: startingGear
id: DeathMatchGear
equipment:
@@ -297,22 +296,3 @@
inhand:
left hand: WeaponMeleeToolboxRobust
-#Brigmedic
-
-- type: startingGear
- id: BrigmedicGear
- equipment:
- jumpsuit: ClothingUniformJumpsuitBrigmedic
- outerClothing: ClothingOuterCoatAMG
- back: ClothingBackpackBrigmedic
- shoes: ClothingShoesColorRed
- gloves: ClothingHandsGlovesNitrile
- eyes: ClothingEyesHudMedical
- head: ClothingHeadHatBeretBrigmedic
- id: BrigmedicPDA
- ears: ClothingHeadsetBrigmedic
- mask: ClothingMaskBreathMedicalSecurity
- belt: ClothingBeltMedicalFilled
- innerclothingskirt: ClothingUniformJumpskirtBrigmedic
- satchel: ClothingBackpackSatchelBrigmedicFilled
- duffelbag: ClothingBackpackDuffelBrigmedicFilled
diff --git a/Resources/Prototypes/Roles/Jobs/Security/brigmedic.yml b/Resources/Prototypes/Roles/Jobs/Security/brigmedic.yml
index 110dce697b5..1a4af7c1e03 100644
--- a/Resources/Prototypes/Roles/Jobs/Security/brigmedic.yml
+++ b/Resources/Prototypes/Roles/Jobs/Security/brigmedic.yml
@@ -15,4 +15,24 @@
- Security
- Brig
- Maintenance
- - External
\ No newline at end of file
+ - External
+
+
+- type: startingGear
+ id: BrigmedicGear
+ equipment:
+ jumpsuit: ClothingUniformJumpsuitBrigmedic
+ outerClothing: ClothingOuterCoatAMG
+ back: ClothingBackpackBrigmedicFilled
+ shoes: ClothingShoesColorRed
+ gloves: ClothingHandsGlovesNitrile
+ eyes: ClothingEyesHudMedical
+ head: ClothingHeadHatBeretBrigmedic
+ id: BrigmedicPDA
+ ears: ClothingHeadsetBrigmedic
+ mask: ClothingMaskBreathMedicalSecurity
+ belt: ClothingBeltMedicalFilled
+ neck: ClothingNeckBodycam
+ innerclothingskirt: ClothingUniformJumpskirtBrigmedic
+ satchel: ClothingBackpackSatchelBrigmedicFilled
+ duffelbag: ClothingBackpackDuffelBrigmedicFilled
diff --git a/Resources/Prototypes/Roles/Jobs/Security/detective.yml b/Resources/Prototypes/Roles/Jobs/Security/detective.yml
index 943e75d71bd..abdf7ff2fa8 100644
--- a/Resources/Prototypes/Roles/Jobs/Security/detective.yml
+++ b/Resources/Prototypes/Roles/Jobs/Security/detective.yml
@@ -28,6 +28,9 @@
outerClothing: ClothingOuterVestDetective
id: DetectivePDA
ears: ClothingHeadsetSecurity
+ pocket1: ForensicPad
+ pocket2: ForensicScanner
+ neck: ClothingNeckBodycam
belt: ClothingBeltHolsterFilled
innerclothingskirt: ClothingUniformJumpskirtDetective
satchel: ClothingBackpackSatchelSecurityFilledDetective
diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml
index 422f4845fbd..8babcf84ab0 100644
--- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml
+++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml
@@ -51,6 +51,7 @@
ears: ClothingHeadsetAltSecurity
belt: ClothingBeltSecurityFilled
pocket1: WeaponPistolMk58Nonlethal
+ neck: ClothingNeckBodycam
innerclothingskirt: ClothingUniformJumpskirtHoS
satchel: ClothingBackpackSatchelHOSFilled
duffelbag: ClothingBackpackDuffelHOSFilled
diff --git a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml
index b58009ae86e..e8f195cfbd0 100644
--- a/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml
+++ b/Resources/Prototypes/Roles/Jobs/Security/security_cadet.yml
@@ -29,6 +29,7 @@
id: SecurityCadetPDA
ears: ClothingHeadsetSecurity
pocket1: WeaponPistolMk58Nonlethal
+ neck: ClothingNeckBodycam
innerclothingskirt: ClothingUniformJumpskirtColorRed
satchel: ClothingBackpackSatchelSecurityFilled
duffelbag: ClothingBackpackDuffelSecurityFilled
diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml
index ed2b00192ea..069c37cc244 100644
--- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml
+++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml
@@ -32,6 +32,7 @@
ears: ClothingHeadsetSecurity
belt: ClothingBeltSecurityFilled
pocket1: WeaponPistolMk58Nonlethal
+ neck: ClothingNeckBodycam
innerclothingskirt: ClothingUniformJumpskirtWarden
satchel: ClothingBackpackSatchelSecurityFilled
duffelbag: ClothingBackpackDuffelSecurityFilled
diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_medical.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_medical.yml
new file mode 100644
index 00000000000..83c226c0b77
--- /dev/null
+++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_medical.yml
@@ -0,0 +1,9 @@
+- type: cargoProduct
+ id: MedicalTrackingImplant
+ icon:
+ sprite: Objects/Specific/Chemistry/syringe.rsi
+ state: syringe_base0
+ product: CrateMedicalTrackingImplants
+ cost: 1000
+ category: Medical
+ group: market
diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml
new file mode 100644
index 00000000000..3de71493fa0
--- /dev/null
+++ b/Resources/Prototypes/_NF/Catalog/Fills/Boxes/general.yml
@@ -0,0 +1,24 @@
+- type: entity
+ name: medical insurance tracking implant box
+ parent: BoxCardboard
+ id: BoxMedicalTrackingImplants
+ description: Medical insurance implant kit.
+ components:
+ - type: Item
+ size: 60
+ - type: StorageFill
+ contents:
+ - id: MedicalTrackingImplanter
+ amount: 1
+ - id: HandheldGPSBasic
+ amount: 1
+ - id: PaperMedicalInsurance
+ amount: 1
+ - type: Storage
+ capacity: 60
+ - type: Sprite
+ layers:
+ - state: box
+ - state: syringe
+ - type: VendPrice
+ price: 200 # Single Implant Box (5 are 1000)
diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/medical.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/medical.yml
new file mode 100644
index 00000000000..654233e2ae3
--- /dev/null
+++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/medical.yml
@@ -0,0 +1,8 @@
+- type: entity
+ id: CrateMedicalTrackingImplants
+ parent: CrateMedical
+ components:
+ - type: StorageFill
+ contents:
+ - id: BoxMedicalTrackingImplants
+ amount: 5
diff --git a/Resources/Prototypes/_NF/Device/devicenet_frequencies.yml b/Resources/Prototypes/_NF/Device/devicenet_frequencies.yml
new file mode 100644
index 00000000000..50d4e4fda18
--- /dev/null
+++ b/Resources/Prototypes/_NF/Device/devicenet_frequencies.yml
@@ -0,0 +1,4 @@
+- type: deviceFrequency
+ id: SurveillanceCameraSecurityBodycam
+ name: device-frequency-prototype-name-surveillance-camera-security-bodycam
+ frequency: 10932
diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Neck/bodycam.yml b/Resources/Prototypes/_NF/Entities/Clothing/Neck/bodycam.yml
new file mode 100644
index 00000000000..7924541799c
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Clothing/Neck/bodycam.yml
@@ -0,0 +1,46 @@
+- type: entity
+ parent: Clothing
+ id: ClothingNeckBodycam
+ suffix: Security Camera
+ name: bodycam
+ description: Broadcast your trip into space.
+ components:
+ - type: InteractionOutline
+ - type: Eye
+ - type: DeviceNetwork
+ deviceNetId: Wireless
+ receiveFrequencyId: SurveillanceCameraSecurityBodycam
+ transmitFrequencyId: SurveillanceCamera
+ - type: SurveillanceCamera
+ networkSet: true
+ nameSetUser: true
+ - type: WirelessNetworkConnection
+ range: 10000
+# - type: SurveillanceCameraMicrophone
+# blacklist:
+# components:
+# - SurveillanceCamera
+# - SurveillanceCameraMonitor
+# - RadioSpeaker
+# - type: ActiveListener
+# range: 10
+ - type: UserInterface
+ interfaces:
+ - key: enum.SurveillanceCameraSetupUiKey.Camera
+ type: SurveillanceCameraSetupBoundUi
+ - type: Sprite
+ sprite: _NF/Clothing/Neck/Medals/bodycam.rsi
+ layers:
+ - map: [ "enum.SurveillanceCameraVisualsKey.Key" ]
+ state: icon
+ - type: Clothing
+ sprite: _NF/Clothing/Neck/Medals/bodycam.rsi
+ quickEquip: true
+ slots:
+ - neck
+ - type: Item
+ size: 10
+ - type: StaticPrice
+ price: 50
+ - type: Bodycam
+ mode: CameraOn
diff --git a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/argocyte.yml b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/argocyte.yml
new file mode 100644
index 00000000000..1c544f46387
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/argocyte.yml
@@ -0,0 +1,24 @@
+- type: entity
+ name: NPC Argocyte Spawner
+ id: ArgocyteAISpawner
+ parent: MarkerBase
+ components:
+ - type: Sprite
+ layers:
+ - state: red
+ - type: RandomSpawner
+ prototypes:
+ - MobArgocyteSlurva
+ - MobArgocyteBarrier
+ - MobArgocyteSkitter
+ - MobArgocyteSwiper
+ - MobArgocyteMolder
+ - MobArgocytePouncer
+ - MobArgocyteGlider
+ - MobArgocyteHarvester
+ - MobArgocyteCrawler
+ - MobArgocyteEnforcer
+ - MobArgocyteFounder
+ rarePrototypes:
+ - MobArgocyteLeviathing
+ rareChance: 0.10
diff --git a/Resources/Prototypes/_NF/Entities/Objects/Faction/churchofweedgod.yml b/Resources/Prototypes/_NF/Entities/Objects/Faction/churchofweedgod.yml
new file mode 100644
index 00000000000..be9c7d3bb48
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Objects/Faction/churchofweedgod.yml
@@ -0,0 +1,81 @@
+
+#Clothing
+- type: entity
+ parent: ClothingOuterBase
+ id: ClothingOuterRobesWeedChurch
+ name: church of weedgod robes
+ description: the robes of those dedicated to the god who's name begins with G
+ components:
+ - type: Sprite
+ sprite: _NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi
+ - type: Clothing
+ sprite: _NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi
+
+- type: entity
+ parent: ClothingHeadBaseButcherable
+ id: ClothingHeadBeanieWeedChurch
+ name: church of weedgod beanie
+ description: the beanie worn by followers of the church of weedgod
+ components:
+ - type: Sprite
+ sprite: _NF/Faction/Clothing/Head/weedchurchbeanie.rsi
+ - type: Clothing
+ sprite: _NF/Faction/Clothing/Head/weedchurchbeanie.rsi
+
+- type: entity
+ parent: ClothingHeadBase
+ id: ClothingHeadWeedChurchBishop
+ name: church of weedgod bishop's hat
+ description: a holy hat worn by those with high status in the church of weedgod
+ components:
+ - type: Sprite
+ sprite: _NF/Faction/Clothing/Head/weedchurchbishop.rsi
+ - type: Clothing
+ sprite: _NF/Faction/Clothing/Head/weedchurchbishop.rsi
+
+#Bible
+- type: entity
+ name: weejurnum
+ description: holy book to followers of the church of weedgod
+ parent: BaseStorageItem
+ id: Weejurnum
+ components:
+ - type: UseDelay
+ delay: 10.0
+ - type: Bible
+ damage:
+ groups:
+ Brute: -15
+ Burn: -15
+ damageOnFail:
+ groups:
+ Brute: 15
+ Airloss: 15
+ damageOnUntrainedUse: ## What a non-chaplain takes when attempting to heal someone
+ groups:
+ Burn: 10
+ - type: Prayable
+ bibleUserOnly: true
+ - type: ReactionMixer
+ mixMessage: "bible-mixing-success"
+ reactionTypes:
+ - Holy
+ - type: ItemCooldown
+ - type: Sprite
+ sprite: _NF/Faction/Objects/weejurnum.rsi
+ state: icon
+ - type: Item
+ size: 15
+ sprite: _NF/Faction/Objects/weejurnum.rsi
+ - type: Clothing
+ slots:
+ - Belt
+ - type: Storage
+ capacity: 10
+ - type: UserInterface
+ interfaces:
+ - key: enum.StorageUiKey.Key
+ type: StorageBoundUserInterface
+ - type: Tag
+ tags:
+ - Book
diff --git a/Resources/Prototypes/_NF/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/_NF/Entities/Objects/Misc/implanters.yml
new file mode 100644
index 00000000000..9872e713e1d
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Objects/Misc/implanters.yml
@@ -0,0 +1,9 @@
+#Medical implanters
+
+- type: entity
+ id: MedicalTrackingImplanter
+ name: medical insurance tracking implanter
+ parent: BaseImplantOnlyImplanter
+ components:
+ - type: Implanter
+ implant: MedicalTrackingImplant
diff --git a/Resources/Prototypes/_NF/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/_NF/Entities/Objects/Misc/paper.yml
new file mode 100644
index 00000000000..4c6f8ab1c52
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Objects/Misc/paper.yml
@@ -0,0 +1,29 @@
+- type: entity
+ name: Medical insurance form
+ parent: Paper
+ id: PaperMedicalInsurance
+ description: 'Provide this papar for an insurance provider.'
+ components:
+ - type: Paper
+ contentSize: 10000
+ escapeFormatting: false
+ content: book-medical-insurance
+ - type: Sprite
+ sprite: Objects/Misc/bureaucracy.rsi
+ layers:
+ - state: paper
+ color: "#cccccc"
+ - state: paper_words
+ map: ["enum.PaperVisualLayers.Writing"]
+ color: "#cccccc" #aaaaaaaaaaaaaaaaaaaaaaa
+ visible: false
+ - state: paper_stamp-generic
+ map: ["enum.PaperVisualLayers.Stamp"]
+ visible: false
+ - type: PaperVisuals
+ backgroundImagePath: "/Textures/Interface/Paper/paper_background_default.svg.96dpi.png"
+ contentImagePath: "/Textures/Interface/Paper/paper_content_lined.svg.96dpi.png"
+ backgroundModulate: "#cccccc"
+ contentImageModulate: "#cccccc"
+ backgroundPatchMargin: 16.0, 16.0, 16.0, 16.0
+ contentMargin: 16.0, 16.0, 16.0, 16.0
diff --git a/Resources/Prototypes/_NF/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/_NF/Entities/Objects/Misc/subdermal_implants.yml
new file mode 100644
index 00000000000..ed024b64248
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Objects/Misc/subdermal_implants.yml
@@ -0,0 +1,27 @@
+#Medical implants
+
+- type: entity
+ parent: BaseSubdermalImplant
+ id: MedicalTrackingImplant
+ name: medical insurance tracking implant
+ description: This implant has a tracking device attached to the suit sensor network, as well as a condition monitor for the Medical radio channel.
+ noSpawn: true
+ components:
+ - type: SubdermalImplant
+ - type: SuitSensor
+ randomMode: false
+ controlsLocked: true
+ mode: SensorCords
+ activationContainer: "implant"
+ - type: DeviceNetwork
+ deviceNetId: Wireless
+ transmitFrequencyId: SuitSensor
+ - type: StationLimitedNetwork
+ - type: WirelessNetworkConnection
+ range: 10000
+ - type: TriggerOnMobstateChange
+ mobState:
+ - Critical
+ - Dead
+ - type: Rattle
+ radioChannel: "Medical"
diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/surveillance_camera_routers.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/surveillance_camera_routers.yml
new file mode 100644
index 00000000000..11c417bd07c
--- /dev/null
+++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/surveillance_camera_routers.yml
@@ -0,0 +1,7 @@
+- type: entity
+ parent: SurveillanceCameraWirelessRouterBase
+ id: SurveillanceCameraWirelessRouterSecurityBodycam
+ suffix: Security Bodycam
+ components:
+ - type: SurveillanceCameraRouter
+ subnetFrequency: SurveillanceCameraSecurityBodycam
diff --git a/Resources/Prototypes/_NF/Events/events.yml b/Resources/Prototypes/_NF/Events/events.yml
index d608f30a4a3..d33b3148b3d 100644
--- a/Resources/Prototypes/_NF/Events/events.yml
+++ b/Resources/Prototypes/_NF/Events/events.yml
@@ -84,3 +84,22 @@
earliestStart: 90
minimumPlayers: 20
- type: BluespaceSyndicateCrateRule
+
+- type: entity
+ id: BluespaceAsteroid
+ parent: BaseGameRule
+ noSpawn: true
+ components:
+ - type: StationEvent
+ startAnnouncement: station-event-bluespace-asteroid-start-announcement
+ startAudio:
+ path: /Audio/Announcements/attention.ogg
+ endAnnouncement: station-event-bluespace-asteroid-end-announcement
+ earliestStart: 100
+ minimumPlayers: 15
+ weight: 5
+ startDelay: 10
+ duration: 1500
+ maxDuration: 1800
+ - type: BluespaceErrorRule
+ gridPath: /Maps/Bluespace/asteroidvault.yml
diff --git a/Resources/Prototypes/_NF/Shipyard/hunter.yml b/Resources/Prototypes/_NF/Shipyard/hunter.yml
new file mode 100644
index 00000000000..4001fa6ffcf
--- /dev/null
+++ b/Resources/Prototypes/_NF/Shipyard/hunter.yml
@@ -0,0 +1,27 @@
+- type: vessel
+ id: Hunter
+ name: Hunter
+ description: A small armored syndicate assault shuttle, perfect for devious operations!
+ price: 46000
+ category: Small
+ group: BlackMarket
+ shuttlePath: /Maps/Shuttles/hunter.yml
+
+- type: gameMap
+ id: Hunter
+ mapName: 'Hunter'
+ mapPath: /Maps/Shuttles/hunter.yml
+ minPlayers: 0
+ stations:
+ Hunter:
+ stationProto: StandardFrontierVessel
+ components:
+ - type: StationNameSetup
+ mapNameTemplate: 'Hunter {1}'
+ nameGenerator:
+ !type:NanotrasenNameGenerator
+ prefixCreator: '14'
+ - type: StationJobs
+ overflowJobs: []
+ availableJobs:
+ Passenger: [ 0, 0 ]
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vulpkanin.png
new file mode 100644
index 00000000000..786ccb9b7d7
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json
index 1faf3aa6d0c..7786e88c875 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json
@@ -22,6 +22,10 @@
{
"name": "equipped-head",
"directions": 4
+ },
+ {
+ "name": "equipped-head-vulpkanin",
+ "directions": 4
},
{
"name": "equipped-head-light",
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..5769c3c882c
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json
index 120d4d77238..246ec1d69dd 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/brigmedic.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/brigmedic.rsi/meta.json
index e4a3096a67f..7f118a00371 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/brigmedic.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/brigmedic.rsi/meta.json
@@ -17,6 +17,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -29,6 +33,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/brigmedic.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/brigmedic.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..7d026056493
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/brigmedic.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/brigmedic.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/brigmedic.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..7de19eca589
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/brigmedic.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json
index 7bea2d1a865..f9083ec0544 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json
@@ -17,6 +17,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -29,6 +33,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..3eea9c1c158
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..983197a562b
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json
index 7bea2d1a865..f9083ec0544 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json
@@ -17,6 +17,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -29,6 +33,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..116f16998d9
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..88bc83b8cbb
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json
index d431123de2b..f5f53529e21 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json
@@ -17,6 +17,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -29,6 +33,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..2ad42300189
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..71d2bcce1d3
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json
index 7bea2d1a865..f9083ec0544 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json
@@ -17,6 +17,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -29,6 +33,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..cac80a25228
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..eb78a6809fc
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json
index 7bea2d1a865..f9083ec0544 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json
@@ -17,6 +17,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -29,6 +33,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..ce8663bda8e
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..dcf09af4002
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json
index 7bea2d1a865..f9083ec0544 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json
@@ -17,6 +17,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -29,6 +33,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..2ad42300189
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..71d2bcce1d3
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-patrol.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-patrol.rsi/meta.json
index 554d6738f0e..f43ab362dd8 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/security-patrol.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/security-patrol.rsi/meta.json
@@ -17,6 +17,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -29,6 +33,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-patrol.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-patrol.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..86d26a13a64
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-patrol.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-patrol.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-patrol.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..839da10f1bd
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-patrol.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json
index 7bea2d1a865..f9083ec0544 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json
@@ -17,6 +17,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -29,6 +33,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..40d3225feb6
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..a5489eafa4c
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json
index d77d41281ca..0a1a53b6107 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json
@@ -17,9 +17,17 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-equipped-HELMET",
"directions": 4
+ },
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
}
]
}
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..40d3225feb6
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..a5489eafa4c
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json
index 7bea2d1a865..f9083ec0544 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json
@@ -17,6 +17,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -29,6 +33,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..86d26a13a64
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..839da10f1bd
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vulpkanin.png
new file mode 100644
index 00000000000..b9464263356
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json
index 663b0129d56..58fe75c837e 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json
@@ -24,6 +24,10 @@
"name": "equipped-head",
"directions": 4
},
+ {
+ "name": "equipped-head-vulpkanin",
+ "directions": 4
+ },
{
"name": "equipped-head-light",
"directions": 4
@@ -57,4 +61,4 @@
"directions": 4
}
]
-}
\ No newline at end of file
+}
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..c9618bf4029
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json
index e9de1ae57b6..8dfa0d4c12f 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json
@@ -17,10 +17,18 @@
"name": "combat-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "combat-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -33,6 +41,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..c9618bf4029
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..15467a15cf4
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json
index 038aabe6050..7b0d4d2bbb2 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json
@@ -18,6 +18,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -30,6 +34,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
@@ -39,4 +47,4 @@
"directions": 4
}
]
-}
\ No newline at end of file
+}
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..c9618bf4029
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..15467a15cf4
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json
index 038aabe6050..7b0d4d2bbb2 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json
@@ -18,6 +18,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -30,6 +34,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
@@ -39,4 +47,4 @@
"directions": 4
}
]
-}
\ No newline at end of file
+}
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..9ab93ff3ce3
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..2090135529b
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json
index 7bea2d1a865..f9083ec0544 100644
--- a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json
@@ -17,6 +17,10 @@
"name": "off-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "off-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "off-inhand-left",
"directions": 4
@@ -29,6 +33,10 @@
"name": "on-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "on-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "on-inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..924092fb784
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..a493d86aa3e
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..9e91780d75c
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/meta.json
index ce6a86ea762..096423dab85 100644
--- a/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..ecc762bf265
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json
index 2e66e1d8357..3a13884ca40 100644
--- a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..ecc762bf265
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json
index 2e66e1d8357..3a13884ca40 100644
--- a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..a56ae5c252f
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json
index 2e66e1d8357..3a13884ca40 100644
--- a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..9e91780d75c
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json
index a470e009443..9e58149392c 100644
--- a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..e7f931db5d4
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json
index c402402b13b..cc9adf3a8d1 100644
--- a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..b901700c50b
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json
index 922cbddb201..b17c7266fad 100644
--- a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..0e9ae306ebd
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json
index a470e009443..9e58149392c 100644
--- a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..91a99ed9890
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json
index a470e009443..9e58149392c 100644
--- a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..0e9ae306ebd
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json
index a470e009443..9e58149392c 100644
--- a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..bd4683575cc
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json
index a470e009443..9e58149392c 100644
--- a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..a23e13588fb
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json
index a470e009443..9e58149392c 100644
--- a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..d7311b81f33
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json
index a470e009443..9e58149392c 100644
--- a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..2b72308ebc6
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json
index a470e009443..9e58149392c 100644
--- a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..e0bf7414b8c
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json
index 920a78a535b..5546f8a88bb 100644
--- a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json
@@ -13,6 +13,10 @@
{
"name": "equipped-HELMET",
"directions": 4
+ },
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
}
]
}
diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..89a431bd4ce
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json
index e52e61ea702..36ef6016436 100644
--- a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json
@@ -17,10 +17,18 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "up-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "up-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..7ef86cc47d1
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..89a431bd4ce
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json
index e52e61ea702..36ef6016436 100644
--- a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json
@@ -17,10 +17,18 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "up-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "up-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..7ef86cc47d1
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..89a431bd4ce
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json
index e52e61ea702..36ef6016436 100644
--- a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json
@@ -17,10 +17,18 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "up-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "up-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..7ef86cc47d1
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..89a431bd4ce
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json
index 90730cb2d00..25fb6e0c538 100644
--- a/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json
+++ b/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json
@@ -17,10 +17,18 @@
"name": "equipped-HELMET",
"directions": 4
},
+ {
+ "name": "equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "up-equipped-HELMET",
"directions": 4
},
+ {
+ "name": "up-equipped-HELMET-vulpkanin",
+ "directions": 4
+ },
{
"name": "equipped-HELMET-hamster",
"directions": 4
diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vulpkanin.png
new file mode 100644
index 00000000000..7ef86cc47d1
Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..a15d4503ca9
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json b/Resources/Textures/Clothing/Mask/breath.rsi/meta.json
index 01d11084304..17b451fa06c 100644
--- a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/breath.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "up-equipped-MASK",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..e91900f4bd3
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json b/Resources/Textures/Clothing/Mask/clown.rsi/meta.json
index 61285267dfb..715f16e7779 100644
--- a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/clown.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "equipped-MASK-hamster",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..648e7e6eb15
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/ert.rsi/meta.json b/Resources/Textures/Clothing/Mask/ert.rsi/meta.json
index c46db45e2ad..1739d85cd7a 100644
--- a/Resources/Textures/Clothing/Mask/ert.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/ert.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..12d2eab9b9c
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json b/Resources/Textures/Clothing/Mask/gas.rsi/meta.json
index 61285267dfb..715f16e7779 100644
--- a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/gas.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "equipped-MASK-hamster",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..1312db04ae2
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json
index 2e57ae21510..a61be048df9 100644
--- a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..9c01824726f
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json b/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json
index 2e57ae21510..a39a8b5bd95 100644
--- a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..a5154937249
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json b/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json
index 2e57ae21510..a39a8b5bd95 100644
--- a/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..27df2f53989
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json
index ff664dffd4c..7d5e8cfab9a 100644
--- a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "up-equipped-MASK",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..18be6df1bef
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json
index ff664dffd4c..8b3e5c1d1da 100644
--- a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "up-equipped-MASK",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..e1717ce151b
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json
index c5a4ced1200..bbdfb6c41a4 100644
--- a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json
@@ -20,6 +20,16 @@
[ 0.5, 0.5, 0.5 ]
]
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4,
+ "delays": [
+ [ 0.5, 0.5, 0.5 ],
+ [ 0.5, 0.5, 0.5 ],
+ [ 0.5, 0.5, 0.5 ],
+ [ 0.5, 0.5, 0.5 ]
+ ]
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..98cc26bf56f
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json
index 3c25ce69062..6da3a8f83c9 100644
--- a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..4b2956c2be9
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json b/Resources/Textures/Clothing/Mask/medical.rsi/meta.json
index ce7886d06c2..0cf573bc4b8 100644
--- a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/medical.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "equipped-MASK-dog",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..4b2956c2be9
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json
index 9a2ea46c4ce..9838f7a8793 100644
--- a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "equipped-MASK-dog",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..a5154937249
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/merc.rsi/meta.json b/Resources/Textures/Clothing/Mask/merc.rsi/meta.json
index 0fe84a690dd..329a6890a14 100644
--- a/Resources/Textures/Clothing/Mask/merc.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/merc.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..bf7d0395d81
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/mime.rsi/meta.json b/Resources/Textures/Clothing/Mask/mime.rsi/meta.json
index a6a68336716..b38ed86dc2e 100644
--- a/Resources/Textures/Clothing/Mask/mime.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/mime.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "equipped-MASK-hamster",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..011b1b40fbb
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json b/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json
index a1e3d6e7333..e7cadacd90d 100644
--- a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
+ "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e",
"size": {
"x": 32,
"y": 32
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
@@ -21,6 +25,6 @@
{
"name": "inhand-right",
"directions": 4
- }
+ }
]
-}
\ No newline at end of file
+}
diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..f8b297ba45a
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json
index 25dfc5f68c9..4cddc88865b 100644
--- a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..27063473e01
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json
index 93af52132fe..82389103051 100644
--- a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
@@ -23,4 +27,4 @@
"directions": 4
}
]
-}
\ No newline at end of file
+}
diff --git a/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..bf7d0395d81
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json b/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json
index 32b7b1acf31..ded008adb13 100644
--- a/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json
@@ -13,6 +13,10 @@
{
"name": "equipped-MASK",
"directions": 4
+ },
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
}
]
}
diff --git a/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..bf7d0395d81
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json b/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json
index 32b7b1acf31..ded008adb13 100644
--- a/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json
@@ -13,6 +13,10 @@
{
"name": "equipped-MASK",
"directions": 4
+ },
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
}
]
}
diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..b262c40500f
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json b/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json
index ca8bcd1bc1c..91c3ad0d5a6 100644
--- a/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json
@@ -13,6 +13,10 @@
{
"name": "equipped-MASK",
"directions": 4
+ },
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
}
]
}
diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..3fc25dd2a7f
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json b/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json
index ca8bcd1bc1c..91c3ad0d5a6 100644
--- a/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json
@@ -13,6 +13,10 @@
{
"name": "equipped-MASK",
"directions": 4
+ },
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
}
]
}
diff --git a/Resources/Textures/Clothing/Mask/squadron.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/squadron.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..648e7e6eb15
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/squadron.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/squadron.rsi/meta.json b/Resources/Textures/Clothing/Mask/squadron.rsi/meta.json
index c46db45e2ad..9ef67e91a80 100644
--- a/Resources/Textures/Clothing/Mask/squadron.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/squadron.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..77eec9f04fc
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json b/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json
index ff664dffd4c..d47f498e3fd 100644
--- a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "up-equipped-MASK",
"directions": 4
diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vulpkanin.png
new file mode 100644
index 00000000000..648e7e6eb15
Binary files /dev/null and b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vulpkanin.png differ
diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json
index 1eebf87c72b..c537ccdf9b1 100644
--- a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json
+++ b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json
@@ -14,6 +14,10 @@
"name": "equipped-MASK",
"directions": 4
},
+ {
+ "name": "equipped-MASK-vulpkanin",
+ "directions": 4
+ },
{
"name": "inhand-left",
"directions": 4
diff --git a/Resources/Textures/Clothing/Shoes/Misc/clothwarp.rsi/equipped-FEET.png b/Resources/Textures/Clothing/Shoes/Misc/clothwarp.rsi/equipped-FEET.png
new file mode 100644
index 00000000000..4a3104fead9
Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/clothwarp.rsi/equipped-FEET.png differ
diff --git a/Resources/Textures/Clothing/Shoes/Misc/clothwarp.rsi/icon.png b/Resources/Textures/Clothing/Shoes/Misc/clothwarp.rsi/icon.png
new file mode 100644
index 00000000000..8f531e890c1
Binary files /dev/null and b/Resources/Textures/Clothing/Shoes/Misc/clothwarp.rsi/icon.png differ
diff --git a/Resources/Textures/Clothing/Shoes/Misc/clothwarp.rsi/meta.json b/Resources/Textures/Clothing/Shoes/Misc/clothwarp.rsi/meta.json
new file mode 100644
index 00000000000..415e7e7d2bf
--- /dev/null
+++ b/Resources/Textures/Clothing/Shoes/Misc/clothwarp.rsi/meta.json
@@ -0,0 +1 @@
+{"version": 1, "license": "CC-BY-SA-3.0", "copyright": "Taken from Paradise", "size": {"x": 32, "y": 32}, "states": [{"name": "icon"}, {"name": "equipped-FEET", "directions": 4}]}
diff --git a/Resources/Textures/Decals/ss14sign.rsi/meta.json b/Resources/Textures/Decals/ss14sign.rsi/meta.json
index 5addf7f8d49..e0361b6c5e4 100644
--- a/Resources/Textures/Decals/ss14sign.rsi/meta.json
+++ b/Resources/Textures/Decals/ss14sign.rsi/meta.json
@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
- "copyright": "tgstation at 606005645d3a14c4439e5ce14785650121b22678, modified by EmoGarbage404",
+ "copyright": "tgstation at 606005645d3a14c4439e5ce14785650121b22678, modified by Potato1234x (Github)",
"size": {
"x": 32,
"y": 32
@@ -27,6 +27,18 @@
},
{
"name": "ss14sign7"
+ },
+ {
+ "name": "ss14sign8"
+ },
+ {
+ "name": "ss14sign9"
+ },
+ {
+ "name": "ss14sign10"
+ },
+ {
+ "name": "ss14sign11"
}
]
}
diff --git a/Resources/Textures/Decals/ss14sign.rsi/ss14sign1.png b/Resources/Textures/Decals/ss14sign.rsi/ss14sign1.png
index 68fad869b36..73f0b803d10 100644
Binary files a/Resources/Textures/Decals/ss14sign.rsi/ss14sign1.png and b/Resources/Textures/Decals/ss14sign.rsi/ss14sign1.png differ
diff --git a/Resources/Textures/Decals/ss14sign.rsi/ss14sign10.png b/Resources/Textures/Decals/ss14sign.rsi/ss14sign10.png
new file mode 100644
index 00000000000..3024a26fcfc
Binary files /dev/null and b/Resources/Textures/Decals/ss14sign.rsi/ss14sign10.png differ
diff --git a/Resources/Textures/Decals/ss14sign.rsi/ss14sign11.png b/Resources/Textures/Decals/ss14sign.rsi/ss14sign11.png
new file mode 100644
index 00000000000..bfe57a2540c
Binary files /dev/null and b/Resources/Textures/Decals/ss14sign.rsi/ss14sign11.png differ
diff --git a/Resources/Textures/Decals/ss14sign.rsi/ss14sign2.png b/Resources/Textures/Decals/ss14sign.rsi/ss14sign2.png
index c4a298135f7..a9e6c17f83b 100644
Binary files a/Resources/Textures/Decals/ss14sign.rsi/ss14sign2.png and b/Resources/Textures/Decals/ss14sign.rsi/ss14sign2.png differ
diff --git a/Resources/Textures/Decals/ss14sign.rsi/ss14sign3.png b/Resources/Textures/Decals/ss14sign.rsi/ss14sign3.png
index 392c46c0432..3b63292b47c 100644
Binary files a/Resources/Textures/Decals/ss14sign.rsi/ss14sign3.png and b/Resources/Textures/Decals/ss14sign.rsi/ss14sign3.png differ
diff --git a/Resources/Textures/Decals/ss14sign.rsi/ss14sign4.png b/Resources/Textures/Decals/ss14sign.rsi/ss14sign4.png
index 0f64f2bf0bf..0b032ba6b51 100644
Binary files a/Resources/Textures/Decals/ss14sign.rsi/ss14sign4.png and b/Resources/Textures/Decals/ss14sign.rsi/ss14sign4.png differ
diff --git a/Resources/Textures/Decals/ss14sign.rsi/ss14sign5.png b/Resources/Textures/Decals/ss14sign.rsi/ss14sign5.png
index 264319bb2c1..a8ca8679f3c 100644
Binary files a/Resources/Textures/Decals/ss14sign.rsi/ss14sign5.png and b/Resources/Textures/Decals/ss14sign.rsi/ss14sign5.png differ
diff --git a/Resources/Textures/Decals/ss14sign.rsi/ss14sign6.png b/Resources/Textures/Decals/ss14sign.rsi/ss14sign6.png
index 803c43b5ff8..326c44c1ad3 100644
Binary files a/Resources/Textures/Decals/ss14sign.rsi/ss14sign6.png and b/Resources/Textures/Decals/ss14sign.rsi/ss14sign6.png differ
diff --git a/Resources/Textures/Decals/ss14sign.rsi/ss14sign7.png b/Resources/Textures/Decals/ss14sign.rsi/ss14sign7.png
index cc508671e51..c03ea301619 100644
Binary files a/Resources/Textures/Decals/ss14sign.rsi/ss14sign7.png and b/Resources/Textures/Decals/ss14sign.rsi/ss14sign7.png differ
diff --git a/Resources/Textures/Decals/ss14sign.rsi/ss14sign8.png b/Resources/Textures/Decals/ss14sign.rsi/ss14sign8.png
new file mode 100644
index 00000000000..050c5f45c46
Binary files /dev/null and b/Resources/Textures/Decals/ss14sign.rsi/ss14sign8.png differ
diff --git a/Resources/Textures/Decals/ss14sign.rsi/ss14sign9.png b/Resources/Textures/Decals/ss14sign.rsi/ss14sign9.png
new file mode 100644
index 00000000000..d45ae94de31
Binary files /dev/null and b/Resources/Textures/Decals/ss14sign.rsi/ss14sign9.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_crest.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_crest.png
new file mode 100644
index 00000000000..4f89cd5c744
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_crest.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_fox.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_fox.png
new file mode 100644
index 00000000000..a87895c87a7
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_fox.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_full.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_full.png
new file mode 100644
index 00000000000..4aacde2a6f8
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_full.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/meta.json
new file mode 100644
index 00000000000..9411445392d
--- /dev/null
+++ b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/meta.json
@@ -0,0 +1,64 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from https://github.com/ParadiseSS13/Paradise edited by Floofers",
+ "size": {"x": 32, "y": 32},
+ "states": [
+ {
+ "name": "points_fade",
+ "directions": 4
+ },
+ {
+ "name": "points_sharp",
+ "directions": 4
+ },
+ {
+ "name": "points_crest",
+ "directions": 4
+ },
+ {
+ "name": "belly_fox",
+ "directions": 4
+ },
+ {
+ "name": "belly_full",
+ "directions": 4
+ },
+ {
+ "name": "belly_crest",
+ "directions": 4
+ },
+ {
+ "name": "points_hands",
+ "directions": 4
+ },
+ {
+ "name": "points_feet",
+ "directions": 4
+ },
+ {
+ "name": "points_sharp-arms",
+ "directions": 4
+ },
+ {
+ "name": "points_sharp-legs",
+ "directions": 4
+ },
+ {
+ "name": "points_fade-arms",
+ "directions": 4
+ },
+ {
+ "name": "points_fade-legs",
+ "directions": 4
+ },
+ {
+ "name": "points_crest-arms",
+ "directions": 4
+ },
+ {
+ "name": "points_crest-legs",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest-arms.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest-arms.png
new file mode 100644
index 00000000000..ab5778a8c0e
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest-arms.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest-legs.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest-legs.png
new file mode 100644
index 00000000000..462b7141961
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest-legs.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest.png
new file mode 100644
index 00000000000..38f54cd31f2
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arms.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arms.png
new file mode 100644
index 00000000000..ef09441895e
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arms.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-legs.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-legs.png
new file mode 100644
index 00000000000..e85611a141e
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-legs.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade.png
new file mode 100644
index 00000000000..4901fdfe91a
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_feet.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_feet.png
new file mode 100644
index 00000000000..0797239f4e2
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_feet.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_hands.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_hands.png
new file mode 100644
index 00000000000..2e98cce6aeb
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_hands.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arms.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arms.png
new file mode 100644
index 00000000000..886be6412b6
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arms.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-legs.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-legs.png
new file mode 100644
index 00000000000..b84265c7149
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-legs.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp.png
new file mode 100644
index 00000000000..cae0e16e832
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/coyote.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/coyote.png
new file mode 100644
index 00000000000..36687c01315
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/coyote.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/dalmatian.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/dalmatian.png
new file mode 100644
index 00000000000..6f94847a1d5
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/dalmatian.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec-inner.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec-inner.png
new file mode 100644
index 00000000000..522ba6b4ce1
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec-inner.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec.png
new file mode 100644
index 00000000000..a7a69c77449
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox.png
new file mode 100644
index 00000000000..b850826c04b
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal-inner.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal-inner.png
new file mode 100644
index 00000000000..fa773690674
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal-inner.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal.png
new file mode 100644
index 00000000000..85c52975441
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/meta.json
new file mode 100644
index 00000000000..902f204a90b
--- /dev/null
+++ b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/meta.json
@@ -0,0 +1,88 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "vulp-sharp and vulp-fade taken from https://github.com/ParadiseSS13/Paradise/ every thing else taken from https://github.com/VOREStation/VOREStation/ edited by Floofers",
+ "size": {"x": 32, "y": 32},
+ "states": [
+ {
+ "name": "vulp",
+ "directions": 4
+ },
+ {
+ "name": "vulp-inner",
+ "directions": 4
+ },
+ {
+ "name": "vulp-fade",
+ "directions": 4
+ },
+ {
+ "name": "vulp-sharp",
+ "directions": 4
+ },
+ {
+ "name": "jackal",
+ "directions": 4
+ },
+ {
+ "name": "jackal-inner",
+ "directions": 4
+ },
+ {
+ "name": "terrier",
+ "directions": 4
+ },
+ {
+ "name": "terrier-inner",
+ "directions": 4
+ },
+ {
+ "name": "wolf",
+ "directions": 4
+ },
+ {
+ "name": "wolf-inner",
+ "directions": 4
+ },
+ {
+ "name": "fennec",
+ "directions": 4
+ },
+ {
+ "name": "fennec-inner",
+ "directions": 4
+ },
+ {
+ "name": "fox",
+ "directions": 4
+ },
+ {
+ "name": "otie",
+ "directions": 4
+ },
+ {
+ "name": "otie-inner",
+ "directions": 4
+ },
+ {
+ "name": "msai",
+ "directions": 4
+ },
+ {
+ "name": "msai-inner",
+ "directions": 4
+ },
+ {
+ "name": "shock",
+ "directions": 4
+ },
+ {
+ "name": "coyote",
+ "directions": 4
+ },
+ {
+ "name": "dalmatian",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/msai-inner.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/msai-inner.png
new file mode 100644
index 00000000000..71b7a14d866
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/msai-inner.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/msai.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/msai.png
new file mode 100644
index 00000000000..e9180c4e2cf
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/msai.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie-inner.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie-inner.png
new file mode 100644
index 00000000000..a44c962eec3
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie-inner.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie.png
new file mode 100644
index 00000000000..fe0ceb673d9
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/shock.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/shock.png
new file mode 100644
index 00000000000..9ea9f102f2a
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/shock.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier-inner.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier-inner.png
new file mode 100644
index 00000000000..76e3a106ccd
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier-inner.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier.png
new file mode 100644
index 00000000000..a230a12c0a5
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-fade.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-fade.png
new file mode 100644
index 00000000000..bdf14818999
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-fade.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-inner.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-inner.png
new file mode 100644
index 00000000000..cd58f4714d9
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-inner.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-sharp.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-sharp.png
new file mode 100644
index 00000000000..97d5b34411f
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-sharp.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp.png
new file mode 100644
index 00000000000..034d0ace081
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/wolf-inner.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/wolf-inner.png
new file mode 100644
index 00000000000..be32a6e9b08
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/wolf-inner.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/wolf.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/wolf.png
new file mode 100644
index 00000000000..52379e953ca
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/ear_markings.rsi/wolf.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder.png
new file mode 100644
index 00000000000..0a3601e376e
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder_chin.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder_chin.png
new file mode 100644
index 00000000000..6659cf91933
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder_chin.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/kita.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/kita.png
new file mode 100644
index 00000000000..67f973856ba
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/kita.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/meta.json
new file mode 100644
index 00000000000..56ff914fd9b
--- /dev/null
+++ b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/meta.json
@@ -0,0 +1,24 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from https://github.com/ParadiseSS13/Paradise edited by Floofers",
+ "size": {"x": 32, "y": 32},
+ "states": [
+ {
+ "name": "ruff",
+ "directions": 4
+ },
+ {
+ "name": "elder",
+ "directions": 4
+ },
+ {
+ "name": "elder_chin",
+ "directions": 4
+ },
+ {
+ "name": "kita",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/ruff.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/ruff.png
new file mode 100644
index 00000000000..3a632771c90
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/facial_hair.rsi/ruff.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/adhara.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/adhara.png
new file mode 100644
index 00000000000..8e563cd74ad
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/adhara.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/anita.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/anita.png
new file mode 100644
index 00000000000..5d4e146ace8
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/anita.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/apollo.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/apollo.png
new file mode 100644
index 00000000000..4dee8b08d04
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/apollo.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/belle.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/belle.png
new file mode 100644
index 00000000000..63dc8686a8f
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/belle.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/braided.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/braided.png
new file mode 100644
index 00000000000..f36e2d9f278
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/braided.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/bun.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/bun.png
new file mode 100644
index 00000000000..26e61f7bd14
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/bun.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/clean_cut.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/clean_cut.png
new file mode 100644
index 00000000000..db56fa0028e
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/clean_cut.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/curl.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/curl.png
new file mode 100644
index 00000000000..e9083ae6086
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/curl.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/hawk.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/hawk.png
new file mode 100644
index 00000000000..546664a61f1
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/hawk.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/jagged.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/jagged.png
new file mode 100644
index 00000000000..9ccfb37dc17
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/jagged.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/jeremy.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/jeremy.png
new file mode 100644
index 00000000000..36240cd9e07
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/jeremy.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/kajam.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/kajam.png
new file mode 100644
index 00000000000..bae87f1a715
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/kajam.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/keid.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/keid.png
new file mode 100644
index 00000000000..0a8bd00c660
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/keid.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/kleeia.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/kleeia.png
new file mode 100644
index 00000000000..9056c12342c
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/kleeia.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/meta.json
new file mode 100644
index 00000000000..424a9acfbee
--- /dev/null
+++ b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/meta.json
@@ -0,0 +1,92 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from https://github.com/ParadiseSS13/Paradise edited by Floofers",
+ "size": {"x": 32, "y": 32},
+ "states": [
+ {
+ "name": "adhara",
+ "directions": 4
+ },
+ {
+ "name": "anita",
+ "directions": 4
+ },
+ {
+ "name": "apollo",
+ "directions": 4
+ },
+ {
+ "name": "belle",
+ "directions": 4
+ },
+ {
+ "name": "braided",
+ "directions": 4
+ },
+ {
+ "name": "bun",
+ "directions": 4
+ },
+ {
+ "name": "clean_cut",
+ "directions": 4
+ },
+ {
+ "name": "curl",
+ "directions": 4
+ },
+ {
+ "name": "hawk",
+ "directions": 4
+ },
+ {
+ "name": "jagged",
+ "directions": 4
+ },
+ {
+ "name": "jeremy",
+ "directions": 4
+ },
+ {
+ "name": "kajam",
+ "directions": 4
+ },
+ {
+ "name": "keid",
+ "directions": 4
+ },
+ {
+ "name": "kleeia",
+ "directions": 4
+ },
+ {
+ "name": "mizar",
+ "directions": 4
+ },
+ {
+ "name": "punkbraided",
+ "directions": 4
+ },
+ {
+ "name": "raine",
+ "directions": 4
+ },
+ {
+ "name": "rough",
+ "directions": 4
+ },
+ {
+ "name": "short",
+ "directions": 4
+ },
+ {
+ "name": "short2",
+ "directions": 4
+ },
+ {
+ "name": "spike",
+ "directions": 4
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/mizar.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/mizar.png
new file mode 100644
index 00000000000..6b5c4b83fa6
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/mizar.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/punkbraided.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/punkbraided.png
new file mode 100644
index 00000000000..80c0800884a
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/punkbraided.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/raine.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/raine.png
new file mode 100644
index 00000000000..d904f012cee
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/raine.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/rough.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/rough.png
new file mode 100644
index 00000000000..352cddae16a
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/rough.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/short.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/short.png
new file mode 100644
index 00000000000..02700316083
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/short.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/short2.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/short2.png
new file mode 100644
index 00000000000..af45554fc8d
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/short2.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/spike.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/spike.png
new file mode 100644
index 00000000000..14b9377f1f4
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/hair.rsi/spike.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/blaze.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/blaze.png
new file mode 100644
index 00000000000..468fd7ff409
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/blaze.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/mask.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/mask.png
new file mode 100644
index 00000000000..56d9fc22e68
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/mask.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/meta.json
new file mode 100644
index 00000000000..9ef847add2f
--- /dev/null
+++ b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/meta.json
@@ -0,0 +1,60 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from https://github.com/ParadiseSS13/Paradise edited by Floofers",
+ "size": {"x": 32, "y": 32},
+ "states": [
+ {
+ "name": "nose",
+ "directions": 4
+ },
+ {
+ "name": "tiger_face",
+ "directions": 4
+ },
+ {
+ "name": "tiger_head",
+ "directions": 4
+ },
+ {
+ "name": "muzzle",
+ "directions": 4
+ },
+ {
+ "name": "muzzle_sharp",
+ "directions": 4
+ },
+ {
+ "name": "muzzle_fade",
+ "directions": 4
+ },
+ {
+ "name": "muzzle_alt",
+ "directions": 4
+ },
+ {
+ "name": "patch",
+ "directions": 4
+ },
+ {
+ "name": "mask",
+ "directions": 4
+ },
+ {
+ "name": "slash",
+ "directions": 4
+ },
+ {
+ "name": "blaze",
+ "directions": 4
+ },
+ {
+ "name": "vulpine",
+ "directions": 4
+ },
+ {
+ "name": "vulpine-lines",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle.png
new file mode 100644
index 00000000000..3a047062eba
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_alt.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_alt.png
new file mode 100644
index 00000000000..0e31152975d
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_alt.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_fade.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_fade.png
new file mode 100644
index 00000000000..7bc70487c9d
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_fade.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_sharp.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_sharp.png
new file mode 100644
index 00000000000..bd6d2ef2218
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_sharp.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/nose.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/nose.png
new file mode 100644
index 00000000000..905443a3ad0
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/nose.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/patch.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/patch.png
new file mode 100644
index 00000000000..80df0d5b326
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/patch.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/slash.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/slash.png
new file mode 100644
index 00000000000..1373da358bb
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/slash.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/tiger_face.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/tiger_face.png
new file mode 100644
index 00000000000..c542fe6e5e7
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/tiger_face.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/tiger_head.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/tiger_head.png
new file mode 100644
index 00000000000..922253aa245
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/tiger_head.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine-lines.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine-lines.png
new file mode 100644
index 00000000000..ac4d125bbd5
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine-lines.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine.png
new file mode 100644
index 00000000000..7c51f231939
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_full.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_full.png
new file mode 100644
index 00000000000..ed04708fd81
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_full.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_none.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_none.png
new file mode 100644
index 00000000000..8a925761fb4
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_none.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_top.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_top.png
new file mode 100644
index 00000000000..7f924cd879d
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_top.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/full.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/full.png
new file mode 100644
index 00000000000..f78008f58a2
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/full.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_full.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_full.png
new file mode 100644
index 00000000000..f78008f58a2
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_full.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_none.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_none.png
new file mode 100644
index 00000000000..44e0c1358d8
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_none.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_top.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_top.png
new file mode 100644
index 00000000000..a96eb3c2945
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_top.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/meta.json
new file mode 100644
index 00000000000..25e9aa3002d
--- /dev/null
+++ b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/meta.json
@@ -0,0 +1,100 @@
+{
+ "copyright": "Floofers and Discord PJB#3005",
+ "license": "CC-BY-SA-3.0",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "delays": [
+ [
+ 1.0
+ ],
+ [
+ 1.0
+ ],
+ [
+ 1.0
+ ],
+ [
+ 1.0
+ ]
+ ],
+ "directions": 4,
+ "name": "female_none"
+ },
+ {
+ "delays": [
+ [
+ 1.0
+ ],
+ [
+ 1.0
+ ],
+ [
+ 1.0
+ ],
+ [
+ 1.0
+ ]
+ ],
+ "directions": 4,
+ "name": "female_full"
+ },
+ {
+ "delays": [
+ [
+ 1.0
+ ],
+ [
+ 1.0
+ ],
+ [
+ 1.0
+ ],
+ [
+ 1.0
+ ]
+ ],
+ "directions": 4,
+ "name": "female_top"
+ },
+ {
+ "name": "none"
+ },
+ {
+ "name": "male_full",
+ "directions": 4
+ },
+ {
+ "name": "male_none",
+ "directions": 1
+ },
+ {
+ "name": "male_top",
+ "directions": 4
+ },
+ {
+ "name": "unisex_full",
+ "directions": 4
+ },
+ {
+ "name": "unisex_none",
+ "directions": 1
+ },
+ {
+ "name": "unisex_top",
+ "directions": 4
+ },
+ {
+ "name": "full",
+ "directions": 4
+ },
+ {
+ "name": "top",
+ "directions": 4
+ }
+ ],
+ "version": 1
+}
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/none.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/none.png
new file mode 100644
index 00000000000..6e3cb09bcf7
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/none.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/top.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/top.png
new file mode 100644
index 00000000000..f78008f58a2
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/top.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_full.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_full.png
new file mode 100644
index 00000000000..1b69c04a7a3
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_full.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_none.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_none.png
new file mode 100644
index 00000000000..44e0c1358d8
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_none.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_top.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_top.png
new file mode 100644
index 00000000000..44e0c1358d8
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_top.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/bushfluff.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/bushfluff.png
new file mode 100644
index 00000000000..55c69e2068f
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/bushfluff.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/bushfluff_wag.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/bushfluff_wag.png
new file mode 100644
index 00000000000..e96aeb6d086
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/bushfluff_wag.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/corgi_wag.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/corgi_wag.png
new file mode 100644
index 00000000000..129d5e95a53
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/corgi_wag.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote.png
new file mode 100644
index 00000000000..63e5ddba196
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote_wag.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote_wag.png
new file mode 100644
index 00000000000..a1c66f742e4
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote_wag.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/dalmatian_wag.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/dalmatian_wag.png
new file mode 100644
index 00000000000..c9ea5bc1b01
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/dalmatian_wag.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fennec.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fennec.png
new file mode 100644
index 00000000000..6f65eebb200
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fennec.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fluffy.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fluffy.png
new file mode 100644
index 00000000000..a5c11e0012f
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fluffy.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox-fade.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox-fade.png
new file mode 100644
index 00000000000..ff4a30f213b
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox-fade.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox-tip.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox-tip.png
new file mode 100644
index 00000000000..40fa2e2ca47
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox-tip.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox.png
new file mode 100644
index 00000000000..406ad13bcba
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox2.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox2.png
new file mode 100644
index 00000000000..d60f0ae759c
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox2.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox3-tip.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox3-tip.png
new file mode 100644
index 00000000000..f01b986328e
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox3-tip.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox3.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox3.png
new file mode 100644
index 00000000000..eef4b5d7d01
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox3.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag-fade.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag-fade.png
new file mode 100644
index 00000000000..b30f422ec1b
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag-fade.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag-tip.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag-tip.png
new file mode 100644
index 00000000000..39b123b58bf
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag-tip.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag.png
new file mode 100644
index 00000000000..91c33681511
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-inner.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-inner.png
new file mode 100644
index 00000000000..9c11aa3311e
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-inner.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-outer.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-outer.png
new file mode 100644
index 00000000000..beeae9ffc22
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-outer.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky.png
new file mode 100644
index 00000000000..a7a27a33876
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/long-tip.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/long-tip.png
new file mode 100644
index 00000000000..1ee71c955cb
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/long-tip.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/long.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/long.png
new file mode 100644
index 00000000000..f0487d42c1b
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/long.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/meta.json
new file mode 100644
index 00000000000..15211a3bda6
--- /dev/null
+++ b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/meta.json
@@ -0,0 +1,146 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from https://github.com/ParadiseSS13/Paradise edited by Floofers",
+ "size": {"x": 32, "y": 32},
+ "states": [
+ {
+ "name": "vulp",
+ "directions": 4
+ },
+ {
+ "name": "vulp-tip",
+ "directions": 4
+ },
+ {
+ "name": "vulp-fade",
+ "directions": 4
+ },
+ {
+ "name": "vulp_alt",
+ "directions": 4
+ },
+ {
+ "name": "vulp_alt-fade",
+ "directions": 4
+ },
+ {
+ "name": "vulp_alt-tip",
+ "directions": 4
+ },
+ {
+ "name": "vulp_wag",
+ "directions": 4,
+ "delays": [[0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2]]
+ },
+ {
+ "name": "vulp_wag-fade",
+ "directions": 4,
+ "delays": [[0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2]]
+ },
+ {
+ "name": "vulp_wag-tip",
+ "directions": 4,
+ "delays": [[0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2]]
+ },
+ {
+ "name": "long",
+ "directions": 4
+ },
+ {
+ "name": "long-tip",
+ "directions": 4
+ },
+ {
+ "name": "fox",
+ "directions": 4
+ },
+ {
+ "name": "fox-tip",
+ "directions": 4
+ },
+ {
+ "name": "fox-fade",
+ "directions": 4
+ },
+ {
+ "name": "fox_wag",
+ "directions": 4,
+ "delays": [[0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2]]
+ },
+ {
+ "name": "fox_wag-fade",
+ "directions": 4,
+ "delays": [[0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2]]
+ },
+ {
+ "name": "fox_wag-tip",
+ "directions": 4,
+ "delays": [[0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2]]
+ },
+ {
+ "name": "bushfluff",
+ "directions": 4
+ },
+ {
+ "name": "bushfluff_wag",
+ "directions": 4,
+ "delays": [[0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2]]
+ },
+ {
+ "name": "coyote",
+ "directions": 4
+ },
+ {
+ "name": "coyote_wag",
+ "directions": 4,
+ "delays": [[0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2]]
+ },
+ {
+ "name": "corgi_wag",
+ "directions": 4,
+ "delays": [[0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1]]
+ },
+ {
+ "name": "husky",
+ "directions": 4
+ },
+ {
+ "name": "husky-inner",
+ "directions": 4
+ },
+ {
+ "name": "husky-outer",
+ "directions": 4
+ },
+ {
+ "name": "fox2",
+ "directions": 4
+ },
+ {
+ "name": "fox3",
+ "directions": 4
+ },
+ {
+ "name": "fox3-tip",
+ "directions": 4
+ },
+ {
+ "name": "fennec",
+ "directions": 4
+ },
+ {
+ "name": "otie",
+ "directions": 4
+ },
+ {
+ "name": "fluffy",
+ "directions": 4
+ },
+ {
+ "name": "dalmatian_wag",
+ "directions": 4,
+ "delays": [[0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2]]
+ }
+ ]
+}
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/otie.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/otie.png
new file mode 100644
index 00000000000..2d2d82ad749
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/otie.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-fade.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-fade.png
new file mode 100644
index 00000000000..ac6c545181b
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-fade.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-tip.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-tip.png
new file mode 100644
index 00000000000..cc22eaf1faf
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-tip.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp.png
new file mode 100644
index 00000000000..181ba53a89c
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt-fade.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt-fade.png
new file mode 100644
index 00000000000..fd89f9c60b0
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt-fade.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt-tip.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt-tip.png
new file mode 100644
index 00000000000..345ee3d8dbd
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt-tip.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt.png
new file mode 100644
index 00000000000..af18dfbec59
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag-fade.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag-fade.png
new file mode 100644
index 00000000000..e2893062e37
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag-fade.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag-tip.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag-tip.png
new file mode 100644
index 00000000000..371d20fd91b
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag-tip.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag.png b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag.png
new file mode 100644
index 00000000000..25aee8a6ce2
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/full.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/full.png
new file mode 100644
index 00000000000..d78a1ae1134
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/full.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/head_f.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/head_f.png
new file mode 100644
index 00000000000..e6c988ac8b0
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/head_f.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/head_m.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/head_m.png
new file mode 100644
index 00000000000..d6894413505
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/head_m.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/icon.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/icon.png
new file mode 100644
index 00000000000..016d8ba5a76
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/icon.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/l_arm.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/l_arm.png
new file mode 100644
index 00000000000..a33336d6a6f
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/l_arm.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/l_foot.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/l_foot.png
new file mode 100644
index 00000000000..6b1db8f631b
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/l_foot.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/l_hand.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/l_hand.png
new file mode 100644
index 00000000000..645ec58d5b2
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/l_hand.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/l_leg.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/l_leg.png
new file mode 100644
index 00000000000..6511227d74a
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/l_leg.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/meta.json
new file mode 100644
index 00000000000..026fc8b64c9
--- /dev/null
+++ b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/meta.json
@@ -0,0 +1,69 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from https://github.com/ParadiseSS13/Paradise edited by Floofers",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "full"
+ },
+ {
+ "name": "icon"
+ },
+ {
+ "name": "head_f",
+ "directions": 4
+ },
+ {
+ "name": "head_m",
+ "directions": 4
+ },
+ {
+ "name": "l_arm",
+ "directions": 4
+ },
+ {
+ "name": "l_foot",
+ "directions": 4
+ },
+ {
+ "name": "l_hand",
+ "directions": 4
+ },
+ {
+ "name": "l_leg",
+ "directions": 4
+ },
+ {
+ "name": "r_arm",
+ "directions": 4
+ },
+ {
+ "name": "r_foot",
+ "directions": 4
+ },
+ {
+ "name": "r_hand",
+ "directions": 4
+ },
+ {
+ "name": "r_leg",
+ "directions": 4
+ },
+ {
+ "name": "torso_f",
+ "directions": 4
+ },
+ {
+ "name": "torso_m",
+ "directions": 4
+ },
+ {
+ "name": "overlay_husk",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/overlay_husk.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/overlay_husk.png
new file mode 100644
index 00000000000..ba3fc107bc8
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/overlay_husk.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/r_arm.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/r_arm.png
new file mode 100644
index 00000000000..7fc626c2711
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/r_arm.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/r_foot.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/r_foot.png
new file mode 100644
index 00000000000..9174095ab38
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/r_foot.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/r_hand.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/r_hand.png
new file mode 100644
index 00000000000..e461d8a7b54
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/r_hand.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/r_leg.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/r_leg.png
new file mode 100644
index 00000000000..d563bd072a3
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/r_leg.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/torso_f.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/torso_f.png
new file mode 100644
index 00000000000..db8a63bbd92
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/torso_f.png differ
diff --git a/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/torso_m.png b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/torso_m.png
new file mode 100644
index 00000000000..dfe4705aa37
Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Species/Vulpkanin/parts.rsi/torso_m.png differ
diff --git a/Resources/Textures/Objects/Devices/vulp_translator.rsi/icon.png b/Resources/Textures/Objects/Devices/vulp_translator.rsi/icon.png
new file mode 100644
index 00000000000..e60127b2df8
Binary files /dev/null and b/Resources/Textures/Objects/Devices/vulp_translator.rsi/icon.png differ
diff --git a/Resources/Textures/Objects/Devices/vulp_translator.rsi/meta.json b/Resources/Textures/Objects/Devices/vulp_translator.rsi/meta.json
new file mode 100644
index 00000000000..42e459937e1
--- /dev/null
+++ b/Resources/Textures/Objects/Devices/vulp_translator.rsi/meta.json
@@ -0,0 +1,14 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "baystation12",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Clothing/Neck/Medals/bodycam.rsi/equipped-NECK.png b/Resources/Textures/_NF/Clothing/Neck/Medals/bodycam.rsi/equipped-NECK.png
new file mode 100644
index 00000000000..6d8c46aebe0
Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Medals/bodycam.rsi/equipped-NECK.png differ
diff --git a/Resources/Textures/_NF/Clothing/Neck/Medals/bodycam.rsi/icon.png b/Resources/Textures/_NF/Clothing/Neck/Medals/bodycam.rsi/icon.png
new file mode 100644
index 00000000000..e17a33955d7
Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Medals/bodycam.rsi/icon.png differ
diff --git a/Resources/Textures/_NF/Clothing/Neck/Medals/bodycam.rsi/meta.json b/Resources/Textures/_NF/Clothing/Neck/Medals/bodycam.rsi/meta.json
new file mode 100644
index 00000000000..0412fa1427c
--- /dev/null
+++ b/Resources/Textures/_NF/Clothing/Neck/Medals/bodycam.rsi/meta.json
@@ -0,0 +1,18 @@
+{
+ "version": 1,
+ "license": "CC-BY-4.0",
+ "copyright": "Copyright 2023 Jonas Ljunsgtröm",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "equipped-NECK",
+ "directions": 4
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/equipped-HELMET.png
new file mode 100644
index 00000000000..528af744cc4
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/equipped-HELMET.png differ
diff --git a/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/icon.png b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/icon.png
new file mode 100644
index 00000000000..d2456b05224
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/icon.png differ
diff --git a/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/inhand-left.png b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/inhand-left.png
new file mode 100644
index 00000000000..889ab6377a5
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/inhand-left.png differ
diff --git a/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/inhand-right.png b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/inhand-right.png
new file mode 100644
index 00000000000..06dc48fbc3d
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/inhand-right.png differ
diff --git a/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/meta.json b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/meta.json
new file mode 100644
index 00000000000..4b11980cf61
--- /dev/null
+++ b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbeanie.rsi/meta.json
@@ -0,0 +1,26 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "created by @terezi4real github",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "equipped-HELMET",
+ "directions": 4
+ },
+ {
+ "name": "icon"
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/equipped-HELMET.png
new file mode 100644
index 00000000000..fde400c3a18
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/equipped-HELMET.png differ
diff --git a/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/icon.png b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/icon.png
new file mode 100644
index 00000000000..82b7decfa6e
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/icon.png differ
diff --git a/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/inhand-left.png b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/inhand-left.png
new file mode 100644
index 00000000000..4dc2c774d7d
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/inhand-left.png differ
diff --git a/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/inhand-right.png b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/inhand-right.png
new file mode 100644
index 00000000000..baba7a518c7
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/inhand-right.png differ
diff --git a/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/meta.json b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/meta.json
new file mode 100644
index 00000000000..153092583ec
--- /dev/null
+++ b/Resources/Textures/_NF/Faction/Clothing/Head/weedchurchbishop.rsi/meta.json
@@ -0,0 +1,26 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Created by @Everturning discord",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ },
+ {
+ "name": "equipped-HELMET",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/equipped-OUTERCLOTHING.png
new file mode 100644
index 00000000000..98bd7c13e0a
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/equipped-OUTERCLOTHING.png differ
diff --git a/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/icon.png b/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/icon.png
new file mode 100644
index 00000000000..134762cacdc
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/icon.png differ
diff --git a/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/inhand-left.png b/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/inhand-left.png
new file mode 100644
index 00000000000..406c8cf7952
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/inhand-left.png differ
diff --git a/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/inhand-right.png b/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/inhand-right.png
new file mode 100644
index 00000000000..41031a2aa1a
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/inhand-right.png differ
diff --git a/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/meta.json b/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/meta.json
new file mode 100644
index 00000000000..546c7509a69
--- /dev/null
+++ b/Resources/Textures/_NF/Faction/Clothing/OuterClothing/weedchurchrobes.rsi/meta.json
@@ -0,0 +1,26 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Made by @Everturning discord",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "equipped-OUTERCLOTHING",
+ "directions": 4
+ },
+ {
+ "name": "icon"
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}
diff --git a/Resources/Textures/_NF/Faction/Objects/weejurnum.rsi/icon.png b/Resources/Textures/_NF/Faction/Objects/weejurnum.rsi/icon.png
new file mode 100644
index 00000000000..9e56500858a
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Objects/weejurnum.rsi/icon.png differ
diff --git a/Resources/Textures/_NF/Faction/Objects/weejurnum.rsi/inhand-left.png b/Resources/Textures/_NF/Faction/Objects/weejurnum.rsi/inhand-left.png
new file mode 100644
index 00000000000..632f6003bef
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Objects/weejurnum.rsi/inhand-left.png differ
diff --git a/Resources/Textures/_NF/Faction/Objects/weejurnum.rsi/inhand-right.png b/Resources/Textures/_NF/Faction/Objects/weejurnum.rsi/inhand-right.png
new file mode 100644
index 00000000000..23081add1b7
Binary files /dev/null and b/Resources/Textures/_NF/Faction/Objects/weejurnum.rsi/inhand-right.png differ
diff --git a/Resources/Textures/_NF/Faction/Objects/weejurnum.rsi/meta.json b/Resources/Textures/_NF/Faction/Objects/weejurnum.rsi/meta.json
new file mode 100644
index 00000000000..2b568ba9e45
--- /dev/null
+++ b/Resources/Textures/_NF/Faction/Objects/weejurnum.rsi/meta.json
@@ -0,0 +1,22 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Made by @Everturning discord",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ }
+ ]
+}